1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
#!/bin/sh
############################################################################
#
# MODULE: d.path_wrapper.sh
# AUTHOR(S): Hamish Bowman (Otago University, New Zealand)
# PURPOSE: Draw vector map to xmon before running d.path and pass opts
# COPYRIGHT: (c) 2007 by 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.
#
#############################################################################
# Notes:
# Created with "d.path --script" from GRASS 6.3-CVS 6 March 2007
# Be sure menu entry runs guarantee_xmon first. for example:
# "guarantee_xmon; d.path_wrapper.sh -b --ui"
# d.path is interactive with the xmon, but does not need to run in a xterm
#############################################################################
#%Module
#% description: Find shortest path for selected starting and ending node
#% keywords: display, networking
#%End
#%Flag
#% key: g
#% description: Use geodesic calculation for longitude-latitude locations
#%End
#%Flag
#% key: b
#% description: Do not render bold lines
#% guisection: Rendering
#%End
#%Option
#% key: map
#% type: string
#% required: yes
#% multiple: no
#% key_desc: name
#% description: Name of input vector map
#% gisprompt: old,vector,vector
#%End
#%Option
#% key: type
#% type: string
#% required: no
#% multiple: yes
#% options: line,boundary
#% label: Type
#% description: Arc type
#% answer: line,boundary
#%End
#%Option
#% key: coor
#% type: string
#% required: no
#% multiple: no
#% key_desc: x1,y1,x2,y2
#% description: Starting and ending coordinates
#%End
#%Option
#% key: alayer
#% type: integer
#% required: no
#% multiple: no
#% label: Layer number
#% description: Arc layer
#% answer: 1
#%End
#%Option
#% key: nlayer
#% type: integer
#% required: no
#% multiple: no
#% label: Layer number
#% description: Node layer
#% answer: 2
#%End
#%Option
#% key: afcol
#% type: string
#% required: no
#% multiple: no
#% description: Arc forward/both direction(s) cost column
#%End
#%Option
#% key: abcol
#% type: string
#% required: no
#% multiple: no
#% description: Arc backward direction cost column
#%End
#%Option
#% key: ncol
#% type: string
#% required: no
#% multiple: no
#% description: Node cost column
#%End
#%Option
#% key: color
#% type: string
#% required: no
#% multiple: no
#% description: Original line color
#% answer: black
#% gisprompt: color,grass,color
#% guisection: Rendering
#%End
#%Option
#% key: hcolor
#% type: string
#% required: no
#% multiple: no
#% description: Highlight color
#% answer: red
#% gisprompt: color,grass,color
#% guisection: Rendering
#%End
#%Option
#% key: bgcolor
#% type: string
#% required: no
#% multiple: no
#% description: Background color
#% answer: white
#% gisprompt: color,grass,color
#% guisection: Rendering
#%End
if [ -z "$GISBASE" ] ; then
echo "You must be in GRASS GIS to run this program." 1>&2
exit 1
fi
unset GRASS_UI_TERM
if [ "$1" != "@ARGS_PARSED@" ] ; then
exec g.parser "$0" "$@"
fi
d.vect map="$GIS_OPT_MAP" color="$GIS_OPT_COLOR"
echo "Left mouse button: set start point Middle: set end point Right: quit" | \
d.text size=2.25 bgcolor="240:240:240" color=red
if [ "$GIS_FLAG_G" -eq 1 ] ; then
flag_g="-g"
else
flag_g=""
fi
if [ "$GIS_FLAG_B" -eq 0 ] ; then
flag_b="-b"
else
flag_b=""
fi
if [ -n "$GIS_OPT_COOR" ] ; then
opt_coor="coor=$GIS_OPT_COOR"
else
opt_coor=""
fi
if [ -n "$GIS_OPT_AFCOL" ] ; then
opt_afcol="afcol=$GIS_OPT_AFCOL"
else
opt_afcol=""
fi
if [ -n "$GIS_OPT_ABCOL" ] ; then
opt_abcol="abcol=$GIS_OPT_ABCOL"
else
opt_abcol=""
fi
if [ -n "$GIS_OPT_NCOL" ] ; then
opt_ncol="ncol=$GIS_OPT_NCOL"
else
opt_ncol=""
fi
exec d.path $flag_g $flag_b \
map="$GIS_OPT_MAP" \
type="$GIS_OPT_TYPE" \
$opt_coor \
alayer="$GIS_OPT_ALAYER" \
nlayer="$GIS_OPT_NLAYER" \
$opt_afcol $opt_abcol $opt_ncol \
color="$GIS_OPT_COLOR" \
hcolor="$GIS_OPT_HCOLOR" \
bgcolor="$GIS_OPT_BGCOLOR"
|