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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
#
# Analysis command descriptions:
# menu label
# file templates
# menu/bind
# analysis command line
param foo
var1 entry entry 40 {this is a entry}
var2 checkbox checkbox 1 {this is a checkbox}
var3 menu menu AAA|BBB|CCC {this is a menu}
endparam
param bar
@analysis/analysis.par
endparam
param ltc
bins entry "Enter number of [t1:t2:]bins" 0 "('0' for default number of bins)"
endparam
# Help Main Help
help Main Help
These menus contain a test for each possible feature
supported by the ds9 (blank line above)
endhelp
---
hmenu Test Web
help Web Help
Help for web features
endhelp
---
Web Test url
*
web
http://ds9.si.edu/doc/helpdesk.html
Web Test file
*
web
file:/Users/joye/saods9/tests/analysis/hv.html
endhmenu
hmenu Test Basics
help Basic Help
Help for basic features
endhelp
---
Test escape char # this is a comment
*
menu
echo "this is not a macro $$xpa" | $text
Test pass thru # this is a comment
*
menu
echo "this is not a macro $foo" | $text
Test $xpa # this is a comment
*
menu
echo $xpa | $text
Test $xpa_method # this is also a comment
*
menu
echo $xpa_method | $text
Test $vo_method
*
menu
echo $vo_method | $text
Test $filename
*.fits
menu
echo $filename | $text
Test $filename(root)
*.fits
menu
echo $filename(root) | $text
Test $filename(full)
*.fits
menu
echo $filename(full) | $text
Test $filename(root,3d)
*.fits
menu
echo $filename(root,3d) | $text
Test $filename(full,3d)
*.fits
menu
echo $filename(full,3d) | $text
Test $filedialog(open)
*
menu
echo "$filedialog(open)" | $text
Test $filedialog(save)
*
menu
echo "$filedialog(save)" | $text
Test $width $height $depth $bitpix
*.fits
menu
echo "$width $height $depth $bitpix" | $text
Test $pan
*.fits
menu
echo "$pan(fk5,degrees)" | $text
Test $env
*
menu
echo $env(PATH) | $text
endhmenu
hmenu Test Regions
help Regions Help
Help for regions features
endhelp
---
Test $regions
*.fits
menu
echo "$regions ds9_s:$regions(ds9,source,image) ciao_b:$regions(ciao,background) saotng_i:$regions(saotng,include,wcs,fk5) pros_e:$regions(pros,exclude,wcs,fk5,sexagesimal) xy_be:$regions(xy,background,exclude,wcs,fk4,hms)" | $text
Test $regions wcs
*.fits
menu
echo "$regions(ds9,wcs) $regions(ds9,wcs,fk5,sexagesimal) $regions(ds9,wcsa) " | $text
Test $include_regions_pixels
*.fits
menu
echo "ds9_s: $source_regions ds9_b: $background_regions_pixels ds9_i: $include_regions_degrees ds9_e: $exclude_regions_hms" | $text
Test $filename $regions
*.fits
menu
echo "$filename[$regions]" | $text
Test $filename $regions()
*.fits
menu
echo "$filename[$regions()]" | $text
endhmenu
hmenu Test Output
help Output Help
Help for output features
endhelp
---
Test $null
*
menu
echo "This is Text" > /dev/null | $null
Test $text
*
menu
echo "This is Text" | $text
Test $plot
*
menu
cat xy.dat | $plot
Test $plot(title,x,y,xyey)
*
menu
cat xyey.dat | $plot(Title,X Axis,Y Axis,xyey)
Test $plot(title,x,y,xyexey)
*
menu
cat xyexey.dat | $plot(Title,X Axis,Y Axis,xyexey)
Test $plot(title,x,y,4)
*
menu
cat 4.dat | $plot(Title,X Axis,Y Axis,4)
Test $plot(title,x,y,5)
*
menu
cat 5.dat | $plot(Title,X Axis,Y Axis,5)
Test $plot(stdin)
*
menu
cat stdin.xy.dat | $plot(stdin)
Test $plot(stdin) text
*
menu
cat stdin.text.dat | $plot(stdin)
Test $plot(stdin) error
*
menu
cat stdin.error.dat | $plot(stdin)
Test $data
*.fits
menu
$data | $image(new)
Test $image
*
menu
cat data/img.fits | $image
Test $image(3d)
*
menu
cat data/3d.fits | $image(3d)
endhmenu
hmenu Test Dialogs
help Dialogs Help
Help for dialog features
endhelp
---
Test $message(message)
*
menu
$message(ok,This is a Message) | echo "hello" | $text
Test $message(ok,message)
*
menu
$message(ok,This is a Message) | echo "World" | $text
Test $entry(message)
*
menu
echo "$entry(Enter Something)" | $text
endhmenu
hmenu Test Params
help Param Help
Help for param features
endhelp
---
Test $param
*
menu
$param(foo); echo "$var1 $var2 $var3" | $text
Test $param @file
*
menu
$param(bar); echo "$var1 $var2 $var3" | $text
endhmenu
hmenu Test Network
help Network Help
Help for network features
endhelp
---
Test $url(http://)
*
menu
$url(http://hea-www.harvard.edu/RD/ds9/download/data/img.fits) | $image(new)
endhmenu
$x $y $z $value
*.fits
bind x
echo "$x $y $z $value" | $text
$x(fk5) $y(fk5) $z(wcs) $value
*.fits
bind y
echo "$x(fk5) $y(fk5) $z(wcs) $value" | $text
$x(wcs,fk5,hms) $y(wcs,fk5,hms) $z(wcs) $value
*.fits
bind z
echo "$x(wcs,fk5,hms) $y(wcs,fk5,hms) $z(wcs) $value" | $text
|