Package oracle.spatial.georaster.image
Class GeoRasterImage.NodataMapping
- java.lang.Object
-
- oracle.spatial.georaster.image.GeoRasterImage.NodataMapping
-
- Enclosing class:
- GeoRasterImage
public static class GeoRasterImage.NodataMapping extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description boolean
m_isRange
indicate if it is nodata range or nodata valueboolean
m_isTransparent
set nodata pixels to transparent or opaquejava.lang.Double
m_new_value
new value for any pixel value in this no data rangedouble
m_nodata_end
the lower bound of nodata range, which is exclusivedouble
m_nodata_start
the lower bound of nodata range, which is inclusive
-
Constructor Summary
Constructors Constructor Description NodataMapping(double nodata_start, double nodata_end, java.lang.Double new_value, boolean isTransparent)
NodataMapping(double nodata_start, java.lang.Double new_value, boolean isTransparent)
-
-
-
Field Detail
-
m_nodata_start
public double m_nodata_start
the lower bound of nodata range, which is inclusive
-
m_nodata_end
public double m_nodata_end
the lower bound of nodata range, which is exclusive
-
m_new_value
public java.lang.Double m_new_value
new value for any pixel value in this no data range
-
m_isTransparent
public boolean m_isTransparent
set nodata pixels to transparent or opaque
-
m_isRange
public boolean m_isRange
indicate if it is nodata range or nodata value
-
-