Class CoverageDataSourcePixel
- java.lang.Object
-
- mil.nga.geopackage.extension.coverage.CoverageDataSourcePixel
-
public class CoverageDataSourcePixel extends Object
Contains values relevant to a source pixel location when finding a coverage data value- Since:
- 2.0.1
- Author:
- osbornb
-
-
Constructor Summary
Constructors Constructor Description CoverageDataSourcePixel(float pixel, int min, int max, float offset)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMax()
Get the maxint
getMin()
Get the minfloat
getOffset()
Get the offsetfloat
getPixel()
Get the pixelvoid
setMax(int max)
Set the maxvoid
setMin(int min)
Set the minvoid
setOffset(float offset)
Set the offsetvoid
setPixel(float pixel)
Set the pixel
-
-
-
Method Detail
-
getPixel
public float getPixel()
Get the pixel- Returns:
- pixel
-
getMin
public int getMin()
Get the min- Returns:
- min
-
getMax
public int getMax()
Get the max- Returns:
- max
-
getOffset
public float getOffset()
Get the offset- Returns:
- offset
-
setPixel
public void setPixel(float pixel)
Set the pixel- Parameters:
pixel
- pixel value
-
setMin
public void setMin(int min)
Set the min- Parameters:
min
- min pixel
-
setMax
public void setMax(int max)
Set the max- Parameters:
max
- max pixel
-
setOffset
public void setOffset(float offset)
Set the offset- Parameters:
offset
- pixel offset
-
-