New install of NetLogo 7.0.3 on Debian Trixie into ~/apps/NetLogo 7.0.3/
Moved directories in ~/apps/NetLogo 7.0.3/extensions/.bundled to ~/apps/NetLogo 7.0.3/extensions/ since let time-series time:ts-load "time-series-data.csv" fails in a simple model with error: Nothing named TIME:TS-LOAD has been defined
Same error if the time: prefix is not used.
extensions [time]
to setup
clear-all
create-turtles 1 ; create one turtle
[
set color yellow
pen-down
]
reset-ticks
let time-series time:ts-load "time-series-data.csv" ; <<<< Error
end
to go
ask turtles [
rt random 360 ; set random heading
forward 1 ; advance one step
]
tick
end
Here is a minimal example that fails. It appears there is an issue with time extension ts-load as create does work.
extensions [csv time]
to setup
clear-all
reset-ticks
let dt time:create "2000/01/01 10:00"
let time-series time:ts-load "time-series-data.csv"
end
to go
tick
end