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
If you try to use multipel files (netCDF4.MFDataset), they maybe have different time units, such as:
"hours since 2009-1-1 00:00:00"
and
"hours since 2009-1-2 00:00:00"
This is not SO rare, as some software uses the first time as the ephoc when writting a file.
It turns out that netCDF4 provides:
netCDF4.MFTime(time, units=None, calendar=None)
Docstring:
Class providing an interface to a MFDataset time Variable by imposing a unique common
time unit and/or calendar to all files.
So we could use that in gridded to address ths issue.
The text was updated successfully, but these errors were encountered:
If you try to use multipel files (netCDF4.MFDataset), they maybe have different time units, such as:
"hours since 2009-1-1 00:00:00"
and
"hours since 2009-1-2 00:00:00"
This is not SO rare, as some software uses the first time as the ephoc when writting a file.
It turns out that netCDF4 provides:
So we could use that in gridded to address ths issue.
The text was updated successfully, but these errors were encountered: