Source: EPSG:4326 — WGS 84
geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)
+proj=longlat +datum=WGS84 +no_defs +type=crsMore about EPSG:4326 →
Online coordinate converter from WGS 84 (EPSG:4326) to WGS 84 (EPSG:4978). Enter your source coordinates and get the result instantly. All transformations happen in your browser — no data is sent to any server.
Converting from WGS 84 geographic (EPSG:4326) to WGS 84 geocentric Cartesian (EPSG:4978) transforms latitude/longitude/height into Earth-Centred Earth-Fixed XYZ metres. This is the form GPS receivers compute internally and the natural reference frame for satellite orbit work, geodynamics, and Helmert datum transformations.
The transformation is a closed-form geodetic-to-cartesian formula on the WGS 84 ellipsoid (semi-major 6,378,137 m, inverse flattening 298.257223563). With ellipsoidal height supplied it is invertible to floating-point precision; with only latitude/longitude (no height) the result assumes height zero and the inverse loses height information.
Try it: Equator/prime meridian (height 0)
Input (EPSG:4326): 0, 0
The same transformation with common GIS tools and libraries:
from pyproj import Transformer
transformer = Transformer.from_crs("EPSG:4326", "EPSG:4978", always_xy=True)
x, y = transformer.transform(-73.9857, 40.7484)
print(x, y)geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)
+proj=longlat +datum=WGS84 +no_defs +type=crsMore about EPSG:4326 →
geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: World
+proj=geocent +datum=WGS84 +units=m +no_defs +type=crsMore about EPSG:4978 →