Author: Dennis W. Hallema
Description: Input/output processing tools for the FlamMap fire analysis application.
Date created: 4/7/2020
Depends: See environment.yml.
Disclaimer: Use at your own risk. The authors cannot assure the reliability or suitability of these materials for a particular purpose. The act of distribution shall not constitute any such warranty, and no responsibility is assumed for a user's application of these materials or related materials.
- Clone this repository onto your machine:
git clone https://github.com/dwhallema/<repo>, replace<repo>with the name of this repository. This creates a new directory "repo" containing the repository files. - Install Anaconda and Python
- Create a Python environment within the cloned directory using Anaconda:
conda env create
This will download and install the dependencies listed in environment.yml. - Activate the Python environment:
source activate <repo>(orconda activate <repo>on Windows). - Launch the Jupyter Notebook server:
jupyter notebook - In the opened browser tab, click on a ".ipynb" file to open it.
- To run a cell, select it with the mouse and click the "Run" button.
Troubleshooting:
- If you need to install dependencies manually run:
conda create -name <repo> dep - If you need to update the Python environment run:
conda env update --file environment.yml