EPSG:CODE

ESRI:104697 S JTSK/05 Ferro 3D

Geographic 2D · Czechia

Export Formats

OGC WKT
GEOGCS[
    "S_JTSK/05_Ferro_3D",
    DATUM["D_S_JTSK_05",SPHEROID["Bessel_1841",6377397.155,299.1528128]],
    PRIMEM["Greenwich",0.0],
    UNIT["Degree",0.0174532925199433],
    LINUNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:104697 to GeoServer?

Add the following definition to your GeoServer configuration:

104697=GEOGCS["S_JTSK/05_Ferro_3D",DATUM["D_S_JTSK_05",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433],LINUNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:104697 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (104697, 'ESRI', 104697, '+proj=lonlat +ellps=bessel +towgs84=572.213,85.334,461.94,4.9732,1.529,5.2484,3.5378 +no_defs', 'GEOGCS["S_JTSK/05_Ferro_3D",DATUM["D_S_JTSK_05",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433],LINUNIT["Meter",1.0]]');
Read the full PostGIS guide →

How do I add ESRI:104697 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lonlat"
  "+ellps=bessel"
  "+towgs84=572.213,85.334,461.94,4.9732,1.529,5.2484,3.5378"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:104697 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:104697", "+proj=lonlat +ellps=bessel +towgs84=572.213,85.334,461.94,4.9732,1.529,5.2484,3.5378 +no_defs");
Read the full Proj4js guide →