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
which makes selecting a region in xarray slightly counterintuitive:
ar_full_37_1h.sel(latitude=slice(-50, 50))
returns no latitude indicies
while
ar_full_37_1h.sel(latitude=slice(50, -50))
gives (the desired)
If you end up reprocessing the data at some point, I wonder if something like xarrays ds.sortby('latitude') or equivalent could be added to the pipeline.