Get a list of suitable transformations for projecting a geometry between two spatial references with different horizontal datums.
Transformations (sometimes known as datum or geographic transformations) are used when projecting data from one spatial reference to another when there is a difference in the underlying datum of the spatial references. Transformations can be mathematically defined by specific equations (equation-based transformations), or may rely on external supporting files (grid-based transformations). Choosing the most appropriate transformation for a situation can ensure the best possible accuracy for this operation. Some users familiar with transformations may wish to control which transformation is used in an operation.
Select a transformation from the list to see the result of projecting the point from EPSG:27700 to EPSG:3857 using that transformation. The result is shown as a red cross; you can visually compare the original blue point with the projected red cross.
Select 'Consider current extent' to limit the transformations that are appropriate for the current extent.
If the selected transformation is not usable (has missing grid files) then an error is displayed.
- Pass the input and output spatial references to
TransformationCatalog.GetTransformationsBySuitability
for transformations based on the map's spatial reference OR additionally provide an extent argument to only return transformations suitable to the extent. This returns a list of ranked transformations. - Use one of the
DatumTransformation
objects returned to project the input geometry to the output spatial reference.
- DatumTransformation
- GeographicTransformation
- GeographicTransformationStep
- GeometryEngine
- GeometryEngine.Project
- TransformationCatalog
The map starts out zoomed into the grounds of the Royal Observatory, Greenwich. The initial point is in the British National Grid spatial reference, which was created by the United Kingdom Ordnance Survey. The spatial reference after projection is in web mercator.
Some transformations aren't available until transformation data is provided.
This sample uses a GeographicTransformation
, which extends the DatumTransformation
class. The ArcGIS Maps SDK for .NET also includes a HorizontalVerticalTransformation
, which also extends DatumTransformation
. The HorizontalVerticalTransformation
class is used to transform coordinates of z-aware geometries between spatial references that have different geographic and/or vertical coordinate systems.
This sample can be used with or without provisioning projection engine data to your device. If you do not provision data, a limited number of transformations will be available.
To download projection engine data to your device:
- Log in to the ArcGIS for Developers site using your Developer account.
- In the Dashboard page, tap 'Download APIs and SDKs'.
- Tap the download button next to
Projection Engine Data
to download projection engine data to your computer. - Unzip the downloaded data on your computer.
- Create an
~/ArcGIS/Runtime/Data/PEDataRuntime
directory on your device and copy the files to this directory.
datum, geodesy, projection, spatial reference, transformation