Encountered typo in intermediate value interpolation

Hello, we encountered a bug with the library which resulted in the error in the screenshot below. We tracked down the cause to a typo originating from this commit: allow using all gwa heights (ff143a9c) · Commits · TOPFARM / PyWake · GitLab in the xrsite.py file.

We noticed that on line 433 'height' is renamed to 'h' however on line 435 there is an interpolation attempting to assign height to z which is causing the error.

433: ds = self.gwc_ds.interp(roughness=roughness).rename(height='h')
435: ds = ds.interp(z=height)

If we changed z to h the error is resolved and the code works as expected.

Can you apply a fix please, thank you in advance!

image