AxisOrder enum

The axis order of coordinate values in position and point representations.

Internally this library uses xy order for geographic and projected coordinates.

However external geospatial data representations both for human (ie. a common decimal degrees repsenting latitude before longitude) and machine interfaces (ie. formats like WKT, GeoJSON or data protocols like WFS and OGC API standards) may specify either xy or yx order for coordinates.

Inheritance

Constructors

AxisOrder()
const

Values

xy → const AxisOrder

The axis order in position and point representations is expected to be (longitude, latitude) for geographic coordinates, (easting, northing) for projected map coordinates, and (x, y) for other cartesian coordinates.

This is also the internal representation of coordinates in this library.

yx → const AxisOrder

The axis order in position and point representations is expected to be (latitude, longitude) for geographic coordinates, (northing, easting) for projected map coordinates, and (y, x) for other cartesian coordinates.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<AxisOrder>
A constant List of the values in this enum, in order of their declaration.