用于可视化 GML 片段的最佳 Java 开源工具包

发布于 2024-07-06 05:49:52 字数 1557 浏览 9 评论 0原文

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

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

发布评论

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

评论(2

许你一世情深 2024-07-13 05:49:53

请注意,GML 实际上并未定义文件格式。 它为定义您自己的 xml 模式提供了一个抽象起点。 我们使用模式来整理哪些 xml 元素映射到哪些 Java 类(因此日期显示为 Date,几何显示为 JTS Geometry,等等)。

这对那些只获得 GML“文件”的人来说已经够痛苦的了; 我最近向 GeoTools 添加了一个实用程序类(称为 GML),它将假设任何未定义的元素都是字符串。

以下是测试用例的示例::

        URL url = TestData.getResource(this, "states.gml");
        InputStream in = url.openStream();

        GML gml = new GML(Version.GML3);
        SimpleFeatureCollection featureCollection = gml.decodeFeatureCollection(in);

您可以采用生成的 featureCollection 并使用 JMapPane 类,如 GeoTools 快速入门中所示::

    MapContext map = new DefaultMapContext();
    map.setTitle("Quickstart");
    map.addLayer(featureCollection, null);

    // Now display the map
    JMapFrame.showMap(map);

You are warned that GML does not actually define a file format. It provides an abstract starting point for defining your own xml schema. We use the schema to sort out what xml elements to map to what Java class (so dates show up as Date, geometry as a JTS Geometry, etc...).

This causes enough grief with people that have only been provided with a GML "file"; that I have recently added a utility class (called GML) to GeoTools that will assume any undefined element is a String.

Here is an example from test cases::

        URL url = TestData.getResource(this, "states.gml");
        InputStream in = url.openStream();

        GML gml = new GML(Version.GML3);
        SimpleFeatureCollection featureCollection = gml.decodeFeatureCollection(in);

You can take the resulting featureCollection and use JMapPane class as shown in the GeoTools quickstart::

    MapContext map = new DefaultMapContext();
    map.setTitle("Quickstart");
    map.addLayer(featureCollection, null);

    // Now display the map
    JMapFrame.showMap(map);
等待圉鍢 2024-07-13 05:49:52

GeoTools 提供了一个用于读取 GML 文件的库。 他们还提供 UI 组件来显示其库支持的地理空间格式。

GeoTools provides a library for reading GML files. They also provide UI components for displaying geospatial formats their library supports.

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