EPSG:CODE

EPSG:4309 Yacare

Geographic 2D · Uruguay - onshore

Export Formats

OGC WKT
GEOGCS[
    "Yacare",
    DATUM[
        "Yacare",
        SPHEROID["International 1924",6378388,297],
        TOWGS84[-124.45,183.74,44.64,-0.4384,0.5446,-0.9706,-2.1365]
    ],
    PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4309"]
]

Related Coordinate Systems

Available Transformations (4)

Transformation Source → Target Accuracy (m)
4309 5381 1.5
4309 4326 1.5
4309 4326 999
4309 4170 1.5

Frequently Asked Questions

How do I add EPSG:4309 to GeoServer?

Add the following definition to your GeoServer configuration:

4309=GEOGCS["Yacare",DATUM["Yacare",SPHEROID["International 1924",6378388,297],TOWGS84[-124.45,183.74,44.64,-0.4384,0.5446,-0.9706,-2.1365]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4309"]]
Read the full GeoServer guide →

How do I add EPSG:4309 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (4309, 'EPSG', 4309, '+proj=longlat +ellps=intl +towgs84=-124.45,183.74,44.64,-0.4384,0.5446,-0.9706,-2.1365 +no_defs +type=crs', 'GEOGCS["Yacare",DATUM["Yacare",SPHEROID["International 1924",6378388,297],TOWGS84[-124.45,183.74,44.64,-0.4384,0.5446,-0.9706,-2.1365]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4309"]]');
Read the full PostGIS guide →

How do I add EPSG:4309 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+ellps=intl"
  "+towgs84=-124.45,183.74,44.64,-0.4384,0.5446,-0.9706,-2.1365"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:4309 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:4309", "+proj=longlat +ellps=intl +towgs84=-124.45,183.74,44.64,-0.4384,0.5446,-0.9706,-2.1365 +no_defs +type=crs");
Read the full Proj4js guide →