NamedPolygon

data class NamedPolygon(val name: String, val boundary: List<GeoCoordinate>) : Range

Represents a named polygon Range.

Parameters

name

The name of the Range.

boundary

The GeoCoordinates of the points in the polygon's boundary.

Constructors

Link copied to clipboard
fun NamedPolygon(name: String, boundary: List<GeoCoordinate>)

Properties

Link copied to clipboard
val boundary: List<GeoCoordinate>
Link copied to clipboard
val name: String