Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
None
-
None
-
None
Description
The function has _rcmes_calc_average_on_new_time_unit has
index = np.where(days = day)[0]
It should be
index = np.where(days == day)[0]
Also the in the following lines the value of year, month, date should be ints
index = np.where(days == day)[0] new_data[it,:] = ma.mean(data[index,:], axis=0) new_date.append(datetime.datetime(year=day/10000, month=(day % 10000)/100, day=day % 100))
Attachments
Issue Links
- links to