EPSG:CODE

EPSG:7400 NTF (Paris) + NGF-IGN69 height

Compound · France - mainland onshore

Export Formats

OGC WKT
COMPD_CS[
    "NTF (Paris) + NGF IGN69 height",
    GEOGCS[
        "NTF (Paris)",
        DATUM[
            "Nouvelle_Triangulation_Francaise_Paris",
            SPHEROID[
                "Clarke 1880 (IGN)",
                6378249.2,
                293.466021293627,
                AUTHORITY["EPSG","7011"]
            ],
            AUTHORITY["EPSG","6807"]
        ],
        PRIMEM["Paris",2.33722917,AUTHORITY["EPSG","8903"]],
        UNIT["grad",0.0157079632679489,AUTHORITY["EPSG","9105"]],
        AUTHORITY["EPSG","4807"]
    ],
    VERT_CS[
        "NGF-IGN69 height",
        VERT_DATUM[
            "Nivellement General de la France - IGN69",
            2005,
            AUTHORITY["EPSG","5119"]
        ],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Gravity-related height",UP],
        AUTHORITY["EPSG","5720"]
    ],
    AUTHORITY["EPSG","7400"]
]

Frequently Asked Questions

How do I add EPSG:7400 to GeoServer?

Add the following definition to your GeoServer configuration:

7400=COMPD_CS["NTF (Paris) + NGF IGN69 height",GEOGCS["NTF (Paris)",DATUM["Nouvelle_Triangulation_Francaise_Paris",SPHEROID["Clarke 1880 (IGN)",6378249.2,293.466021293627,AUTHORITY["EPSG","7011"]],AUTHORITY["EPSG","6807"]],PRIMEM["Paris",2.33722917,AUTHORITY["EPSG","8903"]],UNIT["grad",0.0157079632679489,AUTHORITY["EPSG","9105"]],AUTHORITY["EPSG","4807"]],VERT_CS["NGF-IGN69 height",VERT_DATUM["Nivellement General de la France - IGN69",2005,AUTHORITY["EPSG","5119"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5720"]],AUTHORITY["EPSG","7400"]]
Read the full GeoServer guide →

How do I add EPSG:7400 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (7400, 'EPSG', 7400, '+proj=longlat +ellps=clrk80ign +pm=paris +vunits=m +no_defs +type=crs', 'COMPD_CS["NTF (Paris) + NGF IGN69 height",GEOGCS["NTF (Paris)",DATUM["Nouvelle_Triangulation_Francaise_Paris",SPHEROID["Clarke 1880 (IGN)",6378249.2,293.466021293627,AUTHORITY["EPSG","7011"]],AUTHORITY["EPSG","6807"]],PRIMEM["Paris",2.33722917,AUTHORITY["EPSG","8903"]],UNIT["grad",0.0157079632679489,AUTHORITY["EPSG","9105"]],AUTHORITY["EPSG","4807"]],VERT_CS["NGF-IGN69 height",VERT_DATUM["Nivellement General de la France - IGN69",2005,AUTHORITY["EPSG","5119"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5720"]],AUTHORITY["EPSG","7400"]]');
Read the full PostGIS guide →

How do I add EPSG:7400 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+ellps=clrk80ign"
  "+pm=paris"
  "+vunits=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:7400 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:7400", "+proj=longlat +ellps=clrk80ign +pm=paris +vunits=m +no_defs +type=crs");
Read the full Proj4js guide →