EPSG:CODE

EPSG:6309 CGRS93

Jeosentrik · Cyprus - onshore

Tanım Formatları

OGC WKT
GEOCCS[
    "CGRS93",
    DATUM[
        "Cyprus_Geodetic_Reference_System_1993",
        SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],
        AUTHORITY["EPSG","1112"]
    ],
    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","6309"]
]

Cyprus Geodetic Reference System 1993 Kullanan Diğer CRS

Sıkça Sorulan Sorular

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

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

6309=GEOCCS["CGRS93",DATUM["Cyprus_Geodetic_Reference_System_1993",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","1112"]],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","6309"]]
GeoServer rehberinin tamamını okuyun →

EPSG:6309 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 (6309, 'EPSG', 6309, '+proj=geocent +ellps=WGS84 +units=m +no_defs +type=crs', 'GEOCCS["CGRS93",DATUM["Cyprus_Geodetic_Reference_System_1993",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","1112"]],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","6309"]]');
PostGIS rehberinin tamamını okuyun →

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

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

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

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

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

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