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
|
# Copyright (C) 1999-2018
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc CATNED {varname} {
upvar #0 $varname var
global $varname
global pcat
global debug
if {$debug(tcl,cat)} {
puts stderr "CATNED $varname"
}
# parser
if {$pcat(vot)} {
set var(proc,parser) VOTParse
} else {
set var(proc,reader) CATNEDReader
}
# query
switch $var(skyformat) {
degrees {
set xx $var(x)
set yy $var(y)
}
sexagesimal {
switch -- $var(sky) {
fk4 -
fk5 -
icrs {set xx [h2d [Sex2H $var(x)]]}
galactic -
ecliptic {set xx [Sex2D $var(x)]}
}
set yy [Sex2D $var(y)]
}
}
switch -- $var(rformat) {
degrees {
set rr $var(radius)
}
arcmin {
set rr [expr $var(radius)/60.]
}
arcsec {
set rr [expr $var(radius)/60./60.]
}
}
if {$pcat(vot)} {
set out "xml_main"
} else {
set out "ascii_tab"
}
switch -- $var(sky) {
fk4 {
set sky "Equatorial"
set eq "B1950.0"
}
fk5 -
icrs {
set sky "Equatorial"
set eq "J2000.0"
}
galactic {
set sky "Galactic"
set eq {}
}
ecliptic {
set sky "Ecliptic"
set eq {}
}
}
switch -- $var(psky) {
fk4 {
set psky "Equatorial"
set peq "B1950.0"
}
fk5 -
icrs {
set psky "Equatorial"
set peq "J2000.0"
}
galactic {
set psky "Galactic"
set peq {}
}
ecliptic {
set psky "Ecliptic"
set peq {}
}
}
# url
set var(query) {}
set query [http::formatQuery search_type "Near Position Search" RA $xx DEC $yy SR $rr of $out in_csys $sky in_equinox $eq out_csys $psky out_equinox $peq]
set var(url) "http://ned.ipac.caltech.edu/cgi-bin/nph-objsearch?$query"
if {$pcat(vot)} {
CATLoad $varname
} else {
CATLoadIncr $varname
}
}
proc CATNEDReader {t sock token} {
upvar #0 $t T
global $t
set result 0
if { ![info exists ${t}(state)] } {
set T(state) 0
}
switch -- $T(state) {
0 {
# init db
fconfigure $sock -blocking 1
set T(Nrows) 0
set T(Ncols) 0
set T(Header) {}
set T(HLines) 0
set T(state) 1
}
1 {
# process header
if {[gets $sock line] == -1} {
set T(Nrows) 0
set T(Ncols) 0
set T(Header) {}
set T(HLines) 0
set T(state) -1
return $result
}
set result [string length "$line"]
# start of data?
if {[string range $line 0 2] == {No.}} {
# cols
incr ${t}(HLines)
set n $T(HLines)
set T(H_$n) $line
set T(Header) [split $T(H_$n) "\t"]
# dashes
set T(Dashes) [regsub -all {[A-Za-z0-9]} $T(H_$n) {-}]
set T(Ndshs) [llength $T(Dashes)]
starbase_colmap $t
set T(state) 2
}
}
2 {
# process table
if {[gets $sock line] == -1} {
set T(state) 0
} else {
set result [string length "$line"]
set line [string trim $line]
if {$line != {}} {
# ok, save it
incr ${t}(Nrows)
set r $T(Nrows)
set NCols [starbase_ncols $t]
set c 1
foreach val [split $line "\t"] {
set T($r,$c) $val
incr c
}
for {} {$c <= $NCols} {incr c} {
set T($r,$c) {}
}
}
}
}
}
return $result
}
proc CATNEDAck {varname} {
upvar #0 $varname var
global $varname
set msg {Acknowledgments for NED
This research has made use of the NASA/IPAC Extragalactic Database (NED)
which is operated by the Jet Propulsion Laboratory, California Institute
of Technology, under contract with the National Aeronautics and Space
Administration.
}
SimpleTextDialog ${varname}ack [msgcat::mc {Acknowledgment}] \
80 10 insert top $msg
}
|