EPSG:CODE

EPSG:9521 POSGAR 2007 + SRVN16 height

Compound · Argentina - onshore

Export Formats

OGC WKT
COMPD_CS[
    "POSGAR 2007 + SRVN16 height",
    GEOGCS[
        "POSGAR 2007",
        DATUM[
            "Posiciones_Geodesicas_Argentinas_2007",
            SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],
            AUTHORITY["EPSG","1062"]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","5340"]
    ],
    VERT_CS[
        "SRVN16 height",
        VERT_DATUM[
            "Sistema de Referencia Vertical Nacional 2016",
            2005,
            AUTHORITY["EPSG","1260"]
        ],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Gravity-related height",UP],
        AUTHORITY["EPSG","9255"]
    ],
    AUTHORITY["EPSG","9521"]
]

Related Coordinate Systems

Available Transformations (1)

Transformation Source → Target Accuracy (m)
5342 9521 0.05

Frequently Asked Questions

How do I add EPSG:9521 to GeoServer?

Add the following definition to your GeoServer configuration:

9521=COMPD_CS["POSGAR 2007 + SRVN16 height",GEOGCS["POSGAR 2007",DATUM["Posiciones_Geodesicas_Argentinas_2007",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","1062"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","5340"]],VERT_CS["SRVN16 height",VERT_DATUM["Sistema de Referencia Vertical Nacional 2016",2005,AUTHORITY["EPSG","1260"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","9255"]],AUTHORITY["EPSG","9521"]]
Read the full GeoServer guide →

How do I add EPSG:9521 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (9521, 'EPSG', 9521, '+proj=longlat +ellps=WGS84 +vunits=m +no_defs +type=crs', 'COMPD_CS["POSGAR 2007 + SRVN16 height",GEOGCS["POSGAR 2007",DATUM["Posiciones_Geodesicas_Argentinas_2007",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","1062"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","5340"]],VERT_CS["SRVN16 height",VERT_DATUM["Sistema de Referencia Vertical Nacional 2016",2005,AUTHORITY["EPSG","1260"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","9255"]],AUTHORITY["EPSG","9521"]]');
Read the full PostGIS guide →

How do I add EPSG:9521 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+ellps=WGS84"
  "+vunits=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:9521 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:9521", "+proj=longlat +ellps=WGS84 +vunits=m +no_defs +type=crs");
Read the full Proj4js guide →