-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: reym <reym@veril.mozmail.com>
- Loading branch information
Showing
1 changed file
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
# MARS EINP Model | ||
# Elk Island National Park Model | ||
|
||
## Data Visualization | ||
The EINP Model is a simple [MARS](https://www.mars-group.org/docs/tutorial/intro#what-is-mars) model that simmulates the bison, elk and moose population of Elk Island National Park. | ||
|
||
The vector data and the movement of the Elephant agents is stored in a file named Elephant_trips.geojson, which is stored in GeoRasterBlueprint/bin/Debug/net6.0. The movement trajectories can be visualized in kepler.gl. | ||
## Quickstart | ||
To use the model clone the repository by running: | ||
```bash | ||
git clone https://github.com/Red-Sigma/einp-model.git | ||
``` | ||
|
||
Then go into the newly downloaded project and run the simmulation: | ||
```bash | ||
cd einp-model/GeoRasterBlueprint/ | ||
dotnet run -sm config.json | ||
``` | ||
|
||
This will generate three files (`Bison_trips.geojson`, `Elk_trips.geojson`, `Moose_trips.geojson`) with the simmulated koordinates of the animals. | ||
|
||
### viewing the output | ||
The generated movement trajectories can be visualized by going to [kepler.gl](https://kepler.gl/demo) and uploading the generated files mentioned above. |