Python script to visualize gpx tracks on a point cloud.
To use this tool you need to provide .gpx and optionally .las file
Available command line arguments:
| Name | Description | Default |
|---|---|---|
| --path_gpx | Path to gpx file | |
| --path_las | Path to LAS(LASer) file | None |
| --las_proj | Las projection | "EPSG:2180" |
| --color | Color of the GPS track in rgb ("r g b") |
"255 0 0" |
| --top | The value by which to increase Z. In some cases, it should increase visibility of the track on the .las file |
0 |
pip install -r requirements.txt
python visualize.py --path_gpx {PATH_TO_GPX} --path_las {PATH_TO_LAS_FILE} --las_proj "EPSG:2180" --color "r g b" --top 0