ArcGIS Runtime SDK for iOS: AGSGeographicTransformation.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSGeographicTransformation.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 1995-2020 ESRI
3 
4  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
5  Unpublished material - all rights reserved under the
6  Copyright Laws of the United States and applicable international
7  laws, treaties, and conventions.
8 
9  For additional information, contact:
10  Environmental Systems Research Institute, Inc.
11  Attn: Contracts and Legal Services Department
12  380 New York Street
13  Redlands, California, 92373
14  USA
15 
16  email: contracts@esri.com
17  */
18 
19 #import <ArcGIS/AGSDatumTransformation.h>
20 
21 
22 
24  //Required for Globals API doc
26 
44 
45 #pragma mark -
46 #pragma mark initializers
47 
48 
49 
55 - (instancetype)initWithStep:(AGSGeographicTransformationStep *)step;
56 
62 - (instancetype)initWithSteps:(NSArray<AGSGeographicTransformationStep*> *)steps;
63 
69 +(instancetype)geographicTransformationWithStep:(AGSGeographicTransformationStep *)step;
70 
76 +(instancetype)geographicTransformationWithSteps:(NSArray<AGSGeographicTransformationStep*> *)steps;
77 
78 #pragma mark -
79 #pragma mark properties
80 
84 @property (nonatomic, copy, readonly) NSArray<AGSGeographicTransformationStep*> *steps;
85 
86 #pragma mark -
87 #pragma mark methods
88 
89 @end
90 
91 
Represents a step in the process of transforming between datums.
Definition: AGSGeographicTransformationStep.h:40
A base class for transformation between two coordinate systems that have different datums...
Definition: AGSDatumTransformation.h:45
Used to transform coordinates of geometries between spatial references that have two different geogra...
Definition: AGSGeographicTransformation.h:43