Spatial operations

View inC++QMLView on GitHubSample viewer app

Find the union, intersection, or difference of two geometries.

screenshot

Use case

The different spatial operations (union, difference, symmetric difference, and intersection) can be used for a variety of spatial analyses. For example, government authorities may use the intersect operation to determine whether a proposed road cuts through a restricted piece of land such as a nature reserve or a private property. When these operations are chained together, they become even more powerful. An analysis of food deserts within an urban area might begin by union-ing service areas of grocery stores, farmer's markets, and food co-ops. Taking the difference between this single geometry of all services areas and that of a polygon delineating a neighborhood would reveal the areas within that neighborhood where access to healthy, whole foods may not exist.

How to use the sample

The sample provides an option to select a spatial operation. When an operation is selected, the resulting geometry is shown in red.

How it works

  1. Create a GraphicsOverlay and add it to the MapView.
  2. Use PolygonBuilder to create two polygons.
  3. Add the overlapping polygons to the graphics overlay.
  4. Perform spatial relationships between the polygons by using the appropriate operation:
    • GeometryEngine.unionOf(geometry1, geometry2) - This method returns the two geometries united together as one geometry.
    • GeometryEngine.difference(geometry1, geometry2) - This method returns any part of Geometry2 that does not intersect Geometry1.
    • GeometryEngine.symmetricDifference(geometry1, geometry2) - This method returns any part of Geometry1 or Geometry2 which do not intersect.
    • GeometryEngine.intersection(geometry1, geometry2) - This method returns the intersection of Geometry1 and Geometry2.
  5. Use the geometry that is returned from the method call to create a new Graphic and add it to the graphics overlay for it to be displayed.

Relevant API

  • Geometry
  • GeometryEngine
  • GeometryEngine.difference
  • GeometryEngine.intersection
  • GeometryEngine.symmetricDifference
  • GeometryEngine.unionOf
  • Graphic
  • GraphicsOverlay

Tags

analysis, combine, difference, geometry, intersection, merge, polygon, union

Sample Code

SpatialOperations.qml
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
193
194
195
196
197
198
199
200
201
// [WriteFile Name=SpatialOperations, Category=Geometry]
// [Legal]
// 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.
// [Legal]

import QtQuick
import QtQuick.Controls
import Esri.ArcGISRuntime

Rectangle {
    id: rootRectangle
    clip: true
    width: 800
    height: 600

    property var geometryOperations: ["None", "Union", "Difference", "Symmetric difference", "Intersection"]
    property var geometry1
    property var geometry2

    MapView {
        id: mapView
        anchors.fill: parent

        Component.onCompleted: {
            // Set the focus on MapView to initially enable keyboard navigation
            forceActiveFocus();
        }

        Map {
            id: map
            Basemap {
                initStyle: Enums.BasemapStyleArcGISTopographic
            }

            ViewpointCenter {
                Point {
                    x: -13453
                    y: 6710127
                    spatialReference: spatialRef
                }
                targetScale: 30000
            }

            onLoadStatusChanged: {
                if (loadStatus === Enums.LoadStatusLoaded)
                    addPolygons();
            }
        }

        GraphicsOverlay {
            id: inputOverlay
        }

        GraphicsOverlay {
            id: outputOverlay
        }
    }

    // Display a ComboBox with options for each operation
    ComboBox {
        id: comboBox
        anchors {
            left: parent.left
            top: parent.top
            margins: 10
        }

        // Add a background to the ComboBox
        Rectangle {
            anchors.fill: parent
            radius: 10
            // Make the rectangle visible if a dropdown indicator exists
            // An indicator only exists if a theme is set
            visible: parent.indicator
            border.width: 1
        }

        property int modelWidth: 0
        width: modelWidth + leftPadding + rightPadding + (indicator ? indicator.width : 10)
        model: geometryOperations

        onCurrentIndexChanged: applyGeometryOperation(currentIndex);

        Component.onCompleted : {
            for (let i = 0; i < model.length; ++i) {
                metrics.text = model[i];
                modelWidth = Math.max(modelWidth, metrics.width);
            }
        }
        TextMetrics {
            id: metrics
            font: comboBox.font
        }
    }

    SpatialReference {
        id: spatialRef
        wkid: 3857
    }

    function addPolygons() {
        if (!inputOverlay)
            return;

        // create blue polygon
        const polygonBuilder1 = ArcGISRuntimeEnvironment.createObject("PolygonBuilder", { spatialReference: spatialRef });
        polygonBuilder1.addPointXY(-13960, 6709400);
        polygonBuilder1.addPointXY(-14660, 6710000);
        polygonBuilder1.addPointXY(-13760, 6710730);
        polygonBuilder1.addPointXY(-13300, 6710500);
        polygonBuilder1.addPointXY(-13160, 6710100);

        const fillSymbol1 = ArcGISRuntimeEnvironment.createObject("SimpleFillSymbol");
        fillSymbol1.style = Enums.SimpleFillSymbolStyleSolid;
        fillSymbol1.color = "blue";
        geometry1 = polygonBuilder1.geometry;
        const graphic1 = ArcGISRuntimeEnvironment.createObject("Graphic");
        graphic1.geometry = geometry1;
        graphic1.symbol = fillSymbol1;
        inputOverlay.graphics.append(graphic1);

        // create green polygon
        // outer ring
        const outerRing = ArcGISRuntimeEnvironment.createObject("Part", { spatialReference: spatialRef });
        outerRing.addPointXY(-13060, 6711030);
        outerRing.addPointXY(-12160, 6710730);
        outerRing.addPointXY(-13160, 6709700);
        outerRing.addPointXY(-14560, 6710730);
        outerRing.addPointXY(-13060, 6711030);

        // inner ring
        const innerRing = ArcGISRuntimeEnvironment.createObject("Part", { spatialReference: spatialRef });
        innerRing.addPointXY(-13060, 6710910);
        innerRing.addPointXY(-14160, 6710630);
        innerRing.addPointXY(-13160, 6709900);
        innerRing.addPointXY(-12450, 6710660);
        innerRing.addPointXY(-13060, 6710910);

        const polygonBuilder2 = ArcGISRuntimeEnvironment.createObject("PolygonBuilder", { spatialReference: spatialRef });
        polygonBuilder2.parts.addPart(outerRing);
        polygonBuilder2.parts.addPart(innerRing);
        geometry2 = polygonBuilder2.geometry;
        const fillSymbol2 = ArcGISRuntimeEnvironment.createObject("SimpleFillSymbol");
        fillSymbol2.style = Enums.SimpleFillSymbolStyleSolid;
        fillSymbol2.color = "green";
        const graphic2 = ArcGISRuntimeEnvironment.createObject("Graphic");
        graphic2.geometry = geometry2;
        graphic2.symbol = fillSymbol2;
        inputOverlay.graphics.append(graphic2);
    }

    function applyGeometryOperation(index) {
        if (map.loadStatus !== Enums.LoadStatusLoaded)
            return;

        // Perform geometry calculations
        let resultPolygon;
        switch (index) {
        case 1:
          resultPolygon = GeometryEngine.unionOf(geometry1, geometry2);
          break;
        case 2:
          resultPolygon = GeometryEngine.difference(geometry1, geometry2);
          break;
        case 3:
          resultPolygon = GeometryEngine.symmetricDifference(geometry1, geometry2);
          break;
        case 4:
          resultPolygon = GeometryEngine.intersection(geometry1, geometry2);
          break;
        case 0:
        default:
          break;
        }

        // Clear previous results
        outputOverlay.graphics.clear();
        if (!resultPolygon)
          return;

        // Add the resulting polygon as a Graphic
        const fillSymbol = ArcGISRuntimeEnvironment.createObject("SimpleFillSymbol");
        fillSymbol.style = Enums.SimpleFillSymbolStyleSolid;
        fillSymbol.color = "red";
        const graphic = ArcGISRuntimeEnvironment.createObject("Graphic");
        graphic.geometry = resultPolygon;
        graphic.symbol = fillSymbol;
        outputOverlay.graphics.append(graphic);
    }
}

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