Geometry

Geometries represent real-world objects by defining a shape at a specific geographic location. They are used throughout the API to represent the shapes of features and graphics, layer extents, viewpoints, and GPS locations. They are also used as inputs and outputs of spatial analysis and geoprocessing operations, and to measure distances and areas, among other uses.

Geometry in ArcGIS Runtime

The AGSGeometry class provides functionality common to all types of geometry. AGSPoint , AGSMultipoint , AGSPolyline , AGSPolygon , and AGSEnvelope all inherit from the AGSGeometry base class, and represent different types of shapes.

The following are common geometry characteristics:

  • Geometries have a spatial reference indicating the coordinate system used by its coordinates.
  • Geometries can be empty, indicating that they have no specific location or shape.
  • Geometries can have z-values and/or m-values.
  • Geometries can be converted to and from JSON to be persisted or to be exchanged directly with REST services.

Geometries are immutable

Most geometries are created and not changed for their lifetime. Examples include feature geometry created for storage in a geodatabase, read from a non-editable layer, or returned from tasks such as spatial queries, geocode operations, network traces, or geoprocessing. Immutable geometries (geometries that cannot be changed) offer some significant benefits to your app. They are inherently thread-safe, help prevent accidental changes, and allow for certain performance optimizations.

While immutable geometries appear to present problems for editing existing geometries, those problems are solved by using geometry builders. Geometry builders are designed to represent the state of a geometry under construction while allowing modifications, thus enabling editing workflows.

Apple's Foundation framework follows a similar pattern of having separate mutable and immutable versions. Examples of these include NSDictionary, NSArray, NSData, and so on.

Point

AGSPoint geometries represent a single point, place, or location such as a geocoded house address along a street or the location of a water meter in a water utility network. Larger geographic entities such as cities are often represented as points on small-scale maps. Points can be used as the geometry of features and graphics and are often used to help construct other geometries.

Points store a single set of x,y coordinates that represent a discrete location within a specified coordinate system (spatial reference). Optionally, a z-value (to define elevation, for example) can also be included. Instances of AGSPoint can be created using a constructor that defines the full geometry by passing an x coordinate, y coordinate, and spatial reference.

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
// Create a Point using x,y coordinates and a Spatial Reference
let point1 = AGSPoint(x: -122, y: 34.5, spatialReference: AGSSpatialReference.wgs84())
 // Create a Point using x,y,z coordinates and a Spatial Reference
let point2 = AGSPoint(x: 34, y: -117, z: 414, spatialReference: AGSSpatialReference.wgs84())

Envelope

AGSEnvelope geometries represent rectangular shapes with sides that are parallel with the x or y axis of the coordinate system. Most commonly, they represent the spatial extent of layers or other geometries, or define areas of interest for tasks. They can be used as the geometry of graphics and in many geometry operations. Envelopes cannot be used to store feature geometry.

New instances of AGSEnvelope are defined by specifying a minimum and maximum x-coordinate and minimum and maximum y-coordinate, and a AGSSpatialReference . Optionally, a minimum and maximum z-value can be specified to define the depth of the envelope.

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
// Create an Envelope using the minimum and maximum x,y coordinates and a Spatial Reference
let envelope = AGSEnvelope(xMin: -123.0, yMin: 33.5, xMax: -101.0, yMax: 48.0, spatialReference: AGSSpatialReference.wgs84())

Another way to define an envelope is by using two points. The minimum and maximum x,y coordinates are calculated from the two points.

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
// Create a Point using x,y coordinates and a Spatial Reference
let point1 = AGSPoint(x: -122, y: 34.5, spatialReference: AGSSpatialReference.wgs84())
let point2 = AGSPoint(x: -121, y: 35.5, spatialReference: AGSSpatialReference.wgs84())
 // Create an Envelope by passing in two points
let envelope = AGSEnvelope(min: point1, max: point2)

Multipoint

AGSMultipoint geometries represent an ordered collection of points. They can be used as the geometry of features and graphics, or as input or output of geometry operations. For features that consist of a very large number of points that share the same set of attribute values, multipoints may be more efficient to store and analyze in a geodatabase compared to using multiple point features.

Multipoints are composed of a single read-only collection of points. To build a multipoint, create an AGSMultipointBuilder , add points, and the geometry will return an AGSMultipoint . You can also use geometry builders to modify an existing geometry.

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
// Create a MultipointBuilder and add Points
let multiPointBuilder = AGSMultipointBuilder(spatialReference: AGSSpatialReference.wgs84())
multiPointBuilder.points.addPointWith(x: -121, y: 38)
multiPointBuilder.points.addPointWith(x: -122, y: 47)
multiPointBuilder.points.addPointWith(x: -123, y: 44)
multiPointBuilder.points.addPointWith(x: -119, y: 39)
 // Pass the Geometry from the MultipointBuilder to the MultiPoint
let multiPoint = multiPointBuilder.toGeometry()

To access each AGSPoint in an existing AGSMultipoint , iterate over the read-only point collection returned from the points property.

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
let multiPoint = multiPointBuilder.toGeometry()
let points = multiPoint.points
 for i in 0...points.count-1 {
         print("Point x= ", points[i].x, " y= ", points[i].y)
 }

Polyline

AGSPolyline geometries represent the shape and location of linear features, such as a street in a road network or a pipeline in an oil refinery. They can be used as the geometry of features and graphics, or as input or output of tasks or geoprocessing operations, such as the output of a network trace.

Polylines are composed of a series of connected segments, where each segment defines a continuous line between a start and an end point. ArcGIS supports both linear and curve segments. For more information, see the Segments section below.

You can create a AGSPolyline using a AGSPolylineBuilder . The builder creates a series of straight line segments connecting the points you specify.

Polylines can have multiple parts. Each part is a series of connected segments, but the parts can be disjoint from each other, such as a polyline representing a discontinuous highway that has an unfinished section. Parts can also intersect at one or more vertices. For example, in a polyline representing a river and its tributaries. The AGSPolyline class inherits from AGSMultipart , which provides members for iterating through the segments and points of each part in a polyline.

To modify an existing polyline, use AGSPolylineBuilder .

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
// Create a Polyline Builder and add Points
let polylineBuilder = AGSPolylineBuilder(spatialReference: AGSSpatialReference.wgs84())
polylineBuilder.addPointWith(x: -121, y: 38)
polylineBuilder.addPointWith(x: -122, y: 47)
polylineBuilder.addPointWith(x: -123, y: 44)
polylineBuilder.addPointWith(x: -124, y: 46)
polylineBuilder.addPointWith(x: -125, y: 33)

let polyLine = polylineBuilder.toGeometry()

Polygon

AGSPolygon geometries represent the shape and location of areas, such as a country or a lake. They can be used as the geometry of features and graphics, or as input or output of tasks or geoprocessing operations, such as the output of a drive-time analysis or a buffer operation.

Polygons are similar to polylines in that they are also composed of a series of connected segments. However, polygons define closed areas, so the end point of the last segment is always in the same location as the start point of the first segment, forming a closed boundary. As with polylines, you can work with the vertices of the segments of a polygon by using point-based helper methods. For more information on segments, see Segments on this page.

To build a AGSPolygon , create a AGSPolygonBuilder and add points in the correct order around the polygon's perimeter. Next, use the toGeometry() method to provide the AGSPolygon .

Similar to polylines, polygons can have multiple parts but have different rules than those for multipart polylines. Each part of a multipart polygon is a series of connected segments forming a closed ring. Each part must not cross any other part but may lie completely inside or outside another part. For example, a polygon representing the state of Hawaii would comprise eight disjoint parts, one representing each island. A polygon representing the country of South Africa, which completely surrounds the enclave of Lesotho, would comprise two parts, one contained inside the other. The AGSPolygon class also inherits from AGSMultipart .

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
// Create a Polygon Builder and add Points
let polygonBuilder = AGSPolygonBuilder(spatialReference: AGSSpatialReference.wgs84())
polygonBuilder.addPointWith(x: -121, y: 38)
polygonBuilder.addPointWith(x: -122, y: 47)
polygonBuilder.addPointWith(x: -123, y: 44)
polygonBuilder.addPointWith(x: -124, y: 46)
polygonBuilder.addPointWith(x: -125, y: 33)
 let polygon = polygonBuilder.toGeometry()

Multipart (Polygon and Polyline)

AGSPolygon and AGSPolyline inherit from AGSMultipart . Multipart provides access to a collection of the geometry's parts. Each part in the collection is a collection of segment objects (see Segments below). You can iterate through the segments or points in each part.

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
let polyLine = polylineBuilder.toGeometry()

let parts = polyLine.parts

// iterate each Part of a Polyline
for i in 0...parts.count-1 {
     let part = parts[i]
         // iterate each Segment in the Part
    for k in 0...part.segmentCount-1 {
                 let segment = part.segment(at: k)
        print(segment.startPoint.x)
        print(segment.endPoint.x)
    }
     }

You can iterate through the points that represent the vertices in all the parts.

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
let parts = polyLine.parts
 // iterate each Part of a Polyline
for i in 0...parts.count-1 {
         let part = parts[i]
         // iterate each Point in the Part
    for j in 0...part.points.count-1 {
                 print("Point x= ", part.points[j].x, " y= ", part.points[j].y)
             }
     }

In the same way as AGSPolygon and AGSPolyline are immutable, the collections returned from AGSMultipart are also immutable—AGSPartCollection, AGSPart, and AGSPointCollection. However, when creating polygons and polylines, you use the mutable equivalents—AGSMutablePartCollection, AGSMutablePart, and AGSMutablePointCollection. Point-based helper methods are available on both the mutable and immutable classes.

Segments

A segment describes a continuous line between a start location and an end location. Every part in a multipart geometry is a collection of AGSSegment s where the end of one segment is at exactly the same location as the start of the following segment. The ArcGIS system, including ArcGIS Runtime, supports both straight and curved segments, with a few exceptions noted in the Perform edits section of the Edit topic in this guide. Multipart geometries can be composed from and decomposed into segments if required.

Linear segments are represented with instances of the AGSLineSegment class. Curve segments can be represented with an AGSEllipticArcSegment or AGSCubicBezierSegment . See the True curves section of this topic for more information about working with curve geometries.

Because a single location is shared by adjacent segments, a single AGSPoint object is used to represent the shared location when you iterate through the points in a part. As a result, when iterating through the points in a part of a polyline, there will be one more AGSPoint than the number of AGSSegment s in that same part.

Similar to the geometries they comprise, AGSSegment s are immutable.

Work with geometry

Spatial references

The meaning of the coordinates in a geometry is determined by the geometry's spatial reference. The vertices and spatial reference together allow your app to translate a real-world object from its location on the Earth to its location on your map or scene.

In some cases, a geometry's spatial reference may not be set. Graphics that do not have a spatial reference are drawn using the same spatial reference as the map view in which they are drawn. When using a geometry builder to create a polyline or polygon geometry from point geometries, you don't need to set the spatial reference of every point before you add it to the builder, as it will be assigned the spatial reference of the builder it's added to. In most other cases, such as when using a geometry in geometry operations or when editing a feature table, the geometry's spatial reference must be set.

Learn more about spatial references

Linear, angular, and area units

Different types of unit of measurement can be used throughout ArcGIS Runtime API. Projected coordinate systems define coordinates using linear measurements, for example using meters or miles, which are represented by AGSLinearUnit . Linear units are also used to return distance measurements, for example by some members of AGSGeometryEngine . Geographic coordinate systems define coordinates using angular measurements, for example using degrees or radians, which are represented by AGSAngularUnit . Methods that calculate the size of areas, for example in acres or square kilometers, use area units. These are represented by AGSAreaUnit . Linear, angular, and area units can be defined by using enumerations of the most common units of measurement. They can also be defined by Well-Known ID (WKID) or Well-Known Text (WKT).

Projection, topological, and other operations

Changing the coordinates of a geometry to have the same shape and location represented using a different spatial reference is known as "projection" or sometimes as "reprojection". Because geometries are immutable, they do not have any member methods that project, transform, or otherwise modify their content.

The AGSGeometryEngine class provides a wide range of methods that read the content of geometries and modify that content to create new geometries. There are methods to project, buffer, union, and so on. Note that not all methods support true curves. When creating geometries using locations from the screen, and the map is a wraparound map, you may also need to consider normalizing a geometry before you save it to a geodatabase or use it in tasks or other operations.

Use the AGSGeometryEngine class to project geometries to a different spatial reference.

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
let oldPoint = AGSPoint(x: -121, y: 38, spatialReference: AGSSpatialReference.wgs84())

let newPoint = AGSGeometryEngine.projectGeometry(oldPoint, to: AGSSpatialReference.webMercator()) as! AGSPoint

True curves

Sometimes, shapes that appear as curves on a map are really a series of connected linear segments that approximate a curve. For many use cases (and depending on the accuracy you require for the data), this is an acceptable way to represent curved features. ArcGIS can also store and display geometry using segments that accurately represent curvilinear geometry. In ArcGIS Runtime, curved segments are represented with instances of the AGSEllipticArcSegment or AGSCubicBezierSegment classes. These segments are referred to as true curves.

You can add curve segments to an AGSMultipartBuilder , and if a geometry has curves then curve segments are returned where applicable from the collections that comprise the multipart geometry. Curve and linear segments can be mixed together in the same multipart geometry.

You can use AGSGeometryEngine.densifyGeometry() to create an approximated curve from a true curve based on several linear segments. Such a curve is often referred to as a densified curve. By default, curve geometries are not fetched from services that support curves, meaning that densified versions of true curve geometries are returned instead. Use serviceCurveGeometryMode to change this default behavior.

Curve geometries stored in services where onlyAllowTrueCurveUpdatesByTrueCurveClients is true cannot be updated by default. To update such geometries, ensure your app correctly handles curve segments in geometries throughout the workflow and set serviceCurveGeometryMode to AGSServiceCurveGeometryModeTrueCurveClient . You must do this before any calls to services are made as it cannot be changed after making the first request.

Convert to and from JSON

Geometries can be serialized and de-serialized to and from JSON. The ArcGIS REST API documentation describes the JSON representation of geometry objects. You can use this encoding and decoding mechanism to exchange geometries with REST Web services or to store them in text files.

Converting to or from JSON can add points to multipart geometries if the geometry has insufficient points to construct a segment.

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
// convert a Polygon to a JSON representation
let polygonJSON = (try? polygon1.toJSON()) as? NSDictionary
 // create a new Polygon from JSON
let polygon2 = (try? AGSPolygon.fromJSON(polygonJSON!)) as! AGSPolygon

Z-values and 3D

Geometries can have z-values, indicating values along the z-axis, which is orthogonal to both the x-axis and y-axis. Z-values can indicate height above or depth below a surface, or an absolute elevation. For example, z-values are used to draw the locations of geometries in scene views. Note that geometries are not considered true 3D shapes and are draped onto surfaces in the view, or in some cases, drawn in a single plane by using z-values. Z-values are stored on AGSPoint and AGSEnvelope . Therefore, because all other geometries are created from AGSPoint , all types of geometry can have z-values.

Whether or not a geometry has z-values is determined when the geometry is created; if you use a method that has a z-value parameter, the new geometry will have z-values (the geometry's hasZ will be true). If you create geometries using constructors that take z-value parameters, or if you pass into the constructor points or segments that have z-values, the new geometry will have z-values. A geometry with z-values is sometimes known as a z-aware geometry.

It may be that not all vertices in your geometry have a z-value defined. NaN is a valid z-value used to indicate an unknown z-value. However, the default z-value is zero. It is important to note that when you get z-values from a geometry that does not have z-values, the default value of zero is returned. Check the hasZ property to determine whether a z-value of zero means that there are no z-values in the geometry or that the z-value in the geometry's coordinates really is zero.

M-values

M-values are used in linear referencing scenarios, and like z-values, every geometry can optionally store m-values. The default m-value is NaN. If an m-value is specified as a parameter when a geometry is created, the new geometry will have m-values (the geometry's hasM will be true). Note that when you get m-values back from a geometry, the default value of NaN (different than the default for z-values) is returned for vertices that do not have m-values. A geometry with m-values is sometimes known as an m-aware geometry.

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