Package uk.ac.rdg.resc.edal.grid
Interface GridCell4D
-
- All Superinterfaces:
Domain<GeoPosition>
- All Known Implementing Classes:
SimpleGridCell4D
public interface GridCell4D extends Domain<GeoPosition>
A cell in aGridDomain
, which can have up to four dimensions.- Author:
- Jon Blower, Guy Griffiths
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HorizontalPosition
getCentre()
org.joda.time.Chronology
getChronology()
Polygon
getFootprint()
GridDomain
getGrid()
Extent<org.joda.time.DateTime>
getTimeExtent()
VerticalCrs
getVerticalCrs()
Extent<Double>
getVerticalExtent()
-
-
-
Method Detail
-
getCentre
HorizontalPosition getCentre()
- Returns:
- the centre of the grid cell in horizontal space
-
getFootprint
Polygon getFootprint()
- Returns:
- the footprint of this grid cell in horizontal space.
-
getTimeExtent
Extent<org.joda.time.DateTime> getTimeExtent()
- Returns:
- the range of valid times in the time axis of parent grid
-
getChronology
org.joda.time.Chronology getChronology()
- Returns:
- the
Chronology
used in this grid cell
-
getVerticalExtent
Extent<Double> getVerticalExtent()
- Returns:
- the range of valid integers in the vertical axis of parent grid
-
getVerticalCrs
VerticalCrs getVerticalCrs()
- Returns:
- the
VerticalCrs
associated with thisGridCell4D
-
getGrid
GridDomain getGrid()
- Returns:
- the parent grid of this grid cell
-
-