在NetLogo中创建不同形状的景观

时间:2014-01-06 22:44:53

标签: netlogo

目前我在NetLogo中设置的景观包括顶部条带中的“typrAgro”补丁和底部块中的“typeTrop”。

to setup
ca
clear-all-plots
clear-output

set typeAgro 1  ;where people will be located
set typeTrop 2  ;where animals will be located
ask patches
[ set habitat typeAgro ]
ask patches with [pycor <= 500] ;world is 600 x 600 pixels
[ set habitat typeTrop]

set AgroForst patches with [ is-Agro? ]
set TropForst patches with [ is-Trop? ]

ask AgroForst
[ set pcolor 75 ]

ask TropForst
[ set pcolor 65 ]

reset-ticks                              

end

相反,我想创建具有多种通用形状的风景,例如,如下图所示。特别是,我不知道如何创建最后两个形状(长线性形状和随机多边形)。关于如何开始这方面的任何建议都会有所帮助。谢谢!

enter image description here

1 个答案:

答案 0 :(得分:2)

我建议的一种方法是使用绘画或其他任何东西创建地图,并使用不同的颜色定义您的地区,然后导入为背景。 使用

 import-pcolors  "test.png"

在您的设置过程中,您可以根据模型要求询问具有不同颜色的不同补丁来设置其参数。

enter image description here