Geocentric translations (geog2D domain)
Derived at 84 stations. Accuracy 15m, 6m and 9m in X, Y and Z axes.
U.S. Defense Mapping Agency TR8350.2 September 1987.
2020-03-14
degree (supplier to define representation)
EPSG
2011-07-27
Geodesy.
Uses GRS 1967 ellipsoid with 1/f to exactly 2 decimal places. In Brazil only, replaced by SAD69(96) (CRS code 5527).
Ellipsoidal 2D CS. Axes: latitude, longitude. Orientations: north, east. UoM: degree
Definition: OGC Well Known Text
GEOGCS["SAD69", DATUM["South_American_Datum_1969", SPHEROID["GRS 1967 Modified",6378160,298.25], TOWGS84[-57,1,-41,0,0,0,0]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.0174532925199433, AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4618"]]
Definition: OGC Well Known Text 2 (2019)
GEOGCRS["SAD69", DATUM["South American Datum 1969", ELLIPSOID["GRS 1967 Modified",6378160,298.25, 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]], USAGE[ SCOPE["Geodesy."], AREA["Brazil - onshore and offshore. In rest of South America - onshore north of approximately 45°S and Tierra del Fuego."], BBOX[-55.96,-91.72,12.52,-25.28]], ID["EPSG",4618]]
Definition: JSON
{ "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json", "type": "GeographicCRS", "name": "SAD69", "datum": { "type": "GeodeticReferenceFrame", "name": "South American Datum 1969", "ellipsoid": { "name": "GRS 1967 Modified", "semi_major_axis": 6378160, "inverse_flattening": 298.25 } }, "coordinate_system": { "subtype": "ellipsoidal", "axis": [ { "name": "Geodetic latitude", "abbreviation": "Lat", "direction": "north", "unit": "degree" }, { "name": "Geodetic longitude", "abbreviation": "Lon", "direction": "east", "unit": "degree" } ] }, "scope": "Geodesy.", "area": "Brazil - onshore and offshore. In rest of South America - onshore north of approximately 45°S and Tierra del Fuego.", "bbox": { "south_latitude": -55.96, "west_longitude": -91.72, "north_latitude": 12.52, "east_longitude": -25.28 }, "id": { "authority": "EPSG", "code": 4618 } }
Definition: GeoServer
4618=GEOGCS["SAD69",DATUM["South_American_Datum_1969",SPHEROID["GRS 1967 Modified",6378160,298.25],TOWGS84[-57,1,-41,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4618"]]
Definition: Mapnik
<?xml version="1.0" encoding="utf-8"?> <Map srs="+proj=longlat +ellps=aust_SA +towgs84=-57,1,-41,0,0,0,0 +no_defs +type=crs"> <Layer srs="+proj=longlat +ellps=aust_SA +towgs84=-57,1,-41,0,0,0,0 +no_defs +type=crs"> </Layer> </Map>
Definition: SQL (PostGIS)
INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 4618, 'EPSG', 4618, '+proj=longlat +ellps=aust_SA +towgs84=-57,1,-41,0,0,0,0 +no_defs +type=crs', 'GEOGCS["SAD69",DATUM["South_American_Datum_1969",SPHEROID["GRS 1967 Modified",6378160,298.25],TOWGS84[-57,1,-41,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4618"]]');