Definition: OGC Well Known Text
PROJCS["WGS84_/_Lambert_Azim_Mozambique", GEOGCS["unknown", DATUM["Unknown based on Normal Sphere (r=6370997) ellipsoid", SPHEROID["Normal Sphere (r=6370997)",6370997,0]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433, AUTHORITY["EPSG","9122"]]], PROJECTION["Lambert_Azimuthal_Equal_Area"], PARAMETER["latitude_of_center",5], PARAMETER["longitude_of_center",20], PARAMETER["false_easting",0], PARAMETER["false_northing",0], UNIT["metre",1, AUTHORITY["EPSG","9001"]], AXIS["Easting",EAST], AXIS["Northing",NORTH], AUTHORITY["EPSG","42106"]]
Definition: OGC Well Known Text 2 (2019)
PROJCRS["WGS84_/_Lambert_Azim_Mozambique", BASEGEOGCRS["unknown", DATUM["Unknown based on Normal Sphere (r=6370997) ellipsoid", ELLIPSOID["Normal Sphere (r=6370997)",6370997,0, LENGTHUNIT["metre",1]]], PRIMEM["Greenwich",0, ANGLEUNIT["degree",0.0174532925199433]]], CONVERSION["unknown", METHOD["Lambert Azimuthal Equal Area (Spherical)", ID["EPSG",1027]], PARAMETER["Latitude of natural origin",5, ANGLEUNIT["degree",0.0174532925199433], ID["EPSG",8801]], PARAMETER["Longitude of natural origin",20, ANGLEUNIT["degree",0.0174532925199433], ID["EPSG",8802]], PARAMETER["False easting",0, LENGTHUNIT["metre",1], ID["EPSG",8806]], PARAMETER["False northing",0, LENGTHUNIT["metre",1], ID["EPSG",8807]]], CS[Cartesian,2], AXIS["(E)",east, ORDER[1], LENGTHUNIT["metre",1]], AXIS["(N)",north, ORDER[2], LENGTHUNIT["metre",1]], ID["EPSG",42106]]
Definition: ESRI Well Known Text
PROJCS["WGS84_Lambert_Azim_Mozambique", GEOGCS["GCS_unknown", DATUM["D_Unknown_based_on_Normal_Sphere_r_6370997_ellipsoid", SPHEROID["Normal_Sphere_r_6370997",6370997.0,0.0]], PRIMEM["Greenwich",0.0], UNIT["Degree",0.0174532925199433]], PROJECTION["Lambert_Azimuthal_Equal_Area"], PARAMETER["latitude_of_center",5.0], PARAMETER["longitude_of_center",20.0], PARAMETER["false_easting",0.0], PARAMETER["false_northing",0.0], UNIT["Meter",1.0]]
Definition: JSON
{ "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json", "type": "ProjectedCRS", "name": "WGS84_/_Lambert_Azim_Mozambique", "base_crs": { "name": "unknown", "datum": { "type": "GeodeticReferenceFrame", "name": "Unknown based on Normal Sphere (r=6370997) ellipsoid", "ellipsoid": { "name": "Normal Sphere (r=6370997)", "radius": 6370997 } }, "coordinate_system": { "subtype": "ellipsoidal", "axis": [ { "name": "Longitude", "abbreviation": "lon", "direction": "east", "unit": "degree" }, { "name": "Latitude", "abbreviation": "lat", "direction": "north", "unit": "degree" } ] } }, "conversion": { "name": "unknown", "method": { "name": "Lambert Azimuthal Equal Area (Spherical)", "id": { "authority": "EPSG", "code": 1027 } }, "parameters": [ { "name": "Latitude of natural origin", "value": 5, "unit": "degree", "id": { "authority": "EPSG", "code": 8801 } }, { "name": "Longitude of natural origin", "value": 20, "unit": "degree", "id": { "authority": "EPSG", "code": 8802 } }, { "name": "False easting", "value": 0, "unit": "metre", "id": { "authority": "EPSG", "code": 8806 } }, { "name": "False northing", "value": 0, "unit": "metre", "id": { "authority": "EPSG", "code": 8807 } } ] }, "coordinate_system": { "subtype": "Cartesian", "axis": [ { "name": "Easting", "abbreviation": "E", "direction": "east", "unit": "metre" }, { "name": "Northing", "abbreviation": "N", "direction": "north", "unit": "metre" } ] }, "id": { "authority": "EPSG", "code": 42106 } }
Definition: GeoServer
42106=PROJCS["WGS84_/_Lambert_Azim_Mozambique",GEOGCS["unknown",DATUM["Unknown based on Normal Sphere (r=6370997) ellipsoid",SPHEROID["Normal Sphere (r=6370997)",6370997,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",5],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","42106"]]
Definition: Mapnik
<?xml version="1.0" encoding="utf-8"?> <Map srs="+proj=laea +lat_0=5 +lon_0=20 +x_0=0 +y_0=0 +ellps=sphere +units=m +no_defs +type=crs"> <Layer srs="+proj=laea +lat_0=5 +lon_0=20 +x_0=0 +y_0=0 +ellps=sphere +units=m +no_defs +type=crs"> </Layer> </Map>
Definition: SQL (PostGIS)
INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 42106, 'EPSG', 42106, '+proj=laea +lat_0=5 +lon_0=20 +x_0=0 +y_0=0 +ellps=sphere +units=m +no_defs +type=crs', 'PROJCS["WGS84_/_Lambert_Azim_Mozambique",GEOGCS["unknown",DATUM["Unknown based on Normal Sphere (r=6370997) ellipsoid",SPHEROID["Normal Sphere (r=6370997)",6370997,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",5],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","42106"]]');