
Newest 'netlogo' Questions - Stack Overflow
Aug 1, 2012 · 0answers 36views NetLogo GIS assign shapefile variable (polygon/line) to patch I’m working on a NetLogo model where I’ve loaded a raster file as my base map (this works). I …
How to use list values inside lists in Netlogo - Stack Overflow
Apr 7, 2022 · How to use list values inside lists in Netlogo Asked 3 years, 6 months ago Modified 3 years, 6 months ago Viewed 2k times
Netlogo - Stop simulation after a certain event - Stack Overflow
Oct 25, 2016 · I want my Netlogo simulation to stop after a certain event (In this case after all the black patches have been converted by turtles into yellow patches). How might I accomplish this?
netlogo - Is it possible to change patch color for a range of …
Mar 11, 2022 · Is it possible to change a range of patches color in the code tab? Instead of setting each individual coordinate. This would be done as part of initial model setup. I am essentially …
netlogo - How to properly plot variables - Stack Overflow
Jul 3, 2015 · NetLogo recommended practice is to do this in the interface directly rather than in code. So, you could create a plot on the interface with, for example mean [revenue] of turtles …
netlogo - Multiple or conditions within if command - Stack Overflow
Mar 3, 2021 · I am trying to direct turtles towards a cone of patches if total chemical level in the cone is greater than regular chemical on either side of the turtle. However, my code involves …
NetLogo: the meaning of TO-REPORT explained for dummies?
I have a problem to understand the role of to-report and report in NetLogo, even it seems pretty useful and I can't really find a help written in "human style" language. In NetLogo dictionnary ht...
Error: Expected a literal value - NetLogo - Stack Overflow
Nov 23, 2021 · I am unable to understand the following error: "expected a literal value". But, it is a literal value, why not accept it? Can someone help me? Thanks turtles …
NetLogo - How to show the current coordinates of a turtle
Nov 17, 2012 · 6 I have been trying for quite some time to show the current coordinates of a turtle in NetLogo. I'm aware that to show one of the coordinates, I could use: show [xcor] of turtle 0 …
Netlogo: how to color a patch only when a turtle is on it?
Nov 8, 2018 · The comment by @Jesse001 is on the right track. Try this: ask patches [ set pcolor ifelse-value any? turtles-here [red] [green] ] or the slightly easier to read equivalent: ask …