Class 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 value
      boolean m_isTransparent
      set nodata pixels to transparent or opaque
      java.lang.Double m_new_value
      new value for any pixel value in this no data range
      double m_nodata_end
      the lower bound of nodata range, which is exclusive
      double 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)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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
    • Constructor Detail

      • NodataMapping

        public NodataMapping​(double nodata_start,
                             double nodata_end,
                             java.lang.Double new_value,
                             boolean isTransparent)
      • NodataMapping

        public NodataMapping​(double nodata_start,
                             java.lang.Double new_value,
                             boolean isTransparent)