casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables
Public Member Functions | Public Attributes
asap.asapgrid.asapgrid_base Class Reference
Inheritance diagram for asap.asapgrid.asapgrid_base:
asap.asapgrid.asapgrid asap.asapgrid.asapgrid2

List of all members.

Public Member Functions

def __init__
def setData
def setIF
def setPolList
def setScanList
def defineImage
def setFunc
def setWeight
def enableClip
def disableClip
def grid
def plotFunc
def save
def plot
def getResult

Public Attributes

 outfile
 ifno
 gridder
 infile
 scantab

Detailed Description

Definition at line 9 of file asapgrid.py.


Constructor & Destructor Documentation

Definition at line 10 of file asapgrid.py.


Member Function Documentation

def asap.asapgrid.asapgrid_base.defineImage (   self,
  nx = -1,
  ny = -1,
  cellx = '',
  celly = '',
  center = '' 
)
Define spatial grid.

First two parameters, nx and ny, define number of pixels of
the grid. If which of those is not specified, it will be set
to the same value as the other. If none of them are specified,
it will be determined from map extent and cell size.

Next two parameters, cellx and celly, define size of pixel.
You should set those parameters as string, which is constructed
numerical value and unit, e.g. '0.5arcmin', or numerical value.
If those values are specified as numerical value, their units
will be assumed to 'arcsec'. If which of those is not specified,
it will be set to the same value as the other. If none of them
are specified, it will be determined from map extent and number
of pixels, or set to '1arcmin' if neither nx nor ny is set.

The last parameter, center, define the central coordinate of
the grid. You should specify its value as a string, like,

   'J2000 05h08m50s -16d23m30s'

or 

   'J2000 05:08:50 -16.23.30'

You can omit equinox when you specify center coordinate. In that
case, J2000 is assumed. If center is not specified, it will be
determined from the observed positions of input data.

nx -- number of pixels along x (R.A.) direction.
ny -- number of pixels along y (Dec.) direction.
cellx -- size of pixel in x (R.A.) direction.
celly -- size of pixel in y (Dec.) direction.
center -- central position of the grid.

Definition at line 50 of file asapgrid.py.

Disable min/max clipping.

Definition at line 186 of file asapgrid.py.

Enable min/max clipping.

By default, min/max clipping is disabled so that you should
call this method before actual gridding if you want to do
clipping.

Definition at line 176 of file asapgrid.py.

Reimplemented in asap.asapgrid.asapgrid2.

Definition at line 220 of file asapgrid.py.

Actual gridding which will be done based on several user inputs. 

Definition at line 192 of file asapgrid.py.

def asap.asapgrid.asapgrid_base.plot (   self,
  plotchan = -1,
  plotpol = -1,
  plotobs = False,
  plotgrid = False 
)
def asap.asapgrid.asapgrid_base.plotFunc (   self,
  clear = True 
)
Support function to see the shape of current grid function.

clear -- clear panel if True. Default is True.

Definition at line 198 of file asapgrid.py.

def asap.asapgrid.asapgrid_base.save (   self,
  outfile = '' 
)

Reimplemented in asap.asapgrid.asapgrid.

Definition at line 214 of file asapgrid.py.

def asap.asapgrid.asapgrid_base.setData (   self,
  infile 
)

Reimplemented in asap.asapgrid.asapgrid2, and asap.asapgrid.asapgrid.

Definition at line 17 of file asapgrid.py.

def asap.asapgrid.asapgrid_base.setFunc (   self,
  func = 'box',
  convsupport = -1,
  truncate = "-1",
  gwidth = "-1",
  jwidth = "-1" 
)
Set convolution function. Possible options are 'box' (Box-car,
default), 'sf' (prolate spheroidal), 'gauss' (Gaussian), and 
'gjinc' (Gaussian * Jinc).
Width of convolution function can be set using several parameters.
For 'box' and 'sf', we have one parameter, convsupport, that
specifies a cut-off radius of the convlolution function. By default
(-1), convsupport is automatically set depending on each convolution
function. Default values for convsupport are:

   'box': 1 pixel
   'sf': 3 pixels

For 'gauss', we have two parameters for convolution function,
truncate and gwidth. The truncate is similar to convsupport
except that truncate allows to specify its value as float or
string consisting of numeric and unit (e.g. '10arcsec' or
'3pixel'). Available units are angular units ('arcsec', 'arcmin',
'deg', etc.) and 'pixel'. Default unit is 'pixel' so that if
you specify numerical value or string without unit to gwidth,
the value will be interpreted as 'pixel'. gwidth is an HWHM of
gaussian. It also allows string value. Interpretation of the
value for gwidth is same as truncate. Default value for 'gauss'
is

      gwidth: '-1' ---> sqrt(log(2.0)) pixel
    truncate: '-1' ---> 3*gwidth pixel

For 'gjinc', there is an additional parameter jwidth that
specifies a width of the jinc function whose functional form is

    jinc(x) = J_1(pi*x/jwidth) / (pi*x/jwidth)

Default values for 'gjinc' is

      gwidth: '-1' ---> 2.52*sqrt(log(2.0)) pixel
      jwidth: '-1' ---> 1.55
    truncate: '-1' ---> automatically truncate at first null

Default values for gwidth and jwidth are taken from Mangum et al.
(2007).

func -- Function type ('box', 'sf', 'gauss', 'gjinc').
convsupport -- Width of convolution function. Default (-1) is
       to choose pre-defined value for each convolution
       function. Effective only for 'box' and 'sf'.
truncate -- Truncation radius of the convolution function.
    Acceptable value is an integer or a float in units of
    pixel, or a string consisting of numeric plus unit.
    Default unit for the string is 'pixel'. Default (-1)
    is to choose pre-defined value for each convolution
    function. Effective only for 'gauss' and 'gjinc'.
gwidth -- The HWHM of the gaussian. Acceptable value is an integer
  or a float in units of pixel, or a string consisting of
  numeric plus unit. Default unit for the string is 'pixel'.
  Default (-1) is to choose pre-defined value for each
  convolution function. Effective only for 'gauss' and
  'gjinc'.
jwidth -- The width of the jinc function. Acceptable value is an
  integer or a float in units of pixel, or a string
  consisting of numeric plus unit. Default unit for the
  string is 'pixel'. Default (-1) is to choose pre-defined
  value for each convolution function. Effective only for
  'gjinc'.

Definition at line 93 of file asapgrid.py.

def asap.asapgrid.asapgrid_base.setIF (   self,
  ifno 
)
Set IFNO to be processed. Currently, asapgrid allows to process
only one IFNO for one gridding run even if the data contains
multiple IFs. If you didn't specify IFNO, default value, which
is IFNO in the first spectrum, will be processed.

ifno -- IFNO to be processed.

Definition at line 20 of file asapgrid.py.

References asap.asapgrid.asapgrid_base.ifno.

def asap.asapgrid.asapgrid_base.setPolList (   self,
  pollist 
)
Set list of polarization components you want to process.
If not specified, all POLNOs will be processed.

pollist -- list of POLNOs.

Definition at line 32 of file asapgrid.py.

def asap.asapgrid.asapgrid_base.setScanList (   self,
  scanlist 
)
Set list of scans you want to process. If not specified, all
scans will be processed.

scanlist -- list of SCANNOs.

Definition at line 41 of file asapgrid.py.

Referenced by tests.test_partitionHelper.PartitionHelperTest.testDefaultSeparationCommands(), and tests.test_partitionHelper.PartitionHelperTest.testSpwSeparationCommands().

def asap.asapgrid.asapgrid_base.setWeight (   self,
  weightType = 'uniform' 
)
Set weight type. Possible options are 'uniform' (default),
'tint' (weight by integration time), 'tsys' (weight by
Tsys: 1/Tsys**2), and 'tintsys' (weight by integration time
as well as Tsys: tint/Tsys**2).

weightType -- weight type ('uniform', 'tint', 'tsys', 'tintsys')

Definition at line 165 of file asapgrid.py.


Member Data Documentation

Reimplemented in asap.asapgrid.asapgrid2, and asap.asapgrid.asapgrid.

Definition at line 13 of file asapgrid.py.

Referenced by task_sdgrid.sdgrid_worker.initialize().

Reimplemented in asap.asapgrid.asapgrid.

Definition at line 14 of file asapgrid.py.

Referenced by task_sdtpimaging.sdtpimaging_worker.__backup(), task_sdgrid.sdgrid_worker.__compile(), task_sdtpimaging.sdtpimaging_worker.__execute_baseline(), task_sdtpimaging.sdtpimaging_worker.__execute_flag(), task_sdtpimaging.sdtpimaging_worker.__execute_imaging(), task_sdscale.sdscale_worker.__get_outform(), tests.test_sdsave.sdsave_test2.__spwtest(), tests.test_sdsave.sdsave_test4._compare(), tests.test_sdsave.sdsave_test5._compare(), tests.test_sdsave.sdsave_test6._compare(), task_sdsave.sdsave_worker.cleanup(), task_sdimaging.sdimaging_worker.execute(), task_sdgrid.sdgrid_worker.initialize(), sdutil.sdtask_template.initialize(), sdutil.sdtask_template_imaging.initialize(), task_sdsmooth.sdsmooth_worker.initialize_scan(), task_sdplot.sdplot_worker.initialize_scan(), task_sdcal.sdcal_worker.initialize_scan(), task_sdfit.sdfit_worker.initialize_scan(), task_sdbaseline.sdbaseline_worker.initialize_scan(), task_sdstat.sdstat_worker.initialize_scan(), task_sdflag.sdflag_worker.initialize_scan(), task_sdtpimaging.sdtpimaging_worker.parameter_check(), asap.asapgrid.asapgrid.plot(), asap.asapgrid._SDGridPlotter.plot(), asap.asapgrid.asapgrid.setData(), tests.test_sdflag.sdflag_test.setUp(), tests.test_sdflagmanager.sdflagmanager_test.setUp(), tests.test_sdsmooth.sdsmooth_basicTest.setUp(), tests.test_sdplot.sdplot_errorTest.setUp(), tests.test_sdbaseline.sdbaseline_basicTest.setUp(), tests.test_sdstat.sdstat_basicTest.setUp(), tests.test_sdplot.sdplot_basicTest.setUp(), tests.test_sdbaseline.sdbaseline_maskTest.setUp(), tests.test_sdstat.sdstat_restfreqTest.setUp(), tests.test_sdsmooth.sdsmooth_storageTest.setUp(), tests.test_sdsave.sdsave_test7.setUp(), tests.test_sdstat.sdstat_storageTest.setUp(), tests.test_sdbaseline.sdbaseline_multi_IF_test.setUp(), tests.test_sdstat.sdstat_exceptions.setUp(), tests.test_sdbaseline.sdbaseline_storageTest.setUp(), tests.test_sdplot.sdplot_storageTest.setUp(), tests.test_sdsave.sdsave_storageTest.setUp(), tests.test_sdplot.sdplot_gridTest.setUp(), tests.test_sdplot.sdplot_selectTest.setUp(), tests.test_sdflag.sdflag_test.tearDown(), tests.test_sdflagmanager.sdflagmanager_test.tearDown(), tests.test_sdtpimaging.sdtpimaging_test0.tearDown(), tests.test_sdsave.sdsave_test0.tearDown(), tests.test_sdsmooth.sdsmooth_basicTest.tearDown(), tests.test_sdplot.sdplot_errorTest.tearDown(), tests.test_sdtpimaging.sdtpimaging_test1.tearDown(), tests.test_sdsave.sdsave_test1.tearDown(), tests.test_sdbaseline.sdbaseline_basicTest.tearDown(), tests.test_sdtpimaging.sdtpimaging_test2.tearDown(), tests.test_sdsave.sdsave_test2.tearDown(), tests.test_sdstat.sdstat_basicTest.tearDown(), tests.test_sdplot.sdplot_basicTest.tearDown(), tests.test_sdsave.sdsave_test3.tearDown(), tests.test_sdbaseline.sdbaseline_maskTest.tearDown(), tests.test_sdsave.sdsave_test4.tearDown(), tests.test_sdsave.sdsave_test5.tearDown(), tests.test_sdstat.sdstat_restfreqTest.tearDown(), tests.test_sdsave.sdsave_test6.tearDown(), tests.test_sdsmooth.sdsmooth_storageTest.tearDown(), tests.test_sdsave.sdsave_test7.tearDown(), tests.test_sdstat.sdstat_storageTest.tearDown(), tests.test_sdbaseline.sdbaseline_multi_IF_test.tearDown(), tests.test_sdstat.sdstat_exceptions.tearDown(), tests.test_sdbaseline.sdbaseline_storageTest.tearDown(), tests.test_sdplot.sdplot_storageTest.tearDown(), tests.test_sdsave.sdsave_storageTest.tearDown(), tests.test_sdplot.sdplot_gridTest.tearDown(), tests.test_sdplot.sdplot_selectTest.tearDown(), tests.test_sdflag.sdflag_test.test00(), tests.test_sdflagmanager.sdflagmanager_test.test00(), tests.test_sdtpimaging.sdtpimaging_test0.test001(), tests.test_sdsave.sdsave_test0.test001(), tests.test_sdtpimaging.sdtpimaging_test0.test002(), tests.test_sdsave.sdsave_test0.test002(), tests.test_sdtpimaging.sdtpimaging_test0.test003(), tests.test_sdtpimaging.sdtpimaging_test0.test004(), tests.test_sdtpimaging.sdtpimaging_test0.test006(), tests.test_sdtpimaging.sdtpimaging_test0.test007(), tests.test_sdtpimaging.sdtpimaging_test0.test008(), tests.test_sdtpimaging.sdtpimaging_test0.test009(), tests.test_sdflagmanager.sdflagmanager_test.test01(), tests.test_sdflag.sdflag_test.test01(), tests.test_sdsmooth.sdsmooth_basicTest.test01(), tests.test_sdbaseline.sdbaseline_basicTest.test01(), tests.test_sdstat.sdstat_basicTest.test01(), tests.test_sdbaseline.sdbaseline_multi_IF_test.test01multi(), tests.test_sdflagmanager.sdflagmanager_test.test02(), tests.test_sdflag.sdflag_test.test02(), tests.test_sdsmooth.sdsmooth_basicTest.test02(), tests.test_sdbaseline.sdbaseline_basicTest.test02(), tests.test_sdstat.sdstat_basicTest.test02(), tests.test_sdflagmanager.sdflagmanager_test.test03(), tests.test_sdflag.sdflag_test.test03(), tests.test_sdsmooth.sdsmooth_basicTest.test03(), tests.test_sdstat.sdstat_basicTest.test03(), tests.test_sdflagmanager.sdflagmanager_test.test04(), tests.test_sdsmooth.sdsmooth_basicTest.test04(), tests.test_sdstat.sdstat_basicTest.test04(), tests.test_sdsmooth.sdsmooth_basicTest.test05(), tests.test_sdstat.sdstat_basicTest.test05(), tests.test_sdsmooth.sdsmooth_basicTest.test06(), tests.test_sdstat.sdstat_basicTest.test06(), tests.test_sdsmooth.sdsmooth_basicTest.test07(), tests.test_sdstat.sdstat_basicTest.test07(), tests.test_sdsmooth.sdsmooth_basicTest.test08(), tests.test_sdstat.sdstat_basicTest.test08(), tests.test_sdsmooth.sdsmooth_basicTest.test09(), tests.test_sdstat.sdstat_basicTest.test09(), tests.test_sdstat.sdstat_basicTest.test10(), tests.test_sdsmooth.sdsmooth_basicTest.test10(), tests.test_sdtpimaging.sdtpimaging_test1.test100(), tests.test_sdsave.sdsave_test1.test100(), tests.test_sdsave.sdsave_test1.test101(), tests.test_sdsave.sdsave_test1.test102(), tests.test_sdsave.sdsave_test1.test103(), tests.test_sdstat.sdstat_basicTest.test11(), tests.test_sdsmooth.sdsmooth_basicTest.test11(), tests.test_sdsmooth.sdsmooth_basicTest.test12(), tests.test_sdtpimaging.sdtpimaging_test2.test200(), tests.test_sdsave.sdsave_test2.test200(), tests.test_sdsave.sdsave_test2.test201(), tests.test_sdsave.sdsave_test2.test202(), tests.test_sdsave.sdsave_test2.test203(), tests.test_sdsave.sdsave_test2.test204(), tests.test_sdsave.sdsave_test2.test206(), tests.test_sdsave.sdsave_test3.test300(), tests.test_sdsave.sdsave_test3.test301(), tests.test_sdsave.sdsave_test3.test302(), tests.test_sdsave.sdsave_test3.test303(), tests.test_sdsave.sdsave_test4.test400(), tests.test_sdsave.sdsave_test4.test401(), tests.test_sdsave.sdsave_test4.test402(), tests.test_sdsave.sdsave_test4.test403(), tests.test_sdsave.sdsave_test5.test500(), tests.test_sdsave.sdsave_test5.test501(), tests.test_sdsave.sdsave_test5.test502(), tests.test_sdsave.sdsave_test5.test503(), tests.test_sdsave.sdsave_test6.test600(), tests.test_sdsave.sdsave_test6.test601(), tests.test_sdsave.sdsave_test7.test701(), tests.test_sdsave.sdsave_test7.test702(), tests.test_sdsave.sdsave_test7.test703(), tests.test_sdsave.sdsave_test7.test704(), tests.test_sdsave.sdsave_test7.test711(), tests.test_sdsave.sdsave_test7.test712(), tests.test_sdsave.sdsave_test7.test713(), tests.test_sdsave.sdsave_test7.test714(), tests.test_sdsave.sdsave_test7.test715(), tests.test_sdsave.sdsave_test7.test721(), tests.test_sdsave.sdsave_test7.test722(), tests.test_sdsave.sdsave_test7.test723(), tests.test_sdsave.sdsave_test7.test724(), tests.test_sdsave.sdsave_test7.test725(), tests.test_sdsave.sdsave_test7.test731(), tests.test_sdsave.sdsave_test7.test732(), tests.test_sdsave.sdsave_test7.test733(), tests.test_sdplot.sdplot_errorTest.test_badLincat(), tests.test_sdplot.sdplot_errorTest.test_badSelection(), tests.test_sdplot.sdplot_errorTest.test_badStack(), tests.test_sdplot.sdplot_errorTest.test_noPweight(), tests.test_sdplot.sdplot_errorTest.test_noTweight(), tests.test_sdplot.sdplot_errorTest.test_overwrite(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask01(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask02(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask03(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask04(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask05(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask06(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask07(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask08(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask09(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask10(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask11(), tests.test_sdbaseline.sdbaseline_maskTest.testblmask12(), tests.test_sdstat.sdstat_storageTest.testDF(), tests.test_sdbaseline.sdbaseline_storageTest.testDF(), tests.test_sdplot.sdplot_storageTest.testDF(), tests.test_sdsave.sdsave_storageTest.testDF(), tests.test_sdsmooth.sdsmooth_storageTest.testDFrg(), tests.test_sdsmooth.sdsmooth_storageTest.testDFsm(), tests.test_sdstat.sdstat_storageTest.testDT(), tests.test_sdbaseline.sdbaseline_storageTest.testDT(), tests.test_sdplot.sdplot_storageTest.testDT(), tests.test_sdsave.sdsave_storageTest.testDT(), tests.test_sdbaseline.sdbaseline_storageTest.testDTow(), tests.test_sdsmooth.sdsmooth_storageTest.testDTrg(), tests.test_sdsmooth.sdsmooth_storageTest.testDTsm(), tests.test_sdplot.sdplot_gridTest.testgrid01(), tests.test_sdplot.sdplot_gridTest.testgrid02(), tests.test_sdplot.sdplot_gridTest.testgrid03(), tests.test_sdplot.sdplot_gridTest.testgrid04(), tests.test_sdplot.sdplot_gridTest.testgrid05(), tests.test_sdplot.sdplot_gridTest.testgrid06(), tests.test_sdplot.sdplot_gridTest.testgrid07(), tests.test_sdplot.sdplot_gridTest.testgrid08(), tests.test_sdplot.sdplot_gridTest.testgrid09(), tests.test_sdplot.sdplot_gridTest.testgrid10(), tests.test_sdplot.sdplot_gridTest.testgrid11(), tests.test_sdplot.sdplot_gridTest.testgrid12(), tests.test_sdplot.sdplot_gridTest.testgrid13(), tests.test_sdplot.sdplot_gridTest.testgrid14(), tests.test_sdstat.sdstat_storageTest.testMF(), tests.test_sdbaseline.sdbaseline_storageTest.testMF(), tests.test_sdplot.sdplot_storageTest.testMF(), tests.test_sdsave.sdsave_storageTest.testMF(), tests.test_sdsmooth.sdsmooth_storageTest.testMFrg(), tests.test_sdsmooth.sdsmooth_storageTest.testMFsm(), tests.test_sdstat.sdstat_storageTest.testMT(), tests.test_sdbaseline.sdbaseline_storageTest.testMT(), tests.test_sdplot.sdplot_storageTest.testMT(), tests.test_sdsave.sdsave_storageTest.testMT(), tests.test_sdsmooth.sdsmooth_storageTest.testMTrg(), tests.test_sdsmooth.sdsmooth_storageTest.testMTsm(), tests.test_sdstat.sdstat_exceptions.testNoData(), tests.test_sdplot.sdplot_basicTest.testplot01(), tests.test_sdplot.sdplot_basicTest.testplot02(), tests.test_sdplot.sdplot_basicTest.testplot03(), tests.test_sdplot.sdplot_basicTest.testplot04(), tests.test_sdplot.sdplot_basicTest.testplot05(), tests.test_sdplot.sdplot_basicTest.testplot06(), tests.test_sdplot.sdplot_basicTest.testplot07(), tests.test_sdplot.sdplot_basicTest.testplot08(), tests.test_sdplot.sdplot_basicTest.testplot09(), tests.test_sdplot.sdplot_basicTest.testplot10(), tests.test_sdplot.sdplot_basicTest.testplot11(), tests.test_sdplot.sdplot_basicTest.testplot12(), tests.test_sdplot.sdplot_basicTest.testplot13(), tests.test_sdplot.sdplot_basicTest.testplot14(), tests.test_sdplot.sdplot_basicTest.testplot15(), tests.test_sdplot.sdplot_basicTest.testplot16(), tests.test_sdplot.sdplot_basicTest.testplot17(), tests.test_sdplot.sdplot_basicTest.testplot18(), tests.test_sdplot.sdplot_basicTest.testplot19(), tests.test_sdplot.sdplot_basicTest.testplot20(), tests.test_sdplot.sdplot_basicTest.testplot21(), tests.test_sdplot.sdplot_basicTest.testplot22(), tests.test_sdplot.sdplot_basicTest.testplot23(), tests.test_sdplot.sdplot_basicTest.testplot24(), tests.test_sdplot.sdplot_basicTest.testplot25(), tests.test_sdplot.sdplot_basicTest.testplot26(), tests.test_sdplot.sdplot_basicTest.testplot27(), tests.test_sdplot.sdplot_basicTest.testplot28(), tests.test_sdplot.sdplot_basicTest.testplot29(), tests.test_sdplot.sdplot_basicTest.testplot30(), tests.test_sdstat.sdstat_restfreqTest.testRF01(), tests.test_sdstat.sdstat_restfreqTest.testRF02(), tests.test_sdstat.sdstat_restfreqTest.testRF11(), tests.test_sdstat.sdstat_restfreqTest.testRF12(), tests.test_sdstat.sdstat_restfreqTest.testRF13(), tests.test_sdstat.sdstat_restfreqTest.testRF21(), tests.test_sdstat.sdstat_restfreqTest.testRF22(), tests.test_sdstat.sdstat_restfreqTest.testRF23(), tests.test_sdplot.sdplot_selectTest.testsel01(), tests.test_sdplot.sdplot_selectTest.testsel02(), tests.test_sdplot.sdplot_selectTest.testsel03(), tests.test_sdplot.sdplot_selectTest.testsel04(), tests.test_sdbaseline.sdbaseline_basicTest.testwp00(), and tests.test_sdbaseline.sdbaseline_basicTest.testwp01().

Reimplemented in asap.asapgrid.asapgrid.

Definition at line 11 of file asapgrid.py.

Referenced by asap.asapgrid._SDGridPlotter.__chanAverage(), asap.asapgrid._SDGridPlotter.__chanIndex(), task_sdimprocess.sdimprocess_worker.__execute_basket_weaving(), task_sdtpimaging.sdtpimaging_worker.__execute_imaging(), task_sdimprocess.sdimprocess_worker.__execute_press(), task_sdfit.sdfit_worker.__store_fit(), task_sdlist.sdlist_worker.execute(), task_sdimaging.sdimaging_worker.execute(), asap.asapgrid._SDGridPlotter.get(), tests.test_sdgrid.sdgrid_unittest_base.getdata(), task_sdflag.sdflag_worker.parameter_check(), task_sdimaging.sdimaging_worker.parameter_check(), asap.asapgrid.asapgrid.plot(), task_sdplot.sdplot_worker.plot_azel(), task_sdplot.sdplot_worker.plot_pointing(), task_sdscale.sdscale_worker.save(), task_sdsave.sdsave_worker.save(), task_sdfit.sdfit_worker.save(), task_sdplot.sdplot_worker.save(), task_sdstat.sdstat_worker.save(), task_sdmath.sdmath_worker.save(), tests.test_sdgrid.sdgrid_failure_case.tearDown(), tests.test_sdgrid.sdgrid_single_integ.tearDown(), tests.test_sdgrid.sdgrid_clipping.tearDown(), tests.test_sdgrid.sdgrid_flagging.tearDown(), tests.test_sdgrid.sdgrid_weighting.tearDown(), tests.test_sdgrid.sdgrid_map.tearDown(), tests.test_sdgrid.sdgrid_dec_correction.tearDown(), tests.test_sdgrid.sdgrid_grid_center.tearDown(), tests.test_msmoments.msmoments_test0.test001(), tests.test_sdgrid.sdgrid_failure_case.test001(), tests.test_sdsave.sdsave_test0.test001(), tests.test_sdimaging.sdimaging_test0.test001(), tests.test_sdscale.sdscale_test0.test001(), tests.test_sdmath.sdmath_test0.test001(), tests.test_sdcal.sdcal_test0.test001(), tests.test_msmoments.msmoments_test0.test002(), tests.test_sdgrid.sdgrid_failure_case.test002(), tests.test_sdimaging.sdimaging_test0.test002(), tests.test_sdsave.sdsave_test0.test002(), tests.test_sdscale.sdscale_test0.test002(), tests.test_sdmath.sdmath_test0.test002(), tests.test_sdcal.sdcal_test0.test002(), tests.test_msmoments.msmoments_test0.test003(), tests.test_sdgrid.sdgrid_failure_case.test003(), tests.test_sdimaging.sdimaging_test0.test003(), tests.test_sdscale.sdscale_test0.test003(), tests.test_sdmath.sdmath_test0.test003(), tests.test_sdcal.sdcal_test0.test003(), tests.test_sdgrid.sdgrid_failure_case.test004(), tests.test_msmoments.msmoments_test0.test004(), tests.test_sdimaging.sdimaging_test0.test004(), tests.test_sdmath.sdmath_test0.test004(), tests.test_sdimprocess.sdimprocess_test0.test005(), tests.test_sdgrid.sdgrid_failure_case.test005(), tests.test_msmoments.msmoments_test0.test005(), tests.test_sdimaging.sdimaging_test0.test005(), tests.test_sdmath.sdmath_test0.test005(), tests.test_sdimprocess.sdimprocess_test0.test006(), tests.test_sdimaging.sdimaging_test0.test006(), tests.test_sdmath.sdmath_test0.test006(), tests.test_sdimaging.sdimaging_test0.test007(), tests.test_sdmath.sdmath_test0.test007(), tests.test_sdgrid.sdgrid_failure_case.test008(), tests.test_sdimaging.sdimaging_test0.test008(), tests.test_sdmath.sdmath_test0.test008(), tests.test_sdimaging.sdimaging_test0.test009(), tests.test_sdimaging.sdimaging_test0.test010(), tests.test_sdimaging.sdimaging_test0.test011(), tests.test_sdimaging.sdimaging_test0.test012(), tests.test_sdimaging.sdimaging_test0.test013(), tests.test_sdimaging.sdimaging_test0.test014(), tests.test_sdimprocess.sdimprocess_test1.test100(), tests.test_sdgrid.sdgrid_single_integ.test100(), tests.test_msmoments.msmoments_test1.test100(), tests.test_sdscale.sdscale_test1.test100(), tests.test_sdimaging.sdimaging_test1.test100(), tests.test_sdmath.sdmath_test1.test100(), tests.test_sdimprocess.sdimprocess_test1.test101(), tests.test_msmoments.msmoments_test1.test101(), tests.test_sdgrid.sdgrid_single_integ.test101(), tests.test_sdscale.sdscale_test1.test101(), tests.test_sdimaging.sdimaging_test1.test101(), tests.test_sdmath.sdmath_test1.test101(), tests.test_msmoments.msmoments_test1.test102(), tests.test_sdscale.sdscale_test1.test102(), tests.test_sdgrid.sdgrid_single_integ.test102(), tests.test_sdmath.sdmath_test1.test102(), tests.test_msmoments.msmoments_test1.test103(), tests.test_sdscale.sdscale_test1.test103(), tests.test_sdgrid.sdgrid_single_integ.test103(), tests.test_sdmath.sdmath_test1.test103(), tests.test_msmoments.msmoments_test1.test104(), tests.test_sdscale.sdscale_test1.test104(), tests.test_sdmath.sdmath_test1.test104(), tests.test_sdscale.sdscale_test1.test105(), tests.test_msmoments.msmoments_test1.test105(), tests.test_sdmath.sdmath_test1.test105(), tests.test_sdscale.sdscale_test1.test106(), tests.test_msmoments.msmoments_test1.test106(), tests.test_sdmath.sdmath_test1.test106(), tests.test_sdscale.sdscale_test1.test107(), tests.test_msmoments.msmoments_test1.test107(), tests.test_sdmath.sdmath_test1.test107(), tests.test_msmoments.msmoments_test1.test108(), tests.test_sdmath.sdmath_test1.test108(), tests.test_msmoments.msmoments_test1.test109(), tests.test_sdmath.sdmath_test1.test109(), tests.test_msmoments.msmoments_test1.test110(), tests.test_sdmath.sdmath_test1.test110(), tests.test_msmoments.msmoments_test1.test111(), tests.test_sdmath.sdmath_test1.test111(), tests.test_msmoments.msmoments_test1.test112(), tests.test_sdmath.sdmath_test1.test112(), tests.test_msmoments.msmoments_test1.test113(), tests.test_sdmath.sdmath_test1.test113(), tests.test_sdmath.sdmath_test1.test114(), tests.test_sdmath.sdmath_test1.test115(), tests.test_sdgrid.sdgrid_clipping.test200(), tests.test_sdscale.sdscale_test2.test200(), tests.test_sdimaging.sdimaging_test2.test200(), tests.test_sdmath.sdmath_test2.test200(), tests.test_sdimprocess.sdimprocess_test2.test2000(), tests.test_sdimprocess.sdimprocess_test2.test2001(), tests.test_sdscale.sdscale_test2.test201(), tests.test_sdimaging.sdimaging_test2.test201(), tests.test_sdmath.sdmath_test2.test201(), tests.test_sdscale.sdscale_test2.test202(), tests.test_sdmath.sdmath_test2.test202(), tests.test_sdimaging.sdimaging_test2.test202(), tests.test_sdscale.sdscale_test2.test203(), tests.test_sdmath.sdmath_test2.test203(), tests.test_sdscale.sdscale_test2.test204(), tests.test_sdscale.sdscale_test2.test205(), tests.test_sdscale.sdscale_test2.test206(), tests.test_sdscale.sdscale_test2.test207(), tests.test_sdgrid.sdgrid_flagging.test300(), tests.test_sdscale.sdscale_test3.test300(), tests.test_sdimaging.sdimaging_test3.test300(), tests.test_sdmath.sdmath_test3.test300(), tests.test_sdgrid.sdgrid_flagging.test301(), tests.test_sdscale.sdscale_test3.test301(), tests.test_sdimaging.sdimaging_test3.test301(), tests.test_sdmath.sdmath_test3.test301(), tests.test_sdscale.sdscale_test3.test302(), tests.test_sdmath.sdmath_test3.test302(), tests.test_sdimaging.sdimaging_test3.test302(), tests.test_sdscale.sdscale_test3.test303(), tests.test_sdmath.sdmath_test3.test303(), tests.test_sdscale.sdscale_test3.test304(), tests.test_sdscale.sdscale_test3.test305(), tests.test_sdscale.sdscale_test3.test306(), tests.test_sdscale.sdscale_test3.test307(), tests.test_sdgrid.sdgrid_weighting.test400(), tests.test_sdscale.sdscale_test4.test400(), tests.test_sdgrid.sdgrid_weighting.test401(), tests.test_sdscale.sdscale_test4.test401(), tests.test_sdgrid.sdgrid_weighting.test402(), tests.test_sdscale.sdscale_test4.test402(), tests.test_sdgrid.sdgrid_weighting.test403(), tests.test_sdscale.sdscale_test4.test403(), tests.test_sdscale.sdscale_test4.test404(), tests.test_sdscale.sdscale_test4.test405(), tests.test_sdscale.sdscale_test4.test406(), tests.test_sdscale.sdscale_test4.test407(), tests.test_sdgrid.sdgrid_map.test500(), tests.test_sdgrid.sdgrid_map.test501(), tests.test_sdgrid.sdgrid_map.test502(), tests.test_sdgrid.sdgrid_map.test503(), tests.test_sdgrid.sdgrid_dec_correction.test600(), tests.test_sdgrid.sdgrid_grid_center.test700(), and tests.test_sdplot.sdplot_errorTest.test_overwrite().

Reimplemented in asap.asapgrid.asapgrid2.

Definition at line 15 of file asapgrid.py.

Referenced by asap.asapgrid.asapgrid2.setData().


The documentation for this class was generated from the following file: