This is a GUI software developed by the University of Hawaii Sea Level Center.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Python 3.5 or 3.6
fbs - the packaging tool, which produces standalone executibles on Windows, Mac, and Linux. For more details visit the project's GitHub page or the manual on the creator's website.
Create a virtual environment:
python -m venv [your_env_name]
Activate the virtual environment:
# On Mac/Linux:
source [your_env_name]/bin/activate
# On Windows:
call [your_env_name]\scripts\activate.bat
The remainder of the tutorial assumes that the virtual environment is active.
Install the requirements using pip based on the OS you are working on:
# If working on a Mac
pip install -r requirements/mac.txt
# Similarly, on Windows:
pip install -r requirements/windows.txt
If you ever decide to add additional dependencies that are platform specific, you would add a dependency into the , appropriate requirements/*.txt file. The platform independent dependencies should be added to base.txt. The base.txt file is referenced in each of the platform specific .txt files and thus pip install does not have to performed on it.
The python source code is located in src/main/python/
Run main.py to initiate GUI. Once started press F1 to bring the Help/Instructions menu.
- Nemanja Komar - Initial work - Nems808
See also the list of contributors who participated in this project.