OpenGisGeometryType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Lists Open GIS geometry types.
[System.CLSCompliant(true)]
public enum OpenGisGeometryType
[<System.CLSCompliant(true)>]
type OpenGisGeometryType =
Public Enum OpenGisGeometryType
- Inheritance
-
OpenGisGeometryType
- Attributes
Fields
Name | Value | Description |
---|---|---|
Point | 1 | Point is a 0-dimensional object that represents a single location. |
LineString | 2 | LineString is a one-dimensional object representing a sequence of points and the line segments connecting them. |
Polygon | 3 | Polygon is a two-dimensional surface stored as a sequence of points defining an exterior bounding ring and zero or more interior rings. |
MultiPoint | 4 | MultiPoint is a collection of zero or more points. |
MultiLineString | 5 | MultiLineString is a collection of zero or more geometryLineString instances. |
MultiPolygon | 6 | MultiPolygon is a collection of zero or more Polygon instances. |
GeometryCollection | 7 | GeometryCollection is a collection of zero or more geometry instances. |
CircularString | 8 | A CircularString is a collection of zero or more continuous circular arc segments. |
CompoundCurve | 9 | A CompoundCurve is a collection of zero or more continuous CircularString or LineString instances of either geometry or geography types. |
CurvePolygon | 10 | A CurvePolygon is a topologically closed surface defined by an exterior bounding ring and zero or more interior rings. |