EPSG:CODE

EPSG:8045 St. Stephen Grid (Ferro)

Projected · Europe - Lower Austria and Moravia

Export Formats

OGC WKT
PROJCS[
    "St. Stephen Grid (Ferro)",
    GEOGCS[
        "St. Stephen (Ferro)",
        DATUM[
            "St_Stephen_Ferro",
            SPHEROID["Zach 1812",6376045,310,AUTHORITY["EPSG","1026"]],
            AUTHORITY["EPSG","1189"]
        ],
        PRIMEM["Ferro",-17.6666666666667,AUTHORITY["EPSG","8909"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","8043"]
    ],
    PROJECTION["Cassini_Soldner"],
    PARAMETER["latitude_of_origin",48.2087611111111],
    PARAMETER["central_meridian",34.0409222222222],
    PARAMETER["false_easting",0],
    PARAMETER["false_northing",0],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AUTHORITY["EPSG","8045"]
]

Other CRS using St. Stephen (Ferro)

Frequently Asked Questions

How do I add EPSG:8045 to GeoServer?

Add the following definition to your GeoServer configuration:

8045=PROJCS["St. Stephen Grid (Ferro)",GEOGCS["St. Stephen (Ferro)",DATUM["St_Stephen_Ferro",SPHEROID["Zach 1812",6376045,310,AUTHORITY["EPSG","1026"]],AUTHORITY["EPSG","1189"]],PRIMEM["Ferro",-17.6666666666667,AUTHORITY["EPSG","8909"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","8043"]],PROJECTION["Cassini_Soldner"],PARAMETER["latitude_of_origin",48.2087611111111],PARAMETER["central_meridian",34.0409222222222],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","8045"]]
Read the full GeoServer guide →

How do I add EPSG:8045 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (8045, 'EPSG', 8045, '+proj=cass +lat_0=48.2087611111111 +lon_0=34.0409222222222 +x_0=0 +y_0=0 +a=6376045 +rf=310 +pm=ferro +units=m +no_defs +type=crs', 'PROJCS["St. Stephen Grid (Ferro)",GEOGCS["St. Stephen (Ferro)",DATUM["St_Stephen_Ferro",SPHEROID["Zach 1812",6376045,310,AUTHORITY["EPSG","1026"]],AUTHORITY["EPSG","1189"]],PRIMEM["Ferro",-17.6666666666667,AUTHORITY["EPSG","8909"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","8043"]],PROJECTION["Cassini_Soldner"],PARAMETER["latitude_of_origin",48.2087611111111],PARAMETER["central_meridian",34.0409222222222],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","8045"]]');
Read the full PostGIS guide →

How do I add EPSG:8045 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=cass"
  "+lat_0=48.2087611111111"
  "+lon_0=34.0409222222222"
  "+x_0=0"
  "+y_0=0"
  "+a=6376045"
  "+rf=310"
  "+pm=ferro"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:8045 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:8045", "+proj=cass +lat_0=48.2087611111111 +lon_0=34.0409222222222 +x_0=0 +y_0=0 +a=6376045 +rf=310 +pm=ferro +units=m +no_defs +type=crs");
Read the full Proj4js guide →