Write wrfout files from wrf projection to readable projection system #217
-
`import xarray as xr ds.to_netcdf(r".\mergeed.nc")` I am unable to write the File with post processing, my main goal is to write the file with readable projection from wrfprojection. I am getting error: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello! Xarray doesn't know how to serialise the |
Beta Was this translation helpful? Give feedback.
Hello!
Xarray doesn't know how to serialise the
wrf_projection
variable, just dods = ds.drop_vars('wrf_projection')
before you save the file.