ESRI
ESRI
Carthage (grads)
Definition: OGC Well Known Text
GEOGCS["GCS_Carthage_Grad", DATUM["Carthage", SPHEROID["Clarke 1880 (IGN)",6378249.2,293.466021293627, AUTHORITY["EPSG","7011"]], AUTHORITY["EPSG","6223"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["grad",0.0157079632679489, AUTHORITY["EPSG","9105"]], AUTHORITY["ESRI","37225"]]
Definition: OGC Well Known Text 2 (2019)
GEOGCRS["GCS_Carthage_Grad", DATUM["Carthage", ELLIPSOID["Clarke 1880 (IGN)",6378249.2,293.466021293627, LENGTHUNIT["metre",1]]], PRIMEM["Greenwich",0, ANGLEUNIT["degree",0.0174532925199433]], CS[ellipsoidal,2], AXIS["geodetic latitude (Lat)",north, ORDER[1], ANGLEUNIT["grad",0.0157079632679489]], AXIS["geodetic longitude (Lon)",east, ORDER[2], ANGLEUNIT["grad",0.0157079632679489]], USAGE[ SCOPE["Not known."], AREA["Tunisia - onshore and offshore."], BBOX[30.23,7.49,38.41,13.67]], ID["ESRI",37225]]
Definition: JSON
{ "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json", "type": "GeographicCRS", "name": "GCS_Carthage_Grad", "datum": { "type": "GeodeticReferenceFrame", "name": "Carthage", "ellipsoid": { "name": "Clarke 1880 (IGN)", "semi_major_axis": 6378249.2, "semi_minor_axis": 6356515 } }, "coordinate_system": { "subtype": "ellipsoidal", "axis": [ { "name": "Geodetic latitude", "abbreviation": "Lat", "direction": "north", "unit": { "type": "AngularUnit", "name": "grad", "conversion_factor": 0.0157079632679489 } }, { "name": "Geodetic longitude", "abbreviation": "Lon", "direction": "east", "unit": { "type": "AngularUnit", "name": "grad", "conversion_factor": 0.0157079632679489 } } ] }, "scope": "Not known.", "area": "Tunisia - onshore and offshore.", "bbox": { "south_latitude": 30.23, "west_longitude": 7.49, "north_latitude": 38.41, "east_longitude": 13.67 }, "id": { "authority": "ESRI", "code": 37225 } }
Definition: GeoServer
37225=GEOGCS["GCS_Carthage_Grad",DATUM["Carthage",SPHEROID["Clarke 1880 (IGN)",6378249.2,293.466021293627,AUTHORITY["EPSG","7011"]],AUTHORITY["EPSG","6223"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["grad",0.0157079632679489,AUTHORITY["EPSG","9105"]],AUTHORITY["ESRI","37225"]]
Definition: Mapnik
<?xml version="1.0" encoding="utf-8"?> <Map srs="+proj=longlat +ellps=clrk80ign +no_defs +type=crs"> <Layer srs="+proj=longlat +ellps=clrk80ign +no_defs +type=crs"> </Layer> </Map>
Definition: SQL (PostGIS)
INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 37225, 'ESRI', 37225, '+proj=longlat +ellps=clrk80ign +no_defs +type=crs', 'GEOGCS["GCS_Carthage_Grad",DATUM["Carthage",SPHEROID["Clarke 1880 (IGN)",6378249.2,293.466021293627,AUTHORITY["EPSG","7011"]],AUTHORITY["EPSG","6223"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["grad",0.0157079632679489,AUTHORITY["EPSG","9105"]],AUTHORITY["ESRI","37225"]]');