Namespace: GameEngine.Geometry
Class: GameEngine/Geometry/ArcGISDatumTransformation
Since: 1.0.0
Summary
Represents a function to convert between two coordinate systems.
Properties
| Property | Type | Nullable | Readonly | Summary |
|---|---|---|---|---|
InputSpatialReference | ArcGISSpatialReference | Yes | Yes | The input ArcGISSpatialReference. |
IsMissingProjectionEngineFiles | bool | No | Yes | True if any files needed by the Projection Engine for this transformation step are missing from the local file system. |
Name | string | No | Yes | The name of the datum transformation. |
OutputSpatialReference | ArcGISSpatialReference | Yes | Yes | The output ArcGISSpatialReference. |
InputSpatialReference
ArcGISSpatialReference InputSpatialReference
The input ArcGISSpatialReference.
If transforming from a projected coordinate system (ArcGISSpatialReference.IsProjected is true), this input spatial reference should equal the ArcGISSpatialReference.BaseGeographic of the ArcGISSpatialReference of the ArcGISGeometry passed to ArcGISGeometryEngine.Project.
IsMissingProjectionEngineFiles
bool IsMissingProjectionEngineFiles
True if any files needed by the Projection Engine for this transformation step are missing from the local file system.
Name
string Name
The name of the datum transformation.
For multi-step transformations, the name contains the concatenated names of each step's transformation, separated by a plus sign '+'. If the transformation is inverted, the name starts with a tilde (~).
OutputSpatialReference
ArcGISSpatialReference OutputSpatialReference
The output ArcGISSpatialReference.
If transforming to a projected coordinate system (ArcGISSpatialReference.IsProjected is true), this output spatial reference should equal the ArcGISSpatialReference.BaseGeographic of the outputSpatialReference parameter passed to ArcGISGeometryEngine.Project.
Methods
| Signature | Return Type | Summary |
|---|---|---|
Returns the inverse of this datum transformation. |
GetInverse
ArcGISDatumTransformation GetInverse()
Returns the inverse of this datum transformation.
Since 1.0.0
Returns ArcGISDatumTransformation
An ArcGISDatumTransformation representing the inverse, or null if an inverse for this data transformation does not exist.