-
Type:
Bug
-
Status: Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.1.0
-
Component/s: None
-
Labels:None
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))
- links to