Spatial referencing.
Definition: OGC Well Known Text
COMPD_CS["NAD83(PA11) + ASVD02 height", GEOGCS["NAD83(PA11)", DATUM["NAD83_National_Spatial_Reference_System_PA11", SPHEROID["GRS 1980",6378137,298.257222101, AUTHORITY["EPSG","7019"]], AUTHORITY["EPSG","1117"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433, AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","6322"]], VERT_CS["ASVD02 height", VERT_DATUM["American Samoa Vertical Datum of 2002",2005, AUTHORITY["EPSG","1125"]], UNIT["metre",1, AUTHORITY["EPSG","9001"]], AXIS["Gravity-related height",UP], AUTHORITY["EPSG","6643"]], AUTHORITY["EPSG","9526"]]
Definition: OGC Well Known Text 2 (2019)
COMPOUNDCRS["NAD83(PA11) + ASVD02 height", GEOGCRS["NAD83(PA11)", DATUM["NAD83 (National Spatial Reference System PA11)", 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["ASVD02 height", VDATUM["American Samoa Vertical Datum of 2002"], CS[vertical,1], AXIS["gravity-related height (H)",up, LENGTHUNIT["metre",1]]], USAGE[ SCOPE["Spatial referencing."], AREA["American Samoa - Tutuila island."], BBOX[-14.43,-170.88,-14.2,-170.51]], ID["EPSG",9526]]
Definition: ESRI Well Known Text
GEOGCS["GCS_NAD_1983_PA11", DATUM["D_NAD_1983_PA11", SPHEROID["GRS_1980",6378137.0,298.257222101]], PRIMEM["Greenwich",0.0], UNIT["Degree",0.0174532925199433]], VERTCS["ASVD02_height", VDATUM["American_Samoa_Vertical_Datum_of_2002"], 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": "NAD83(PA11) + ASVD02 height", "components": [ { "type": "GeographicCRS", "name": "NAD83(PA11)", "datum": { "type": "GeodeticReferenceFrame", "name": "NAD83 (National Spatial Reference System PA11)", "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": "ASVD02 height", "datum": { "type": "VerticalReferenceFrame", "name": "American Samoa Vertical Datum of 2002" }, "coordinate_system": { "subtype": "vertical", "axis": [ { "name": "Gravity-related height", "abbreviation": "H", "direction": "up", "unit": "metre" } ] } } ], "scope": "Spatial referencing.", "area": "American Samoa - Tutuila island.", "bbox": { "south_latitude": -14.43, "west_longitude": -170.88, "north_latitude": -14.2, "east_longitude": -170.51 }, "id": { "authority": "EPSG", "code": 9526 } }
Definition: GeoServer
9526=COMPD_CS["NAD83(PA11) + ASVD02 height",GEOGCS["NAD83(PA11)",DATUM["NAD83_National_Spatial_Reference_System_PA11",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","1117"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","6322"]],VERT_CS["ASVD02 height",VERT_DATUM["American Samoa Vertical Datum of 2002",2005,AUTHORITY["EPSG","1125"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","6643"]],AUTHORITY["EPSG","9526"]]
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 ( 9526, 'EPSG', 9526, '+proj=longlat +ellps=GRS80 +vunits=m +no_defs +type=crs', 'COMPD_CS["NAD83(PA11) + ASVD02 height",GEOGCS["NAD83(PA11)",DATUM["NAD83_National_Spatial_Reference_System_PA11",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","1117"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","6322"]],VERT_CS["ASVD02 height",VERT_DATUM["American Samoa Vertical Datum of 2002",2005,AUTHORITY["EPSG","1125"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","6643"]],AUTHORITY["EPSG","9526"]]');