You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a critical issue, but often station names are in alphanumeric or string format, not always numeric. The current version only deals with station as numeric values, yielding the following error:
File "/Users/simonbelanger/PycharmProjects/HyperCP/Source/ProcessL1aqc.py", line 799, in processL1aqc
ancGroup.datasets["STATION"].data = np.array(station, dtype=[('NONE', '<f8')])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: could not convert string to float: 'BedfordBassin'
It would be nice if HyperCP can deal with that.
Or is there another way to avoid this error?
Simon
The text was updated successfully, but these errors were encountered:
This is not a critical issue, but often station names are in alphanumeric or string format, not always numeric. The current version only deals with station as numeric values, yielding the following error:
File "/Users/simonbelanger/PycharmProjects/HyperCP/Source/ProcessL1aqc.py", line 799, in processL1aqc
ancGroup.datasets["STATION"].data = np.array(station, dtype=[('NONE', '<f8')])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: could not convert string to float: 'BedfordBassin'
It would be nice if HyperCP can deal with that.
Or is there another way to avoid this error?
Simon
The text was updated successfully, but these errors were encountered: