Geometry projections

Project countries (GeoJSON) and a geodesic line into different coordinate systems.

What is a geometry projection?

Geometry projection is the process of transforming the vertices of a geometric shape from one coordinate system (or spatial reference) to another. A geometry projection can occur dynamically in a map, manually on the client-side, or by requesting it to happen on the server-side. To execute the analysis, you can use ArcGIS Maps SDK for JavaScript, ArcGIS Maps SDKs for Native Apps, or ArcGIS API for Python. See the code examples below.

You can use geometry projections to:

  • Correctly display the location of geographic features on a map or scene.
  • Convert geometries from a projected coordinate system to a geographic coordinate system e.g. Web mercator to WGS 84.
  • Convert geometries from a geographic coordinate system to a projected coordinate system e.g. WGS 84 to Web mercator.
  • Align and display multiple datasets with different spatial references with a single spatial reference.
  • Correct data to perform different types of geometry and spatial analysis.
  • Accurately calculate length and area.

How to project a geometry

  1. Create a geometry from a dataset or a hosted feature layer.
  2. Determine the current spatial reference.
  3. Choose an new spatial reference.
  4. Project the geometry.

Types of projection operations

OperationDescriptionExample
ProjectReturns a projected geometry in the specified spatial reference.

Using projections

mercator to latitude and longitude

One of the most common tasks is to convert between web mercator and latitude and longitude. Most basemap styles services provide data in web mercator coordinates and often GPS data, navigation location, and other point data is obtained using latitude and longitude (WGS84). To convert between the coordinates most ArcGIS APIs provide a method to do so. To learn how to do this with different APIs, see the Coordinate conversion example below.

Map projection

By default, most ArcGIS APIs automatically project geometries on the fly to match the spatial reference of the map. The geometries can be add to the map as layers or graphics. Therefore, in most cases, if your data doesn't match the spatial reference of the map, you don't need to manually project layers with geometries. Learn more about layers in Data layers.

Measurement

Projecting geometries is also important to ensure accurate measurements of length and area. When measuring length, you should ensure the projected coordinate system of the geometries preserves distance. When measuring area, you should ensure the projected coordinate system of the input geometries preserves area.

Spatial analysis

In order to perform spatial analyses and produce accurate results, all of the input geometry data has to be in the same coordinate system (spatial reference). If the input data is not the same, you need to project the geometries beforehand. Learn more about performing spatial analysis in Feature analysis.

Code examples

Coordinate conversion

For some of the ArcGIS client APIs, if a map uses a Web Mercator spatial reference when graphics and features in layers are added, the coordinates are automatically projected to WGS 84 and are available in latitude and longitude. Therefore, in this case, you can access the latitude and longitude coordinates directly do not need to project the geometries.

In the case that coordinates are not converted automatically, you have to use methods to convert them.

This example demonstrates how point coordinates are converted from Web Mercator (wkid:102100/3857) to WGS 84 (wkid:4326) (i.e. latitude/longitude). Click on the map or search for places to display both sets of coordinates.

ArcGIS Maps SDK for JavaScriptArcGIS Maps SDK for JavaScriptArcGIS Maps SDK for .NETArcGIS Maps SDK for SwiftArcGIS Maps SDK for JavaArcGIS Maps SDK for Qt (C++)ArcGIS Maps SDK for Qt (QML)
Expand
Use dark colors for code blocksCopy
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
          view.openPopup({
            title: "COORDINATES",
            content: `
              <div class="tbl">
                <div>
                  <span><b>Web Mercator</b></span>
                  <span>X: ${point.x.toFixed(5)}</span>
                  <span>Y: ${point.y.toFixed(5)}</span>
                  <span>Wkid: ${point.spatialReference.wkid}</span>
                </div>
                <div>
                  <span><b>WGS84</b></span>
                  <span>Longitude: ${point.longitude.toFixed(5)}</span>
                  <span>Latitude: ${point.latitude.toFixed(5)}</span>
                  <span>Wkid: 4326</span>
                </div>
              </div>`,
            includeDefaultActions: false,
          });

Dynamic projection

In this example, GeoJSON data of countries defined with a WGS 1984 (wkid 4326) coordinate system is added to the map as a layer. The map view spatial reference is set to World Equidistant conic (wkid 54027). The map view automatically projects and displays the data on-the-fly.

When data is projected in the view, coordinates of the geometries are converted to the new coordinate system, and are available to access, but the underlying data source is not changed.

ArcGIS Maps SDK for JavaScriptArcGIS Maps SDK for JavaScriptArcGIS Maps SDK for .NETArcGIS Maps SDK for SwiftArcGIS Maps SDK for JavaArcGIS Maps SDK for Qt (C++)ArcGIS Maps SDK for Qt (QML)
Expand
Use dark colors for code blocksCopy
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
        // Countries GeoJSON file
        const dataUrl = "/documentation//data/countries.geojson";
        const geoJSONLayer = new GeoJSONLayer({
          url: dataUrl,
          copyright: "Esri",
          spatialReference: {
            wkid: 4326 // WGS 1984
          },
          renderer: {
            type: "simple",
            symbol: {
              type: "simple-fill",
              color: [255, 255, 255, 1],
              outline: {
                width: 0.5,
                color: [100, 70, 170, .75]
              }
            }
          }
        });

        const view = new MapView({
          container: "viewDiv",
          map: {
            layers: [geoJSONLayer] // Autocast the map object
          },
          spatialReference:  {
            wkid: 54027 // World Equidistant conic, maintains length
          },
          center,
          scale: 200000000,
          constraints:{
            minScale: 200000000
          }
        });

Client-side projection

In this example, data of countries defined with in the Web Mercator (wkid 102100) coordinate system is added to the map as a layer. The map view spatial reference is set to WGS 1984. When you click the map, the geometry is projected to wkid 8858 and displayed.

ArcGIS Maps SDK for JavaScriptArcGIS Maps SDK for JavaScriptArcGIS Maps SDK for .NETArcGIS Maps SDK for SwiftArcGIS Maps SDK for JavaArcGIS Maps SDK for Qt (C++)ArcGIS Maps SDK for Qt (QML)
Expand
Use dark colors for code blocksCopy
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
          const countryFeatureProjected = results[0].graphic.clone();
          const { attributes, geometry } = countryFeatureProjected;

          // Spatial reference to project to
          const projectedSpatialReference = {
            wkid: 8858 // Equal Earth Americas
          }

          const projectedGeometry = projectionEngine.project(geometry, projectedSpatialReference);

Server-side projection

In this example, the map view spatial reference is set to Web mercator (wkid 102100) and the data of the countries layer loaded is also set to Web Mercator. But when you click on the map view a request is been sent to the server to recover the country that was hit and it is requested also to recover the geometry in a different spatial reference (wkid: 54010, World Eckert VI), which is displayed in the side panel and added to the view, which, in turn, reprojects it again.

ArcGIS Maps SDK for JavaScriptArcGIS Maps SDK for JavaScriptArcGIS Maps SDK for .NETArcGIS Maps SDK for SwiftArcGIS Maps SDK for JavaArcGIS Maps SDK for Qt (C++)ArcGIS Maps SDK for Qt (QML)
Expand
Use dark colors for code blocksCopy
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
          const countryQuery = {
            spatialRelationship: "intersects",
            geometry: event.mapPoint,
            outFields: ["*"],
            outSpatialReference: {
              wkid: 54027
            },
            returnGeometry: true
          };

          countriesGeneralized.queryFeatures(countryQuery)
          .then((results) => {
            if(results.features.length > 0){
              const selectedCountry = results.features[0];
              selectedCountry.symbol = solidFillSymbol;

              view.graphics.removeAll();
              view.graphics.add(selectedCountry);

              outputView.graphics.removeAll();
              outputView.graphics.add(selectedCountry);
              outputView.extent = selectedCountry.geometry.extent;

              infoDiv.innerHTML = `
                <b>Country</b>: ${selectedCountry.attributes.COUNTRY}<br>
                <b><a href="${dataUrl}/0/query?where=1=1&outFields=*&f=pjson">Incoming data</a> WKID</b>: ${countriesGeneralized.spatialReference.wkid}<br>
                <b>Projected country WKID</b>: ${selectedCountry.geometry.spatialReference.wkid}<br>
                <code><pre>${JSON.stringify(selectedCountry.geometry.toJSON(), null, 2)}</pre></code>
              `;
            }else{
              infoDiv.innerHTML = `
                No country selected. Try again. br>
                Select a country on the map.
              `;
            }
          }).catch((error) => {
            console.error(error);
          });

Tutorials

API support

Spatial relationshipGeometric calculationLength and areaProjection
ArcGIS Maps SDK for JavaScript
ArcGIS Maps SDK for .NET
ArcGIS Maps SDK for Kotlin
ArcGIS Maps SDK for Swift
ArcGIS Maps SDK for Java
ArcGIS Maps SDK for Qt
ArcGIS API for Python
ArcGIS REST JS
Esri Leaflet
MapBox GL JS
OpenLayers
Full supportPartial supportNo support

    Tools

    Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.