ESRI:102584 — NTF France IV degrees
Projected · France - Corsica onshore
Export Formats
OGC WKT
PROJCS[
"NTF_France_IV_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",234.358],
PARAMETER["False_Northing",4185861.369],
PARAMETER["Central_Meridian",2.337229166666667],
PARAMETER["Standard_Parallel_1",42.165],
PARAMETER["Scale_Factor",0.99994471],
PARAMETER["Latitude_Of_Origin",42.165],
UNIT["Meter",1.0]
]Frequently Asked Questions
How do I add ESRI:102584 to GeoServer?
Add the following definition to your GeoServer configuration:
102584=PROJCS["NTF_France_IV_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",234.358],PARAMETER["False_Northing",4185861.369],PARAMETER["Central_Meridian",2.337229166666667],PARAMETER["Standard_Parallel_1",42.165],PARAMETER["Scale_Factor",0.99994471],PARAMETER["Latitude_Of_Origin",42.165],UNIT["Meter",1.0]] Read the full GeoServer guide →
How do I add ESRI:102584 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102584, 'ESRI', 102584, '+proj=lcc +ellps=clrk80ign +x_0=234.358 +y_0=4185861.369 +lon_0=2d20''14.025"E +lat_0=42d9''54.0"N +lat_1=42d9''54.0"N +k_0=0.99994471 +towgs84=-168.0,-60.0,320.0 +no_defs', 'PROJCS["NTF_France_IV_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",234.358],PARAMETER["False_Northing",4185861.369],PARAMETER["Central_Meridian",2.337229166666667],PARAMETER["Standard_Parallel_1",42.165],PARAMETER["Scale_Factor",0.99994471],PARAMETER["Latitude_Of_Origin",42.165],UNIT["Meter",1.0]]'); Read the full PostGIS guide →
How do I add ESRI:102584 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=lcc"
"+ellps=clrk80ign"
"+x_0=234.358"
"+y_0=4185861.369"
"+lon_0=2d20'14.025"E"
"+lat_0=42d9'54.0"N"
"+lat_1=42d9'54.0"N"
"+k_0=0.99994471"
"+towgs84=-168.0,-60.0,320.0"
"+no_defs"
END Read the full MapServer guide →
How do I use ESRI:102584 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("ESRI:102584", "+proj=lcc +ellps=clrk80ign +x_0=234.358 +y_0=4185861.369 +lon_0=2d20'14.025"E +lat_0=42d9'54.0"N +lat_1=42d9'54.0"N +k_0=0.99994471 +towgs84=-168.0,-60.0,320.0 +no_defs"); Read the full Proj4js guide →