EPSG:31300 — BD72 / Belge Lambert 72
Projected · Belgium - onshore
Export Formats
OGC WKT
PROJCS[
"BD72 / Belge 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_Belgium"],
PARAMETER["latitude_of_origin",90],
PARAMETER["central_meridian",4.35693972222222],
PARAMETER["standard_parallel_1",49.8333333333333],
PARAMETER["standard_parallel_2",51.1666666666667],
PARAMETER["false_easting",150000.01256],
PARAMETER["false_northing",5400088.4378],
UNIT["metre",1,AUTHORITY["EPSG","9001"]],
AXIS["Easting",EAST],
AXIS["Northing",NORTH],
AUTHORITY["EPSG","31300"]
]Related Coordinate Systems
Available Transformations (5)
Other CRS using Reseau National Belge 1972
Frequently Asked Questions
How do I add EPSG:31300 to GeoServer?
Add the following definition to your GeoServer configuration:
31300=PROJCS["BD72 / Belge 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_Belgium"],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.35693972222222],PARAMETER["standard_parallel_1",49.8333333333333],PARAMETER["standard_parallel_2",51.1666666666667],PARAMETER["false_easting",150000.01256],PARAMETER["false_northing",5400088.4378],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","31300"]] Read the full GeoServer guide →
How do I add EPSG:31300 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (31300, 'EPSG', 31300, '+proj=lcc +lat_0=90 +lon_0=4.35693972222222 +lat_1=49.8333333333333 +lat_2=51.1666666666667 +x_0=150000.01256 +y_0=5400088.4378 +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 / Belge 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_Belgium"],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",4.35693972222222],PARAMETER["standard_parallel_1",49.8333333333333],PARAMETER["standard_parallel_2",51.1666666666667],PARAMETER["false_easting",150000.01256],PARAMETER["false_northing",5400088.4378],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","31300"]]'); Read the full PostGIS guide →
How do I add EPSG:31300 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=lcc"
"+lat_0=90"
"+lon_0=4.35693972222222"
"+lat_1=49.8333333333333"
"+lat_2=51.1666666666667"
"+x_0=150000.01256"
"+y_0=5400088.4378"
"+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:31300 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("EPSG:31300", "+proj=lcc +lat_0=90 +lon_0=4.35693972222222 +lat_1=49.8333333333333 +lat_2=51.1666666666667 +x_0=150000.01256 +y_0=5400088.4378 +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 →