Skip to content
transform

Convert Georgia Geodetic Datum to WGS 84

Convert coordinates from Georgia Geodetic Datum (EPSG:10829) to WGS 84 (EPSG:4978) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-10829-to-epsg-4978

Official EPSG transformation from Georgia Geodetic Datum to WGS 84

The EPSG Geodetic Parameter Dataset defines 1 transformation between Georgia Geodetic Datum (EPSG:10829) and WGS 84 (EPSG:4978). Its parameters, accuracy and area of use are listed below.

Georgia Geodetic Datum to WGS 84 (1)

EPSG:10834±0.03 m
Method:
Coordinate Frame rotation (geocentric domain)
Area of use:
Georgia
Scope:
Spatial referencing.
ParameterValueUnit
X-axis translation(tx)-2.0796metre
Y-axis translation(ty)-0.3484metre
Z-axis translation(tz)1.7009metre
X-axis rotation(rx)0.05465arc-second
Y-axis rotation(ry)-0.06718arc-second
Z-axis rotation(rz)0.06143arc-second
Scale difference(ds)0.0181parts per million

Derived at 5 stations. Note: information source states that the Helmert formula use the Position Vector convention, but using the station coordinates tabulated in the report IOGP believes that the parameter values are consistent with use of the coordinate frame rotation convention.

Convert EPSG:10829 to EPSG:4978 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:10829Georgia Geodetic Datum

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: Georgia

+proj=geocent +ellps=GRS80 +towgs84=-2.0796,-0.3484,1.7009,-0.05465,0.06718,-0.06143,0.0181 +units=m +no_defs +type=crs
More about EPSG:10829

Target: EPSG:4978WGS 84

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: World

+proj=geocent +datum=WGS84 +units=m +no_defs +type=crs
More about EPSG:4978

Frequently asked questions

How accurate is converting Georgia Geodetic Datum to WGS 84?
The most accurate official EPSG transformation between these systems is accurate to about ±0.03 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:4978 to EPSG:10829