EPSG:CODE

EPSG:4121 GGRS87

Coğrafi 2B · Greece - onshore

Tanım Formatları

OGC WKT
GEOGCS[
    "GGRS87",
    DATUM[
        "Greek_Geodetic_Reference_System_1987",
        SPHEROID["GRS 1980",6378137,298.257222101],
        TOWGS84[-199.87,74.79,246.62,0,0,0,0]
    ],
    PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4121"]
]

İlişkili Koordinat Sistemleri

Mevcut Dönüşümler (2)

Dönüşüm Kaynak → Hedef Hassasiyet (m)
4121 4326 1
4120 4121 5

Greek Geodetic Reference System 1987 Kullanan Diğer CRS

Sıkça Sorulan Sorular

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

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

4121=GEOGCS["GGRS87",DATUM["Greek_Geodetic_Reference_System_1987",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[-199.87,74.79,246.62,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4121"]]
GeoServer rehberinin tamamını okuyun →

EPSG:4121 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 (4121, 'EPSG', 4121, '+proj=longlat +ellps=GRS80 +towgs84=-199.87,74.79,246.62,0,0,0,0 +no_defs +type=crs', 'GEOGCS["GGRS87",DATUM["Greek_Geodetic_Reference_System_1987",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[-199.87,74.79,246.62,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4121"]]');
PostGIS rehberinin tamamını okuyun →

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

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

PROJECTION
  "+proj=longlat"
  "+ellps=GRS80"
  "+towgs84=-199.87,74.79,246.62,0,0,0,0"
  "+no_defs"
  "+type=crs"
END
MapServer rehberinin tamamını okuyun →

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

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

proj4.defs("EPSG:4121", "+proj=longlat +ellps=GRS80 +towgs84=-199.87,74.79,246.62,0,0,0,0 +no_defs +type=crs");
Proj4js rehberinin tamamını okuyun →