EPSG:CODE

EPSG:9265 POSGAR 2007 / UTM zone 19S

Projekte · Argentina - Tierra del Fuego offshore west of 66°W

Tanım Formatları

OGC WKT
PROJCS[
    "POSGAR 2007 / UTM zone 19S",
    GEOGCS[
        "POSGAR 2007",
        DATUM[
            "Posiciones_Geodesicas_Argentinas_2007",
            SPHEROID["WGS 84",6378137,298.257223563],
            TOWGS84[-0.41,0.46,-0.35,0,0,0,0]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","5340"]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["latitude_of_origin",0],
    PARAMETER["central_meridian",-69],
    PARAMETER["scale_factor",0.9996],
    PARAMETER["false_easting",500000],
    PARAMETER["false_northing",10000000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","9265"]
]

İlişkili Koordinat Sistemleri

Mevcut Dönüşümler (4)

Dönüşümler temel CRS'den alınmıştır: EPSG:5340 (POSGAR 2007)

Posiciones Geodesicas Argentinas 2007 Kullanan Diğer CRS

Sıkça Sorulan Sorular

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

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

9265=PROJCS["POSGAR 2007 / UTM zone 19S",GEOGCS["POSGAR 2007",DATUM["Posiciones_Geodesicas_Argentinas_2007",SPHEROID["WGS 84",6378137,298.257223563],TOWGS84[-0.41,0.46,-0.35,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","5340"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-69],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",10000000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","9265"]]
GeoServer rehberinin tamamını okuyun →

EPSG:9265 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 (9265, 'EPSG', 9265, '+proj=utm +zone=19 +south +ellps=WGS84 +towgs84=-0.41,0.46,-0.35,0,0,0,0 +units=m +no_defs +type=crs', 'PROJCS["POSGAR 2007 / UTM zone 19S",GEOGCS["POSGAR 2007",DATUM["Posiciones_Geodesicas_Argentinas_2007",SPHEROID["WGS 84",6378137,298.257223563],TOWGS84[-0.41,0.46,-0.35,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","5340"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-69],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",10000000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","9265"]]');
PostGIS rehberinin tamamını okuyun →

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

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

PROJECTION
  "+proj=utm"
  "+zone=19"
  "+south"
  "+ellps=WGS84"
  "+towgs84=-0.41,0.46,-0.35,0,0,0,0"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
MapServer rehberinin tamamını okuyun →

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

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

proj4.defs("EPSG:9265", "+proj=utm +zone=19 +south +ellps=WGS84 +towgs84=-0.41,0.46,-0.35,0,0,0,0 +units=m +no_defs +type=crs");
Proj4js rehberinin tamamını okuyun →