Package uk.ac.rdg.resc.edal.domain
Interface GridDomain
-
- All Superinterfaces:
DiscreteDomain<GeoPosition,GridCell4D>
,Domain<GeoPosition>
- All Known Implementing Classes:
SimpleGridDomain
public interface GridDomain extends DiscreteDomain<GeoPosition,GridCell4D>
The domain of aGridFeature
, modelled as a composition of a horizontal grid, plus t and z axes.- Author:
- Guy, Jon Blower
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HorizontalGrid
getHorizontalGrid()
TimeAxis
getTimeAxis()
VerticalAxis
getVerticalAxis()
long
size()
-
Methods inherited from interface uk.ac.rdg.resc.edal.domain.DiscreteDomain
getDomainObjects
-
-
-
-
Method Detail
-
getHorizontalGrid
HorizontalGrid getHorizontalGrid()
- Returns:
- the horizontal component of this domain
-
getVerticalAxis
VerticalAxis getVerticalAxis()
- Returns:
- the vertical component of this domain
-
getTimeAxis
TimeAxis getTimeAxis()
- Returns:
- the time component of this domain
-
size
long size()
- Returns:
- the size of this domain
-
-