如何用 Java 编写 GEOTIFF?
我想编写一个 GEOTIFF,其中包含 Java 中的所有地理元数据。哪个图书馆等最适合此目的?
I want to write a GEOTIFF, with all the geographic metadata in Java. Which library etc. works best for this purpose?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
GeoTIFF-JAI 应该能够做到这一点:
http://sourceforge.net/projects/geotiff-jai/ GeoTIFF
-AI 合并了 Extensible-TIFF-JAI,这是一种可扩展的编解码器,允许平铺图像等。
还有一个用于 Java ImageIO 的 GeoTIFF 元数据适配器,网址为:
www.gelbin.org/code/,NetCDF
库还包括GeoTIFF 编写器,记录于:
www.unidata.ucar.edu/software/netcdf-java/v4.0/javadocAll/ucar/nc2/geotiff/GeotiffWriter.html
GeoTIFF-JAI should be able to do this:
http://sourceforge.net/projects/geotiff-jai/
GeoTIFF-AI incorporates Extensible-TIFF-JAI, which is an extensible codec allowing tiled images, etc.
There's also a GeoTIFF metadata adapter for Java ImageIO at:
www.gelbin.org/code/
and the NetCDF library also includes a GeoTIFF writer, documented at:
www.unidata.ucar.edu/software/netcdf-java/v4.0/javadocAll/ucar/nc2/geotiff/GeotiffWriter.html
这不是一个理想的解决方案,但两个月内没有人回复...
libgeotiff 是一个非常好的开源 C++ 库,我已成功在生产代码中使用它来读取 geotiff 元数据。这可以通过桥接器在 Java 中使用。
This isn't an ideal solution but as no one else has replied in two months...
libgeotiff is a pretty good open source C++ library that I have successfully used in production code to read geotiff meta data. This could be used in Java with a bridge.
查看geotools geotiffwriter:http://docs.geotools。 org/stable/javadocs/org/geotools/gce/geotiff/GeoTiffWriter.html
check out geotools geotiffwriter: http://docs.geotools.org/stable/javadocs/org/geotools/gce/geotiff/GeoTiffWriter.html
Apache Commons Imaging 提供纯基于 Java 的 TiFF 图像操作。我在 GIS-Stack- 中遇到了这个问题交换。它提供了一系列操作 GeoTiFF 的功能。
Apache Commons Imaging offers a pure Java-based TiFF image manipulation. I came across by following this question in GIS-Stack-Exchange. It offers a range of functionalities to manipulate GeoTiFF.