gps_trace 0.1.0 copy "gps_trace: ^0.1.0" to clipboard
gps_trace: ^0.1.0 copied to clipboard

outdatedDart 1 only

Parsing and analysing gps trace files

GPS trace #

Build Status

GPS trace library allow you to parse and analyse GPS files.

Installation #

Add the Gps trace dependency to your project’s pubspec.yaml.

dependencies:
  gps_trace: "0.1.0"

Then, run pub get.

Usage #

import "package:gps_trace/gps_trace.dart";

main() {

 TraceAnalyser traceAnalyser = new TraceAnalyser();

 File file = new File("test/resources/my_favorite_trail.gpx"); 

 traceAnalyser.buildTraceAnalysisFromGpxFile(file).then((trace){

     print("Trace length: ${trace.length} meters");
     print("Positive elevetion: ${trace.up}");
     print("Highest point elevetion: ${trace.upperPoint.elevetion}");


 });

}

Features #

  • Parsing GPX files 1.0 and 1.1
  • Trace attributes :
  • trace length in meters
  • highest point elevetion in meters
  • lowest point elevetion in meters
  • positive elevetion in meters
  • negative elevetion in meters
  • average inclination up
  • average inclination down
  • Purge aligned points
  • Smoothing
  • by elevetion average between close points
  • by elevetion threshold

Who is using it ? #

0
likes
15
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

Parsing and analysing gps trace files

Repository (GitHub)
View/report issues

License

Apache-2.0 (license)

Dependencies

petitparser

More

Packages that depend on gps_trace