This file is indexed.

/usr/lib/python2.7/dist-packages/pyferret/ferpyvar.py is in python-ferret 7.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
'''
Subclass of FerVar whose data is from an array in Python.
'''

import numbers
import numpy
import pyferret

class FerPyVar(pyferret.FerVar):
    '''
    FerVar whose data is from an array in Python.
    '''

    def __init__(self, data, grid, missval=numpy.nan, unit=None, title=None):
        '''
        Create as an anonymous FerPyVar.  The PyVar representing this data
        will not be assigned in Ferret until this FerPyVar is assigned a
        name in a dataset.
            data (up to 6D array/array-like of float): data for the PyVar
            grid (FerGrid): grid for the PyVar
            missval (float or single-element array of float): value used to indicate missing data
            unit (string): unit for the data
            title (string): title (descriptive long name) for the PyVar in Ferret
        '''
        # initialize the FerVar this object is derived from
        super(FerPyVar,self).__init__(title=title)
        # assign a copy of the grid
        if not isinstance(grid, pyferret.FerGrid):
            raise ValueError('grid is not a FerGrid')
        try:
            self._datagrid = grid.copy()
        except (ValueError, TypeError) as ex:
            raise ValueError('grid is invalid: %s' % str(ex))
        # assign a copy of the data
        try:
            self._dataarray = numpy.array(data, dtype=numpy.float64, order='F', copy=True)
        except ValueError:
            raise ValueError('data is not an array or array-like of numbers')
        if self._dataarray.ndim > pyferret.MAX_FERRET_NDIM:
            raise ValueError('data has more than %d dimensions' % pyferret.MAX_FERRET_NDIM)
        # assign the missing value
        try:
            if isinstance(missval, numbers.Real):
                self._missingvalue = numpy.array( (missval,), dtype=numpy.float64)
            else:
                self._missingvalue = numpy.array(missval, dtype=numpy.float64, copy=True)
        except ValueError:
            raise ValueError('missval is not a number or number array')
        if (self._missingvalue.ndim != 1) or (self._missingvalue.shape[0] != 1):
            raise ValueError('missval array has more than one element')
        # assign the data unit
        if unit and not isinstance(unit, str):
            raise ValueError('unit, if given, must be a string')
        if unit:
            self._dataunit = unit
        else:
            self._dataunit = ''


    def copy(self):
        '''
        (overrides FerVar.copy)
        Returns an anonymous copy (_varname and _dsetname are not copied) 
        of this FerPyVar.
        '''
        return FerPyVar(data=self._dataarray, 
                        grid=self._datagrid, 
                        missval=self._missingvalue, 
                        unit=self._dataunit,
                        title=self._title)


    def __repr__(self):
        '''
        (overrides FerVar.__repr__)
        Representation of this FerPyVar
        '''
        infostr = "FerPyVar(data=%s, \n" + \
                  "         grid=%s, \n" + \
                  "         missval=%s, \n" + \
                  "         unit='%s', \n" + \
                  "         title='%s')" % (
                  repr(self._dataarray),
                  repr(self._datagrid), 
                  str(self._missingvalue),
                  self._dataunit,
		  self._title )
        return infostr


    def __dir__(self):
        '''
        Returns a list of known attributes, including those added 
        by the __getattr__ method.
        '''
        mydir = list(_ADDED_ATTRIBUTES)
        mydir.extend( dir(super(FerPyVar, self)) )
        return mydir


    def _assigninferret(self, varname, dsetname):
        '''
        (overrides FerVar._assigninferret)
        Assign the data in this FerPyVar as a PyVar in Ferret.
            varname (string): name for the PyVar in Ferret
            dsetname (string): associated the PyVar with this dataset in Ferret
        Raises a ValueError is a problem occurs.
        Note: Ferret will rearrange axes, if necessary, so that any longitude
            axis is the first axis, any latitude axis is the second axis, any
            level axis is the third axis, any time axis is the fourth axis or 
            the sixth axis for a second time axis.  The data will, of course,
            also be appropriately structured to remain consistent with the axes.
        '''
        if not isinstance(varname, str):
            raise ValueError('varname must be a string')
        if not varname:
            raise ValueError('varname is empty')
        if not isinstance(dsetname, str):
            raise ValueError('dsetname must be a string')
        # TODO: fix libpyferret so PyVar's can be created without a dataset
        #       (uses Ferret's dataset '0')
        if not dsetname:
            raise ValueError('a FerPyVar cannot be associated with an anonymous dataset at this time')
        axtypes = []
        axcoords = []
        axunits = []
        axnames = []
        for axis in self._datagrid.getaxes():
            axtypes.append(axis.getaxtype())
            axcoords.append(axis.getcoords())
            axunits.append(axis.getunit())
            axnames.append(axis.getname())
        datadict = { 
            'name': varname,
            'dset': dsetname,
            'data': self._dataarray,
            'missing_value': self._missingvalue,
            'data_unit': self._dataunit,
            'axis_types': axtypes,
            'axis_coords': axcoords,
            'axis_units': axunits,
            'axis_names': axnames,
        }
        if self._title:
            datadict['title'] = self._title
        try:
            pyferret.putdata(datadict)
        except Exception as ex:
            raise ValueError(str(ex))
        self._varname = varname
        self._dsetname = dsetname
        self._definition = self.fername()
        # at this point, the data is copied into Ferret, 
        # so calling clean will not cause any problems


    def _removefromferret(self):
        '''
        Removes (cancels) this PyVar in Ferret, then erases _varname.  
        Raises a ValueError if there is a Ferret problem.  
        This normally is not called by the user; instead delete the 
        FerPyVar from the dataset.
        '''
        # ignore if this Ferrer PyVar has already been removed from Ferret
        if not self._varname:
            return
        fername = self.fername()
        cmdstr = 'CANCEL PYVAR %s' % fername
        (errval, errmsg) = pyferret.run(cmdstr)
        if errval != pyferret.FERR_OK:
            raise ValueError('unable to remove PyVar %s from Ferret: %s' % (fername, errmsg))
        self._varname = ''