-
Notifications
You must be signed in to change notification settings - Fork 520
/
ProjectWithSpecificTransformation.xaml.cs
57 lines (46 loc) · 2.88 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
57
// Copyright 2022 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 ArcGIS.Samples.ProjectWithSpecificTransformation
{
[ArcGIS.Samples.Shared.Attributes.Sample(
name: "Project with specific transformation",
category: "Geometry",
description: "Project a point from one coordinate system to another using a specific transformation step.",
instructions: "View the values for: unprojected point, projected with the GeometryEngine default, and projected with a specific transformation step.",
tags: new[] { "coordinate system", "geographic", "project", "projection", "transform", "transformation", "transformation step" })]
public partial class ProjectWithSpecificTransformation : ContentPage
{
public ProjectWithSpecificTransformation()
{
InitializeComponent();
// Create the UI, 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)startingPoint.Project(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)startingPoint.Project(SpatialReference.Create(2829));
// Update the UI with the projection done without specific transform for comparison purposes
NonSpecificLabel.Text = $"x: {unspecifiedTransformPoint.X}, y: {unspecifiedTransformPoint.Y}";
}
}
}