Skip to content

Commit

Permalink
REFORMAT: Function names comply with PyART & PEP8 standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
RBhupi committed Dec 5, 2023
1 parent 75a7cbc commit 6ce7cc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyart/retrieve/echo_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -1004,15 +1004,15 @@ def conv_strat_raut(grid, conv_scale_km=20, refl_field="reflectivity"):
"""

# Call the actual get_relass function
reclass = get_relass(grid, conv_scale_km, refl_field)
reclass = get_reclass(grid, conv_scale_km, refl_field)
reclass = np.expand_dims(reclass, axis=0)

# put data into a dictionary to be added as a field
reclass_dict = {
"wt_reclass": {
"data": reclass,
"standard_name": "echo_class",
"long_name": "Wavelet transform radar echo class",
"standard_name": "wavelet_echo_class",
"long_name": "Wavelet-based multiresolution radar echo classification",
"valid_min": 0,
"valid_max": 3,
"comment_1": ('0 = Undefined'),
Expand Down

0 comments on commit 6ce7cc8

Please sign in to comment.