Skip to content
transform

Convert Adindan to WGS 84

Convert coordinates from Adindan (EPSG:4201) 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-4201-to-epsg-4326

Official EPSG transformations from Adindan to WGS 84

The EPSG Geodetic Parameter Dataset defines 7 transformations between Adindan (EPSG:4201) and WGS 84 (EPSG:4326). Each applies to a specific area — pick the one whose area of use covers your data.

Adindan to WGS 84 (4)

EPSG:1103±6 mBest accuracy
Method:
Geocentric translations (geog2D domain)
Area of use:
Ethiopia
Scope:
Military survey.
ParameterValueUnit
X-axis translation(tx)-165metre
Y-axis translation(ty)-11metre
Z-axis translation(tz)206metre

Derived at 8 stations. Accuracy 3m in each axis.

Adindan to WGS 84 (7)

EPSG:1106±7 m
Method:
Geocentric translations (geog2D domain)
Area of use:
Africa - South Sudan and Sudan onshore
Scope:
Military survey.
ParameterValueUnit
X-axis translation(tx)-161metre
Y-axis translation(ty)-14metre
Z-axis translation(tz)205metre

Derived at 14 stations. Accuracy 3m, 5m and 3m in X, Y and Z axes.

Adindan to WGS 84 (1)

EPSG:1100±9 m
Method:
Geocentric translations (geog2D domain)
Area of use:
Africa - Eritrea, Ethiopia, South Sudan and Sudan
Scope:
Military survey.
ParameterValueUnit
X-axis translation(tx)-166metre
Y-axis translation(ty)-15metre
Z-axis translation(tz)204metre

Derived at 22 stations. Accuracy 5m in each axis.

Adindan to WGS 84 (2)

EPSG:1101±44 m
Method:
Geocentric translations (geog2D domain)
Area of use:
Burkina Faso
Scope:
Military survey.
ParameterValueUnit
X-axis translation(tx)-118metre
Y-axis translation(ty)-14metre
Z-axis translation(tz)218metre

Derived at 1 station connected to the Adindan (Blue Nile 1958) network through the 1968-69 12th parallel traverse. Accuracy 25m in each axis. Note: the Adindan (Blue Nile 1958) CRS is used in Ethiopia and Sudan, not Burkino Faso.

Adindan to WGS 84 (3)

EPSG:1102±44 m
Method:
Geocentric translations (geog2D domain)
Area of use:
Cameroon - onshore
Scope:
Military survey.
ParameterValueUnit
X-axis translation(tx)-134metre
Y-axis translation(ty)-2metre
Z-axis translation(tz)210metre

Derived at 1 station connected to the Adindan (Blue Nile 1958) network through the 1968-69 12th parallel traverse. Accuracy 25m in each axis. Note: the Adindan (Blue Nile 1958) CRS is used in Ethiopia and Sudan, not Cameroon.

Adindan to WGS 84 (5)

EPSG:1104±44 m
Method:
Geocentric translations (geog2D domain)
Area of use:
Mali
Scope:
Military survey.
ParameterValueUnit
X-axis translation(tx)-123metre
Y-axis translation(ty)-20metre
Z-axis translation(tz)220metre

Derived at 1 station connected to the Adindan (Blue Nile 1958) network through the 1968-69 12th parallel traverse. Accuracy 25m in each axis. Note: the Adindan (Blue Nile 1958) CRS is used in Ethiopia and Sudan, not Mali.

Adindan to WGS 84 (6)

EPSG:1105±44 m
Method:
Geocentric translations (geog2D domain)
Area of use:
Senegal - onshore
Scope:
Military survey.
ParameterValueUnit
X-axis translation(tx)-128metre
Y-axis translation(ty)-18metre
Z-axis translation(tz)224metre

Derived at 2 stations connected to the Adindan (Blue Nile 1958) network through the 1968-69 12th parallel traverse. Accuracy 25m in each axis. Note: The Adindan (Blue Nile 1958) CRS is used in Ethiopia and Sudan, not Senegal.

Convert EPSG:4201 to EPSG:4326 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4201Adindan

geographic system using latitude and longitude on an ellipsoid · Area of use: Africa - Eritrea, Ethiopia, South Sudan and Sudan

+proj=longlat +a=6378249.145 +rf=293.465 +towgs84=-166,-15,204,0,0,0,0 +no_defs +type=crs
More about EPSG:4201

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 Adindan to WGS 84?
The most accurate official EPSG transformation between these systems is accurate to about ±6 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:4201