Ignore:
Timestamp:
12/26/04 21:57:09 (19 years ago)
Author:
kil064
Message:

Correct spelling 'abscissa' -> 'abcissa'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r156 r158  
    293293        return unit
    294294
    295     def get_abscissa(self, rowno=0):
    296         """
    297         Get the abscissa in the current coordinate setup for the currently
     295    def get_abcissa(self, rowno=0):
     296        """
     297        Get the abcissa in the current coordinate setup for the currently
    298298        selected Beam/IF/Pol
    299299        Parameters:
    300300            none
    301301        Returns:
    302             The abscissa values and it's format string.
    303         """
    304         absc = self.getabscissa(rowno)
    305         lbl = self.getabscissalabel(rowno)
    306         return absc, lbl
     302            The abcissa values and it's format string.
     303        """
     304        abc = self.getabcissa(rowno)
     305        lbl = self.getabcissalabel(rowno)
     306        return abc, lbl
    307307
    308308    def create_mask(self, *args, **kwargs):
     
    336336            print "The current mask window unit is", u
    337337        n = self.nchan()
    338         data = self.getabscissa()
     338        data = self.getabcissa()
    339339        msk = ones(n)
    340340        for  window in args:
     
    443443                        y.append(self._gettsys(k))
    444444                else:
    445                     x,xlab = self.get_abscissa(i)
     445                    x,xlab = self.get_abcissa(i)
    446446                    y = self.getspectrum(i)
    447447                    ylab = r'Flux'
Note: See TracChangeset for help on using the changeset viewer.