How not to convert time when using open_mfdataset? #7535
-
I'm using open_mfdataset to read multiple daily sea-surface-height netCDF files, it converts the variable "double time_mjd(time)", which has an attribute "time_mjd:units = "days since 1858-11-17 00:00:00 UTC" ;" to numpy datetime64[ns]. How to avoid the conversion? I only need the original "double" values. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think passing |
Beta Was this translation helpful? Give feedback.
I think passing
decode_times=False
toopen_mfdataset
should accomplish what you are looking for.