EPSG:CODE

EPSG:31370 BD72 / Belgian Lambert 72

Projected · Belgium - onshore

Export Formats

OGC WKT
PROJCS[
    "BD72 / Belgian Lambert 72",
    GEOGCS[
        "BD72",
        DATUM[
            "Reseau_National_Belge_1972",
            SPHEROID["International 1924",6378388,297],
            TOWGS84[-106.8686,52.2978,-103.7239,-0.3366,0.457,-1.8422,-1.2747]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4313"]
    ],
    PROJECTION["Lambert_Conformal_Conic_2SP"],
    PARAMETER["latitude_of_origin",90],
    PARAMETER["central_meridian",4.36748666666667],
    PARAMETER["standard_parallel_1",51.1666672333333],
    PARAMETER["standard_parallel_2",49.8333339],
    PARAMETER["false_easting",150000.013],
    PARAMETER["false_northing",5400088.438],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","31370"]
]

Related Coordinate Systems

Available Transformations (8)

Transformations inherited from base CRS: EPSG:4313 (BD72)

Other CRS using Reseau National Belge 1972

Frequently Asked Questions

How do I add EPSG:31370 to GeoServer?

Add the following definition to your GeoServer configuration:

31370=PROJCS["BD72 / Belgian Lambert 72",GEOGCS["BD72",DATUM["Reseau_National_Belge_1972",SPHEROID["International 1924",6378388,297],TOWGS84[-106.8686,52.2978,-103.7239,-0.3366,0.457,-1.8422,-1.2747]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4313"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.36748666666667],PARAMETER["standard_parallel_1",51.1666672333333],PARAMETER["standard_parallel_2",49.8333339],PARAMETER["false_easting",150000.013],PARAMETER["false_northing",5400088.438],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","31370"]]
Read the full GeoServer guide →

How do I add EPSG:31370 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (31370, 'EPSG', 31370, '+proj=lcc +lat_0=90 +lon_0=4.36748666666667 +lat_1=51.1666672333333 +lat_2=49.8333339 +x_0=150000.013 +y_0=5400088.438 +ellps=intl +towgs84=-106.8686,52.2978,-103.7239,-0.3366,0.457,-1.8422,-1.2747 +units=m +no_defs +type=crs', 'PROJCS["BD72 / Belgian Lambert 72",GEOGCS["BD72",DATUM["Reseau_National_Belge_1972",SPHEROID["International 1924",6378388,297],TOWGS84[-106.8686,52.2978,-103.7239,-0.3366,0.457,-1.8422,-1.2747]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4313"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.36748666666667],PARAMETER["standard_parallel_1",51.1666672333333],PARAMETER["standard_parallel_2",49.8333339],PARAMETER["false_easting",150000.013],PARAMETER["false_northing",5400088.438],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","31370"]]');
Read the full PostGIS guide →

How do I add EPSG:31370 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_0=90"
  "+lon_0=4.36748666666667"
  "+lat_1=51.1666672333333"
  "+lat_2=49.8333339"
  "+x_0=150000.013"
  "+y_0=5400088.438"
  "+ellps=intl"
  "+towgs84=-106.8686,52.2978,-103.7239,-0.3366,0.457,-1.8422,-1.2747"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:31370 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:31370", "+proj=lcc +lat_0=90 +lon_0=4.36748666666667 +lat_1=51.1666672333333 +lat_2=49.8333339 +x_0=150000.013 +y_0=5400088.438 +ellps=intl +towgs84=-106.8686,52.2978,-103.7239,-0.3366,0.457,-1.8422,-1.2747 +units=m +no_defs +type=crs");
Read the full Proj4js guide →