EPSG:CODE

EPSG:31290 MGI (Ferro) / Austria zone M34

Projected · Austria - east of 14°50'E

Export Formats

WKT2
PROJCRS[
    "MGI (Ferro) / Austria zone M34",
    BASEGEOGCRS[
        "MGI (Ferro)",
        DATUM[
            "Militar-Geographische Institut (Ferro)",
            ELLIPSOID[
                "Bessel 1841",
                6377397.155,
                299.1528128,
                LENGTHUNIT["metre",1,ID["EPSG",9001]],
                ID["EPSG",7004]
            ],
            ID["EPSG",6805]
        ],
        PRIMEM[
            "Ferro",
            -17.666666667,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8909]
        ],
        ID["EPSG",4805]
    ],
    CONVERSION[
        "Austria zone M34",
        METHOD["Transverse Mercator",ID["EPSG",9807]],
        PARAMETER[
            "Latitude of natural origin",
            0,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8801]
        ],
        PARAMETER[
            "Longitude of natural origin",
            34,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8802]
        ],
        PARAMETER[
            "Scale factor at natural origin",
            1,
            SCALEUNIT["unity",1,ID["EPSG",9201]],
            ID["EPSG",8805]
        ],
        PARAMETER[
            "False easting",
            750000,
            LENGTHUNIT["metre",1,ID["EPSG",9001]],
            ID["EPSG",8806]
        ],
        PARAMETER[
            "False northing",
            0,
            LENGTHUNIT["metre",1,ID["EPSG",9001]],
            ID["EPSG",8807]
        ],
        ID["EPSG",18049]
    ],
    CS[Cartesian,2,ID["EPSG",4530]],
    AXIS["Northing (X)",north],
    AXIS["Easting (Y)",east],
    LENGTHUNIT["metre",1,ID["EPSG",9001]],
    ID["EPSG",31290]
]

Related Coordinate Systems

Available Transformations (8)

Transformations inherited from base CRS: EPSG:4805 (MGI (Ferro))

Other CRS using Militar-Geographische Institut (Ferro)

Frequently Asked Questions

How do I add EPSG:31290 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (31290, 'EPSG', 31290, '+proj=tmerc +lat_0=0 +lon_0=34 +k=1 +x_0=750000 +y_0=0 +ellps=bessel +pm=ferro +units=m +no_defs +type=crs', '');
Read the full PostGIS guide →

How do I add EPSG:31290 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+lat_0=0"
  "+lon_0=34"
  "+k=1"
  "+x_0=750000"
  "+y_0=0"
  "+ellps=bessel"
  "+pm=ferro"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:31290 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:31290", "+proj=tmerc +lat_0=0 +lon_0=34 +k=1 +x_0=750000 +y_0=0 +ellps=bessel +pm=ferro +units=m +no_defs +type=crs");
Read the full Proj4js guide →