Skip to content
transform

Convert IGb00 to IGS05

Convert coordinates from IGb00 (EPSG:9007) to IGS05 (EPSG:9010) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-9007-to-epsg-9010

Official EPSG transformation from IGb00 to IGS05

The EPSG Geodetic Parameter Dataset defines 1 transformation between IGb00 (EPSG:9007) and IGS05 (EPSG:9010). Its parameters, accuracy and area of use are listed below.

IGb00 to IGS05 (1)

EPSG:9035±0.001 m
Method:
Time-dependent Position Vector tfm (geocentric)
Area of use:
World
Scope:
Geodesy.
ParameterValueUnit
X-axis translation(tx)0millimetre
Y-axis translation(ty)1.7millimetre
Z-axis translation(tz)5.3millimetre
X-axis rotation(rx)0.0224milliarc-second
Y-axis rotation(ry)-0.0341milliarc-second
Z-axis rotation(rz)0.0099milliarc-second
Scale difference(ds)-0.8473parts per billion
rate tx0.4millimetres per year
rate ty-0.7millimetres per year
rate tz1.8millimetres per year
rate rx-0.0033milliarc-seconds per year
rate ry0.0001milliarc-seconds per year
rate rz0.0161milliarc-seconds per year
rate ds-0.1748parts per billion per year
epoch2000year

Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m.

Convert EPSG:9007 to EPSG:9010 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:9007IGb00

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

+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs
More about EPSG:9007

Target: EPSG:9010IGS05

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

+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs
More about EPSG:9010

Frequently asked questions

How accurate is converting IGb00 to IGS05?
The most accurate official EPSG transformation between these systems is accurate to about ±0.001 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:9010 to EPSG:9007