Frequency Frame Alignment

When time averaging a series of scans together, it is possible that the velocity scales are not exactly aligned. This may be for many reasons such as not Doppler tracking the observations, errors in the Doppler tracking etc. This mostly affects very long integrations or integrations averaged together from different days. Before averaging such data together, they should be frequency aligned using freq_align.

E.g.:

  ASAP>scans.freq_align()
  ASAP>av = average_time(scans)

A Global freq_align command will be made eventually

To average together data taken on different days, which are in different scantables, each scantable must aligned to a common reference time then the scantables averaged. The simplest way of doing this is to allow ASAP to choose the reference time for the first scantable then using this time for the subsequent scantables.

  ASAP>scans1.freq_align() # Copy the refeference Epoch from the output
  ASAP>scans2.freq_align(reftime='2004/11/23/18:43:35')
  ASAP>scans3.freq_align(reftime='2004/11/23/18:43:35')
  ASAP>av = average_time(scans1, scans2, scans3)



Malte Marquarding 2007-08-16