Class CoverageDataRequest
- java.lang.Object
- 
- mil.nga.geopackage.extension.coverage.CoverageDataRequest
 
- 
 public class CoverageDataRequest extends Object Coverage Data request to retrieve coverage data values for a point or bounding box- Since:
- 2.0.1
- Author:
- osbornb
 
- 
- 
Constructor SummaryConstructors Constructor Description CoverageDataRequest(double latitude, double longitude)ConstructorCoverageDataRequest(BoundingBox boundingBox)Constructor
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description BoundingBoxgetBoundingBox()Get the bounding boxBoundingBoxgetProjectedBoundingBox()Get the projected bounding boxbooleanisPoint()Is the request for a single pointBoundingBoxoverlap(BoundingBox projectedCoverage)Get the bounding box overlap between the projected bounding box and the coverage data bounding boxvoidsetProjectedBoundingBox(BoundingBox projectedBoundingBox)Set the projected bounding box
 
- 
- 
- 
Constructor Detail- 
CoverageDataRequestpublic CoverageDataRequest(BoundingBox boundingBox) Constructor- Parameters:
- boundingBox- bounding box
 
 - 
CoverageDataRequestpublic CoverageDataRequest(double latitude, double longitude)Constructor- Parameters:
- latitude- latitude coordinate
- longitude- longitude coordinate
 
 
- 
 - 
Method Detail- 
getBoundingBoxpublic BoundingBox getBoundingBox() Get the bounding box- Returns:
- bounding box
 
 - 
isPointpublic boolean isPoint() Is the request for a single point- Returns:
- true if a point request
 
 - 
getProjectedBoundingBoxpublic BoundingBox getProjectedBoundingBox() Get the projected bounding box- Returns:
- projected bounding box
 
 - 
setProjectedBoundingBoxpublic void setProjectedBoundingBox(BoundingBox projectedBoundingBox) Set the projected bounding box- Parameters:
- projectedBoundingBox- projected bounding box
 
 - 
overlappublic BoundingBox overlap(BoundingBox projectedCoverage) Get the bounding box overlap between the projected bounding box and the coverage data bounding box- Parameters:
- projectedCoverage- projected coverage
- Returns:
- overlap bounding box
 
 
- 
 
-