EPSG:CODE

EPSG:9895 LUREF / Luxembourg TM (3D)

Projected · Luxembourg

Export Formats

WKT2
PROJCRS[
    "LUREF / Luxembourg TM (3D)",
    BASEGEOGCRS[
        "LUREF",
        DATUM[
            "Luxembourg Reference Frame",
            ELLIPSOID[
                "International 1924",
                6378388,
                297,
                LENGTHUNIT["metre",1,ID["EPSG",9001]],
                ID["EPSG",7022]
            ],
            ID["EPSG",6181]
        ],
        ID["EPSG",9893]
    ],
    CONVERSION[
        "Luxembourg TM (3D)",
        METHOD["Transverse Mercator 3D",ID["EPSG",1111]],
        PARAMETER[
            "Latitude of natural origin",
            49.8333333333336,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8801]
        ],
        PARAMETER[
            "Longitude of natural origin",
            6.16666666666694,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8802]
        ],
        PARAMETER[
            "Scale factor at natural origin",
            1,
            SCALEUNIT["unity",1,ID["EPSG",9201]],
            ID["EPSG",8805]
        ],
        PARAMETER[
            "False easting",
            80000,
            LENGTHUNIT["metre",1,ID["EPSG",9001]],
            ID["EPSG",8806]
        ],
        PARAMETER[
            "False northing",
            100000,
            LENGTHUNIT["metre",1,ID["EPSG",9001]],
            ID["EPSG",8807]
        ],
        ID["EPSG",9894]
    ],
    CS[Cartesian,3,ID["EPSG",1046]],
    AXIS["Northing (X)",north,LENGTHUNIT["metre",1,ID["EPSG",9001]]],
    AXIS["Easting (Y)",east,LENGTHUNIT["metre",1,ID["EPSG",9001]]],
    AXIS["Ellipsoidal height (h)",up,LENGTHUNIT["metre",1,ID["EPSG",9001]]],
    ID["EPSG",9895]
]

Other CRS for LU

Other CRS using Luxembourg Reference Frame

Frequently Asked Questions

How do I add EPSG:9895 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (9895, 'EPSG', 9895, '+proj=tmerc +lat_0=49.8333333333333 +lon_0=6.16666666666667 +k=1 +x_0=80000 +y_0=100000 +ellps=intl +units=m +no_defs +type=crs', '');
Read the full PostGIS guide →

How do I add EPSG:9895 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"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:9895 with Proj4js?

Add the following definition to your Proj4js configuration:

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