Skip to content

Commit add76b7

Browse files
committed
Update doc links for all bundled extensions
1 parent 8ad46c5 commit add76b7

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

libraries.conf

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ extensions: [
55
shortDescription: "Communicate with an Arduino device"
66
longDescription: """This extension provides 'no-frills' communication between NetLogo and a connected Arduino."""
77
version: "3.1.0"
8-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/arduino.html"
8+
homepage: "https://docs.netlogo.org/7.0.0-beta2/arduino.html"
99
}
1010
{
1111
name: "Array"
@@ -17,15 +17,15 @@ Arrays are useful when you need a collection of values whose size is fixed. You
1717

1818
Unlike NetLogo’s lists and strings, arrays are “mutable”. That means that you can actually modify them directly, rather than constructing an altered copy as with lists. If the array is used in more than one place in your code, any changes you make will show up everywhere. It’s tricky to write code involving mutable structures and it’s easy to make subtle errors or get surprising results, so we suggest sticking with lists and strings unless you’re certain you want and need mutability."""
1919
version: "1.2.0"
20-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/array.html"
20+
homepage: "https://docs.netlogo.org/7.0.0-beta2/array.html"
2121
}
2222
{
2323
name: "Bitmap"
2424
codeName: "bitmap"
2525
shortDescription: "Image manipulation and drawing"
2626
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."""
2727
version: "1.3.0"
28-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/bitmap.html"
28+
homepage: "https://docs.netlogo.org/7.0.0-beta2/bitmap.html"
2929
}
3030
{
3131
name: "bspace"
@@ -43,7 +43,7 @@ NOTE: This extension is a work in progress. Please visit the extension's homepa
4343
shortDescription: "Read and write csv files"
4444
longDescription: """"""
4545
version: "1.2.0"
46-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/csv.html"
46+
homepage: "https://docs.netlogo.org/7.0.0-beta2/csv.html"
4747
}
4848
{
4949
name: "Dialog"
@@ -93,15 +93,15 @@ NOTE: This extension is a work in progress. Please visit the extension's homepa
9393

9494
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."""
9595
version: "1.4.0"
96-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/gis.html"
96+
homepage: "https://docs.netlogo.org/7.0.0-beta2/gis.html"
9797
}
9898
{
9999
name: "GoGo"
100100
codeName: "gogo"
101101
shortDescription: "Interact with HID-based GoGo boards"
102102
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."""
103103
version: "2.1.0"
104-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/gogo.html"
104+
homepage: "https://docs.netlogo.org/7.0.0-beta2/gogo.html"
105105
}
106106
{
107107
name: "Import-A"
@@ -131,7 +131,7 @@ Asking and reporting in LevelSpace is conceptually pretty straight forward: You
131131

132132
In general, the LevelSpace syntax has been designed to align with existing NetLogo primitives whenever possible."""
133133
version: "2.4.0"
134-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/ls.html"
134+
homepage: "https://docs.netlogo.org/7.0.0-beta2/ls.html"
135135
}
136136
{
137137
name: "Matrix"
@@ -141,15 +141,15 @@ In general, the LevelSpace syntax has been designed to align with existing NetLo
141141

142142
If you’d like to know more about matrices and how they can be used, you might consider a course on linear algebra, or search the web for tutorials. The matrix extension also allows you to solve linear algebraic equations (specified in a matrix format), and even to identify trends in your data and perform linear (ordinary least squares) regressions on data sets with multiple explanatory variables."""
143143
version: "1.2.0"
144-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/matrix.html"
144+
homepage: "https://docs.netlogo.org/7.0.0-beta2/matrix.html"
145145
}
146146
{
147147
name: "Network"
148148
codeName: "nw"
149149
shortDescription: "NetWork analysis tools"
150150
longDescription: """"""
151151
version: "4.1.0"
152-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/nw.html"
152+
homepage: "https://docs.netlogo.org/7.0.0-beta2/nw.html"
153153
}
154154
{
155155
name: "NodeJS"
@@ -166,7 +166,7 @@ If you’d like to know more about matrices and how they can be used, you might
166166
shortDescription: "Visualize values in the model as colors"
167167
longDescription: """The NetLogo palette extension allows to map values to colors. The colors go beyond NetLogo colors, including ColorBrewer color schemes or arbitrary RGB colors. Additionally, it provides a primitive to map to color gradients and a primitive to launch a ColorBrewer dialog for easy scheme selection."""
168168
version: "2.1.0"
169-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/palette.html"
169+
homepage: "https://docs.netlogo.org/7.0.0-beta2/palette.html"
170170
}
171171
{
172172
name: "Physics"
@@ -186,15 +186,15 @@ Caution:
186186

187187
The profiler extension is experimental. It is not yet well tested or user friendly. Nonetheless, we think some users will find it useful."""
188188
version: "1.3.0"
189-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/profiler.html"
189+
homepage: "https://docs.netlogo.org/7.0.0-beta2/profiler.html"
190190
}
191191
{
192192
name: "Python"
193193
codeName: "py"
194194
shortDescription: "Run Python code from NetLogo"
195195
longDescription: """This NetLogo extension allows you to run Python code from NetLogo. It works with both Python 2 and 3, and should work with almost all Python libraries."""
196196
version: "1.0.0"
197-
homepage: "https://github.com/NetLogo/Python-Extension/releases"
197+
homepage: "https://docs.netlogo.org/7.0.0-beta2/py.html"
198198
}
199199
{
200200
name: "R"
@@ -214,15 +214,15 @@ This helps with two problems. First, it makes it a lot easier to load data file
214214

215215
Secondly, it means not having to carry around external files (like CSV or GIS data, or images) when moving your model from one location to another. Instead, you just bundle content of the file into the '.nlogox' file, and then read it out with this extension."""
216216
version: "1.1.0"
217-
homepage: "https://github.com/netlogo/Resource-Extension/#readme"
217+
homepage: "https://docs.netlogo.org/7.0.0-beta2/resource.html"
218218
}
219219
{
220220
name: "Rnd"
221221
codeName: "rnd"
222222
shortDescription: "Use random with a non-uniform distribution"
223223
longDescription: """This extension adds the ability to do roulette wheel selection in NetLogo. It provides a simpler way to accomplish the same thing as the Lottery Example from the NetLogo Models Library."""
224224
version: "3.1.0"
225-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/rnd.html"
225+
homepage: "https://docs.netlogo.org/7.0.0-beta2/rnd.html"
226226
}
227227
{
228228
name: "Sample"
@@ -254,15 +254,15 @@ Secondly, it means not having to carry around external files (like CSV or GIS da
254254
shortDescription: "This NetLogo extension allows you to run R code from within NetLogo. It was built to address technical difficulties that users commonly had with the original R extension."
255255
longDescription: ""
256256
version: "3.1.0"
257-
homepage: "https://github.com/NetLogo/SimpleR-Extension?tab=readme-ov-file#using"
257+
homepage: "https://docs.netlogo.org/7.0.0-beta2/sr.html"
258258
}
259259
{
260260
name: "Sound"
261261
codeName: "sound"
262262
shortDescription: "Play notes and sound files"
263263
longDescription: """"""
264264
version: "1.2.0"
265-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/sound.html"
265+
homepage: "https://docs.netlogo.org/7.0.0-beta2/sound.html"
266266
}
267267
{
268268
name: "Store"
@@ -286,7 +286,7 @@ Secondly, it means not having to carry around external files (like CSV or GIS da
286286
shortDescription: "Store pairs of values, so you can retrieve the second value by knowing the first one"
287287
longDescription: """Tables are useful when you need to do associate values with other values. For example, you might make a table of words and their definitions. Then you can look up the definition of any word. Here, the words are the "keys". You can easily retrieve the value for any key in the table, but not vice versa."""
288288
version: "2.1.0"
289-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/table.html"
289+
homepage: "https://docs.netlogo.org/7.0.0-beta2/table.html"
290290
}
291291
{
292292
name: "Time"
@@ -298,23 +298,23 @@ Modelers commonly need to use time series data in NetLogo. The time extension pr
298298

299299
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."""
300300
version: "3.1.0"
301-
homepage: "https://github.com/colinsheppard/time/"
301+
homepage: "https://docs.netlogo.org/7.0.0-beta2/time.html"
302302
}
303303
{
304304
name: "Vid"
305305
codeName: "vid"
306306
shortDescription: "Capture videos of the model or from a webcam"
307307
longDescription: """"""
308308
version: "1.2.1"
309-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/vid.html"
309+
homepage: "https://docs.netlogo.org/7.0.0-beta2/vid.html"
310310
}
311311
{
312312
name: "View2.5d"
313313
codeName: "view2.5d"
314314
shortDescription: "Visualize agent properties as height on a 3d surface"
315315
longDescription: """"""
316316
version: "1.2.0"
317-
homepage: "https://ccl.northwestern.edu/netlogo/7.0.0-beta0/docs/view2.5d.html"
317+
homepage: "https://docs.netlogo.org/7.0.0-beta2/view2.5d.html"
318318
}
319319
{
320320
name: "Web"

0 commit comments

Comments
 (0)