Skip to content
transform

Convert Camacupa 2015 to WGS 84

Convert coordinates from Camacupa 2015 (EPSG:8694) to WGS 84 (EPSG:4326) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-8694-to-epsg-4326

Official EPSG transformation from Camacupa 2015 to WGS 84

The EPSG Geodetic Parameter Dataset defines 1 transformation between Camacupa 2015 (EPSG:8694) and WGS 84 (EPSG:4326). Its parameters, accuracy and area of use are listed below.

Camacupa 2015 to WGS 84 (11)

EPSG:8882±3 m
Method:
Coordinate Frame rotation (geog2D domain)
Area of use:
Angola
Scope:
(null/copy) Approximation for medium and low accuracy applications assuming equality between plate-fixed static and earth-fixed dynamic CRSs, ignoring static/dynamic CRS differences.
ParameterValueUnit
X-axis translation(tx)-93.799metre
Y-axis translation(ty)-132.737metre
Z-axis translation(tz)-219.073metre
X-axis rotation(rx)1.844arc-second
Y-axis rotation(ry)-0.648arc-second
Z-axis rotation(rz)6.37arc-second
Scale difference(ds)-0.169parts per million

Used by CIDDEMA for delimitation of Angola's EEZ boundary. Derived by Univ. of Lisbon using 38 REPANGOL points. Average horizontal error 1m, vertical 3m; max radial error 6m. Application offshore differs from Camacupa 1948 to WGS 84 by approx 25m.

Convert EPSG:8694 to EPSG:4326 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

transformer = Transformer.from_crs("EPSG:8694", "EPSG:4326", always_xy=True)
x, y = transformer.transform(-73.9857, 40.7484)
print(x, y)

Source: EPSG:8694Camacupa 2015

geographic system using latitude and longitude on an ellipsoid · Area of use: Angola

+proj=longlat +a=6378249.145 +rf=293.465 +towgs84=-93.799,-132.737,-219.073,-1.844,0.648,-6.37,-0.169 +no_defs +type=crs
More about EPSG:8694

Target: EPSG:4326WGS 84

geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)

+proj=longlat +datum=WGS84 +no_defs +type=crs
More about EPSG:4326

Frequently asked questions

How accurate is converting Camacupa 2015 to WGS 84?
The most accurate official EPSG transformation between these systems is accurate to about ±3 m within its stated area of use. Browser-based converters approximate datum shifts with Helmert parameters; for surveying-grade work apply the official transformation in a desktop GIS.
Does my data leave the browser when I use this converter?
No. All coordinate transformations are computed locally in your browser using proj4js. The coordinates you enter are never transmitted to any server.
Need the reverse? Convert EPSG:4326 to EPSG:8694