Class CoverageDataResults
- java.lang.Object
- 
- mil.nga.geopackage.extension.coverage.CoverageDataResults
 
- 
 public class CoverageDataResults extends Object Tiled Gridded Coverage Data results containing the coverage values from a requested area from a tile matrix zoom level- Since:
- 2.0.1
- Author:
- osbornb
 
- 
- 
Constructor SummaryConstructors Constructor Description CoverageDataResults(Double[][] values, TileMatrix tileMatrix)Constructor
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetHeight()Get the results heightTileMatrixgetTileMatrix()Get the tile matrix used to find the coverage data valuesDoublegetValue(int row, int column)Get the coverage data value at the row and columnDouble[][]getValues()Get the double array of coverage data values stored as [row][column]intgetWidth()Get the results widthlonggetZoomLevel()Get the zoom level of the results
 
- 
- 
- 
Constructor Detail- 
CoverageDataResultspublic CoverageDataResults(Double[][] values, TileMatrix tileMatrix) Constructor- Parameters:
- values- coverage data values
- tileMatrix- tile matrix
 
 
- 
 - 
Method Detail- 
getValuespublic Double[][] getValues() Get the double array of coverage data values stored as [row][column]- Returns:
- coverage data values
 
 - 
getTileMatrixpublic TileMatrix getTileMatrix() Get the tile matrix used to find the coverage data values- Returns:
- tile matrix
 
 - 
getHeightpublic int getHeight() Get the results height- Returns:
- height
 
 - 
getWidthpublic int getWidth() Get the results width- Returns:
- width
 
 - 
getValuepublic Double getValue(int row, int column) Get the coverage data value at the row and column- Parameters:
- row- row index
- column- column index
- Returns:
- coverage data value
 
 - 
getZoomLevelpublic long getZoomLevel() Get the zoom level of the results- Returns:
- zoom level
 
 
- 
 
-