EPSG:2169 — LUREF / Luxembourg TM
Projected · Luxembourg
Export Formats
OGC WKT
PROJCS[
"LUREF / Luxembourg TM",
GEOGCS[
"LUREF",
DATUM[
"Luxembourg_Reference_Frame",
SPHEROID["International 1924",6378388,297],
TOWGS84[-265.8867,76.9851,20.2667,0.33746,3.09264,-2.53861,0.4598]
],
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"]
]Related Coordinate Systems
Available Transformations (12)
Transformations inherited from base CRS: EPSG:4181 (LUREF)
Other CRS for LU
Other CRS using Luxembourg Reference Frame
Frequently Asked Questions
How do I add EPSG:2169 to GeoServer?
Add the following definition to your GeoServer configuration:
2169=PROJCS["LUREF / Luxembourg TM",GEOGCS["LUREF",DATUM["Luxembourg_Reference_Frame",SPHEROID["International 1924",6378388,297],TOWGS84[-265.8867,76.9851,20.2667,0.33746,3.09264,-2.53861,0.4598]],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"]] Read the full GeoServer guide →
How do I add EPSG:2169 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (2169, 'EPSG', 2169, '+proj=tmerc +lat_0=49.8333333333333 +lon_0=6.16666666666667 +k=1 +x_0=80000 +y_0=100000 +ellps=intl +towgs84=-265.8867,76.9851,20.2667,0.33746,3.09264,-2.53861,0.4598 +units=m +no_defs +type=crs', 'PROJCS["LUREF / Luxembourg TM",GEOGCS["LUREF",DATUM["Luxembourg_Reference_Frame",SPHEROID["International 1924",6378388,297],TOWGS84[-265.8867,76.9851,20.2667,0.33746,3.09264,-2.53861,0.4598]],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"]]'); Read the full PostGIS guide →
How do I add EPSG:2169 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"
"+towgs84=-265.8867,76.9851,20.2667,0.33746,3.09264,-2.53861,0.4598"
"+units=m"
"+no_defs"
"+type=crs"
END Read the full MapServer guide →
How do I use EPSG:2169 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("EPSG:2169", "+proj=tmerc +lat_0=49.8333333333333 +lon_0=6.16666666666667 +k=1 +x_0=80000 +y_0=100000 +ellps=intl +towgs84=-265.8867,76.9851,20.2667,0.33746,3.09264,-2.53861,0.4598 +units=m +no_defs +type=crs"); Read the full Proj4js guide →