From: robertl Date: Sun, 31 Oct 2010 19:03:29 +0000 (+0000) Subject: Michael Cooper adds FlySight support. X-Git-Tag: archive/raspbian/1.10.0+ds-2+rpi1~1^2~12^2~11^2~911 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cf7d5a6db73a9614ab0bcde3ea9ad110461ef66a;p=gpsbabel.git Michael Cooper adds FlySight support. --- diff --git a/gpsbabel/style/flysight.style b/gpsbabel/style/flysight.style new file mode 100644 index 000000000..9d49cbe69 --- /dev/null +++ b/gpsbabel/style/flysight.style @@ -0,0 +1,28 @@ +# Format: FlySight +# Author: LukeH +# Date: 10/10/10 + +DESCRIPTION FlySight GPS File +EXTENSION csv + +# FILE LAYOUT DEFINITIIONS: +FIELD_DELIMITER COMMA +RECORD_DELIMITER NEWLINE +BADCHARS ," + +PROLOGUE time lat lon hMSL velN velE velD hAcc vAcc sAcc gpsFix numSV +PROLOGUE + +# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE: +IFIELD ISO_TIME, "", "%s" # Date & time +IFIELD LAT_DECIMAL, "", "%f" # Latitude +IFIELD LON_DECIMAL, "", "%f" # Longitude +IFIELD ALT_METERS, "", "%.0f" # Altitude above MSL (m) +IFIELD IGNORE, "", "%s" # Velocity north (m/s) +IFIELD IGNORE, "", "%s" # Velocity east (m/s) +IFIELD IGNORE, "", "%s" # Velocity down (m/s) +IFIELD IGNORE, "", "%s" # Horizontal accuracy (m) +IFIELD IGNORE, "", "%s" # Vertical accuracy (m) +IFIELD IGNORE, "", "%s" # Speed accuracy (m/s) +IFIELD GPS_FIX, "", "%s" # GPS fix type +IFIELD GPS_SAT, "", "%d" # Number of satellites used in fix \ No newline at end of file diff --git a/gpsbabel/xmldoc/formats/flysight.xml b/gpsbabel/xmldoc/formats/flysight.xml new file mode 100644 index 000000000..2e595ca7d --- /dev/null +++ b/gpsbabel/xmldoc/formats/flysight.xml @@ -0,0 +1,6 @@ + +This is the format used by the FlySight GPS for wingsuit pilots. + + +Interfacing with the FlySight is pretty simple. FlySight acts like a USB disk when connected to a computer. Files are organized into folders by date, and individual files within the folder are named according to the time the log started (UTC). The files themselves are CSV text supported by this format. +