GeoExtent class

A geospatial extent with spatial and optional temporal parts.

Annotations
  • @immutable

Constructors

GeoExtent({required SpatialExtent<GeoBox> spatial, TemporalExtent? temporal})
A geospatial extent with spatial and optional temporal parts.
const
GeoExtent.multi({required Iterable<GeoBox> boxes, Iterable<Interval>? intervals, CoordRefSys crs = CoordRefSys.CRS84, TemporalRefSys trs = TemporalRefSys.gregorian})
A geospatial extent of boxes and optional intervals.
GeoExtent.single({required GeoBox bbox, Interval? interval, CoordRefSys crs = CoordRefSys.CRS84, TemporalRefSys trs = TemporalRefSys.gregorian})
A geospatial extent of one bbox and optional interval.

Properties

hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
spatial SpatialExtent<GeoBox>
The spatial extent with bounding boxes in geographic coordinates.
no setter
temporal TemporalExtent?
An optional temporal extent with time intervals.
no setter

Methods

copyWith({SpatialExtent<GeoBox>? spatial, TemporalExtent? temporal}) GeoExtent
Copy this geo extent with optional spatial and/or temporal parts changed.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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