ArcGIS Runtime SDK for iOS: AGSHorizontalVerticalTransformation.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSHorizontalVerticalTransformation.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 2022 ESRI
3 
4  All rights reserved under the copyright laws of the United States
5  and applicable international laws, treaties, and conventions.
6 
7  This material is licensed for use under the Esri Master License
8  Agreement (MLA), and is bound by the terms of that agreement.
9  You may redistribute and use this code without modification,
10  provided you adhere to the terms of the MLA and include this
11  copyright notice.
12 
13  See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english
14 
15  For additional information, contact:
16  Environmental Systems Research Institute, Inc.
17  Attn: Contracts and Legal Services Department
18  380 New York Street
19  Redlands, California, 92373
20  USA
21 
22  email: contracts@esri.com
23  */
24  //Required for Globals API doc
26 
27 #import <Foundation/Foundation.h>
28 #import <ArcGIS/AGSDatumTransformation.h>
29 
30 
31 
33 
70 
71 #pragma mark -
72 #pragma mark initializers
73 
74 
75 
80 - (instancetype)initWithStep:(AGSHorizontalVerticalTransformationStep *)step;
81 
86 + (instancetype)horizontalVerticalTransformationWithStep:(AGSHorizontalVerticalTransformationStep *)step;
87 
96 - (instancetype)initWithSteps:(NSArray<AGSHorizontalVerticalTransformationStep *> *)steps;
97 
106 + (instancetype)horizontalVerticalTransformationWithSteps:(NSArray<AGSHorizontalVerticalTransformationStep *> *)steps;
107 
108 #pragma mark -
109 #pragma mark properties
110 
114 @property (nonatomic, copy, readonly) NSArray<AGSHorizontalVerticalTransformationStep *> *steps;
115 
116 #pragma mark -
117 #pragma mark methods
118 
119 @end
120 
121 
A base class for transformation between two coordinate systems that have different datums.
Definition: AGSDatumTransformation.h:53
Used to transform coordinates of z-aware geometries between spatial references that have different ge...
Definition: AGSHorizontalVerticalTransformation.h:70
NSArray< AGSHorizontalVerticalTransformationStep * > * steps
Definition: AGSHorizontalVerticalTransformation.h:114
Represents a step in the process of transforming between horizontal and/or vertical datums.
Definition: AGSHorizontalVerticalTransformationStep.h:48