gis:读取shp文件

java 复制代码
public static void readShpFile(String shpPath) {
    File shpFile = new File(shpPath);
    try {
        // 通过给定的shapefile路径创建ShapefileDataStore对象
        ShapefileDataStore shapefileDataStore = new ShapefileDataStore(shpFile.toURI().toURL());
        
        // 设置编码为UTF-8,以防止属性中的中文字符出现乱码
        shapefileDataStore.setCharset(Charset.forName("UTF-8"));
        
        // 获取FeatureSource对象,用于获取要素集合并进行操作
        FeatureSource featuresource = shapefileDataStore.getFeatureSource(shapefileDataStore.getTypeNames()[0]);
        
        // 读取边界框(bbox)
        ReferencedEnvelope bbox = featuresource.getBounds();
        
        // 读取投影(坐标参考系统)
        CoordinateReferenceSystem crs = featuresource.getSchema().getCoordinateReferenceSystem();
        
        // 获取总要素数量
        int count = featuresource.getCount(Query.ALL);
        
        // 获取要素集合的几何类型(点、线、面等)
        GeometryType geometryType = featuresource.getSchema().getGeometryDescriptor().getType();
        
        // 读取要素集合
        SimpleFeatureCollection simpleFeatureCollection = (SimpleFeatureCollection) featuresource.getFeatures();
        
        // 获取属性字段列表
        List<AttributeDescriptor> attributes = simpleFeatureCollection.getSchema().getAttributeDescriptors();
        
        // 获取要素迭代器
        SimpleFeatureIterator simpleFeatureIterator = simpleFeatureCollection.features();
        
        // 遍历每一个要素
        while(simpleFeatureIterator.hasNext()) {
            SimpleFeature simpleFeature = simpleFeatureIterator.next();
            
            // 使用Java 8的流API遍历每一个属性值,并处理其他业务逻辑
            attributes.stream().forEach((a) -> {
                // 依次读取shapefile中每一个属性的值
                System.out.println(a.getLocalName() + ":" + simpleFeature.getAttribute(a.getLocalName()));
            });
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
    System.out.println("读取完成!");
}

以上代码是一个用于读取 Shapefile 文件的方法。该方法的主要功能包括:

  1. 创建 ShapefileDataStore 对象,用于读取 Shapefile 文件的数据源。
  2. 设置编码为 UTF-8 避免属性中的中文字符乱码。
  3. 获取 FeatureSource 对象,用于获取要素集合和元数据。
  4. 读取边界框(bbox)和投影(坐标参考系统)信息。
  5. 获取要素集合的总数量和几何类型。
  6. 读取要素集合,并获取属性字段列表。
  7. 遍历每一个要素,并打印每个属性字段的值。
    最后,输出读取完成的提示信息。

这段代码提供了一个简单的方式来读取 Shapefile 文件,并获取其中要素和属性的信息。你可以根据需要进一步处理和使用这些数据。

相关推荐
我不会编程55514 小时前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
李少兄14 小时前
Unirest:优雅的Java HTTP客户端库
java·开发语言·http
无名之逆15 小时前
Rust 开发提效神器:lombok-macros 宏库
服务器·开发语言·前端·数据库·后端·python·rust
似水এ᭄往昔15 小时前
【C语言】文件操作
c语言·开发语言
啊喜拔牙15 小时前
1. hadoop 集群的常用命令
java·大数据·开发语言·python·scala
xixixin_15 小时前
为什么 js 对象中引用本地图片需要写 require 或 import
开发语言·前端·javascript
W_chuanqi15 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
anlogic15 小时前
Java基础 4.3
java·开发语言
A旧城以西16 小时前
数据结构(JAVA)单向,双向链表
java·开发语言·数据结构·学习·链表·intellij-idea·idea
Liudef0616 小时前
deepseek v3-0324实现SVG 编辑器
开发语言·javascript·编辑器·deepseek