Skip to content

Commit

Permalink
Merge pull request #163 from paigem/same-dim-coords
Browse files Browse the repository at this point in the history
Raise error for non-dimensional coordinates
  • Loading branch information
Takaya Uchida committed Aug 28, 2021
2 parents a57a87c + 9d04cba commit 744209f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
20 changes: 20 additions & 0 deletions xrft/tests/test_xrft.py
Original file line number Diff line number Diff line change
Expand Up @@ -1306,3 +1306,23 @@ def test_reversed_coordinates():
xrt.assert_allclose(
xrft.dft(s, dim="x", true_phase=True), xrft.dft(s2, dim="x", true_phase=True)
)


def test_nondim_coords():
"""Error should be raised if there are non-dimensional coordinates attached to the dimension(s) over which the FFT is being taken"""
N = 16
da = xr.DataArray(
np.random.rand(2, N, N),
dims=["time", "x", "y"],
coords={
"time": np.array(["2019-04-18", "2019-04-19"], dtype="datetime64"),
"x": range(N),
"y": range(N),
"x_nondim": ("x", np.arange(N)),
},
)

with pytest.raises(ValueError):
xrft.power_spectrum(da)

xrft.power_spectrum(da, dim=["time", "y"])
11 changes: 11 additions & 0 deletions xrft/xrft.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,17 @@ def fft(

N = [da.shape[n] for n in axis_num]

# raise error if there are multiple coordinates attached to the dimension(s) over which the FFT is taken
for d in dim:
bad_coords = [
cname for cname in da.coords if cname != d and d in da[cname].dims
]
if bad_coords:
raise ValueError(
f"The input array contains coordinate variable(s) ({bad_coords}) whose dims include the transform dimension(s) `{d}`. "
f"Please drop these coordinates (`.drop({bad_coords}`) before invoking xrft."
)

# verify even spacing of input coordinates
delta_x = []
lag_x = []
Expand Down

0 comments on commit 744209f

Please sign in to comment.