EPSG:CODE

EPSG:31287 MGI / Austria Lambert

Projected · Austria

Export Formats

OGC WKT
PROJCS[
    "MGI / Austria Lambert",
    GEOGCS[
        "MGI",
        DATUM[
            "Militar-Geographische_Institut",
            SPHEROID["Bessel 1841",6377397.155,299.1528128],
            TOWGS84[577.326,90.129,463.919,5.137,1.474,5.297,2.4232]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4312"]
    ],
    PROJECTION["Lambert_Conformal_Conic_2SP"],
    PARAMETER["latitude_of_origin",47.5],
    PARAMETER["central_meridian",13.3333333333333],
    PARAMETER["standard_parallel_1",49],
    PARAMETER["standard_parallel_2",46],
    PARAMETER["false_easting",400000],
    PARAMETER["false_northing",400000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AUTHORITY["EPSG","31287"]
]

Related Coordinate Systems

Available Transformations (29)

Transformations inherited from base CRS: EPSG:4312 (MGI)

Transformation Source → Target Accuracy (m)
4805 4312 0
4312 11057 0.14
4312 4258 0.15
4312 4326 0.5
4312 4258 1
4312 4326 1.5
4312 4258 1.5
4805 4312
MGI to WGS 84 (1) Deprecated
4312 4326 999
MGI to WGS 84 (2) Deprecated
4312 4326

Other CRS for AT

Other CRS using Militar-Geographische Institut (15)

Frequently Asked Questions

How do I add EPSG:31287 to GeoServer?

Add the following definition to your GeoServer configuration:

31287=PROJCS["MGI / Austria Lambert",GEOGCS["MGI",DATUM["Militar-Geographische_Institut",SPHEROID["Bessel 1841",6377397.155,299.1528128],TOWGS84[577.326,90.129,463.919,5.137,1.474,5.297,2.4232]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4312"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["latitude_of_origin",47.5],PARAMETER["central_meridian",13.3333333333333],PARAMETER["standard_parallel_1",49],PARAMETER["standard_parallel_2",46],PARAMETER["false_easting",400000],PARAMETER["false_northing",400000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","31287"]]
Read the full GeoServer guide →

How do I add EPSG:31287 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (31287, 'EPSG', 31287, '+proj=lcc +lat_0=47.5 +lon_0=13.3333333333333 +lat_1=49 +lat_2=46 +x_0=400000 +y_0=400000 +ellps=bessel +towgs84=577.326,90.129,463.919,5.137,1.474,5.297,2.4232 +units=m +no_defs +type=crs', 'PROJCS["MGI / Austria Lambert",GEOGCS["MGI",DATUM["Militar-Geographische_Institut",SPHEROID["Bessel 1841",6377397.155,299.1528128],TOWGS84[577.326,90.129,463.919,5.137,1.474,5.297,2.4232]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4312"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["latitude_of_origin",47.5],PARAMETER["central_meridian",13.3333333333333],PARAMETER["standard_parallel_1",49],PARAMETER["standard_parallel_2",46],PARAMETER["false_easting",400000],PARAMETER["false_northing",400000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","31287"]]');
Read the full PostGIS guide →

How do I add EPSG:31287 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_0=47.5"
  "+lon_0=13.3333333333333"
  "+lat_1=49"
  "+lat_2=46"
  "+x_0=400000"
  "+y_0=400000"
  "+ellps=bessel"
  "+towgs84=577.326,90.129,463.919,5.137,1.474,5.297,2.4232"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:31287 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:31287", "+proj=lcc +lat_0=47.5 +lon_0=13.3333333333333 +lat_1=49 +lat_2=46 +x_0=400000 +y_0=400000 +ellps=bessel +towgs84=577.326,90.129,463.919,5.137,1.474,5.297,2.4232 +units=m +no_defs +type=crs");
Read the full Proj4js guide →