Class GriddedTile
- java.lang.Object
-
- mil.nga.geopackage.extension.coverage.GriddedTile
-
public class GriddedTile extends Object
Gridded Tile object, for indexing data within user tables- Since:
- 1.2.1
- Author:
- osbornb
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOLUMN_IDid field namestatic StringCOLUMN_MAXmax columnstatic StringCOLUMN_MEANmean columnstatic StringCOLUMN_MINmin columnstatic StringCOLUMN_OFFSEToffset columnstatic StringCOLUMN_SCALEscale columnstatic StringCOLUMN_STANDARD_DEVIATIONstandardDeviation columnstatic StringCOLUMN_TABLE_IDtableId columnstatic StringCOLUMN_TABLE_NAMEtableName columnstatic StringTABLE_NAMETable name
-
Constructor Summary
Constructors Constructor Description GriddedTile()Default ConstructorGriddedTile(GriddedTile griddedTile)Copy Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContentsgetContents()Get the contentslonggetId()Get the idDoublegetMax()Get the maximum value of this tileDoublegetMean()Get the arithmetic mean of values in this tileDoublegetMin()Get the minimum value of this tiledoublegetOffset()Get the offsetdoublegetScale()Get the scaleDoublegetStandardDeviation()Get the standard deviation of values in this tilelonggetTableId()Get the table idStringgetTableName()Get the name of tile pyramid user data tablevoidsetContents(Contents contents)Set the contentsvoidsetMax(Double max)Set the maximum value of this tilevoidsetMean(Double mean)Set the arithmetic mean of values in this tilevoidsetMin(Double min)Set the minimum value of this tilevoidsetOffset(double offset)Set the offsetvoidsetScale(double scale)Set the scalevoidsetStandardDeviation(Double standardDeviation)Set the standard deviation of values in this tilevoidsetTableId(long tableId)Set the table id
-
-
-
Field Detail
-
TABLE_NAME
public static final String TABLE_NAME
Table name- See Also:
- Constant Field Values
-
COLUMN_ID
public static final String COLUMN_ID
id field name- See Also:
- Constant Field Values
-
COLUMN_TABLE_NAME
public static final String COLUMN_TABLE_NAME
tableName column- See Also:
- Constant Field Values
-
COLUMN_TABLE_ID
public static final String COLUMN_TABLE_ID
tableId column- See Also:
- Constant Field Values
-
COLUMN_SCALE
public static final String COLUMN_SCALE
scale column- See Also:
- Constant Field Values
-
COLUMN_OFFSET
public static final String COLUMN_OFFSET
offset column- See Also:
- Constant Field Values
-
COLUMN_MIN
public static final String COLUMN_MIN
min column- See Also:
- Constant Field Values
-
COLUMN_MAX
public static final String COLUMN_MAX
max column- See Also:
- Constant Field Values
-
COLUMN_MEAN
public static final String COLUMN_MEAN
mean column- See Also:
- Constant Field Values
-
COLUMN_STANDARD_DEVIATION
public static final String COLUMN_STANDARD_DEVIATION
standardDeviation column- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GriddedTile
public GriddedTile()
Default Constructor
-
GriddedTile
public GriddedTile(GriddedTile griddedTile)
Copy Constructor- Parameters:
griddedTile- gridded tile to copy- Since:
- 1.3.0
-
-
Method Detail
-
getId
public long getId()
Get the id- Returns:
- id
-
getContents
public Contents getContents()
Get the contents- Returns:
- contents
-
setContents
public void setContents(Contents contents)
Set the contents- Parameters:
contents- contents
-
getTableName
public String getTableName()
Get the name of tile pyramid user data table- Returns:
- name of tile pyramid user data table
-
getTableId
public long getTableId()
Get the table id- Returns:
- table id
-
setTableId
public void setTableId(long tableId)
Set the table id- Parameters:
tableId- table id
-
getScale
public double getScale()
Get the scale- Returns:
- scale as a multiple relative to the unit of measure
-
setScale
public void setScale(double scale)
Set the scale- Parameters:
scale- scale as a multiple relative to the unit of measure
-
getOffset
public double getOffset()
Get the offset- Returns:
- offset to the 0 value
-
setOffset
public void setOffset(double offset)
Set the offset- Parameters:
offset- offset to the 0 value
-
getMin
public Double getMin()
Get the minimum value of this tile- Returns:
- minimum value of this tile
-
setMin
public void setMin(Double min)
Set the minimum value of this tile- Parameters:
min- minimum value of this tile
-
getMax
public Double getMax()
Get the maximum value of this tile- Returns:
- maximum value of this tile
-
setMax
public void setMax(Double max)
Set the maximum value of this tile- Parameters:
max- maximum value of this tile
-
getMean
public Double getMean()
Get the arithmetic mean of values in this tile- Returns:
- arithmetic mean of values in this tile
-
setMean
public void setMean(Double mean)
Set the arithmetic mean of values in this tile- Parameters:
mean- arithmetic mean of values in this tile
-
getStandardDeviation
public Double getStandardDeviation()
Get the standard deviation of values in this tile- Returns:
- standard deviation of values in this tile
-
setStandardDeviation
public void setStandardDeviation(Double standardDeviation)
Set the standard deviation of values in this tile- Parameters:
standardDeviation- standard deviation of values in this tile
-
-