EPSG:CODE

EPSG:31991 SIRGAS 1995 / UTM zone 22N

Projekte · South America - 54°W to 48°W, N hemisphere

Tanım Formatları

OGC WKT
PROJCS[
    "SIRGAS 1995 / UTM zone 22N",
    GEOGCS[
        "SIRGAS 1995",
        DATUM[
            "Sistema_de_Referencia_Geocentrico_para_America_del_Sur_1995",
            SPHEROID["GRS 1980",6378137,298.257222101],
            TOWGS84[0,0,0,0,0,0,0]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4170"]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["latitude_of_origin",0],
    PARAMETER["central_meridian",-51],
    PARAMETER["scale_factor",0.9996],
    PARAMETER["false_easting",500000],
    PARAMETER["false_northing",0],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","31991"]
]

İlişkili Koordinat Sistemleri

Mevcut Dönüşümler (6)

Dönüşümler temel CRS'den alınmıştır: EPSG:4170 (SIRGAS 1995)

Sistema de Referencia Geocentrico para America del Sur 1995 Kullanan Diğer CRS (17)

Sıkça Sorulan Sorular

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

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

31991=PROJCS["SIRGAS 1995 / UTM zone 22N",GEOGCS["SIRGAS 1995",DATUM["Sistema_de_Referencia_Geocentrico_para_America_del_Sur_1995",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[0,0,0,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4170"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-51],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","31991"]]
GeoServer rehberinin tamamını okuyun →

EPSG:31991 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 (31991, 'EPSG', 31991, '+proj=utm +zone=22 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs', 'PROJCS["SIRGAS 1995 / UTM zone 22N",GEOGCS["SIRGAS 1995",DATUM["Sistema_de_Referencia_Geocentrico_para_America_del_Sur_1995",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[0,0,0,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4170"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-51],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","31991"]]');
PostGIS rehberinin tamamını okuyun →

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

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

PROJECTION
  "+proj=utm"
  "+zone=22"
  "+ellps=GRS80"
  "+towgs84=0,0,0,0,0,0,0"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
MapServer rehberinin tamamını okuyun →

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

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

proj4.defs("EPSG:31991", "+proj=utm +zone=22 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs");
Proj4js rehberinin tamamını okuyun →