Ouranosinc / xscen

A climate change scenario-building analysis framework.
https://xscen.readthedocs.io/
Apache License 2.0
15 stars 2 forks source link

fix 122 #126

Closed juliettelavoie closed 1 year ago

juliettelavoie commented 1 year ago

Pull Request Checklist:

What kind of change does this PR introduce?

Does this PR introduce a breaking change?

No, this returns the same thing as with the previous version of xarray.

Other information:

With the new version of xarray, lat and lon were dropped out of out on l.125 of utils. I removed drop-=True to recover the previous behaviour of keeping them as coordinates only.

juliettelavoie commented 1 year ago

Not exactly. With old xarray , drop=True dropped the coords loc (necessary to write to file) but not lat et lon. With new xarray, drop=True drops loc, lat and lon, but drop=False drops only loc.