Skip to content

Commit

Permalink
DEL: remove a redundant (liekly residual) input parameter (toa) from …
Browse files Browse the repository at this point in the history
…map_gates_to_grid
  • Loading branch information
isilber committed Jan 18, 2024
1 parent 9f72439 commit 9c47087
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pyart/map/_gate_to_grid_map.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ cdef class GateToGridMapper:
float[:, ::1] gate_z, float[:, ::1] gate_y, float[:, ::1] gate_x,
float[:, :, ::1] field_data,
char[:, :, ::1] field_mask, char[:, ::1] excluded_gates,
float toa, RoIFunction roi_func, int weighting_function,
RoIFunction roi_func, int weighting_function,
float zdist_factor):
"""
Map radar gates unto the regular grid.
Expand Down
2 changes: 0 additions & 2 deletions pyart/map/gates_to_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def map_gates_to_grid(
gatefilters=False,
map_roi=True,
weighting_function="Barnes2",
toa=17000.0,
roi_func="dist_beam",
constant_roi=None,
z_factor=0.05,
Expand Down Expand Up @@ -173,7 +172,6 @@ def map_gates_to_grid(
field_data,
field_mask,
excluded_gates,
toa,
roi_func,
cy_weighting_function,
zdist_factor,
Expand Down

0 comments on commit 9c47087

Please sign in to comment.