Skip to content
transform

Convert DGN95 to SRGI2013

Convert coordinates from DGN95 (EPSG:4755) to SRGI2013 (EPSG:9470) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4755-to-epsg-9470

Official EPSG transformation from DGN95 to SRGI2013

The EPSG Geodetic Parameter Dataset defines 1 transformation between DGN95 (EPSG:4755) and SRGI2013 (EPSG:9470). Its parameters, accuracy and area of use are listed below.

DGN95 to SRGI2013 (1)

EPSG:9472±0.2 m
Method:
Coordinate Frame rotation (geog2D domain)
Area of use:
Indonesia
Scope:
Spatial referencing.
ParameterValueUnit
X-axis translation(tx)-0.2773metre
Y-axis translation(ty)0.0534metre
Z-axis translation(tz)0.4819metre
X-axis rotation(rx)0.0935microradian
Y-axis rotation(ry)-0.0286microradian
Z-axis rotation(rz)0.00969microradian
Scale difference(ds)-0.028parts per million

Derived at 533 stations. Mean residual 0.218m. Note: information source gives rotations given in radians.

Convert EPSG:4755 to EPSG:9470 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4755DGN95

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

+proj=longlat +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +no_defs +type=crs
More about EPSG:4755

Target: EPSG:9470SRGI2013

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

+proj=longlat +ellps=WGS84 +no_defs +type=crs
More about EPSG:9470

Frequently asked questions

How accurate is converting DGN95 to SRGI2013?
The most accurate official EPSG transformation between these systems is accurate to about ±0.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:9470 to EPSG:4755