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 String
COLUMN_ID
id field namestatic String
COLUMN_MAX
max columnstatic String
COLUMN_MEAN
mean columnstatic String
COLUMN_MIN
min columnstatic String
COLUMN_OFFSET
offset columnstatic String
COLUMN_SCALE
scale columnstatic String
COLUMN_STANDARD_DEVIATION
standardDeviation columnstatic String
COLUMN_TABLE_ID
tableId columnstatic String
COLUMN_TABLE_NAME
tableName columnstatic String
TABLE_NAME
Table 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 Contents
getContents()
Get the contentslong
getId()
Get the idDouble
getMax()
Get the maximum value of this tileDouble
getMean()
Get the arithmetic mean of values in this tileDouble
getMin()
Get the minimum value of this tiledouble
getOffset()
Get the offsetdouble
getScale()
Get the scaleDouble
getStandardDeviation()
Get the standard deviation of values in this tilelong
getTableId()
Get the table idString
getTableName()
Get the name of tile pyramid user data tablevoid
setContents(Contents contents)
Set the contentsvoid
setMax(Double max)
Set the maximum value of this tilevoid
setMean(Double mean)
Set the arithmetic mean of values in this tilevoid
setMin(Double min)
Set the minimum value of this tilevoid
setOffset(double offset)
Set the offsetvoid
setScale(double scale)
Set the scalevoid
setStandardDeviation(Double standardDeviation)
Set the standard deviation of values in this tilevoid
setTableId(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
-
-