NetLogo User Manual
Home
Learn NetLogo
What is NetLogo? Tutorial #0 Sample Model Tutorial #1 Models Tutorial #2 Commands Tutorial #3 Procedures
Documentation
NetLogo Dictionary Interface Guide Interface Tab Guide Info Tab Guide Code Tab Guide Programming Guide Transition Guide Preferences Guide Version History
Advanced Tools
Extension Manager Shapes Editor BehaviorSpace System Dynamics HubNet HubNet Authoring Logging Controlling Mathematica Link NetLogo 3D NetLogoLab Cluster Computing (HPC)
Extensions
Extensions Guide Arduino Array Bitmap CSV GIS GoGo LevelSpace Matrix Networks Palette Profiler Python Resource Rnd Sound Simple R Table Time Vid View2.5D
FAQ
Home
Learn NetLogo
What is NetLogo? Tutorial #0 Sample Model Tutorial #1 Models Tutorial #2 Commands Tutorial #3 Procedures
Documentation
NetLogo Dictionary Interface Guide Interface Tab Guide Info Tab Guide Code Tab Guide Programming Guide Transition Guide Preferences Guide Version History
Advanced Tools
Extension Manager Shapes Editor BehaviorSpace System Dynamics HubNet HubNet Authoring Logging Controlling Mathematica Link NetLogo 3D NetLogoLab Cluster Computing (HPC)
Extensions
Extensions Guide Arduino Array Bitmap CSV GIS GoGo LevelSpace Matrix Networks Palette Profiler Python Resource Rnd Sound Simple R Table Time Vid View2.5D
FAQ
primitive: nw:load-from-string
Networks Extension Dictionary
  • No items found

nw:load-from-string

nw:load-from-string format data default-turtle-breed default-link-breed optional-command-block

Load network data from an in-memory string rather than from a file. This is useful in NetLogo Web and other contexts where the data comes from somewhere other than the file system, such as the fetch or resource extensions.

Because there is no file name to infer the file-type from, the first argument, format, names the format explicitly. It is case-insensitive and an optional leading dot is ignored, so "gml", "GML", and ".gml" are all equivalent. The supported formats are:

  • dl
  • gdf
  • gexf
  • gml
  • graphml
  • matrix
  • vna

Aside from taking its data from a string and its format from the format argument, nw:load-from-string behaves exactly like the corresponding nw:load-* primitive, including matching node and edge attributes to turtle and link variables and honoring breed.

For example, to load a GML network fetched from a URL:

fetch:url-async "https://example.com/network.gml" [ [gml] ->
nw:load-from-string "gml" gml turtles links
] [ [err] -> print err ]

Take me to the full Networks Extension Dictionary.

Networks Extension Dictionary: load

Documentation for the load primitive.

Networks Extension Dictionary: load-graphml

Documentation for the load-graphml primitive.

Brand Logo

NetLogo is a programmable modeling environment for simulating natural and social phenomena. It was authored by Uri Wilensky in 1999 and has been in continuous development ever since at the Center for Connected Learning and Computer-Based Modeling.

Related Links
  • NetLogo Home
  • CCL Home
  • NetLogo Web
  • NetTango Web
  • NetLogo 3D
  • BehaviorSearch
  • Contact Us

Copyright © 1999-2026 Uri Wilensky and the Center for Connected Learning and Computer-Based Modeling at Northwestern University . All rights reserved.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License , or (at your option) any later version.

Commercial licenses are also available. To inquire about commercial licenses, please contact Uri Wilensky at [email protected] .

For more information, visit the NetLogo website .