/usr/share/saods9/library/vla.tcl is in saods9 7.5+repack1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Copyright (C) 1999-2016
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc VLADef {} {
global vla
global ivla
set ivla(top) .vla
set ivla(mb) .vlatmb
set vla(sky) fk5
set vla(rformat) arcmin
set vla(width) 15
set vla(height) 15
set vla(mode) new
set vla(save) 0
set vla(survey) first
}
proc VLADialog {} {
global vla
global ivla
global wcs
if {[winfo exists $ivla(top)]} {
raise $ivla(top)
return
}
set varname dvla
upvar #0 $varname var
global $varname
set var(top) $ivla(top)
set var(mb) $ivla(mb)
set var(sky) $vla(sky)
set var(skyformat) $wcs(skyformat)
set var(rformat) $vla(rformat)
set var(width) $vla(width)
set var(height) $vla(height)
# not used
set var(width,pixels) 300
set var(height,pixels) 300
set var(mode) $vla(mode)
set var(save) $vla(save)
set var(survey) $vla(survey)
set w $var(top)
IMGSVRInit $varname "VLA [msgcat::mc {Server}]" \
VLAExec VLAAck ARDone ARError
menu $var(mb).survey
$var(mb) add cascade -label Survey -menu $var(mb).survey
$var(mb).survey add radiobutton -label {First} \
-variable ${varname}(survey) -value first
$var(mb).survey add radiobutton -label {Stripe 82} \
-variable ${varname}(survey) -value stripe82
$var(mb).survey add radiobutton -label {GPS} \
-variable ${varname}(survey) -value gps
IMGSVRUpdate $varname
}
proc VLAExec {varname} {
upvar #0 $varname var
global $varname
if {$var(save)} {
set var(fn) [SaveFileDialog savefitsfbox]
if {$var(fn) == {}} {
ARDone $varname
return
}
} else {
set var(fn) [tmpnam {.fits}]
}
# skyformat
switch -- $var(skyformat) {
degrees {
set xx [uformat d h: $var(x)]
set yy [uformat d d: $var(y)]
}
sexagesimal {
set xx $var(x)
set yy $var(y)
}
}
# size - convert to arcmin
switch -- $var(rformat) {
degrees {
set ww [expr $var(width)*60.]
set hh [expr $var(height)*60.]
}
arcmin {
set ww $var(width)
set hh $var(height)
}
arcsec {
set ww [expr $var(width)/60.]
set hh [expr $var(height)/60.]
}
}
# now to radius
set rr [expr sqrt($ww*$ww+$hh*$hh)/2.]
if {$rr>60} {
set rr 60
}
set var(query) [http::formatQuery .submit "Extract the Cutout" RA "$xx $yy" Equinox J2000 ImageSize $rr MaxInt 10 .cgifields ImageType ImageType "FITS Image"]
set url "http://third.ucllnl.org/cgi-bin/$var(survey)cutout"
IMGSVRGetURL $varname $url
}
proc VLAAck {varname} {
upvar #0 $varname var
global $varname
set msg {Acknowledgments for the VLA
This major undertaking has received the generous technical and
scientific support of many individuals. The NRAO staff has provided
extremely valuable assistance in many aspects of the observations
themselves and in the area of software support; in particular, we are
grateful to Rick Perley, Ken Sowinski, Barry Clark, and Bill Cotton in
this regard. The support of the NRAO Director, Paul van den Bout, and
the yeoman service provided by Frazer Owen as Chair of the Survey
Oversight Committee are also greatly appreciated. We also thank the
members of the Oversight Committee (Ken Chambers, Eric Feigelson,
Jackie Hewitt, Gillian Knapp, and Rogier Windhorst) for their time and
wise counsel in this enterprise.
Acknowledgment is also due our colleagues who are involved in the
ongoing FIRST effort, including Richard McMahon and Isobel Hook. This
work is supported in part under the auspices of the Department of
Energy by Lawrence Livermore National Laboratory under contract
No. W-7405-ENG-48 and the Institute for Geophysics and Planetary
Physics, whose director Charles Alcock has been particularly
supportive. We also acknowledge a generous planning grant from the
CalSpace Institute; support from the STScI archive group, STScI
director Bob Williams, and the STScI Director's Discretionary Research
Fund; computing resources from Columbia University; a grant from the
National Science Foundation; a gift of computing equipment from Sun
Microsystems; a NATO travel grant to support our collaboration with
Richard McMahon; and an award from the National Geographic Society
which, in the spirit of their support 40 years ago for the Palomar
Observatory Sky Survey, will be providing funds to continue our
charting of the Universe.
}
SimpleTextDialog ${varname}ack [msgcat::mc {Acknowledgment}] \
80 40 insert top $msg
}
# Process Cmds
proc ProcessVLACmd {varname iname} {
upvar $varname var
upvar $iname i
VLADialog
IMGSVRProcessCmd $varname $iname dvla
}
proc ProcessSendVLACmd {proc id param} {
VLADialog
IMGSVRProcessSendCmd $proc $id $param dvla
}
|