EPSG:CODE

ESRI:102587 NTF Lambert Zone III

Projected · France - mainland south of 45.45~N

Export Formats

OGC WKT
PROJCS[
    "NTF_Lambert_Zone_III",
    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",3200000.0],
    PARAMETER["Central_Meridian",2.337229166666667],
    PARAMETER["Standard_Parallel_1",44.1],
    PARAMETER["Scale_Factor",0.999877499],
    PARAMETER["Latitude_Of_Origin",44.1],
    UNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:102587 to GeoServer?

Add the following definition to your GeoServer configuration:

102587=PROJCS["NTF_Lambert_Zone_III",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",3200000.0],PARAMETER["Central_Meridian",2.337229166666667],PARAMETER["Standard_Parallel_1",44.1],PARAMETER["Scale_Factor",0.999877499],PARAMETER["Latitude_Of_Origin",44.1],UNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:102587 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102587, 'ESRI', 102587, '+proj=lcc +ellps=clrk80ign +x_0=600000.0 +y_0=3200000.0 +lon_0=2d20''14.025"E +lat_0=44d6''N +lat_1=44d6''N +k_0=0.999877499 +towgs84=-168.0,-60.0,320.0 +no_defs', 'PROJCS["NTF_Lambert_Zone_III",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",3200000.0],PARAMETER["Central_Meridian",2.337229166666667],PARAMETER["Standard_Parallel_1",44.1],PARAMETER["Scale_Factor",0.999877499],PARAMETER["Latitude_Of_Origin",44.1],UNIT["Meter",1.0]]');
Read the full PostGIS guide →

How do I add ESRI:102587 to MapServer?

Add the following definition to your MapServer configuration:

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

How do I use ESRI:102587 with Proj4js?

Add the following definition to your Proj4js configuration:

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