Ryan May
Ryan May
@dependabot rebase
Superseded by #3578.
@pgf Your solution using `Path` and calling `interpolated()` is pretty much functionally solving the problem identified by @kdpenner: that there are insufficient points being interpolated. Your solution just completely goes...
@kdpenner Well, an easy way to test might be #1815 .
Would it be possible to link to your datafile somewhere so we can try to reproduce? Otherwise, this will be next to impossible to figure out.
I'm guessing this is an incompatibility with newer versions of xarray. Did you update your environment recently?
I'm pretty sure this was fixed by #800. We're working on a new release which will include this fix. I'm going to go ahead and close out but feel free...
I agree with @DWesl 's code above, if you pass in arrays so that the math would work following [NumPy's broadcasting rules](https://numpy.org/doc/stable/user/basics.broadcasting.html) you should get the results you expect.
I haven't looked at the code but I think there are two tweaks we should make here: 1. Ensure numeric variables when considering coords (at least lat/lon) 2. Tweak the...
I would create a new environment and see if that works: ``` conda create -n myenv python=3.11 conda activate myenv conda install cartopy ```