Skip to main content

Track processing library for Python 3

Project description

TrackToTrip4

TrackToTrip4 is a fork of TrackToTrip3, a Python 3 library used to process, simplify and clean GPS tracks. The original TrackToTrip3 library is no longer maintained, and this fork aims to keep it up to date with the latest Python versions and dependencies, plus adding new features and improvements.

The main goals are to transform a (gpx) track into a trip.

track raw representation of a GPS recording. It is not precise, has noise and valuable information is hidden.

trip result of one or more processed tracks. Its start and end points have semantic meaning, such as home, work or school. It has less errors and it's compressed, with as little information loss as possible. In short, a trip is an approximation of the true path recorded.

Installing

You can install TrackToTrip4 by running the following command:

 $ python setup.py install

NOTE: TrackToTrip4 requires Microsoft Visual C++ 14.0. It can be found using the Build Tools for Visual Studio 2022

Python 3.x is required.

Overview

The starting points are the Track, Segment and Point classes.

Track

Can be loaded from a GPX file:

from tracktotrip4 import Track, Segment, Point

track = Track.from_gpx('file_to_track.gpx')

A track can be transformed into a trip with the method to_trip. Transforming a track into a trip executes the following steps:

  1. Smooths the segments, using the kalman filter

  2. Spatiotemporal segmentation for each segment, using the DBSCAN algorithm to find spatiotemporal clusters

  3. Compresses every segment, using spatiotemporal-aware compression algorithm

A track is composed by Segments, and each segment by Points.

It can be saved to a GPX file:

with open('file.gpx', 'w') as f:
  f.write(track.to_gpx())

Segment

A Segment holds the points, the transportation modes used, and the start and end semantic locations.

Point

A Point holds the position and time. Currently the library doesn't support elevation.

Command line tools

In addition to the library, TrackToTrip3 offers three command line tools outside of the library to manipulate GPS tracks and to generate classifier.

tracktotrip_utils

usage: tracktotrip_utils.py [-h] [-a] [-s] [-o] [--eps EPS]
                            [--mintime MINTIME] [--seed SEED]
                            track [track ...] output_folder

Manipulate tracks

positional arguments:
  track              track to process, must be a gpx file
  output_folder

optional arguments:
  -h, --help         show this help message and exit
  -a, --anonymize    anonymizes tracks, by doing random rotations and
                     translations
  -s, --split        splits tracks so that each file contains a segment
  -o, --organize     takes all tracks and split them, naming them according
                     with their start date
  --eps EPS          max distance to other points. Used when spliting.
                     Defaults to 1.0
  --mintime MINTIME  minimum time required to split, in seconds. Defaults to
                     120
  --seed SEED        random number generator seed. Used when anonymizing

tracktotrip_geolife_dataset

The GeoLife Tracjectory dataset can be found here. The datasetFolder argument should point to the Data folder in the GeoLife Trajectory dataset folder.

usage: tracktotrip_geolife_dataset.py [-h] [-o outputFolder] [-d]
                                      datasetFolder

GeoLife Trajectory dataset transportation mode extractor. Extracts
transportation mode from the dataset, into individual files, annotated with
the following format: [transporation mode].[control].[nPoints].[original file
name].gpx



positional arguments:
  datasetFolder         Path to the GeoLife dataset folder

optional arguments:
  -h, --help            show this help message and exit
  -o outputFolder, --output outputFolder
                        Path to processed dataset

License

MIT license

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tracktotrip4-0.1.3.tar.gz (30.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tracktotrip4-0.1.3-py3-none-any.whl (33.8 kB view details)

Uploaded Python 3

File details

Details for the file tracktotrip4-0.1.3.tar.gz.

File metadata

  • Download URL: tracktotrip4-0.1.3.tar.gz
  • Upload date:
  • Size: 30.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.6

File hashes

Hashes for tracktotrip4-0.1.3.tar.gz
Algorithm Hash digest
SHA256 1c6e0cb9d2db0bfd6b99dd1067217a7ef5baf1705de078c0b60810fdc542a466
MD5 0b4ffdafbde4b2a017bc4a56be1f9379
BLAKE2b-256 664c2a12c0f28d67c60ceff94ed715c580001f445737630fbcba1f20e3f67931

See more details on using hashes here.

File details

Details for the file tracktotrip4-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: tracktotrip4-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 33.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.6

File hashes

Hashes for tracktotrip4-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8586be23aae9b3368a8618dfd671f0db393e21322fcb404a92c80285869c5f58
MD5 ab8915085f3f7cf8e110f0731fb2442a
BLAKE2b-256 b2d5a2fb2e5a07aab13dde53b0220df110c7fadf3dc2d99e24d42ed039b09c09

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page