码迷,mamicode.com
首页 > Web开发 > 详细

geometries几何图形转存为geojson文件

时间:2018-09-19 16:12:33      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:cti   col   lin   .json   close   nat   nbsp   span   pen   

 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文件

标签:cti   col   lin   .json   close   nat   nbsp   span   pen   

原文地址:https://www.cnblogs.com/jobgeo/p/9674693.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!