HorizontalVerticalTransformationStep QML Type
Represents a step in the process of transforming between horizontal and/or vertical datums. More...
Import Statement: | import Esri.ArcGISRuntime 100.9 |
Since: | Esri.ArcGISRuntime 100.9 |
Inherits: |
Properties
- inverse : bool
- missingProjectionEngineFiles : bool
- projectionEngineFilenames : list<string>
- wkText : string
- wkid : int
Signals
Methods
- bool equals(other)
Detailed Description
Each HorizontalVerticalTransformationStep can be constructed from a well-known ID (WKID) that represents a horizontal (geographic) or a vertical transformation. Runtime supports thousands of predefined transformations, and all the supported WKIDs are documented in the 'Coordinate systems and transformations' topic in the developers guide.
One or more HorizontalVerticalTransformationStep objects are combined into a HorizontalVerticalTransformation object, and can then be used to control how coordinates are transformed in a GeometryEngine::projectWithDatumTransformation method call.
A HorizontalVerticalTransformationStep object is immutable.
See also HorizontalVerticalTransformation and HorizontalVerticalTransformationStep.
Property Documentation
Returns whether this horizontal-vertical transformation step instance is an inverted transformation.
Returns true
if this step uses the inverse of the horizontal-vertical transformation contained in this step.
You cannot change this property after the object is instantiated.
True
if any files needed by the Projection Engine for this transformation step are missing from the local file system (read-only).
A list of the Projection Engine files required to support this transformation step (read-only).
Each name in the list includes the full path. Projection Engine datasets are used in grid-based transforms.
The Well-Known Text (WKT) representation of the horizonal-vertical transformation in this step.
Returns an empty string if no WKT has been specified or if the horizonal-vertical transformation is invalid.
This method always returns the minimal text representation that uniquely identifies a given horizonal-vertical transformation.
You cannot change this property after the object is instantiated.
The well-known ID or 0
if the transformation in this step doesn't have a well-known ID.
-1
on error.
Signal Documentation
Emitted when the inverse property changes.
Note: The corresponding handler is onInverseChanged
.
Emitted when the wkText property changes.
Note: The corresponding handler is onWkTextChanged
.
Emitted when the wkid property changes.
Note: The corresponding handler is onWkidChanged
.
Method Documentation
compares this horizontal-vertical transformation step against the other.
Returns true
if they are equal.