Skip to content
transform

Convert PSD93 to WGS 72

Convert coordinates from PSD93 (EPSG:4134) to WGS 72 (EPSG:4322) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4134-to-epsg-4322

Official EPSG transformation from PSD93 to WGS 72

The EPSG Geodetic Parameter Dataset defines 1 transformation between PSD93 (EPSG:4134) and WGS 72 (EPSG:4322). Its parameters, accuracy and area of use are listed below.

PSD93 to WGS 72 (1)

EPSG:1616±1.2 m
Method:
Position Vector transformation (geog2D domain)
Area of use:
Oman - onshore
Scope:
Oil and gas exploration and production.
ParameterValueUnit
X-axis translation(tx)-182.046metre
Y-axis translation(ty)-225.604metre
Z-axis translation(tz)168.884metre
X-axis rotation(rx)-0.616arc-second
Y-axis rotation(ry)-1.655arc-second
Z-axis rotation(rz)7.824arc-second
Scale difference(ds)16.641parts per million

Residuals 1.2m at 67% probability level.

Convert EPSG:4134 to EPSG:4322 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4134PSD93

geographic system using latitude and longitude on an ellipsoid · Area of use: Oman - onshore

+proj=longlat +a=6378249.145 +rf=293.465 +towgs84=-180.624,-225.516,173.919,-0.81,-1.898,8.336,16.71006 +no_defs +type=crs
More about EPSG:4134

Target: EPSG:4322WGS 72

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

+proj=longlat +ellps=WGS72 +no_defs +type=crs
More about EPSG:4322

Frequently asked questions

How accurate is converting PSD93 to WGS 72?
The most accurate official EPSG transformation between these systems is accurate to about ±1.2 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:4322 to EPSG:4134