geotools
arenn
怕什么真理无穷,进一步有进一步的欢喜
展开
-
由shp文件生成geojson
一、读取shp文件内容 并 据此 生成FeatureJson public static List readShp(String path){ ShapefileDataStore shpDataStore = null; List list = new ArrayList(); try{ shpDataStore = new ShapefileDat原创 2017-04-11 14:02:42 · 3871 阅读 · 0 评论 -
读、写、copy shp文件
一、读shp文件 public static void readShp(String path){ ShapefileDataStore shpDataStore = null; try{ shpDataStore = new ShapefileDataStore(new File(path).toURI().toURL());原创 2017-04-11 14:42:26 · 1464 阅读 · 0 评论 -
用geotools在内存新建一个layer并显示
通常是通过读取某个shp文件,将shp中的图层显现出来,如下: File file = JFileDataStoreChooser.showOpenFile("shp", null); if (file == null) { return; } FileDataStore store = FileDataStoreFin原创 2017-03-17 10:16:11 · 1633 阅读 · 3 评论