1 | import re
|
---|
2 | import string
|
---|
3 | from asap._asap import selector as _selector, srctype
|
---|
4 | from asap.utils import unique, _to_list
|
---|
5 |
|
---|
6 | class selector(_selector):
|
---|
7 | """
|
---|
8 | A selection object to be applied to scantables to restrict the
|
---|
9 | scantables to specific rows.
|
---|
10 | """
|
---|
11 | fields = ["pols", "ifs", "beams", "scans", "cycles", "name", "query", "types", "rows"]
|
---|
12 |
|
---|
13 | def __init__(self, *args, **kw):
|
---|
14 | if len(args) == 1:
|
---|
15 | if isinstance(args[0], self.__class__) \
|
---|
16 | or isinstance(args[0], _selector):
|
---|
17 | _selector.__init__(self, args[0])
|
---|
18 | else:
|
---|
19 | raise TypeError("Argument can only be a selector object")
|
---|
20 | else:
|
---|
21 | _selector.__init__(self)
|
---|
22 | for k,v in kw.items():
|
---|
23 | if k in self.fields:
|
---|
24 | func = getattr(self, "set_%s" % k)
|
---|
25 | func(v)
|
---|
26 |
|
---|
27 | def reset(self):
|
---|
28 | """
|
---|
29 | Unset all selections.
|
---|
30 | """
|
---|
31 | self._reset()
|
---|
32 |
|
---|
33 | def is_empty(self):
|
---|
34 | """
|
---|
35 | Has anything been set?
|
---|
36 | """
|
---|
37 | return self._empty()
|
---|
38 |
|
---|
39 | def set_polarisations(self, pols=[]):
|
---|
40 | """
|
---|
41 | Set the polarisations to be selected in the scantable.
|
---|
42 | Parameters:
|
---|
43 | pols: a list of integers of 0-3, or strings, e.g ["I","Q"].
|
---|
44 | Default [] is no selection
|
---|
45 | Example:
|
---|
46 | sel = selector()
|
---|
47 | # These are equivalent if data is 'linear'
|
---|
48 | sel.set_polarisations(["XX","Re(XY)"])
|
---|
49 | sel.set_polarisations([0,2])
|
---|
50 | # reset the polarisation selection
|
---|
51 | sel.set_polarisations()
|
---|
52 |
|
---|
53 | """
|
---|
54 | vec = _to_list(pols, str) or _to_list(pols, int)
|
---|
55 | if isinstance(vec, list): # is an empty and/or valid vector
|
---|
56 | if len(vec) and isinstance(vec[-1],str):
|
---|
57 | self._setpolstrings(vec)
|
---|
58 | return
|
---|
59 | self._setpols(vec)
|
---|
60 | else:
|
---|
61 | raise TypeError('Unknown pol type. Please use [0,1...] or ["XX","YY"...]')
|
---|
62 |
|
---|
63 | # for the americans
|
---|
64 | set_polarizations = set_polarisations
|
---|
65 | # for the lazy
|
---|
66 | set_pols = set_polarisations
|
---|
67 |
|
---|
68 | def set_ifs(self, ifs=[]):
|
---|
69 | """
|
---|
70 | Set a sequence of IF numbers (0-based).
|
---|
71 | Parameters:
|
---|
72 | ifs: a list of integers. Default [] is to unset the selection.
|
---|
73 | """
|
---|
74 | vec = _to_list(ifs, int)
|
---|
75 | if isinstance(vec,list):
|
---|
76 | self._setifs(vec)
|
---|
77 | else:
|
---|
78 | raise TypeError('Unknown IFno type. Use lists of integers.')
|
---|
79 |
|
---|
80 | def set_scans(self, scans=[]):
|
---|
81 | """
|
---|
82 | Set a sequence of Scan numbers (0-based).
|
---|
83 | Parameters:
|
---|
84 | scans: a list of integers. Default [] is to unset the selection.
|
---|
85 | """
|
---|
86 | vec = _to_list(scans, int)
|
---|
87 | if isinstance(vec,list):
|
---|
88 | self._setscans(vec)
|
---|
89 | else:
|
---|
90 | raise TypeError('Unknown Scan number type. Use lists of integers.')
|
---|
91 |
|
---|
92 | def set_beams(self, beams=[]):
|
---|
93 | """
|
---|
94 | Set a sequence of Beam numbers (0-based).
|
---|
95 | Parameters:
|
---|
96 | beams: a list of integers. Default [] is to unset the selection.
|
---|
97 | """
|
---|
98 | vec = _to_list(beams, int)
|
---|
99 | if isinstance(vec,list):
|
---|
100 | self._setbeams(vec)
|
---|
101 | else:
|
---|
102 | raise TypeError('Unknown Beam number type. Use lists of integers.')
|
---|
103 |
|
---|
104 | def set_cycles(self, cycles=[]):
|
---|
105 | """
|
---|
106 | Set a sequence of IF numbers (0-based).
|
---|
107 | Parameters:
|
---|
108 | cycless: a list of integers. Default [] is to unset the selection.
|
---|
109 | """
|
---|
110 | vec = _to_list(cycles, int)
|
---|
111 | if isinstance(vec,list):
|
---|
112 | self._setcycles(vec)
|
---|
113 | else:
|
---|
114 | raise TypeError('Unknown Cycle number type. Use lists of integers.')
|
---|
115 |
|
---|
116 |
|
---|
117 | def set_name(self, name):
|
---|
118 | """
|
---|
119 | Set a selection based on a name. This can be a unix pattern , e.g. "*_R"
|
---|
120 | Parameters:
|
---|
121 | name: a string containing a source name or pattern
|
---|
122 | Examples:
|
---|
123 | # select all reference scans which start with "Orion"
|
---|
124 | selection.set_name("Orion*_R")
|
---|
125 | """
|
---|
126 | if isinstance(name, str):
|
---|
127 | self._setname(name)
|
---|
128 | else:
|
---|
129 | raise TypeError('name must be a string')
|
---|
130 |
|
---|
131 | def set_tsys(self, tsysmin=0.0, tsysmax=None):
|
---|
132 | """
|
---|
133 | Select by Tsys range.
|
---|
134 | Parameters:
|
---|
135 | tsysmin: the lower threshold. Default 0.0
|
---|
136 | tsysmax: the upper threshold. Default None.
|
---|
137 | Examples:
|
---|
138 | # select all spectra with Tsys <= 500.0
|
---|
139 | selection.set_tsys(tsysmax=500.0)
|
---|
140 |
|
---|
141 | """
|
---|
142 | taql = "SELECT FROM $1 WHERE TSYS[0] >= %f" % (tsysmin)
|
---|
143 | if isinstance(tsysmax, float):
|
---|
144 | taql = taql + " AND TSYS[0] <= %f" % ( tsysmax)
|
---|
145 | self._settaql(taql)
|
---|
146 |
|
---|
147 | def set_query(self, query):
|
---|
148 | """
|
---|
149 | Select by Column query. Power users only!
|
---|
150 | Example:
|
---|
151 | # select all off scans with integration times over 60 seconds.
|
---|
152 | selection.set_query("SRCTYPE == PSOFF AND INTERVAL > 60.0")
|
---|
153 | """
|
---|
154 | rx = re.compile("((SRCTYPE *[!=][=] *)([a-zA-Z.]+))", re.I)
|
---|
155 | for r in rx.findall(query):
|
---|
156 | sval = None
|
---|
157 | stype = r[-1].lower()
|
---|
158 | if stype.find('srctype.') == -1:
|
---|
159 | stype = ".".join(["srctype", stype])
|
---|
160 | try:
|
---|
161 | sval = eval(stype)
|
---|
162 | sval = "%s%d" % (r[1], sval)
|
---|
163 | except:
|
---|
164 | continue
|
---|
165 | query = query.replace(r[0], sval)
|
---|
166 | taql = "SELECT FROM $1 WHERE " + query
|
---|
167 | self._settaql(taql)
|
---|
168 |
|
---|
169 | def set_order(self, order):
|
---|
170 | """
|
---|
171 | Set the order the scantable should be sorted by.
|
---|
172 | Parameters:
|
---|
173 | order: The list of column names to sort by in order
|
---|
174 | """
|
---|
175 | self._setorder(order)
|
---|
176 |
|
---|
177 | def set_rows(self, rows=[]):
|
---|
178 | """
|
---|
179 | Set a sequence of row numbers (0-based). Power users Only!
|
---|
180 | NOTICE row numbers can be changed easily by sorting,
|
---|
181 | prior selection, etc.
|
---|
182 | Parameters:
|
---|
183 | rows: a list of integers. Default [] is to unset the selection.
|
---|
184 | """
|
---|
185 | vec = _to_list(rows, int)
|
---|
186 | if isinstance(vec,list):
|
---|
187 | self._setrows(vec)
|
---|
188 | else:
|
---|
189 | raise TypeError('Unknown row number type. Use lists of integers.')
|
---|
190 |
|
---|
191 | def set_types(self, types=[]):
|
---|
192 | """
|
---|
193 | Set a sequence of source types.
|
---|
194 | Parameters:
|
---|
195 | types: a list of integers. Default [] is to unset the selection.
|
---|
196 | """
|
---|
197 | vec = _to_list(types, int)
|
---|
198 | if isinstance(vec,list):
|
---|
199 | self._settypes(vec)
|
---|
200 | else:
|
---|
201 | raise TypeError('Unknown row number type. Use lists of integers.')
|
---|
202 |
|
---|
203 | def set_msselection_field(self, selection):
|
---|
204 | """
|
---|
205 | """
|
---|
206 | selection_list = map(string.strip, selection.split(','))
|
---|
207 | query_list = list(self.generate_query(selection_list))
|
---|
208 | query = 'SELECT FROM $1 WHERE ' + ' || '.join(query_list)
|
---|
209 | self._settaql(query)
|
---|
210 |
|
---|
211 | def generate_query(self, selection_list):
|
---|
212 | for s in selection_list:
|
---|
213 | if re.match('.*\*.*', s):
|
---|
214 | #print '"%s" is pattern match using *'%(s)
|
---|
215 | yield 'SRCNAME == pattern(\'%s\')'%(s)
|
---|
216 | elif re.match('^<=?[0-9]*$', s):
|
---|
217 | #print '"%s" is ID selection using < or <='%(s)
|
---|
218 | pass
|
---|
219 | elif re.match('^>=?[0-9]*$', s):
|
---|
220 | #print '"%s" is ID selection using > or >='%(s)
|
---|
221 | pass
|
---|
222 | elif re.match('^[0-9]+~[0-9]+$', s):
|
---|
223 | #print '"%s" is ID selection using ~'%(s)
|
---|
224 | pass
|
---|
225 | elif s.isdigit():
|
---|
226 | yield 'FIELDNAME == regex(\'.+__%s$\')'%(s)
|
---|
227 | else:
|
---|
228 | #print '"%s" is exact match'%(s)
|
---|
229 | yield 'SRCNAME == pattern(\'%s\')'%(s)
|
---|
230 |
|
---|
231 | def get_scans(self):
|
---|
232 | return list(self._getscans())
|
---|
233 | def get_cycles(self):
|
---|
234 | return list(self._getcycles())
|
---|
235 | def get_beams(self):
|
---|
236 | return list(self._getbeams())
|
---|
237 | def get_ifs(self):
|
---|
238 | return list(self._getifs())
|
---|
239 | def get_pols(self):
|
---|
240 | return list(self._getpols())
|
---|
241 | def get_poltypes(self):
|
---|
242 | return list(self._getpoltypes())
|
---|
243 | def get_order(self):
|
---|
244 | return list(self._getorder())
|
---|
245 | def get_types(self):
|
---|
246 | return list(self._gettypes())
|
---|
247 | def get_rows(self):
|
---|
248 | return list(self._getrows())
|
---|
249 | def get_query(self):
|
---|
250 | prefix = "SELECT FROM $1 WHERE "
|
---|
251 | return self._gettaql().replace(prefix, "")
|
---|
252 |
|
---|
253 | def get_name(self):
|
---|
254 | print "NYI"
|
---|
255 | s = self._gettaql()
|
---|
256 | return
|
---|
257 | def __str__(self):
|
---|
258 | out = ""
|
---|
259 | d = {"SCANNO": self.get_scans(),
|
---|
260 | "CYCLENO": self.get_cycles(),
|
---|
261 | "BEAMNO": self.get_beams(),
|
---|
262 | "IFNO": self.get_ifs(),
|
---|
263 | "Pol Type": self.get_poltypes(),
|
---|
264 | "POLNO": self.get_pols(),
|
---|
265 | "QUERY": self.get_query(),
|
---|
266 | "SRCTYPE": self.get_types(),
|
---|
267 | "ROWS": self.get_rows(),
|
---|
268 | "Sort Order": self.get_order()
|
---|
269 | }
|
---|
270 | for k,v in d.iteritems():
|
---|
271 | if v:
|
---|
272 | out += "%s: %s\n" % (k, v)
|
---|
273 | if len(out):
|
---|
274 | return out[:-1]
|
---|
275 | else:
|
---|
276 | return out
|
---|
277 |
|
---|
278 | def __add__(self, other):
|
---|
279 | """
|
---|
280 | Merge two selections.
|
---|
281 | """
|
---|
282 | if self.is_empty():
|
---|
283 | return selector(other)
|
---|
284 | elif other.is_empty():
|
---|
285 | return selector(self)
|
---|
286 | union = selector()
|
---|
287 | gets = [[self._getscans(), other._getscans(), union._setscans],
|
---|
288 | [self._getcycles(), other._getcycles(),union._setcycles],
|
---|
289 | [self._getbeams(), other._getbeams(), union._setbeams],
|
---|
290 | [self._getifs(), other._getifs(), union._setifs],
|
---|
291 | [self._getpols(), other._getpols(), union._setpols]]
|
---|
292 | for v in gets:
|
---|
293 | vec = list(v[0]+v[1])
|
---|
294 | vec.sort()
|
---|
295 | v[2](unique(vec))
|
---|
296 | q = other.get_query()
|
---|
297 | qs = self.get_query()
|
---|
298 | if len(q) and len(qs):
|
---|
299 | union.set_query(qs +" AND " + q)
|
---|
300 | else:
|
---|
301 | if len(q):
|
---|
302 | union.set_query(q)
|
---|
303 | elif len(qs):
|
---|
304 | union.set_query(qs)
|
---|
305 | return union
|
---|