So I am running into a problem reading in the obs_info_file
Around line 193 in pest.py, the line:
self._obstypes = self.obsinfo.drop_duplicates(subset='Group').ix[:, ['Group', 'Type']]
Is bombing with an error culminating with:
Buffer has wrong number of dimensions (expected 1, got 2)
Seems there might be an easier way to make this little dataframe? Also, note that I upgraded to Pandas 0.16.2 and it just started causing problems after the upgrade. For the time being, I commented out these lines
So I am running into a problem reading in the obs_info_file
Around line 193 in pest.py, the line:
self._obstypes = self.obsinfo.drop_duplicates(subset='Group').ix[:, ['Group', 'Type']]
Is bombing with an error culminating with:Buffer has wrong number of dimensions (expected 1, got 2)
Seems there might be an easier way to make this little dataframe? Also, note that I upgraded to Pandas 0.16.2 and it just started causing problems after the upgrade. For the time being, I commented out these lines
Of course, this means
res._obstypes
will not be properly available for use.