Skip to content
transform

Convert NAD83(FBN) to NAD83(MA11)

Convert coordinates from NAD83(FBN) (EPSG:8860) to NAD83(MA11) (EPSG:6325) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-8860-to-epsg-6325

Official EPSG transformation from NAD83(FBN) to NAD83(MA11)

The EPSG Geodetic Parameter Dataset defines 1 transformation between NAD83(FBN) (EPSG:8860) and NAD83(MA11) (EPSG:6325). Its parameters, accuracy and area of use are listed below.

NAD83(FBN) to NAD83(MA11) (1)

EPSG:8866±0.05 m
Method:
NADCON5 (3D)
Area of use:
Pacific - Guam and NMI - onshore
Scope:
Geodesy.

Grid files: nadcon5.nad83_2002.nad83_ma11.guamcnmi.lat.trn.20160901.bnadcon5.nad83_2002.nad83_ma11.guamcnmi.lon.trn.20160901.b

Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.

Convert EPSG:8860 to EPSG:6325 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:8860NAD83(FBN)

geographic system using latitude and longitude on an ellipsoid · Area of use: USA - FBN

+proj=longlat +ellps=GRS80 +no_defs +type=crs
More about EPSG:8860

Target: EPSG:6325NAD83(MA11)

geographic system using latitude and longitude on an ellipsoid · Area of use: Pacific - US interests Mariana plate

+proj=longlat +ellps=GRS80 +no_defs +type=crs
More about EPSG:6325

Frequently asked questions

How accurate is converting NAD83(FBN) to NAD83(MA11)?
The most accurate official EPSG transformation between these systems is accurate to about ±0.05 m within its stated area of use. Browser-based converters approximate datum shifts with Helmert parameters; for surveying-grade work apply the official transformation (including the grid-shift files listed below) 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:6325 to EPSG:8860