EPSG:CODE

ESRI:102232 Bogota Ciudad Bogota

Projected · Colombia region 8

Export Formats

OGC WKT
PROJCS[
    "Bogota_Ciudad_Bogota",
    GEOGCS[
        "GCS_Bogota",
        DATUM["D_Bogota",SPHEROID["International_1924",6378388.0,297.0]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["False_Easting",92334.879],
    PARAMETER["False_Northing",109320.965],
    PARAMETER["Central_Meridian",-74.15],
    PARAMETER["Scale_Factor",1.000399787532524],
    PARAMETER["Latitude_Of_Origin",4.683333333333334],
    UNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:102232 to GeoServer?

Add the following definition to your GeoServer configuration:

102232=PROJCS["Bogota_Ciudad_Bogota",GEOGCS["GCS_Bogota",DATUM["D_Bogota",SPHEROID["International_1924",6378388.0,297.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",92334.879],PARAMETER["False_Northing",109320.965],PARAMETER["Central_Meridian",-74.15],PARAMETER["Scale_Factor",1.000399787532524],PARAMETER["Latitude_Of_Origin",4.683333333333334],UNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:102232 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102232, 'ESRI', 102232, '+proj=tmerc +ellps=intl +x_0=92334.879 +y_0=109320.965 +lon_0=74d9''W +lat_0=4d41''N +k_0=1.000399787532524 +towgs84=221.899,274.136,-397.554,-2.808445910362777,0.4485085889126799,2.810172346791065,-2.199943 +no_defs', 'PROJCS["Bogota_Ciudad_Bogota",GEOGCS["GCS_Bogota",DATUM["D_Bogota",SPHEROID["International_1924",6378388.0,297.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",92334.879],PARAMETER["False_Northing",109320.965],PARAMETER["Central_Meridian",-74.15],PARAMETER["Scale_Factor",1.000399787532524],PARAMETER["Latitude_Of_Origin",4.683333333333334],UNIT["Meter",1.0]]');
Read the full PostGIS guide →

How do I add ESRI:102232 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+ellps=intl"
  "+x_0=92334.879"
  "+y_0=109320.965"
  "+lon_0=74d9'W"
  "+lat_0=4d41'N"
  "+k_0=1.000399787532524"
  "+towgs84=221.899,274.136,-397.554,-2.808445910362777,0.4485085889126799,2.810172346791065,-2.199943"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102232 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102232", "+proj=tmerc +ellps=intl +x_0=92334.879 +y_0=109320.965 +lon_0=74d9'W +lat_0=4d41'N +k_0=1.000399787532524 +towgs84=221.899,274.136,-397.554,-2.808445910362777,0.4485085889126799,2.810172346791065,-2.199943 +no_defs");
Read the full Proj4js guide →