EPSG:CODE

EPSG:6274 MAGNA-SIRGAS / Villavicencio urban grid

Projected · Colombia - Villavicencio city

Export Formats

WKT2
PROJCRS[
    "MAGNA-SIRGAS / Villavicencio urban grid",
    BASEGEOGCRS[
        "MAGNA-SIRGAS",
        DATUM[
            "Marco Geocentrico Nacional de Referencia",
            ELLIPSOID[
                "GRS 1980",
                6378137,
                298.257222101,
                LENGTHUNIT["metre",1,ID["EPSG",9001]],
                ID["EPSG",7019]
            ],
            ID["EPSG",6686]
        ],
        ID["EPSG",4686]
    ],
    CONVERSION[
        "Villavicencio urban grid",
        METHOD["Colombia Urban",ID["EPSG",1052]],
        PARAMETER[
            "Latitude of natural origin",
            4.15537510000028,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8801]
        ],
        PARAMETER[
            "Longitude of natural origin",
            -73.6244859861114,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8802]
        ],
        PARAMETER[
            "False easting",
            1050678.757,
            LENGTHUNIT["metre",1,ID["EPSG",9001]],
            ID["EPSG",8806]
        ],
        PARAMETER[
            "False northing",
            950952.124,
            LENGTHUNIT["metre",1,ID["EPSG",9001]],
            ID["EPSG",8807]
        ],
        PARAMETER[
            "Projection plane origin height",
            427.19,
            LENGTHUNIT["metre",1,ID["EPSG",9001]],
            ID["EPSG",1039]
        ],
        ID["EPSG",6242]
    ],
    CS[Cartesian,2,ID["EPSG",4500]],
    AXIS["Northing (N)",north],
    AXIS["Easting (E)",east],
    LENGTHUNIT["metre",1,ID["EPSG",9001]],
    ID["EPSG",6274]
]

Related Coordinate Systems

Available Transformations (17)

Transformations inherited from base CRS: EPSG:4686 (MAGNA-SIRGAS)

Other CRS using Marco Geocentrico Nacional de Referencia (39)

Frequently Asked Questions

How do I add EPSG:6274 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (6274, 'EPSG', 6274, '+proj=col_urban +lat_0=4.1553751 +lon_0=-73.6244859861111 +x_0=1050678.757 +y_0=950952.124 +h_0=427.19 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs', '');
Read the full PostGIS guide →

How do I add EPSG:6274 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=col_urban"
  "+lat_0=4.1553751"
  "+lon_0=-73.6244859861111"
  "+x_0=1050678.757"
  "+y_0=950952.124"
  "+h_0=427.19"
  "+ellps=GRS80"
  "+towgs84=0,0,0,0,0,0,0"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:6274 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:6274", "+proj=col_urban +lat_0=4.1553751 +lon_0=-73.6244859861111 +x_0=1050678.757 +y_0=950952.124 +h_0=427.19 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs");
Read the full Proj4js guide →