Sign inSign up

jsta/natcap-invest-docker

By jsta

•Updated over 4 years ago

Image
0

977

jsta/natcap-invest-docker repository overview

Docker Build

This repo is a docker wrapper around NatCap's InVEST: https://github.com/natcap/invest⁠

Currently the focus is on running the NDR model but it could easily be adapted to run any of the other models.

⁠Pulling the image

docker pull jsta/natcap-invest-docker:latest

⁠Running the image

The image is built and deployed on DockerHub so you don't need to clone this repo to run it. You only need to clone if you're going to do some development.

The image contains all the data it needs to run the NDR model, we just want to mount a volume so we can get the results on the host.

mkdir /tmp/output
# it takes less than 2 minutes to run usually
docker run \
 --rm \
 -it \
 -v /tmp/output:/workspace \
 jsta/natcap-invest-docker:latest

sudo chown -R `id -u` /tmp/output
# now browse to /tmp/output to see the output files

⁠Changelog

⁠0.0.1

Tag summary

Content type

Image

Digest

Size

1.6 GB

Last updated

over 4 years ago

docker pull jsta/natcap-invest-docker