Guest User

Untitled

a guest
Mar 24th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. #
  2. # GPSLogger for Android CSV file style for GPSBabel
  3. # by Tak Yanagida
  4. # You can use this file freely under CC0 license.
  5. #
  6.  
  7. DESCRIPTION GPSLogger for Android CSV file
  8. EXTENSION csv
  9. DATATYPE TRACK
  10.  
  11. #
  12. # File Layout:
  13. #
  14. FIELD_DELIMITER COMMA
  15. RECORD_DELIMITER NEWLINE
  16. BADCHARS ,"
  17. PROLOGUE time,lat,lon,elevation,accuracy,bearing,speed,satellites,provider,hdop,vdop,pdop,geoidheight,ageofdgpsdata,dgpsid,activity,battery,annotation
  18.  
  19. IFIELD ISO_TIME,"","%s"
  20. IFIELD LAT_DECIMAL,"","%f"
  21. IFIELD LON_DECIMAL,"","%f"
  22. IFIELD ALT_METERS,"","%.f"
  23. IFIELD IGNORE,"", "%s"
  24. IFIELD IGNORE,"", "%s"
  25. IFIELD PATH_SPEED_KPH,"", "%f"
  26. IFIELD GPS_SAT,"", "%d"
  27. IFIELD IGNORE,"","%s"
  28. IFIELD GPS_HDOP,"", "%f"
  29. IFIELD GPS_VDOP,"", "%f"
  30. IFIELD GPS_PDOP,"", "%f"
  31. IFIELD IGNORE,"","%s"
  32. IFIELD IGNORE,"","%s"
  33. IFIELD IGNORE,"","%s"
  34. IFIELD IGNORE,"","%s"
  35. IFIELD IGNORE,"","%s"
  36. IFIELD DESCRIPTION,"", "%s"
Add Comment
Please, Sign In to add comment