forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectWithSpecificTransformation.xaml.cs
56 lines (45 loc) · 2.92 KB
/
ProjectWithSpecificTransformation.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2018 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
// language governing permissions and limitations under the License.
using Esri.ArcGISRuntime.Geometry;
namespace ArcGISRuntime.UWP.Samples.ProjectWithSpecificTransformation
{
[ArcGISRuntime.Samples.Shared.Attributes.Sample(
"Project with specific transformation",
"Geometry",
"This sample demonstrates how to use the GeometryEngine with a specified geographic transformation to transform a geometry from one coordinate system to another. ",
"See [Coordinate Systems and Transformations](https://developers.arcgis.com/net/latest/wpf/guide/coordinate-systems-and-transformations.htm) for more information about geographic coordinate systems, geographic transformations, and projected coordinate systems. ")]
public partial class ProjectWithSpecificTransformation
{
public ProjectWithSpecificTransformation()
{
InitializeComponent();
// Setup the control references and execute initialization
Initialize();
}
private void Initialize()
{
// Create a point geometry in NYC in WGS84
MapPoint startingPoint = new MapPoint(-73.984513, 40.748469, SpatialReferences.Wgs84);
// Update the UI with the initial coordinates
BeforeLabel.Text = $"x: {startingPoint.X}, y: {startingPoint.Y}";
// Create a geographic transformation step for transform WKID 108055, WGS_1984_To_MSK_1942
GeographicTransformationStep geoStep = new GeographicTransformationStep(108055);
// Create the transformation
GeographicTransformation geoTransform = new GeographicTransformation(geoStep);
// Project to a coordinate system used in New York, NAD_1983_HARN_StatePlane_New_York_Central_FIPS_3102
MapPoint afterPoint = (MapPoint)GeometryEngine.Project(startingPoint, SpatialReference.Create(2829), geoTransform);
// Update the UI with the projected coordinates
AfterLabel.Text = $"x: {afterPoint.X}, y: {afterPoint.Y}";
// Perform the same projection without specified transformation
MapPoint unspecifiedTransformPoint = (MapPoint)GeometryEngine.Project(startingPoint, SpatialReference.Create(2829));
// Update the UI with the projection done without specific transform for comparison purposes
NonSpecificLabel.Text = $"x: {unspecifiedTransformPoint.X}, y: {unspecifiedTransformPoint.Y}";
}
}
}