Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
flekschas committed Jul 5, 2019
1 parent 47c50e5 commit 76abbce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clodius/tiles/npvector.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def tiles(array, z, x, not_nan_array=None, bin_size=1024):
ret_array = np.nansum(a.reshape((-1, num_to_sum)), axis=1)

if not_nan_array is None:
not_nan_data = ~np.isnan(ret_array[x_start:x_end])
not_nan_data = ~np.isnan(array[x_start:x_end])
else:
not_nan_data = not_nan_array[x_start:x_end]

Expand Down

0 comments on commit 76abbce

Please sign in to comment.