Skip to content

StevePem/network

 
 

Repository files navigation

MATSim network for Melbourne

masterpassing? devpassing?

This page explains the steps for building a road network model for active transport simulation models such as MATSim, including active transportation related infrastructure and attribute.

Prerequisites

  • Postgres
  • GDAL/OGR
  • R
  • Required R packages

Building the network

Network generation code is written primarily in R programming language, with some accompanying SQL and Bash scripts, therefore a working knowledge of R is expected.

To get started, you must first prepare the required input files for generating the network. There are multiple entry points to the algorithm. If you want to start from raw OSM extract, download the extract for your region. Please note that it should be in .osm format, .osm.pbf is not yet supported. You can use osmconvert easily convert .osm.pbf to .osm.

All required R packages must be installed before running the algorithm. renv will take of that for you and you just need to run the following in R to install the packages:

install.packages("renv")
renv::restore()

Before running the algorithm, adjust the parameters and input/output file names for your scenario in NetworkGenerator.R. Adjustable parameters are listed under the Parameters sub-heading.

To run the network generation algorithm from the terminal, you need to run something like below, specifying your desired output folder name as the argument for makeNetwork():

Rscript -e 'source("NetworkGenerator.R"); makeNetwork("example")'

Troubleshooting

Postgres install on macOS 10.15+

brew install postgres
brew install postgis
brew services start postresql
/usr/local/opt/postgres/bin/createuser -s postgres

If you have osgeo-postgis you have may to unlink that and link the newly installed postgis as follows.

brew unlink osgeo-postgis
brew link postgis

Then restart your machine.

iGraph install on macOS

If running R from a homebrew install, be sure to unlink suite-sparse before installing iGraph

brew unlink suite-sparse

sf install on macOS

The sf library requires the following to run

brew install gdal
brew install udunits

Publications

About

MATSim Melbourne network

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • R 96.0%
  • Shell 4.0%