Spatial referencing.
Definition: OGC Well Known Text
COMPD_CS["RGF93 v2 + NGF-IGN78 height", GEOGCS["RGF93 v2", DATUM["Reseau_Geodesique_Francais_1993_v2", SPHEROID["GRS 1980",6378137,298.257222101, AUTHORITY["EPSG","7019"]], AUTHORITY["EPSG","1312"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433, AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","9777"]], VERT_CS["NGF-IGN78 height", VERT_DATUM["Nivellement General de la France - IGN78",2005, AUTHORITY["EPSG","5120"]], UNIT["metre",1, AUTHORITY["EPSG","9001"]], AXIS["Gravity-related height",UP], AUTHORITY["EPSG","5721"]], AUTHORITY["EPSG","9539"]]
Definition: OGC Well Known Text 2 (2019)
COMPOUNDCRS["RGF93 v2 + NGF-IGN78 height", GEOGCRS["RGF93 v2", DATUM["Reseau Geodesique Francais 1993 v2", ELLIPSOID["GRS 1980",6378137,298.257222101, LENGTHUNIT["metre",1]]], PRIMEM["Greenwich",0, ANGLEUNIT["degree",0.0174532925199433]], CS[ellipsoidal,2], AXIS["geodetic latitude (Lat)",north, ORDER[1], ANGLEUNIT["degree",0.0174532925199433]], AXIS["geodetic longitude (Lon)",east, ORDER[2], ANGLEUNIT["degree",0.0174532925199433]]], VERTCRS["NGF-IGN78 height", VDATUM["Nivellement General de la France - IGN78"], CS[vertical,1], AXIS["gravity-related height (H)",up, LENGTHUNIT["metre",1]]], USAGE[ SCOPE["Spatial referencing."], AREA["France - Corsica onshore."], BBOX[41.31,8.5,43.07,9.63]], ID["EPSG",9539]]
Definition: ESRI Well Known Text
GEOGCS["RGF93_v2", DATUM["Reseau_Geodesique_Francais_1993_v2", SPHEROID["GRS_1980",6378137.0,298.257222101]], PRIMEM["Greenwich",0.0], UNIT["Degree",0.0174532925199433]], VERTCS["NGF_IGN78", VDATUM["Nivellement_General_de_la_France_IGN78"], PARAMETER["Vertical_Shift",0.0], PARAMETER["Direction",1.0], UNIT["Meter",1.0]]
Definition: JSON
{ "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json", "type": "CompoundCRS", "name": "RGF93 v2 + NGF-IGN78 height", "components": [ { "type": "GeographicCRS", "name": "RGF93 v2", "datum": { "type": "GeodeticReferenceFrame", "name": "Reseau Geodesique Francais 1993 v2", "ellipsoid": { "name": "GRS 1980", "semi_major_axis": 6378137, "inverse_flattening": 298.257222101 } }, "coordinate_system": { "subtype": "ellipsoidal", "axis": [ { "name": "Geodetic latitude", "abbreviation": "Lat", "direction": "north", "unit": "degree" }, { "name": "Geodetic longitude", "abbreviation": "Lon", "direction": "east", "unit": "degree" } ] } }, { "type": "VerticalCRS", "name": "NGF-IGN78 height", "datum": { "type": "VerticalReferenceFrame", "name": "Nivellement General de la France - IGN78" }, "coordinate_system": { "subtype": "vertical", "axis": [ { "name": "Gravity-related height", "abbreviation": "H", "direction": "up", "unit": "metre" } ] } } ], "scope": "Spatial referencing.", "area": "France - Corsica onshore.", "bbox": { "south_latitude": 41.31, "west_longitude": 8.5, "north_latitude": 43.07, "east_longitude": 9.63 }, "id": { "authority": "EPSG", "code": 9539 } }
Definition: GeoServer
9539=COMPD_CS["RGF93 v2 + NGF-IGN78 height",GEOGCS["RGF93 v2",DATUM["Reseau_Geodesique_Francais_1993_v2",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","1312"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","9777"]],VERT_CS["NGF-IGN78 height",VERT_DATUM["Nivellement General de la France - IGN78",2005,AUTHORITY["EPSG","5120"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5721"]],AUTHORITY["EPSG","9539"]]
Definition: Mapnik
<?xml version="1.0" encoding="utf-8"?> <Map srs="+proj=longlat +ellps=GRS80 +vunits=m +no_defs +type=crs"> <Layer srs="+proj=longlat +ellps=GRS80 +vunits=m +no_defs +type=crs"> </Layer> </Map>
Definition: SQL (PostGIS)
INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 9539, 'EPSG', 9539, '+proj=longlat +ellps=GRS80 +vunits=m +no_defs +type=crs', 'COMPD_CS["RGF93 v2 + NGF-IGN78 height",GEOGCS["RGF93 v2",DATUM["Reseau_Geodesique_Francais_1993_v2",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","1312"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","9777"]],VERT_CS["NGF-IGN78 height",VERT_DATUM["Nivellement General de la France - IGN78",2005,AUTHORITY["EPSG","5120"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5721"]],AUTHORITY["EPSG","9539"]]');