You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries.conf
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Unlike NetLogo’s lists and strings, arrays are “mutable”. That means that
24
24
codeName: "bitmap"
25
25
shortDescription: "Image manipulation and drawing"
26
26
longDescription: """The Bitmap Extension allows you to manipulate and import images into the drawing and patches. It offers features not provided by the NetLogo core primitives, such as: scaling, manipulation of different color channels, and width and height reporters."""
27
-
version: "1.3.1"
27
+
version: "1.3.2"
28
28
homepage: "https://docs.netlogo.org/bitmap.html"
29
29
}
30
30
{
@@ -102,15 +102,15 @@ It allows you to perform unsupervised density-based clustering of turtles and pa
102
102
longDescription: """This extension adds GIS (Geographic Information Systems) support to NetLogo. It provides the ability to load vector GIS data (points, lines, and polygons), and raster GIS data (grids) into your model.
103
103
104
104
The extension supports vector data in the form of ESRI shapefiles. The shapefile (.shp) format is the most common format for storing and exchanging vector GIS data. The extension supports raster data in the form of ESRI ASCII Grid files. The ASCII grid file (.asc or .grd) is not as common as the shapefile, but is supported as an interchange format by most GIS platforms."""
105
-
version: "1.4.1"
105
+
version: "1.4.2"
106
106
homepage: "https://docs.netlogo.org/gis.html"
107
107
}
108
108
{
109
109
name: "GoGo"
110
110
codeName: "gogo"
111
111
shortDescription: "Interact with HID-based GoGo boards"
112
112
longDescription: """This is the new extension for physical computing, using sensors, motors, etc in NetLogo. It interfaces with GoGo boards running Human Interface Driver (HID) firmware, and it replaces the old GoGo Extension, which used USB-serial communications."""
113
-
version: "2.1.2"
113
+
version: "2.2.0"
114
114
homepage: "https://docs.netlogo.org/gogo.html"
115
115
}
116
116
{
@@ -140,7 +140,7 @@ A continuous function optimization problem is one where you are are trying to fi
140
140
Asking and reporting in LevelSpace is conceptually pretty straight forward: You pass blocks of code to child models, and the child models respond as if you had typed that code into their Command Center. LevelSpace allows you to report strings, numbers, and lists from a child to its parent.
141
141
142
142
In general, the LevelSpace syntax has been designed to align with existing NetLogo primitives whenever possible."""
143
-
version: "2.4.3"
143
+
version: "2.4.4"
144
144
homepage: "https://docs.netlogo.org/ls.html"
145
145
}
146
146
{
@@ -235,7 +235,7 @@ If you’d like to know more about matrices and how they can be used, you might
235
235
Caution:
236
236
237
237
The profiler extension is experimental. It is not yet well tested or user friendly. Nonetheless, we think some users will find it useful."""
@@ -319,7 +319,7 @@ Secondly, it means not having to carry around external files (like CSV or GIS da
319
319
codeName: "sound"
320
320
shortDescription: "Play notes and sound files"
321
321
longDescription: """"""
322
-
version: "1.2.1"
322
+
version: "1.2.2"
323
323
homepage: "https://docs.netlogo.org/sound.html"
324
324
}
325
325
{
@@ -365,7 +365,7 @@ Although stats can be used to analyze the overall results of a run of a model, i
365
365
Modelers commonly need to use time series data in NetLogo. The time extension provides convenient primitives for handling time series data. With a single command, you can load an entire time series data set from a text file. The first column in that text file holds dates or datetimes. The remaining columns can be numeric or string values. You then access the data by time and by column heading, akin to saying "get the flow from May 8, 2008".
366
366
367
367
The time extension enables a different approach to scheduling actions in NetLogo. Traditionally, a NetLogo modeler puts a series of actions or procedure calls into the "go" procedure, which is executed once each tick. Sometimes it is more natural or more efficient to instead say "have agent X execute procedure Y at time Z". This is what discrete event scheduling (also know as "dynamic scheduling") enables. Discrete event simulation has a long history and extensive literature, and this extension makes it much easier to use in NetLogo."""
0 commit comments