EPSG:CODE

ESRI:104135 GCS MSK 1942

Geographic 2D · Mongolia

Export Formats

OGC WKT
GEOGCS[
    "GCS_MSK_1942",
    DATUM["D_Pulkovo_1942",SPHEROID["Krasovsky_1940",6378245.0,298.3]],
    PRIMEM["Greenwich",0.0],
    UNIT["Degree",0.0174532925199433]
]

Frequently Asked Questions

How do I add ESRI:104135 to GeoServer?

Add the following definition to your GeoServer configuration:

104135=GEOGCS["GCS_MSK_1942",DATUM["D_Pulkovo_1942",SPHEROID["Krasovsky_1940",6378245.0,298.3]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]
Read the full GeoServer guide →

How do I add ESRI:104135 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (104135, 'ESRI', 104135, '+proj=lonlat +ellps=krass +towgs84=-78.04484474492369,-204.5198973313767,-77.44723022350631,-1.773687750274378,3.319782766651632,-1.042636259684,4.951082173132448 +no_defs', 'GEOGCS["GCS_MSK_1942",DATUM["D_Pulkovo_1942",SPHEROID["Krasovsky_1940",6378245.0,298.3]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]');
Read the full PostGIS guide →

How do I add ESRI:104135 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lonlat"
  "+ellps=krass"
  "+towgs84=-78.04484474492369,-204.5198973313767,-77.44723022350631,-1.773687750274378,3.319782766651632,-1.042636259684,4.951082173132448"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:104135 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:104135", "+proj=lonlat +ellps=krass +towgs84=-78.04484474492369,-204.5198973313767,-77.44723022350631,-1.773687750274378,3.319782766651632,-1.042636259684,4.951082173132448 +no_defs");
Read the full Proj4js guide →