EPSG:CODE

EPSG:9892 LUREF

Jeosentrik · Luxembourg

Tanım Formatları

OGC WKT
GEOCCS[
    "LUREF",
    DATUM[
        "Luxembourg_Reference_Frame",
        SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],
        AUTHORITY["EPSG","6181"]
    ],
    PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Geocentric X",OTHER],
    AXIS["Geocentric Y",OTHER],
    AXIS["Geocentric Z",NORTH],
    AUTHORITY["EPSG","9892"]
]

LU için Diğer CRS

Luxembourg Reference Frame Kullanan Diğer CRS

Sıkça Sorulan Sorular

EPSG:9892 projeksiyonunu GeoServer'a nasıl eklerim?

Aşağıdaki tanımı GeoServer yapılandırma dosyanıza ekleyin:

9892=GEOCCS["LUREF",DATUM["Luxembourg_Reference_Frame",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],AUTHORITY["EPSG","6181"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Geocentric X",OTHER],AXIS["Geocentric Y",OTHER],AXIS["Geocentric Z",NORTH],AUTHORITY["EPSG","9892"]]
GeoServer rehberinin tamamını okuyun →

EPSG:9892 projeksiyonunu PostGIS'e nasıl eklerim?

Aşağıdaki tanımı PostGIS yapılandırma dosyanıza ekleyin:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (9892, 'EPSG', 9892, '+proj=geocent +ellps=intl +units=m +no_defs +type=crs', 'GEOCCS["LUREF",DATUM["Luxembourg_Reference_Frame",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],AUTHORITY["EPSG","6181"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Geocentric X",OTHER],AXIS["Geocentric Y",OTHER],AXIS["Geocentric Z",NORTH],AUTHORITY["EPSG","9892"]]');
PostGIS rehberinin tamamını okuyun →

EPSG:9892 projeksiyonunu MapServer'da nasıl kullanırım?

Aşağıdaki tanımı MapServer yapılandırma dosyanıza ekleyin:

PROJECTION
  "+proj=geocent"
  "+ellps=intl"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
MapServer rehberinin tamamını okuyun →

EPSG:9892 projeksiyonunu Proj4js ile nasıl kullanırım?

Aşağıdaki tanımı Proj4js yapılandırma dosyanıza ekleyin:

proj4.defs("EPSG:9892", "+proj=geocent +ellps=intl +units=m +no_defs +type=crs");
Proj4js rehberinin tamamını okuyun →