EPSG:CODE

ESRI:102791 MAGNA Pereira Risaralda 2007

Deprecated

Projected · Colombia - Pereira - Risaralda

Export Formats

OGC WKT
PROJCS[
    "MAGNA_Pereira_Risaralda_2007",
    GEOGCS[
        "GCS_MAGNA",
        DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["IGAC_Plano_Cartesiano"],
    PARAMETER["False_Easting",1153492.012],
    PARAMETER["False_Northing",1024195.255],
    PARAMETER["Longitude_Of_Center",-75.69395138888889],
    PARAMETER["Latitude_Of_Center",4.813593611111111],
    PARAMETER["Height",1500.0],
    UNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:102791 to GeoServer?

Add the following definition to your GeoServer configuration:

102791=PROJCS["MAGNA_Pereira_Risaralda_2007",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1153492.012],PARAMETER["False_Northing",1024195.255],PARAMETER["Longitude_Of_Center",-75.69395138888889],PARAMETER["Latitude_Of_Center",4.813593611111111],PARAMETER["Height",1500.0],UNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:102791 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102791, 'ESRI', 102791, '', 'PROJCS["MAGNA_Pereira_Risaralda_2007",GEOGCS["GCS_MAGNA",DATUM["D_MAGNA",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["IGAC_Plano_Cartesiano"],PARAMETER["False_Easting",1153492.012],PARAMETER["False_Northing",1024195.255],PARAMETER["Longitude_Of_Center",-75.69395138888889],PARAMETER["Latitude_Of_Center",4.813593611111111],PARAMETER["Height",1500.0],UNIT["Meter",1.0]]');
Read the full PostGIS guide →