EPSG:CODE

EPSG:27500 ATF (Paris) / Nord de Guerre

Projected · France - Alsace

Export Formats

OGC WKT
PROJCS[
    "ATF (Paris) / Nord de Guerre",
    GEOGCS[
        "ATF (Paris)",
        DATUM[
            "Ancienne_Triangulation_Francaise_Paris",
            SPHEROID["Plessis 1817",6376523,308.64,AUTHORITY["EPSG","7027"]],
            AUTHORITY["EPSG","6901"]
        ],
        PRIMEM["Paris RGS",2.33720833333333,AUTHORITY["EPSG","8914"]],
        UNIT["grad",0.0157079632679489,AUTHORITY["EPSG","9105"]],
        AUTHORITY["EPSG","4901"]
    ],
    PROJECTION["Lambert_Conformal_Conic_1SP"],
    PARAMETER["latitude_of_origin",55],
    PARAMETER["central_meridian",6],
    PARAMETER["scale_factor",0.99950908],
    PARAMETER["false_easting",500000],
    PARAMETER["false_northing",300000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","27500"]
]

Other CRS using Ancienne Triangulation Francaise (Paris)

Frequently Asked Questions

How do I add EPSG:27500 to GeoServer?

Add the following definition to your GeoServer configuration:

27500=PROJCS["ATF (Paris) / Nord de Guerre",GEOGCS["ATF (Paris)",DATUM["Ancienne_Triangulation_Francaise_Paris",SPHEROID["Plessis 1817",6376523,308.64,AUTHORITY["EPSG","7027"]],AUTHORITY["EPSG","6901"]],PRIMEM["Paris RGS",2.33720833333333,AUTHORITY["EPSG","8914"]],UNIT["grad",0.0157079632679489,AUTHORITY["EPSG","9105"]],AUTHORITY["EPSG","4901"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",55],PARAMETER["central_meridian",6],PARAMETER["scale_factor",0.99950908],PARAMETER["false_easting",500000],PARAMETER["false_northing",300000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","27500"]]
Read the full GeoServer guide →

How do I add EPSG:27500 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (27500, 'EPSG', 27500, '+proj=lcc +lat_1=49.5 +lat_0=49.5 +lon_0=5.4 +k_0=0.99950908 +x_0=500000 +y_0=300000 +a=6376523 +rf=308.64 +pm=2.33720833333333 +units=m +no_defs +type=crs', 'PROJCS["ATF (Paris) / Nord de Guerre",GEOGCS["ATF (Paris)",DATUM["Ancienne_Triangulation_Francaise_Paris",SPHEROID["Plessis 1817",6376523,308.64,AUTHORITY["EPSG","7027"]],AUTHORITY["EPSG","6901"]],PRIMEM["Paris RGS",2.33720833333333,AUTHORITY["EPSG","8914"]],UNIT["grad",0.0157079632679489,AUTHORITY["EPSG","9105"]],AUTHORITY["EPSG","4901"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",55],PARAMETER["central_meridian",6],PARAMETER["scale_factor",0.99950908],PARAMETER["false_easting",500000],PARAMETER["false_northing",300000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","27500"]]');
Read the full PostGIS guide →

How do I add EPSG:27500 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_1=49.5"
  "+lat_0=49.5"
  "+lon_0=5.4"
  "+k_0=0.99950908"
  "+x_0=500000"
  "+y_0=300000"
  "+a=6376523"
  "+rf=308.64"
  "+pm=2.33720833333333"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:27500 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:27500", "+proj=lcc +lat_1=49.5 +lat_0=49.5 +lon_0=5.4 +k_0=0.99950908 +x_0=500000 +y_0=300000 +a=6376523 +rf=308.64 +pm=2.33720833333333 +units=m +no_defs +type=crs");
Read the full Proj4js guide →