it.geosolutions.jaiext.range.RangeFactory.createU()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(4.9k)|赞(0)|评价(0)|浏览(64)

本文整理了Java中it.geosolutions.jaiext.range.RangeFactory.createU方法的一些代码示例,展示了RangeFactory.createU的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。RangeFactory.createU方法的具体详情如下:
包路径:it.geosolutions.jaiext.range.RangeFactory
类名称:RangeFactory
方法名:createU

RangeFactory.createU介绍

暂无

代码示例

代码示例来源:origin: geosolutions-it/jai-ext

srcNoData[DataBuffer.TYPE_USHORT] = RangeFactory.createU(noDataS, minIncluded, noDataS, maxIncluded);
srcNoData[DataBuffer.TYPE_SHORT] = RangeFactory.create(noDataS, minIncluded, noDataS, maxIncluded);
srcNoData[DataBuffer.TYPE_INT] = RangeFactory.create(noDataI, minIncluded, noDataI, maxIncluded);

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  range = RangeFactory.createU(noDataUS, true, noDataUS, true);
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

rangeList[1].add(RangeFactory.createU((short) 0.0, true, (short) 100, true));
rangeList[2].add(RangeFactory.create((short) -1, true, (short) 100, true));
rangeList[3].add(RangeFactory.create(-1, true, 100, true));
noDataUShort = RangeFactory.createU(noDataU, minIncluded, noDataU, maxIncluded);
noDataShort = RangeFactory.create(noDataS, minIncluded, noDataS, maxIncluded);
noDataInt = RangeFactory.create(noDataI, minIncluded, noDataI, maxIncluded);

代码示例来源:origin: geosolutions-it/jai-ext

rangeU2bounds = RangeFactory.createU((short) 2, true, (short) 60, true);
rangeUpoint = RangeFactory.createU(arrayUS[2],true,arrayUS[2],true);
rangeS2bounds = RangeFactory.create((short) 1, true, (short) 60, true);
rangeSpoint = RangeFactory.create(arrayS[2],true,arrayS[2],true);

代码示例来源:origin: geosolutions-it/jai-ext

noDataUShort = new Range[] { RangeFactory.createU(noDataS, minIncluded, noDataS,
    maxIncluded) };
noDataShort = new Range[] { RangeFactory.create(noDataS, minIncluded, noDataS, maxIncluded) };

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  range = RangeFactory.createU(noDataUS, true, noDataUS, true);
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

@Test
public void testConvert() {
  checkRangeConversion(RangeFactory.create((byte) 255, (byte) 255));
  checkRangeConversion(RangeFactory.create(255d, 255d));
  checkRangeConversion(RangeFactory.create(255f, 255f));
  checkRangeConversion(RangeFactory.create(255, 255));
  checkRangeConversion(RangeFactory.create((short) 255, (short) 255));
  checkRangeConversion(RangeFactory.createU((short) 255, (short) 255));
}

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  range = RangeFactory.createU(noDataUS, true, noDataUS, true);
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  rangeNDUSHort = RangeFactory.createU(noDataUS, true, noDataUS, true);
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  range = RangeFactory.createU(noDataUS, true, noDataUS, true);
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  range = RangeFactory.createU(noDataUS, true, noDataUS, true);
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  rangeND = new Range[] { RangeFactory.createU(noDataUS, true, noDataUS, true) };
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

noDataUShort = RangeFactory.createU(noDataS, minIncluded, noDataS, maxIncluded);
noDataShort = RangeFactory.create(noDataS, minIncluded, noDataS, maxIncluded);
noDataInt = RangeFactory.create(noDataI, minIncluded, noDataI, maxIncluded);

代码示例来源:origin: geosolutions-it/jai-ext

noDataUShort = RangeFactory.createU(noDataS, minIncluded, noDataS, maxIncluded);
noDataShort = RangeFactory.create(noDataS, minIncluded, noDataS, maxIncluded);
noDataInt = RangeFactory.create(noDataI, minIncluded, noDataI, maxIncluded);

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  range = RangeFactory.createU(noDataUS, true, noDataUS, true);
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

noDataUShort = RangeFactory.createU(noDataU, minIncluded, noDataU, maxIncluded);
noDataShort = RangeFactory.create(noDataS, minIncluded, noDataS, maxIncluded);
noDataInt = RangeFactory.create(noDataI, minIncluded, noDataI, maxIncluded);

代码示例来源:origin: geosolutions-it/jai-ext

noDataUShort = RangeFactory.createU(noDataS, minIncluded, noDataS, maxIncluded);
noDataShort = RangeFactory.create(noDataS, minIncluded, noDataS, maxIncluded);
noDataInt = RangeFactory.create(noDataI, minIncluded, noDataI, maxIncluded);

代码示例来源:origin: geosolutions-it/jai-ext

break;
case DataBuffer.TYPE_USHORT:
  rangeND = RangeFactory.createU((short)100,true,(short)100,true);
  break;
case DataBuffer.TYPE_SHORT:

代码示例来源:origin: geosolutions-it/jai-ext

noDataUShort = RangeFactory.createU(noDataU, minIncluded, noDataU, maxIncluded);
noDataShort = RangeFactory.create(noDataS, minIncluded, noDataS, maxIncluded);
noDataInt = RangeFactory.create(noDataI, minIncluded, noDataI, maxIncluded);

代码示例来源:origin: geosolutions-it/jai-ext

rangeUS = RangeFactory.createU(noDataUS, true, noDataUS, true);
rangeS = RangeFactory.create(noDataS, true, noDataS, true);
rangeI = RangeFactory.create(noDataI, true, noDataI, true);

相关文章