geometries几何图形转存为geojson文件

Posted jobgeo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了geometries几何图形转存为geojson文件相关的知识,希望对你有一定的参考价值。

 1     # 输出json文件
 2     features = []
 3     for line in pts:    
 4         (x0,y0,x1,y1) = line 
 5 
 6         geo = {type: LineString, coordinates: [ [x0, y0], [x1, y1] ] }
 7         
 8         feature = {type: Feature, geometry:  geo }
 9 
10         features.append(feature)
11 
12     geometries = {
13         type: FeatureCollection,
14         features: features,
15     }
16 
17     geo_str = json.dumps(geometries) 
18 
19     f = open(d:/temp/0000001/roads.json,w)
20     f.write(geo_str)
21     f.close()

 

以上是关于geometries几何图形转存为geojson文件的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 python 从 geojson 创建 GeometryCollection?

Cesium GeoJson数据格式

Spring Boot(MVC)下空间字段(Geometry)与geojson的自动转换

GeoJSON 和 TopoJSON

关于Geometry转GeoJson

GeoJson的生成与解析,JSON解析,Java读写geojson,geotools读取shp文件,Geotools中Geometry对象与GeoJson的相互转换