https://github.com/jsta/natcap-invest-docker
Docker wrapper around NatCap's InVEST
https://github.com/jsta/natcap-invest-docker
docker
Last synced: 4 months ago
JSON representation
Docker wrapper around NatCap's InVEST
- Host: GitHub
- URL: https://github.com/jsta/natcap-invest-docker
- Owner: jsta
- License: apache-2.0
- Created: 2020-12-23T20:59:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T21:05:08.000Z (about 4 years ago)
- Last Synced: 2025-06-25T06:02:54.283Z (12 months ago)
- Topics: docker
- Language: Python
- Homepage: https://hub.docker.com/repository/docker/jsta/natcap-invest-docker/general
- Size: 39.1 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://hub.docker.com/r/jsta/natcap-invest-docker)
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
```bash
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.
```bash
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
- cloned from https://github.com/ternandsparrow/natcap-invest-docker
- updated to use the NDR model