Command Line Interface#
Command line options for python_template_project
python -m python_template_project [OPTIONS] input
Options#
| Option | Type | Description | Default | Choices |
|---|---|---|---|---|
input |
str | Path to input (file or folder) | required | - |
--output |
str | Path to output destination | required | - |
--min_dist |
int | Maximum distance between two waypoints | 25 | - |
--extract_waypoints |
bool | Extract starting points of each track as waypoint | True | [True, False] |
--elevation |
bool | Include elevation data in waypoints | True | [True, False] |
Examples#
1. Basic usage#
python -m python_template_project input
2. With verbose logging#
python -m python_template_project -v input
python -m python_template_project --verbose input
3. With quiet mode#
python -m python_template_project -q input
python -m python_template_project --quiet input
4. With min_dist parameter#
python -m python_template_project --min_dist 25 input
5. With extract_waypoints parameter#
python -m python_template_project --extract_waypoints True input
6. With elevation parameter#
python -m python_template_project --elevation True input