Skip to content

Commit

Permalink
Format with latest version of black
Browse files Browse the repository at this point in the history
  • Loading branch information
dnerini committed Mar 5, 2024
1 parent be8eea4 commit 3167a11
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 25 deletions.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def set_root():
latex_elements = {
"papersize": "a4paper",
"pointsize": "10pt",
"preamble": latex_preamble
"preamble": latex_preamble,
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
Expand Down
6 changes: 3 additions & 3 deletions pysteps/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ def _interpolator_with_preamble(xy_coord, values, xgrid, ygrid, **kwargs):
indy = 0
for subygrid in subygrids:
deltay = subygrid.size
interpolated[
:, indy : (indy + deltay), indx : (indx + deltax)
] = interpolator(xy_coord, values, subxgrid, subygrid, **kwargs)
interpolated[:, indy : (indy + deltay), indx : (indx + deltax)] = (
interpolator(xy_coord, values, subxgrid, subygrid, **kwargs)
)
indy += deltay
indx += deltax

Expand Down
6 changes: 3 additions & 3 deletions pysteps/io/importers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1366,9 +1366,9 @@ def import_odim_hdf5(filename, qty="RATE", **kwargs):
mask = np.logical_and(~mask_u, ~mask_n)
quality = np.empty(arr.shape) # , dtype=float)
quality[mask] = arr[mask] * gain + offset
quality[
~mask
] = np.nan # a qui -----------------------------
quality[~mask] = (
np.nan
) # a qui -----------------------------

if precip is None:
raise IOError("requested quantity %s not found" % qty)
Expand Down
4 changes: 1 addition & 3 deletions pysteps/noise/fftgenerators.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,9 +708,7 @@ def initialize_nonparam_2d_nested_filter(field, gridres=1.0, **kwargs):
# update indices
level += 1
Idxi, Idxj = _split_field((0, dim[0]), (0, dim[1]), 2**level)
Idxipsd, Idxjpsd = _split_field(
(0, 2**max_level), (0, 2**max_level), 2**level
)
Idxipsd, Idxjpsd = _split_field((0, 2**max_level), (0, 2**max_level), 2**level)

return {"field": F, "input_shape": field.shape[1:], "use_full_fft": True}

Expand Down
3 changes: 1 addition & 2 deletions pysteps/nowcasts/linda.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,7 @@ def _compute_window_weights(coords, grid_height, grid_width, window_radius):
dx = c[1] - grid_x

w[i, :] = np.exp(
-dy * dy / (2 * window_radius_1**2)
- dx * dx / (2 * window_radius_2**2)
-dy * dy / (2 * window_radius_1**2) - dx * dx / (2 * window_radius_2**2)
)
else:
w[0, :] = np.ones((grid_height, grid_width))
Expand Down
12 changes: 6 additions & 6 deletions pysteps/nowcasts/sseps.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,12 +729,12 @@ def worker(j):
else:
EPS_ = None
# apply AR(p) process to cascade level
precip_cascades[
i, :, :, :
] = autoregression.iterate_ar_model(
precip_cascades[i, :, :, :],
phi[m, n, i, :],
eps=EPS_,
precip_cascades[i, :, :, :] = (
autoregression.iterate_ar_model(
precip_cascades[i, :, :, :],
phi[m, n, i, :],
eps=EPS_,
)
)
EPS_ = None
rc[m][n][j] = precip_cascades.copy()
Expand Down
4 changes: 1 addition & 3 deletions pysteps/scripts/fit_vel_pert_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@
mu = dp_perp_sum / dp_perp_n

std_perp.append(
np.sqrt(
(dp_perp_sq_sum - 2 * mu * dp_perp_sum + dp_perp_n * mu**2) / dp_perp_n
)
np.sqrt((dp_perp_sq_sum - 2 * mu * dp_perp_sum + dp_perp_n * mu**2) / dp_perp_n)
)

try:
Expand Down
1 change: 1 addition & 0 deletions pysteps/tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Collection of helper functions for the testing suite.
"""

from datetime import datetime

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion pysteps/tests/test_motion.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def test_vet_padding():
verbose=False,
sectors=((16, 4, 2), (16, 4, 2)),
options=dict(maxiter=5),
padding=padding
padding=padding,
# We use only a few iterations since
# we don't care about convergence in this test
)
Expand Down
6 changes: 3 additions & 3 deletions pysteps/utils/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ def donothing(R, metadata=None, *args, **kwargs):
methods_objects["rm_rdisc"] = spectral.remove_rain_norain_discontinuity

# tapering methods
methods_objects[
"compute_mask_window_function"
] = tapering.compute_mask_window_function
methods_objects["compute_mask_window_function"] = (
tapering.compute_mask_window_function
)
methods_objects["compute_window_function"] = tapering.compute_window_function

# transformation methods
Expand Down
1 change: 1 addition & 0 deletions pysteps/visualization/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
get_geogrid
get_basemap_axis
"""

import warnings

import matplotlib.pylab as plt
Expand Down

0 comments on commit 3167a11

Please sign in to comment.