We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example as documented in the snowtel code:
params = StationHourlyDataIO( station='302:OR:SNTL', start_date='2014-07-01', end_date='2014-07-02', ) for param in params: print(param.element_name) for row in param.data: print(" ", row.datetime, row.value, param.storedunitcd)
OUTPUT:
BATTERY Stack Trace: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-15-11de896be9bd> in <module>() 7 for param in params: 8 print(param.element_name) ----> 9 for row in param.data: 10 print(" ", row.datetime, row.value, param.storedunitcd) C:\Users\scott\Anaconda3\envs\python35\lib\site-packages\wq\io\base.py in __iter__(self) 153 def __iter__(self): 154 for item in self.data: --> 155 uitem = self.usable_item(item) 156 if uitem is None: 157 return C:\Users\scott\Anaconda3\envs\python35\lib\site-packages\wq\io\mappers.py in usable_item(self, item) 122 123 def usable_item(self, item): --> 124 mapped = super(TupleMapper, self).usable_item(item) 125 try: 126 return self.tuple_prototype._replace(**mapped) C:\Users\scott\Anaconda3\envs\python35\lib\site-packages\wq\io\mappers.py in usable_item(self, item) 24 def usable_item(self, item): 25 uitem = {} ---> 26 for key, val in item.items(): 27 field = self.map_field(key) 28 value = self.map_value(field, val) AttributeError: 'hourlyDataValue' object has no attribute 'items'
I tried looking in to figuring out how to resolve this in the code but I'm not familiar with wq or the design of the library. Thanks!
The text was updated successfully, but these errors were encountered:
0721ef2
Thanks, apparently the hourly class wasn't covered by a test case. It should now be working in master.
Sorry, something went wrong.
No branches or pull requests
Example as documented in the snowtel code:
OUTPUT:
I tried looking in to figuring out how to resolve this in the code but I'm not familiar with wq or the design of the library.
Thanks!
The text was updated successfully, but these errors were encountered: