EPSG:CODE

EPSG:9897 LUREF / Luxembourg TM + NG95 height

Compound · Luxembourg

Export Formats

OGC WKT
COMPD_CS[
    "LUREF / Luxembourg TM + NG95 height",
    PROJCS[
        "LUREF / Luxembourg TM",
        GEOGCS[
            "LUREF",
            DATUM[
                "Luxembourg_Reference_Frame",
                SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],
                AUTHORITY["EPSG","6181"]
            ],
            PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
            UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
            AUTHORITY["EPSG","4181"]
        ],
        PROJECTION["Transverse_Mercator"],
        PARAMETER["latitude_of_origin",49.8333333333333],
        PARAMETER["central_meridian",6.16666666666667],
        PARAMETER["scale_factor",1],
        PARAMETER["false_easting",80000],
        PARAMETER["false_northing",100000],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AUTHORITY["EPSG","2169"]
    ],
    VERT_CS[
        "NG95 height",
        VERT_DATUM[
            "Nivellement General du Luxembourg 1995",
            2005,
            AUTHORITY["EPSG","5172"]
        ],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Gravity-related height",UP],
        AUTHORITY["EPSG","5774"]
    ],
    AUTHORITY["EPSG","9897"]
]

Other CRS for LU

Frequently Asked Questions

How do I add EPSG:9897 to GeoServer?

Add the following definition to your GeoServer configuration:

9897=COMPD_CS["LUREF / Luxembourg TM + NG95 height",PROJCS["LUREF / Luxembourg TM",GEOGCS["LUREF",DATUM["Luxembourg_Reference_Frame",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],AUTHORITY["EPSG","6181"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4181"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",49.8333333333333],PARAMETER["central_meridian",6.16666666666667],PARAMETER["scale_factor",1],PARAMETER["false_easting",80000],PARAMETER["false_northing",100000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","2169"]],VERT_CS["NG95 height",VERT_DATUM["Nivellement General du Luxembourg 1995",2005,AUTHORITY["EPSG","5172"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5774"]],AUTHORITY["EPSG","9897"]]
Read the full GeoServer guide →

How do I add EPSG:9897 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (9897, 'EPSG', 9897, '+proj=tmerc +lat_0=49.8333333333333 +lon_0=6.16666666666667 +k=1 +x_0=80000 +y_0=100000 +ellps=intl +units=m +vunits=m +no_defs +type=crs', 'COMPD_CS["LUREF / Luxembourg TM + NG95 height",PROJCS["LUREF / Luxembourg TM",GEOGCS["LUREF",DATUM["Luxembourg_Reference_Frame",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],AUTHORITY["EPSG","6181"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4181"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",49.8333333333333],PARAMETER["central_meridian",6.16666666666667],PARAMETER["scale_factor",1],PARAMETER["false_easting",80000],PARAMETER["false_northing",100000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","2169"]],VERT_CS["NG95 height",VERT_DATUM["Nivellement General du Luxembourg 1995",2005,AUTHORITY["EPSG","5172"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5774"]],AUTHORITY["EPSG","9897"]]');
Read the full PostGIS guide →

How do I add EPSG:9897 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+lat_0=49.8333333333333"
  "+lon_0=6.16666666666667"
  "+k=1"
  "+x_0=80000"
  "+y_0=100000"
  "+ellps=intl"
  "+units=m"
  "+vunits=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:9897 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:9897", "+proj=tmerc +lat_0=49.8333333333333 +lon_0=6.16666666666667 +k=1 +x_0=80000 +y_0=100000 +ellps=intl +units=m +vunits=m +no_defs +type=crs");
Read the full Proj4js guide →