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-dimensionalDomainin the horizontal plane- Author:
- Guy Griffiths, Jon Blower
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BoundingBoxgetBoundingBox()Returns the bounding box of the domain in the domain's own coordinate reference system.org.opengis.referencing.crs.CoordinateReferenceSystemgetCoordinateReferenceSystem()Returns the co-ordinate reference system of this domainorg.opengis.metadata.extent.GeographicBoundingBoxgetGeographicBoundingBox()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 aBoundingBoxin a different CRS. Consequently thisBoundingBoxis 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
-
-