我最近开始使用GeoTools开始我的第一个程序,其中我也使用JAI-Java Advanced Imaging 1_1_2_01和JDK 1_7。 在我添加GeoTiff Jars 之前一切正常。我发现以下错误
线程中的异常" main" java.lang.NoClassDefFoundError:无法初始化类javax.media.jai.JAI 在org.geotools.gce.geotiff.GeoTiffReader.read(GeoTiffReader.java:607) 在com.rgb.PixelExtractor.extract(PixelExtractor.java:55) 在com.rgb.RGBSpliter.main(RGBSpliter.java:136)
守则如下
public void extract(File f, String name, String date) throws Exception {
ParameterValue<OverviewPolicy> policy = AbstractGridFormat.OVERVIEW_POLICY
.createValue();
policy.setValue(OverviewPolicy.IGNORE);
// this will basically read 4 tiles worth of data at once from the disk...
ParameterValue<String> gridsize = AbstractGridFormat.SUGGESTED_TILE_SIZE.createValue();
//gridsize.setValue(512 * 4 + "," + 512);
// Setting read type: use JAI ImageRead (true) or ImageReaders read methods (false)
ParameterValue<Boolean> useJaiRead = AbstractGridFormat.USE_JAI_IMAGEREAD.createValue();
useJaiRead.setValue(true);
//reader.read(new GeneralParameterValue[] { policy, gridsize, useJaiRead });
// The line that throws error
GridCoverage2D image
= new GeoTiffReader(f).read(new GeneralParameterValue[]{policy, gridsize, useJaiRead});
Rectangle2D bounds2D = image.getEnvelope2D().getBounds2D();
bounds2D.getCenterX();
// calculate zoom level for the image
GridGeometry2D geometry = image.getGridGeometry();
BufferedImage img = ImageIO.read(f);
// ColorModel colorModel = img.getColorModel(
WritableRaster raster = img.getRaster();
int numBands = raster.getNumBands();
int w = img.getWidth();
int h = img.getHeight();
outer:
for (int i = 0; i < w; i++) {//width...
for (int j = 0; j < h; j++) {
double[] latlon = geo(geometry, i, j);
double lat = latlon[0];
double lon = latlon[1];
Double s = 0d;
String originalBands = "";
for (int k = 0; k < numBands; k++) {
double d = raster.getSampleDouble(i, j, k);
originalBands += d + ",";
s += d;
}
originalBands = originalBands.substring(0, originalBands.length() - 1);
if (s.compareTo(0d) == 0) {
continue;
}
String geoHash = GeohashUtils.encodeLatLon(lat, lon);
//here do something with the bands, lat, long, geohash, etc....
}
}
}
private static double[] geo(GridGeometry2D geometry, int x, int y) throws Exception {
//int zoomlevel = 1;
Envelope2D pixelEnvelop = geometry.gridToWorld(new GridEnvelope2D(x, y, 1, 1));
// pixelEnvelop.getCoordinateReferenceSystem().getName().getCodeSpace();
return new double[]{pixelEnvelop.getCenterY(), pixelEnvelop.getCenterX()};
}
}
JDK Jars
其他罐子
我还为GeoTools jar添加了classpath变量
编辑:
我的jai在没有GeoTools Integration的情况下工作,但是当我添加gt-geotiff-14.4.jar
时,它会尝试添加JAI-core-1.1.3.jar
,这与我的JDK 1.7中的jai-core.jar
冲突。所以我删除了JAI-core-1.1.3.jar
和相关的jar,但它仍然给我同样的错误。
答案 0 :(得分:4)
最后,当我删除了Geotiff jai-core-1.1.3.jar
,jai-codec-1.1.3.jar
和jai-imageio-1.1.jar
文件并为jai-ext的gt-utility类文件添加了新类时,它才起作用。我刚从github复制并添加到我项目的src。 gt-utility 是缺少的那个。这些罐子也很矛盾。
答案 1 :(得分:2)
您必须将jai-core.jar
添加到类路径
答案 2 :(得分:0)
请按照JAI的GeoTools setup instructions说明 :
Java高级成像Java高级成像是一种图像处理 库允许您形成操作链来处理栅格 以类似于函数式编程的方式。
参考文献:
http://java.net/projects/jai-core下载此版本的JAI
Java Advanced Imaging API 1.1.3在撰写本文时,Oracle是 迁移java项目 - 尝试以下方法:
http://download.java.net/media/jai/builds/release/1_1_3/ http://download.java.net/media/jai/builds/release/1_1_3/INSTALL.html 点击适合您平台的链接,下载适用于您JDK的JAI:
示例:jai-1_1_3-lib-windows-i586-jdk.exe
使用单击安装程序将JAI安装到JDK中
点击适合您平台的链接,为您的JRE下载JAI:
示例:jai-1_1_3-lib-windows-i586-jre.exe
使用单击安装程序将JAI安装到JRE中
(如果你正在使用linux,你当然需要选择 适当的下载)