[GRASS-SVN] r34089 - in grass/trunk/scripts: . v.out.gpsbabel
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Oct 30 07:35:09 EDT 2008
Author: hamish
Date: 2008-10-30 07:35:09 -0400 (Thu, 30 Oct 2008)
New Revision: 34089
Added:
grass/trunk/scripts/v.out.gpsbabel/
grass/trunk/scripts/v.out.gpsbabel/Makefile
grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel
grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel.html
Removed:
grass/trunk/scripts/v.out.gpsbabel/Makefile
grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel
Log:
v.out.gpbabel: add but not activated yet. (merge from devbr6)
Copied: grass/trunk/scripts/v.out.gpsbabel (from rev 34088, grass/branches/develbranch_6/scripts/v.out.gpsbabel)
Deleted: grass/trunk/scripts/v.out.gpsbabel/Makefile
===================================================================
--- grass/branches/develbranch_6/scripts/v.out.gpsbabel/Makefile 2008-10-30 11:30:22 UTC (rev 34088)
+++ grass/trunk/scripts/v.out.gpsbabel/Makefile 2008-10-30 11:35:09 UTC (rev 34089)
@@ -1,7 +0,0 @@
-MODULE_TOPDIR = ../..
-
-PGM = v.out.gpsbabel
-
-include $(MODULE_TOPDIR)/include/Make/Script.make
-
-default: script
Copied: grass/trunk/scripts/v.out.gpsbabel/Makefile (from rev 34088, grass/branches/develbranch_6/scripts/v.out.gpsbabel/Makefile)
===================================================================
--- grass/trunk/scripts/v.out.gpsbabel/Makefile (rev 0)
+++ grass/trunk/scripts/v.out.gpsbabel/Makefile 2008-10-30 11:35:09 UTC (rev 34089)
@@ -0,0 +1,7 @@
+MODULE_TOPDIR = ../..
+
+PGM = v.out.gpsbabel
+
+include $(MODULE_TOPDIR)/include/Make/Script.make
+
+default: script
Deleted: grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel
===================================================================
--- grass/branches/develbranch_6/scripts/v.out.gpsbabel/v.out.gpsbabel 2008-10-30 11:30:22 UTC (rev 34088)
+++ grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel 2008-10-30 11:35:09 UTC (rev 34089)
@@ -1,314 +0,0 @@
-#!/bin/sh
-#
-############################################################################
-#
-# MODULE: v.out.gpsbabel
-#
-# PURPOSE: Exports a GRASS vector map to a GPS receiver
-# or data file using GpsBabel
-#
-# COPYRIGHT: (c) 2008 Hamish Bowman, and the GRASS Development Team
-# This program is free software under the GNU General Public
-# License (>=v2). Read the file COPYING that comes with GRASS
-# for details.
-#
-# AUTHOR: Hamish Bowman, Dunedin, New Zealand
-#
-#############################################################################
-#
-# REQUIREMENTS:
-# - GpsBabel from http://gpsbabel.sourceforge.net
-# - cs2cs from PROJ.4 (for m.proj) http://proj.osgeo.org
-#
-# - report supported GpsBabel formats:
-# gpsbabel -^2 | tr '\t' ';' | sort -t';' -k3
-#
-#############################################################################
-#
-# How to do it
-# http://www.gdal.org/ogr/drv_gpx.html
-# gpsbabel [options] -i INTYPE -f INFILE -o OUTTYPE -F OUTFILE
-#
-#############################################################################
-
-#%Module
-#% description: Exports a vector map to a GPS receiver or file format supported by GpsBabel.
-#% keywords: vector, export, GPS
-#%End
-#%flag
-#% key: w
-#% description: Export as waypoints
-#%end
-#%flag
-#% key: r
-#% description: Export as routes
-#%end
-#%flag
-#% key: t
-#% description: Export as tracks
-#%end
-############ TODO:
-##%flag
-##% key: z
-##% description: Export altitude from 3D vector's z-coordinate
-##%end
-############
-#%option
-#% key: input
-#% type: string
-#% description: Name of input vector map
-#% gisprompt: old,vector,vector
-#% required: yes
-#%end
-#%option
-#% key: type
-#% type: string
-#% description: Feature type(s)
-#% options: point,centroid,line,boundary
-#% multiple: yes
-#%end
-#%option
-#% key: output
-#% type: string
-#% description: Name for output file or GPS device
-#% gisprompt: new_file,file,output
-#% key_desc: name
-#% required: yes
-#%end
-#%option
-#% key: format
-#% type: string
-#% description: GpsBabel supported output format
-#% answer: gpx
-#%end
-#%option
-#% key: layer
-#% type: integer
-#% label: Layer number
-#% description: A single vector map can be connected to multiple database tables. This number determines which table to use.
-#% answer: 1
-#% required : no
-#% guisection: Subset
-#%end
-#%option
-#% key: where
-#% type: string
-#% label: WHERE conditions of SQL statement without 'where' keyword
-#% description: Example: income < 1000 and inhab >= 10000
-#% required : no
-#% guisection: Subset
-#%end
-
-
-if [ -z "$GISBASE" ] ; then
- echo "You must be in GRASS GIS to run this program." 1>&2
- exit 1
-fi
-
-if [ "$1" != "@ARGS_PARSED@" ] ; then
- # save command line
- CMDLINE="`basename $0`"
- for arg in "$@" ; do
- CMDLINE="$CMDLINE \"$arg\""
- done
- export CMDLINE
- exec g.parser "$0" "$@"
-fi
-
-# set environment so that awk works properly in all languages
-unset LC_ALL
-LC_NUMERIC=C
-export LC_NUMERIC
-
-eval `g.gisenv`
-: ${GISBASE?} ${GISDBASE?} ${LOCATION_NAME?} ${MAPSET?}
-LOCATION="$GISDBASE"/"$LOCATION_NAME"/"$MAPSET"
-
-PROG=`basename $0`
-
-#### check for gpsbabel
-if [ ! -x "`which gpsbabel`" ] ; then
- g.message -e "The gpsbabel program was not found, please install it first.
- http://gpsbabel.sourceforge.net"
- exit 1
-fi
-
-#### check for cs2cs
-if [ ! -x "`which cs2cs`" ] ; then
- g.message -e "The cs2cs program was not found, please install it first.
- http://proj.osgeo.org"
- exit 1
-fi
-
-# check if we will overwrite data
-if [ -e "$GIS_OPT_OUTPUT" ] ; then
- if [ -z "$GRASS_OVERWRITE" ] || [ "$GRASS_OVERWRITE" -ne 1 ] ; then
- g.message -e "Output file already exists."
- exit 1
- fi
-fi
-
-
-#### set temporary files
-TMP="`g.tempfile pid=$$`"
-if [ $? -ne 0 ] || [ -z "$TMP" ] ; then
- g.message -e "Unable to create temporary files"
- exit 1
-fi
-
-
-cleanup()
-{
- g.message -d "Cleaning up ..."
- \rm -f "$TMP" "$TMP.gpx"
- # only try to remove map if it exists to avoid ugly warnings
- g.findfile element=vector file="tmp_vogb_epsg4326_$$" > /dev/null
- if [ $? -eq 0 ] ; then
- g.remove vect="tmp_vogb_epsg4326_$$" --quiet
- fi
- g.findfile element=vector file="tmp_vogb_extr_$$" > /dev/null
- if [ $? -eq 0 ] ; then
- g.remove vect="tmp_vogb_extr_$$" --quiet
- fi
-}
-
-#### trap ctrl-c so that we can clean up tmp
-trap 'cleanup' 2 3 15
-
-
-#### process command line arguments
-WPT=$GIS_FLAG_W ; RTE=$GIS_FLAG_R ; TRK=$GIS_FLAG_T
-
-if [ $WPT -eq 1 ] && ([ $RTE -eq 1 ] || [ $TRK -eq 1 ]) ; then
- g.message -e "One feature at a time please."
- rm -f "${TMP}"
- exit 1
-fi
-# logic eludes me at pressent.. [combine with above]
-if [ $RTE -eq 1 ] && [ $TRK -eq 1 ] ; then
- g.message -e "One feature at a time please."
- rm -f "${TMP}"
- exit 1
-fi
-
-if [ $WPT -eq 0 ] && [ $RTE -eq 0 ] && [ $TRK -eq 0 ] ; then
- g.message -e "No features requested for export."
- cleanup
- exit 1
-fi
-
-# set some reasonable defaults
-if [ $WPT -eq 1 ] ; then
- if [ -z "$GIS_OPT_TYPE" ] ; then
- GIS_OPT_TYPE="point"
- fi
-else
- if [ -z "$GIS_OPT_TYPE" ] ; then
- GIS_OPT_TYPE="line"
- fi
-fi
-
-
-# SQL extract if needed
-if [ -n "$GIS_OPT_WHERE" ] ; then
-
- v.extract in="$GIS_OPT_INPUT" out="tmp_vogb_extr_$$" \
- type="$GIS_OPT_TYPE" layer="$GIS_OPT_LAYER" \
- where="$GIS_OPT_WHERE" --quiet
-
- if [ $? -ne 0 ] ; then
- g.message -e "Error executing SQL query"
- cleanup
- exit 1
- fi
-
- eval `v.info -t map="tmp_vogb_extr_$$"`
- if [ "$primitives" -eq 0 ] ; then
- g.message -e "SQL query returned an empty map"
- cleanup
- exit 1
- fi
-
- INMAP="tmp_vogb_extr_$$"
-else
- INMAP="$GIS_OPT_INPUT"
-fi
-
-
-#### set up projection info
-# TODO: check if we are already in ll/WGS84. If so skip m.proj step.
-
-
-# TODO: multi layer will probably fail badly due to sed 's/^ 1 /'
-# output as old GRASS 4 vector ascii and fight with dig_ascii/?
-
-# reproject to lat/lon WGS84
-v.out.ascii in="$INMAP" format=standard | \
- sed -e 's/^\([PLBCFKA]\)/#\1/' -e 's/^ 1 /# 1 /' | \
- tail -n +11 | m.proj -od --quiet | \
- sed -e 's/\t\([-\.0-9]*\) .*/ \1/' \
- -e 's/^\([-\.0-9]\)/ \1/' \
- -e 's/^#//' | \
- v.in.ascii out=tmp_vogb_epsg4326_$$ -n format=standard --quiet
-
-if [ $? -ne 0 ] ; then
- g.message -e "Error reprojecting data"
- cleanup
- exit 1
-fi
-
-
-# export as GPX using v.out.ogr
-if [ $TRK -eq 1 ] ; then
- LINETYPE="FORCE_GPX_TRACK=YES,"
-elif [ $RTE -eq 1 ] ; then
- LINETYPE="FORCE_GPX_ROUTE=YES,"
-else
- LINETYPE=""
-fi
-
-# TODO: cat is being reported as evelation? or is <ele>=element??
-# TODO: fix attribute output. ogr2ogr -sql to rename columns?
-# see http://www.gdal.org/ogr/drv_gpx.html
-
-v.out.ogr in=tmp_vogb_epsg4326_$$ dsn="$TMP.gpx" type="$GIS_OPT_TYPE" \
- format=GPX lco="${LINETYPE}GPX_USE_EXTENSIONS=YES" --quiet
-
-if [ $? -ne 0 ] ; then
- g.message -e "Error exporting data"
- cleanup
- exit 1
-fi
-
-if [ "$GIS_OPT_FORMAT" = gpx ] ; then
- # short circuit, we have what we came for.
- mv "$TMP.gpx" "$GIS_OPT_OUTPUT"
- cleanup
- g.message -d "Fast exit"
- exit 0
-fi
-
-
-# run gpsbabel
-GTYPE=""
-if [ $WPT -eq 1 ] ; then
- GTYPE="-w"
-elif [ $TRK -eq 1 ] ; then
- GTYPE="-t"
-elif [ $RTE -eq 1 ] ; then
- GTYPE="-r"
-fi
-
-gpsbabel $GTYPE -i gpx -f "$TMP.gpx" \
- -o "$GIS_OPT_FORMAT" -F "$GIS_OPT_OUTPUT"
-
-if [ $? -ne 0 ] ; then
- g.message -e "Error running GpsBabel"
- cleanup
- exit 1
-fi
-
-
-cleanup
-g.message -v "Done."
-exit
Copied: grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel (from rev 34088, grass/branches/develbranch_6/scripts/v.out.gpsbabel/v.out.gpsbabel)
===================================================================
--- grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel (rev 0)
+++ grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel 2008-10-30 11:35:09 UTC (rev 34089)
@@ -0,0 +1,314 @@
+#!/bin/sh
+#
+############################################################################
+#
+# MODULE: v.out.gpsbabel
+#
+# PURPOSE: Exports a GRASS vector map to a GPS receiver
+# or data file using GpsBabel
+#
+# COPYRIGHT: (c) 2008 Hamish Bowman, and the GRASS Development Team
+# This program is free software under the GNU General Public
+# License (>=v2). Read the file COPYING that comes with GRASS
+# for details.
+#
+# AUTHOR: Hamish Bowman, Dunedin, New Zealand
+#
+#############################################################################
+#
+# REQUIREMENTS:
+# - GpsBabel from http://gpsbabel.sourceforge.net
+# - cs2cs from PROJ.4 (for m.proj) http://proj.osgeo.org
+#
+# - report supported GpsBabel formats:
+# gpsbabel -^2 | tr '\t' ';' | sort -t';' -k3
+#
+#############################################################################
+#
+# How to do it
+# http://www.gdal.org/ogr/drv_gpx.html
+# gpsbabel [options] -i INTYPE -f INFILE -o OUTTYPE -F OUTFILE
+#
+#############################################################################
+
+#%Module
+#% description: Exports a vector map to a GPS receiver or file format supported by GpsBabel.
+#% keywords: vector, export, GPS
+#%End
+#%flag
+#% key: w
+#% description: Export as waypoints
+#%end
+#%flag
+#% key: r
+#% description: Export as routes
+#%end
+#%flag
+#% key: t
+#% description: Export as tracks
+#%end
+############ TODO:
+##%flag
+##% key: z
+##% description: Export altitude from 3D vector's z-coordinate
+##%end
+############
+#%option
+#% key: input
+#% type: string
+#% description: Name of input vector map
+#% gisprompt: old,vector,vector
+#% required: yes
+#%end
+#%option
+#% key: type
+#% type: string
+#% description: Feature type(s)
+#% options: point,centroid,line,boundary
+#% multiple: yes
+#%end
+#%option
+#% key: output
+#% type: string
+#% description: Name for output file or GPS device
+#% gisprompt: new_file,file,output
+#% key_desc: name
+#% required: yes
+#%end
+#%option
+#% key: format
+#% type: string
+#% description: GpsBabel supported output format
+#% answer: gpx
+#%end
+#%option
+#% key: layer
+#% type: integer
+#% label: Layer number
+#% description: A single vector map can be connected to multiple database tables. This number determines which table to use.
+#% answer: 1
+#% required : no
+#% guisection: Subset
+#%end
+#%option
+#% key: where
+#% type: string
+#% label: WHERE conditions of SQL statement without 'where' keyword
+#% description: Example: income < 1000 and inhab >= 10000
+#% required : no
+#% guisection: Subset
+#%end
+
+
+if [ -z "$GISBASE" ] ; then
+ echo "You must be in GRASS GIS to run this program." 1>&2
+ exit 1
+fi
+
+if [ "$1" != "@ARGS_PARSED@" ] ; then
+ # save command line
+ CMDLINE="`basename $0`"
+ for arg in "$@" ; do
+ CMDLINE="$CMDLINE \"$arg\""
+ done
+ export CMDLINE
+ exec g.parser "$0" "$@"
+fi
+
+# set environment so that awk works properly in all languages
+unset LC_ALL
+LC_NUMERIC=C
+export LC_NUMERIC
+
+eval `g.gisenv`
+: ${GISBASE?} ${GISDBASE?} ${LOCATION_NAME?} ${MAPSET?}
+LOCATION="$GISDBASE"/"$LOCATION_NAME"/"$MAPSET"
+
+PROG=`basename $0`
+
+#### check for gpsbabel
+if [ ! -x "`which gpsbabel`" ] ; then
+ g.message -e "The gpsbabel program was not found, please install it first.
+ http://gpsbabel.sourceforge.net"
+ exit 1
+fi
+
+#### check for cs2cs
+if [ ! -x "`which cs2cs`" ] ; then
+ g.message -e "The cs2cs program was not found, please install it first.
+ http://proj.osgeo.org"
+ exit 1
+fi
+
+# check if we will overwrite data
+if [ -e "$GIS_OPT_OUTPUT" ] ; then
+ if [ -z "$GRASS_OVERWRITE" ] || [ "$GRASS_OVERWRITE" -ne 1 ] ; then
+ g.message -e "Output file already exists."
+ exit 1
+ fi
+fi
+
+
+#### set temporary files
+TMP="`g.tempfile pid=$$`"
+if [ $? -ne 0 ] || [ -z "$TMP" ] ; then
+ g.message -e "Unable to create temporary files"
+ exit 1
+fi
+
+
+cleanup()
+{
+ g.message -d "Cleaning up ..."
+ \rm -f "$TMP" "$TMP.gpx"
+ # only try to remove map if it exists to avoid ugly warnings
+ g.findfile element=vector file="tmp_vogb_epsg4326_$$" > /dev/null
+ if [ $? -eq 0 ] ; then
+ g.remove vect="tmp_vogb_epsg4326_$$" --quiet
+ fi
+ g.findfile element=vector file="tmp_vogb_extr_$$" > /dev/null
+ if [ $? -eq 0 ] ; then
+ g.remove vect="tmp_vogb_extr_$$" --quiet
+ fi
+}
+
+#### trap ctrl-c so that we can clean up tmp
+trap 'cleanup' 2 3 15
+
+
+#### process command line arguments
+WPT=$GIS_FLAG_W ; RTE=$GIS_FLAG_R ; TRK=$GIS_FLAG_T
+
+if [ $WPT -eq 1 ] && ([ $RTE -eq 1 ] || [ $TRK -eq 1 ]) ; then
+ g.message -e "One feature at a time please."
+ rm -f "${TMP}"
+ exit 1
+fi
+# logic eludes me at pressent.. [combine with above]
+if [ $RTE -eq 1 ] && [ $TRK -eq 1 ] ; then
+ g.message -e "One feature at a time please."
+ rm -f "${TMP}"
+ exit 1
+fi
+
+if [ $WPT -eq 0 ] && [ $RTE -eq 0 ] && [ $TRK -eq 0 ] ; then
+ g.message -e "No features requested for export."
+ cleanup
+ exit 1
+fi
+
+# set some reasonable defaults
+if [ $WPT -eq 1 ] ; then
+ if [ -z "$GIS_OPT_TYPE" ] ; then
+ GIS_OPT_TYPE="point"
+ fi
+else
+ if [ -z "$GIS_OPT_TYPE" ] ; then
+ GIS_OPT_TYPE="line"
+ fi
+fi
+
+
+# SQL extract if needed
+if [ -n "$GIS_OPT_WHERE" ] ; then
+
+ v.extract in="$GIS_OPT_INPUT" out="tmp_vogb_extr_$$" \
+ type="$GIS_OPT_TYPE" layer="$GIS_OPT_LAYER" \
+ where="$GIS_OPT_WHERE" --quiet
+
+ if [ $? -ne 0 ] ; then
+ g.message -e "Error executing SQL query"
+ cleanup
+ exit 1
+ fi
+
+ eval `v.info -t map="tmp_vogb_extr_$$"`
+ if [ "$primitives" -eq 0 ] ; then
+ g.message -e "SQL query returned an empty map"
+ cleanup
+ exit 1
+ fi
+
+ INMAP="tmp_vogb_extr_$$"
+else
+ INMAP="$GIS_OPT_INPUT"
+fi
+
+
+#### set up projection info
+# TODO: check if we are already in ll/WGS84. If so skip m.proj step.
+
+
+# TODO: multi layer will probably fail badly due to sed 's/^ 1 /'
+# output as old GRASS 4 vector ascii and fight with dig_ascii/?
+
+# reproject to lat/lon WGS84
+v.out.ascii in="$INMAP" format=standard | \
+ sed -e 's/^\([PLBCFKA]\)/#\1/' -e 's/^ 1 /# 1 /' | \
+ tail -n +11 | m.proj -od --quiet | \
+ sed -e 's/\t\([-\.0-9]*\) .*/ \1/' \
+ -e 's/^\([-\.0-9]\)/ \1/' \
+ -e 's/^#//' | \
+ v.in.ascii out=tmp_vogb_epsg4326_$$ -n format=standard --quiet
+
+if [ $? -ne 0 ] ; then
+ g.message -e "Error reprojecting data"
+ cleanup
+ exit 1
+fi
+
+
+# export as GPX using v.out.ogr
+if [ $TRK -eq 1 ] ; then
+ LINETYPE="FORCE_GPX_TRACK=YES,"
+elif [ $RTE -eq 1 ] ; then
+ LINETYPE="FORCE_GPX_ROUTE=YES,"
+else
+ LINETYPE=""
+fi
+
+# TODO: cat is being reported as evelation? or is <ele>=element??
+# TODO: fix attribute output. ogr2ogr -sql to rename columns?
+# see http://www.gdal.org/ogr/drv_gpx.html
+
+v.out.ogr in=tmp_vogb_epsg4326_$$ dsn="$TMP.gpx" type="$GIS_OPT_TYPE" \
+ format=GPX lco="${LINETYPE}GPX_USE_EXTENSIONS=YES" --quiet
+
+if [ $? -ne 0 ] ; then
+ g.message -e "Error exporting data"
+ cleanup
+ exit 1
+fi
+
+if [ "$GIS_OPT_FORMAT" = gpx ] ; then
+ # short circuit, we have what we came for.
+ mv "$TMP.gpx" "$GIS_OPT_OUTPUT"
+ cleanup
+ g.message -d "Fast exit"
+ exit 0
+fi
+
+
+# run gpsbabel
+GTYPE=""
+if [ $WPT -eq 1 ] ; then
+ GTYPE="-w"
+elif [ $TRK -eq 1 ] ; then
+ GTYPE="-t"
+elif [ $RTE -eq 1 ] ; then
+ GTYPE="-r"
+fi
+
+gpsbabel $GTYPE -i gpx -f "$TMP.gpx" \
+ -o "$GIS_OPT_FORMAT" -F "$GIS_OPT_OUTPUT"
+
+if [ $? -ne 0 ] ; then
+ g.message -e "Error running GpsBabel"
+ cleanup
+ exit 1
+fi
+
+
+cleanup
+g.message -v "Done."
+exit
Added: grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel.html
===================================================================
--- grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel.html (rev 0)
+++ grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel.html 2008-10-30 11:35:09 UTC (rev 34089)
@@ -0,0 +1,63 @@
+<H2>DESCRIPTION</H2>
+
+<EM>v.out.gpsbabel</EM> allows the user to export waypoint, route, and track
+data from a vector map into a locally connected GPS receiver or as a file in
+many common GPS data formats. Translation is done via the
+<EM><A HREF="http://www.gpsbabel.org">GpsBabel</a></EM> program.
+
+<P>
+Do not use as a primary means of navigation.
+
+
+<H2>NOTES</H2>
+
+<em>v.out.gpsbabel</em> automatically reprojects data from the
+projection settings of the current location to Lat/Lon WGS84.
+<p>
+GPX format is used for data interchange between GRASS and GpsBabel.
+If the requested output is GPX, then <tt>gpsbabel</tt> is never run.
+<P>
+The <b>layer</b> option is only used in conjunction with the
+<b>where</b> SQL query option.
+
+
+<H2>EXAMPLES</H2>
+
+<h3>GPX Export</h3>
+
+Export a vector lines map to a GPX track file:
+<div class="code"><pre>
+v.out.gpsbabel -t input=trail output=trail.gpx
+</pre></div>
+
+
+<h3>GPS device connected via USB adapter</h3>
+
+Export vector maps named <i>waypoints, tracks, routes</i> to a Garmin GPS
+connected to /dev/ttyUSB0:
+<div class="code"><pre>
+v.out.gpsbabel -w input=waypoints format=garmin output=/dev/ttyUSB0
+v.out.gpsbabel -t input=tracks format=garmin output=/dev/ttyUSB0
+v.out.gpsbabel -r input=routes format=garmin output=/dev/ttyUSB0
+</pre></div>
+
+
+<H2>SEE ALSO</H2>
+<EM><A HREF="m.proj.html">m.proj</A></EM><BR>
+<EM><A HREF="v.in.ascii.html">v.in.ascii</A></EM><BR>
+<EM><A HREF="v.out.ascii.html">v.out.ascii</A></EM><BR>
+<EM><A HREF="v.in.garmin.html">v.in.garmin</A></EM><BR>
+<EM><A HREF="v.in.gpsbabel.html">v.in.gpsbabel</A></EM><BR>
+<EM><A HREF="v.extract.html">v.extract</A></EM><BR>
+<BR>
+
+<A HREF="http://www.gpsbabel.org">GpsBabel.org</a><BR>
+The <A HREF="http://www.gdal.org/ogr/drv_gpx.html">GDAL/OGR GPX format page</a><BR>
+cs2cs from <A HREF="http://proj.osgeo.org">PROJ.4</a><BR>
+
+
+<H2>AUTHOR</H2>
+Hamish Bowman, Dunedin New Zealand
+
+<p>
+<i>Last changed: $Date$</i>
Property changes on: grass/trunk/scripts/v.out.gpsbabel/v.out.gpsbabel.html
___________________________________________________________________
Name: svn:mime-type
+ text/html
Name: svn:keywords
+ Date
Name: svn:eol-style
+ native
More information about the grass-commit
mailing list