EPSG:CODE

ESRI:102582 NTF France II degrees

Projected · France - mainland 45.45~N to 48.15~N. Also all mainland.

Export Formats

OGC WKT
PROJCS[
    "NTF_France_II_degrees",
    GEOGCS[
        "GCS_NTF",
        DATUM["D_NTF",SPHEROID["Clarke_1880_IGN",6378249.2,293.4660212936265]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Lambert_Conformal_Conic"],
    PARAMETER["False_Easting",600000.0],
    PARAMETER["False_Northing",2200000.0],
    PARAMETER["Central_Meridian",2.337229166666667],
    PARAMETER["Standard_Parallel_1",46.8],
    PARAMETER["Scale_Factor",0.99987742],
    PARAMETER["Latitude_Of_Origin",46.8],
    UNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:102582 to GeoServer?

Add the following definition to your GeoServer configuration:

102582=PROJCS["NTF_France_II_degrees",GEOGCS["GCS_NTF",DATUM["D_NTF",SPHEROID["Clarke_1880_IGN",6378249.2,293.4660212936265]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",600000.0],PARAMETER["False_Northing",2200000.0],PARAMETER["Central_Meridian",2.337229166666667],PARAMETER["Standard_Parallel_1",46.8],PARAMETER["Scale_Factor",0.99987742],PARAMETER["Latitude_Of_Origin",46.8],UNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:102582 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102582, 'ESRI', 102582, '+proj=lcc +ellps=clrk80ign +x_0=600000.0 +y_0=2200000.0 +lon_0=2d20''14.025"E +lat_0=46d48''N +lat_1=46d48''N +k_0=0.99987742 +towgs84=-168.0,-60.0,320.0 +no_defs', 'PROJCS["NTF_France_II_degrees",GEOGCS["GCS_NTF",DATUM["D_NTF",SPHEROID["Clarke_1880_IGN",6378249.2,293.4660212936265]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",600000.0],PARAMETER["False_Northing",2200000.0],PARAMETER["Central_Meridian",2.337229166666667],PARAMETER["Standard_Parallel_1",46.8],PARAMETER["Scale_Factor",0.99987742],PARAMETER["Latitude_Of_Origin",46.8],UNIT["Meter",1.0]]');
Read the full PostGIS guide →

How do I add ESRI:102582 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+ellps=clrk80ign"
  "+x_0=600000.0"
  "+y_0=2200000.0"
  "+lon_0=2d20'14.025"E"
  "+lat_0=46d48'N"
  "+lat_1=46d48'N"
  "+k_0=0.99987742"
  "+towgs84=-168.0,-60.0,320.0"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102582 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102582", "+proj=lcc +ellps=clrk80ign +x_0=600000.0 +y_0=2200000.0 +lon_0=2d20'14.025"E +lat_0=46d48'N +lat_1=46d48'N +k_0=0.99987742 +towgs84=-168.0,-60.0,320.0 +no_defs");
Read the full Proj4js guide →