Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more references #1620

Merged
merged 3 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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