Skip to content

Commit

Permalink
Add more references (#1620)
Browse files Browse the repository at this point in the history
* ADD: Add reference for compute_cdf

* ADD: Add reference for computations

* ADD: Add qpe references
  • Loading branch information
mgrover1 authored Aug 27, 2024
1 parent 3653c2e commit 664865b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pyart/retrieve/qpe.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,12 @@ def est_rain_rate_hydro(
rain : dict
Field dictionary containing the rainfall rate.
References
----------
Besic, N., Figueras i Ventura, J., Grazioli, J., Gabella, M., Germann, U., and Berne, A.: Hydrometeor classification
through statistical clustering of polarimetric radar measurements: a semi-supervised approach,
Atmos. Meas. Tech., 9, 4425–4445, https://doi.org/10.5194/amt-9-4425-2016, 2016.
"""
# parse the field parameters
if refl_field is None:
Expand Down
14 changes: 14 additions & 0 deletions pyart/retrieve/simple_moment_calculations.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@ def compute_l(radar, rhohv_field=None, l_field=None):
l_field_out : dict
L field.
References
----------
Ryzhkov, A. V., 2001: Interpretation of Polarimetric Radar Covariance Matrix for Meteorological Scatterers: Theoretical Analysis.
J. Atmos. Oceanic Technol., 18, 315–328, https://doi.org/10.1175/1520-0426(2001)018<0315:IOPRCM>2.0.CO;2.
"""
# parse the field parameters
if rhohv_field is None:
Expand All @@ -191,6 +196,8 @@ def compute_cdr(radar, rhohv_field=None, zdr_field=None, cdr_field=None):
"""
Computes the Circular Depolarization Ratio.
Parameters
----------
radar : Radar
Expand All @@ -207,6 +214,13 @@ def compute_cdr(radar, rhohv_field=None, zdr_field=None, cdr_field=None):
cdr : dict
CDR field.
References
----------
Matrosov, S. Y., 2004: Depolarization Estimates from Linear H and V Measurements with Weather
Radars Operating in Simultaneous Transmission–Simultaneous Receiving Mode.
J. Atmos. Oceanic Technol., 21, 574–583,
https://doi.org/10.1175/1520-0426(2004)021<0574:DEFLHA>2.0.CO;2.
"""
# parse the field parameters
if rhohv_field is None:
Expand Down

0 comments on commit 664865b

Please sign in to comment.