Package uk.ac.rdg.resc.edal.grid
Interface RegularGrid
-
- All Superinterfaces:
DiscreteDomain<HorizontalPosition,GridCell2D>,DiscreteHorizontalDomain<GridCell2D>,Domain<HorizontalPosition>,HorizontalDomain,HorizontalGrid,RectilinearGrid,Serializable
- All Known Implementing Classes:
RegularGridImpl
public interface RegularGrid extends RectilinearGrid
A two-dimensional grid whose coordinate values are equally-spaced along each axis, and whose axes in real space are aligned with the axes in grid space.- Author:
- Jon Blower
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegularAxisgetXAxis()Gets the x axis of the grid.RegularAxisgetYAxis()Gets the y axis of the grid.-
Methods inherited from interface uk.ac.rdg.resc.edal.domain.HorizontalDomain
getBoundingBox, getCoordinateReferenceSystem, getGeographicBoundingBox
-
Methods inherited from interface uk.ac.rdg.resc.edal.grid.HorizontalGrid
equals, findIndexOf, getDomainObjects, getXSize, getYSize, hashCode, size
-
-
-
-
Method Detail
-
getXAxis
RegularAxis getXAxis()
Gets the x axis of the grid.- Specified by:
getXAxisin interfaceRectilinearGrid
-
getYAxis
RegularAxis getYAxis()
Gets the y axis of the grid.- Specified by:
getYAxisin interfaceRectilinearGrid
-
-