Package uk.ac.rdg.resc.edal.domain
Interface HorizontalDomain
-
- All Superinterfaces:
Domain<HorizontalPosition>
- All Known Subinterfaces:
DiscreteHorizontalDomain<DO>
,HorizontalGrid
,RectilinearGrid
,RegularGrid
,StaggeredHorizontalGrid
- All Known Implementing Classes:
AbstractCurvilinearGrid
,AbstractHorizontalGrid
,AbstractTransformedGrid
,CdmTransformedGrid
,DefinedStaggeredGrid
,DerivedStaggeredGrid
,HorizontalMesh
,LookUpTableGrid
,MapDomain
,PointCollectionDomain
,RectilinearGridImpl
,RegularGridImpl
,SimpleHorizontalDomain
public interface HorizontalDomain extends Domain<HorizontalPosition>
A two-dimensionalDomain
in the horizontal plane- Author:
- Guy Griffiths, Jon Blower
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BoundingBox
getBoundingBox()
Returns the bounding box of the domain in the domain's own coordinate reference system.org.opengis.referencing.crs.CoordinateReferenceSystem
getCoordinateReferenceSystem()
Returns the co-ordinate reference system of this domainorg.opengis.metadata.extent.GeographicBoundingBox
getGeographicBoundingBox()
Returns the bounding box of the domain in WGS84 latitude-longitude coordinates.
-
-
-
Method Detail
-
getBoundingBox
BoundingBox getBoundingBox()
Returns the bounding box of the domain in the domain's own coordinate reference system. For domains which do not have a native co-ordinate reference system this may return aBoundingBox
in a different CRS. Consequently thisBoundingBox
is not guaranteed to be a tight bound around the domain.
-
getGeographicBoundingBox
org.opengis.metadata.extent.GeographicBoundingBox getGeographicBoundingBox()
Returns the bounding box of the domain in WGS84 latitude-longitude coordinates.
-
getCoordinateReferenceSystem
org.opengis.referencing.crs.CoordinateReferenceSystem getCoordinateReferenceSystem()
Returns the co-ordinate reference system of this domain
-
-