description.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <H2>DESCRIPTION</H2>
  2. <EM>v.out.gpsbabel</EM> allows the user to export waypoint, route, and track
  3. data from a vector map into a locally connected GPS receiver or as a file in
  4. many common GPS data formats. Translation is done via the
  5. <EM><A HREF="http://www.gpsbabel.org">GpsBabel</a></EM> program.
  6. <P>
  7. Do not use as a primary means of navigation.
  8. <H2>NOTES</H2>
  9. <em>v.out.gpsbabel</em> automatically reprojects data from the
  10. projection settings of the current location to Lat/Lon WGS84.
  11. <p>
  12. GPX format is used for data interchange between GRASS and GpsBabel.
  13. If the requested output is GPX, then <tt>gpsbabel</tt> is never run.
  14. <P>
  15. The <b>layer</b> option is only used in conjunction with the
  16. <b>where</b> SQL query option.
  17. <H2>EXAMPLES</H2>
  18. <h3>GPX Export</h3>
  19. Export a vector lines map to a GPX track file:
  20. <div class="code"><pre>
  21. v.out.gpsbabel -t input=trail output=trail.gpx
  22. </pre></div>
  23. <h3>GPS device connected via USB adapter</h3>
  24. Export vector maps named <i>waypoints, tracks, routes</i> to a Garmin GPS
  25. connected to /dev/ttyUSB0:
  26. <div class="code"><pre>
  27. v.out.gpsbabel -w input=waypoints format=garmin output=/dev/ttyUSB0
  28. v.out.gpsbabel -t input=tracks format=garmin output=/dev/ttyUSB0
  29. v.out.gpsbabel -r input=routes format=garmin output=/dev/ttyUSB0
  30. </pre></div>
  31. <H2>SEE ALSO</H2>
  32. <EM><A HREF="m.proj.html">m.proj</A></EM><BR>
  33. <EM><A HREF="v.in.ascii.html">v.in.ascii</A></EM><BR>
  34. <EM><A HREF="v.out.ascii.html">v.out.ascii</A></EM><BR>
  35. <EM><A HREF="v.in.garmin.html">v.in.garmin</A></EM><BR>
  36. <EM><A HREF="v.in.gpsbabel.html">v.in.gpsbabel</A></EM><BR>
  37. <EM><A HREF="v.extract.html">v.extract</A></EM><BR>
  38. <BR>
  39. <A HREF="http://www.gpsbabel.org">GpsBabel.org</a><BR>
  40. The <A HREF="http://www.gdal.org/ogr/drv_gpx.html">GDAL/OGR GPX format page</a><BR>
  41. cs2cs from <A HREF="http://proj.osgeo.org">PROJ.4</a><BR>
  42. <H2>AUTHOR</H2>
  43. Hamish Bowman, Dunedin New Zealand
  44. <p>
  45. <i>Last changed: $Date$</i>