在我的NetLogo模型中,我已经加载了一个形状文件
set map gis:load-dataset "land_use.shp"
gis:set-world-envelope gis:envelope-of map
我可以根据他们是在水上还是在陆地上为这个形状文件的属性着色如下:
foreach gis:feature-list-of map
[if gis:property-value ? "CODE_12" = "523" [ gis:set-drawing-color blue gis:fill ? 2.0]
if gis:property-value ? "CODE_12" = "522" [ gis:set-drawing-color green gis:fill ? 2.0]
if gis:property-value ? "CODE_12" = "521" [ gis:set-drawing-color green gis:fill ? 2.0] ]
完成后,如何让我的代理根据其颜色与补丁进行交互?
例如,在没有GIS数据的标准模型中,我可能会有:
if [pcolor] of patch-here = blue [set size 2]
由于
答案 0 :(得分:1)
我找到了一个问题的解决方案:
to check
let estuaries gis:find-features map "CODE_12" "522"
if gis:intersects? estuaries self [
set color red
]
end