Skip to content

Commit 3760234

Browse files
committed
Fix arg order
1 parent 6e78d4f commit 3760234

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lts_array/ltsva.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def ltsva(st, lat_list, lon_list, window_length, window_overlap, alpha=1.0, plot
4040

4141
# Build data object
4242
data = DataBin(window_length, window_overlap, alpha)
43-
data.build_data_arrays(st, lat_list, lon_list, rij, remove_elements)
43+
data.build_data_arrays(st, lat_list, lon_list, remove_elements, rij)
4444

4545
# Plot array coordinates as a check
4646
if plot_array_coordinates:

0 commit comments

Comments
 (0)