Differences between revisions 1 and 2
Revision 1 as of 2013-02-02 08:42:47
Size: 475
Editor: SamatJain
Comment:
Revision 2 as of 2014-05-06 23:02:38
Size: 761
Editor: SamatJain
Comment: Reducing resolution
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:
=== Reduce resolution ===

If a GPX file is too large, run this to reduce the number of points in the file. Removes points within 0.1m of each other (i.e. standing still).

{{{#!highlight sh numbers=off
gpsbabel -i gpx -f in.gpx -x simplify,error=0.0001k -o gpx -F out.gpx
}}}

GPX fiddling

See GpxSplitter, a program I wrote for splitting multiple GPS tracks from a monolithic GPX track file.

Remove low accuracy GPS points

# Remove low accuracy HDOP
gpsbabel -i gpx -f in.gpx -x discard,hdop=3 -o gpx -F out.gpx

# Remove low accuracy HDOP and VDOP
gpsbabel -i gpx -f in.gpx -x discard,hdop=10,vdop=20,hdopandvdop -o gpx -F out.gpx

Reduce resolution

If a GPX file is too large, run this to reduce the number of points in the file. Removes points within 0.1m of each other (i.e. standing still).

gpsbabel -i gpx -f in.gpx -x simplify,error=0.0001k -o gpx -F out.gpx


CategoryCheatSheet

SamatsWiki: CheatSheet/GPS (last edited 2018-07-24 06:25:40 by SamatJain)