EPSG:CODE

EPSG:4901 ATF (Paris)

Geographic 2D · France - mainland onshore

Export Formats

OGC WKT
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"]
]

Other CRS using Ancienne Triangulation Francaise (Paris)

Frequently Asked Questions

How do I add EPSG:4901 to GeoServer?

Add the following definition to your GeoServer configuration:

4901=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"]]
Read the full GeoServer guide →

How do I add EPSG:4901 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (4901, 'EPSG', 4901, '+proj=longlat +a=6376523 +rf=308.64 +pm=2.33720833333333 +no_defs +type=crs', '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"]]');
Read the full PostGIS guide →

How do I add EPSG:4901 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+a=6376523"
  "+rf=308.64"
  "+pm=2.33720833333333"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:4901 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:4901", "+proj=longlat +a=6376523 +rf=308.64 +pm=2.33720833333333 +no_defs +type=crs");
Read the full Proj4js guide →