GeoTIFF-jai 库的文档在哪里

发布于 2024-10-22 00:25:39 字数 438 浏览 8 评论 0原文

我正在尝试使用 GeoTIFF-jai 库在 Java 中生成经过地理校正的光栅图像。我尝试在 SourceForge 网站上查找有关如何执行此操作的文档,但 SourceForge 说“不幸的是,该项目尚未指出获得帮助的最佳方式。”有其他人尝试过使用这个库并能够找到有关它的任何文档吗?

如果确实没有文档,也许你可以回答这个问题。当我将库 .jar 文件导入到 Eclipse 项目中(使用右键单击 -> 导入...-> 存档文件)时,所有 .properties 文件都会导入,但不会导入 .class 文件。我需要 org.geotiff.images.jai 中的 GeoTIFFFactory 类才能创建新的 GeoTIFF 图像,但它不可用。知道为什么 .class 文件没有导入吗?我在导入时做错了什么吗? .jar 是否位于错误的目录中?

非常感谢任何有关这些问题的帮助。

谢谢, 瑞安

I am trying to use the GeoTIFF-jai Library to generate a geo-rectified, raster image in Java. I have tried looking on the SourceForge site for the documentation on how to do this, but SourceForge says "Unfortunately, this project hasn't indicated the best way to get help." Has anyone else tried using this library and been able to find any documentation on it?

If there truly is no documentation, maybe you can answer this question. When I import the library .jar file into my Eclipse project (using right-click->Import...->Archive File) all of the .properties files import but not the .class files. I need the GeoTIFFFactory class from org.geotiff.images.jai in order to create a new GeoTIFF image but it's not available. Any idea why the .class files are not importing? Am I doing something wrong on the import? Is the .jar in the wrong directory?

Any help with either of these questions is greatly appreciated.

Thanks,
Ryan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁把谁当真 2024-10-29 00:25:39

当我将库 .jar 文件导入到我的 Eclipse 项目中时(使用
右键单击 -> 导入...-> 存档文件)所有 .properties 文件
导入但不导入 .class 文件。我在导入时做错了什么吗?

是的。这不是在 Eclipse 中使用第三方 jar 的方式。您调用的向导主要用于导入带有源代码的存档以对其进行更改。相反,创建 Java 项目来保存源代码并通过项目属性 -> 添加对 jar 的依赖项Java 构建路径。您还可以在同一位置附加源代码存档(从 SourceForge 上的项目站点获取)。这将让您看到任何可用的 javadoc,如果根本没有文档,您至少可以单步执行代码。

关于缺乏文档,您更有可能在该项目的论坛上获得帮助,而不是在堆栈溢出上获得帮助(因为您在特定库的堆栈溢出上找到帮助的几率与该库的受欢迎程度成反比)。

When I import the library .jar file into my Eclipse project (using
right-click->Import...->Archive File) all of the .properties files
import but not the .class files. Am I doing something wrong on the import?

Yes. That's not how you use third-party jars in Eclipse. The wizard you invoked is used primarily for importing archives with source code to make changes to them. Instead create Java project to hold your source code and add a dependency on the jar via Project Properties -> Java Build Path. You can also attach a source code archive in the same place (get this from project's site on SourceForge). This will let you see any available javadoc and if there is no documentation at all, you can at least step through the code.

Regarding lack of documentation, you will be more likely to get help on that project's forum rather than on stack-overflow (since the odds of you finding help on stack-overflow with a particular library is inversely proportional to that library's popularity).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文