Custom Query (241 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 241)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#23 fixed plotter.plot failing Malte Marquarding Jim.Lovell@…
Description

Here's the error message:

ASAP> plotter.plot(s1)
------------------------------------------------------------
 Traceback (most recent call last):
  File "<console>", line 1, in ?
  File "/usr/local/asap2/asap/asapplotter.py", line 90, in plot
    self._plot(self._data)
  File "/usr/local/asap2/asap/asapplotter.py", line 479, in _plot
    plotit(x,y,m)
  File "/usr/local/asap2/asap/asaplotbase.py", line 218, in plot
    origx = rcParams['xtick.labelsize']
  KeyError: 'xtick.labelsize'

How this happened:

d=scantable('2005-02-14_151649_t001.rpf')
sel=selector()
sel.set_ifs(0)
d.set_selection(sel)
q=d.auto_quotient()
print q
q.set_freqframe('LSRK')
q.set_unit('km/s')
q.recalc_azel()
q.gain_el()
q.opacity(0.111)
s1=q.get_scan([0,1])
print s1
s1.get_restfreqs()
plotter.plot(s1)

The data file in question can be found at /u/jlovell/asap_test/t001

#24 fixed strange behaviour of set_restfreqs Malte Marquarding Tony.Wong@…
Description

set_restfreqs adds to the vector of rest frequencies instead of replacing it.

For example:

Rest Freqs: [1.09782e+11] [Hz]

scans.set_restfreqs(freqs=115.2712e9)

Rest Freqs: [1.09782e+11, 1.152712e+11] [Hz]

#25 fixed gripes about create_mask Chris Phillips Tony.Wong@…
Description

I still find it impossible to remember that "invert=true" in create_mask sets the channels to be excluded. I would really prefer if this was changed to something like "flag=false" which is what is used in MIRIAD immask. It would also be nice to be able to specify the units as an argument to create_mask.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.