With the latest version I will encounter an indexing error with cftime.NoLeap using CESM2 output. The error can be traced back to L155 at read data.py, e.g.,
DATA['data'] = DS.sel({variable_names[2]:str(dt_to_use)},method='nearest')[variable_names[3]].values
which can be fixed by
DATA['data'] = DS.sel({variable_names[2]:dt_to_use},method='nearest')[variable_names[3]].values
With the latest version I will encounter an indexing error with cftime.NoLeap using CESM2 output. The error can be traced back to L155 at
read data.py, e.g.,DATA['data'] = DS.sel({variable_names[2]:str(dt_to_use)},method='nearest')[variable_names[3]].valueswhich can be fixed by
DATA['data'] = DS.sel({variable_names[2]:dt_to_use},method='nearest')[variable_names[3]].values