我在Netlogo中加载了一个GIS形状文件,其坐标为街道两端。 做
set nodes-dataset gis:load-dataset "nodes.shp"
show gis:feature-list-of nodes-dataset gives me the list of gis features
[{{gis:VectorFeature ["HIGHWAY":""]["LON":"3.7282846"]["OSMID":"145809"]["LAT":"51.0559224"]}} {{gis:VectorFeature ["HIGHWAY":""]["LON":"3.717492"]["OSMID":"82775029"]["LAT":"51.0563512"]}} {{gis:VectorFeature ["HIGHWAY":""]["LON":"3.7173761"]["OSMID":"82775030"]["LAT":"51.0567027"]}} {{gis:VectorFeature ["HIGHWAY":""]["LON":"3.7182838"]["OSMID":"82775032"]["LAT":"51.0577545"]}} {{gis:VectorFeature ["HIGHWAY":""]["LON":"3.7187206"]["OSMI .....
包含每个节点的LAT和LON。
同样,我也将加入这些节点的街道/道路的shapefile加载到Netlogo中。
有没有办法计算这些节点之间的街道距离?
目的是获取距离列表并用直方图绘制它们。
感谢您的帮助
答案 0 :(得分:0)
我有" LENGTH"在每对节点之间作为我的shapefile的VectorFeatures的属性。 要提取我运行的数字
let dim-street []
foreach gis:feature-list-of edges-dataset [ [?1] ->
set dim-street lput ( read-from-string gis:property-value ?1 "LENGTH" ) dim-street
]