Skip to main content

A package to export NetLogo model runs in GIF or MP4 formats

Project description

aul

Export NetLogo model runs as GIF or MP4 using Python.

Purpose

The purpose of this project is to provide a simple and reliable way of capturing/exporting NetLogo model runs in moving image file formats. Currently, MP4 and GIF are supported. These formats are suitable for sharing on social media or instant messager, or embedding in presentations or documents.

Installation

This library was tested on Python 3.6. Requirements are:

These packages also have their own requirements, notably pyNetLogo's jpype dependency.

Install using:

pip install aul

Usage

The two main functions in the package are export_gif(...) and export_mp4(...). Both can take a variety of arguments, but also have useful default behavior. Two parameters are required: the NetLogo model name (must be in same folder as Python file), and the ticks to be exported. The generated file will be saved to the same folder as the model.

Terminology

The terms tick and frame may be confusing. I use the term tick to refer to a single iteration step in the NetLogo model. Ticks are unique and sequentially numbered. Frames are individual images inside a GIF or MP4 (both of which are series of images). You can specify which ticks become frames with the ticks argument.

Basics

Export first 30 ticks of NetLogo run to GIF...

import aul

aul.export_gif('Fire.nlogo', 30)

or MP4.

import aul

aul.export_mp4('Fire.nlogo', 30)

Ticks

You can specify ticks (see Terminology) in four ways - as an integer (see Basics), as a two- or three-element list of Python range() parameters, or as an explicit list of ticks:

import aul

#ticks 0 to 24
aul.export_gif('Fire.nlogo', [0,25])

if you don't want every tick:

import aul

#every tenth tick from 0 to 190
aul.export_gif('Fire.nlogo', [0,200,10])

for specific ticks:

import aul

#specific ticks only
aul.export_gif('Fire.nlogo', [0,1,2,3,4,5,7,8,9,12,22])

General Arguments

NetLogo runs will normally be instantiated with the input parameter values saved in the NetLogo model's sliders, switches, etc. You can override these values directly from Python by passing a dictionary of keys (NetLogo global variable name) and values to params:

import aul

fire_params = {
    "density":90,
    "probability-of-spread":60
}

aul.export_gif('Fire Simple Extension 1.nlogo', 45, params = fire_params)

By default, the generated file will have the same pixel dimensions as the NetLogo world. You can adjust this with scale:

import aul

#GIF file will be twice as large as NetLogo world
aul.export_gif('Fire.nlogo', 45, scale = 2.0)

You can also fade the last few frames of the run to black (to emphasize it is terminating) with fade:

import aul

#GIF will fade to black over last 30% of runtime
aul.export_gif('Fire.nlogo', 45, fade = 0.3)

You can set the name of the output file with name. This is useful if you to export multiple runs (e.g. with different random seeds) through a loop.

import aul

#GIF will be saved as "custom-fire.gif"
aul.export_gif('Fire.nlogo', 45, name = "custom-fire")

Per NetLogo conventions, the initialization and iteration procedures are expected to be named setup and go. Override these defaults with the setup and go parameters.

import aul

#Some custom model with unconventional procedure names
aul.export_gif('Custom.nlogo', 45, setup='init', go='run')

Adjust the playback speed of the output file with fps (frames per second).

import aul

#Save for playback at 8 frames per second
aul.export_gif('Fire.nlogo', 45, fps = 8)

GIF-specific Arguments

You can reduce GIF file size by settings subrectangles = True.

import aul

#compress file
aul.export_gif('Fire.nlogo', 45, subrectangles = True)

You can override the fps parameter and specify frame durations instead with duration. This can be either as a global value (time per frame), or as a specific value for each individual frame.

import aul

#show first 15 frames in Fibonacci time
aul.export_gif('Fibonacci.nlogo', 15, duration = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610])

MP4-specific Arguments

You can reduce MP4 file size with the quality argument. Range from 0 to 10, 10 being default and best quality.

import aul

#compress file
aul.export_mp4('Fire.nlogo', 45, quality = 3)

Contact

Please get in touch if you have questions or suggestions, either through an issue or on:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aul-0.1.2.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

aul-0.1.2-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file aul-0.1.2.tar.gz.

File metadata

  • Download URL: aul-0.1.2.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3

File hashes

Hashes for aul-0.1.2.tar.gz
Algorithm Hash digest
SHA256 6afa9627e51f15826ac14dcf3183c870b4da97458427c006e88f36c1e66719f1
MD5 7e81802788f7a0dc720aa4343a3952d2
BLAKE2b-256 6d9a9e891cffaa17f971852ee91bbd1cd6b2808a2ac600091a356d858da36db6

See more details on using hashes here.

File details

Details for the file aul-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: aul-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3

File hashes

Hashes for aul-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8fa60cbda7b3f8763dcf322188b2fbbed17983a0a71f9e3556faf74b83863c5d
MD5 61fce692e5fab843c9b059300009c7e7
BLAKE2b-256 8d05f1bc512e342e9777bdf5dae3612ff2d875c8a6caceb40c6a82dbe8f8f35c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page