We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32a5eb0 commit 681fa61Copy full SHA for 681fa61
mesmer/core/_data.py
@@ -43,7 +43,7 @@ def _load_aod_obs(*, version, resample):
43
dtype={"year": str, "month": str},
44
)
45
46
- time = pd.to_datetime(df.year + df.month, format="%Y%m")
+ time = pd.to_datetime(df.year + df.month, format="%Y%m").astype("datetime64[ns]")
47
48
aod = xr.DataArray(df.aod.values, coords={"time": time}, name="aod")
49
0 commit comments