an application to estimate the slope of a granular surface flow
Go to file
Guillaume Raffy 0d41944c2a - grassloper now uses improtools to debug image processing
- the user can now change grassloper's parameters using command line arguments
2022-11-30 18:30:17 +01:00
grassloper - grassloper now uses improtools to debug image processing 2022-11-30 18:30:17 +01:00
.gitignore made grassloper an application installable by `pip`. 2022-11-30 16:42:25 +01:00
LICENSE Initial commit 2022-10-20 08:41:30 +02:00
README.md - grassloper now uses improtools to debug image processing 2022-11-30 18:30:17 +01:00
setup.py made grassloper an application installable by `pip`. 2022-11-30 16:42:25 +01:00

README.md

grassloper

an application to estimate the slope of a granular surface flow

how to install

grassloper is delivered as a simple pip application, and as such it can be installed from scratch using the following steps:

# create a python virtual environment (we name it name grassloper.venv)
bob@stykades:~/work/grassloper$ python3 -m venv grassloper.venv  
# activate the virtual environment to use it
bob@stykades:~/work/grassloper$ source ./grassloper.venv/bin/activate
# grassloper requires improtools https://github.com/g-raffy/improtools, which is not in pip's catalog
# install improtools from its source directory (./improtools.git here, downloaded from https://github.com/g-raffy/improtools)
(grassloper.venv) bob@stykades:~/work/grassloper$ pip install -e ./improtools.git
# install grassloper from its source directory (./grassloper.git here)
# this automatically installs the packages that grassloper depends on
(grassloper.venv) bob@stykades:~/work/grassloper$ pip install -e ./grassloper.git
# now that grassloper is installed in grassloper.venv and grassloper.venv is activated, simply run it using its command line 'grassloper'
(grassloper.venv) bob@stykades:~/work/grassloper$ grassloper --help

how to use

grassloper's usage is described with the --help command line argument:

(grassloper.venv) bob@stykades:~/work/grassloper$ grassloper --help