Nicetrack: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{OsProject |id=nicesrt |state=active |owner=WolfgangFahl |title=nicesrt |url=https://github.com/WolfgangFahl/nicesrt |version=0.0.1 |date=2023-08-16 |since=2023-08-16 |storem...") |
No edit summary |
||
| (14 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
=OsProject= | |||
{{OsProject | {{OsProject | ||
|id= | |id=nicetrack | ||
|state=active | |state=active | ||
|owner=WolfgangFahl | |owner=WolfgangFahl | ||
|title=nicesrt | |title=nicesrt | ||
|url=https://github.com/WolfgangFahl/ | |url=https://github.com/WolfgangFahl/nicetrack | ||
|version=0.0. | |version=0.0.9 | ||
|date=2023-08- | |description=Nice 3D Track handling | ||
|date=2023-08-28 | |||
|since=2023-08-16 | |since=2023-08-16 | ||
|storemode=property | |storemode=property | ||
}} | }} | ||
{{pip| | |||
{{pip|nicetrack}} | |||
= Motivation = | |||
== GPX tracks == | |||
GPX tracks for cycling can be analyzed online see e.g. | |||
* https://cycle.travel/map/journey/149759 | |||
* https://cycle.travel/gpx/149759.gpx | |||
This module tries similar functionality | |||
== DJI Drone videos == | |||
* DJI Drone videos may be accompanied by SRT files see https://en.wikipedia.org/wiki/SubRip | |||
* These SRT files may contain flight telemetry data | |||
* This module supports analyzing and displaying this telemetry data | |||
= Links = | |||
* https://www.trackprofiler.com/ | |||
* https://en.wikipedia.org/wiki/SubRip | |||
* https://djitelemetryoverlay.com/srt-viewer/ | |||
* https://github.com/JuanIrache/DJI_SRT_Parser | |||
* https://github.com/GPSBabel/gpsbabel | |||
= Libraries = | |||
There are several Python libraries and tools available that can help you convert between GPX, KML, GeoJSON, and SRT formats: | |||
* [https://github.com/tkrajina/gpxpy gpxpy]: A library to parse and manipulate GPX files. | |||
* [https://github.com/cleder/fastkml fastkml]: A library to handle KML files. | |||
* [https://github.com/geopy/geopy geopy]: Known for its geocoding functionalities. | |||
* [https://github.com/frewsxcv/python-geojson geojson]: A library for creating and parsing GeoJSON files. | |||
* [https://www.gpsbabel.org/ gpsbabel]: A command-line tool for converting between GPS data formats. | |||
* [https://github.com/byroot/pysrt pySRT]: A library for SRT manipulations. | |||
Latest revision as of 11:23, 28 August 2023
OsProject
| OsProject | |
|---|---|
| id | nicetrack |
| state | active |
| owner | WolfgangFahl |
| title | nicesrt |
| url | https://github.com/WolfgangFahl/nicetrack |
| version | 0.0.9 |
| description | Nice 3D Track handling |
| date | 2023-08-28 |
| since | 2023-08-16 |
| until | |
Installation
pip install nicetrack
# alternatively if your pip is not a python3 pip
pip3 install nicetrack
# local install from source directory of nicetrack
pip install .
upgrade
pip install nicetrack -U
# alternatively if your pip is not a python3 pip
pip3 install nicetrack -U
Motivation
GPX tracks
GPX tracks for cycling can be analyzed online see e.g.
This module tries similar functionality
DJI Drone videos
- DJI Drone videos may be accompanied by SRT files see https://en.wikipedia.org/wiki/SubRip
- These SRT files may contain flight telemetry data
- This module supports analyzing and displaying this telemetry data
Links
- https://www.trackprofiler.com/
- https://en.wikipedia.org/wiki/SubRip
- https://djitelemetryoverlay.com/srt-viewer/
- https://github.com/JuanIrache/DJI_SRT_Parser
- https://github.com/GPSBabel/gpsbabel
Libraries
There are several Python libraries and tools available that can help you convert between GPX, KML, GeoJSON, and SRT formats:
- gpxpy: A library to parse and manipulate GPX files.
- fastkml: A library to handle KML files.
- geopy: Known for its geocoding functionalities.
- geojson: A library for creating and parsing GeoJSON files.
- gpsbabel: A command-line tool for converting between GPS data formats.
- pySRT: A library for SRT manipulations.