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

ENH:Docs:hydroclass #1563

Merged
merged 2 commits into from
Apr 16, 2024
Merged
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
15 changes: 15 additions & 0 deletions pyart/retrieve/echo_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,21 @@ def hydroclass_semisupervised(
of polarimetric radar measurements: a semi-supervised approach,
Atmos. Meas. Tech., 9, 4425-4445, doi:10.5194/amt-9-4425-2016, 2016

Notes
-----
The default hydrometeor classification is valid for C-band radars. For X-band radars,
if frequency information is not present in the `radar.instrument_parameters`, a warning that the
algorithm is defaulting to the C band is printed.

If the radar frequency information is missing from the radar object, you can add it in
`radar.instrument_parameters`, as follows:
.. code-block:: python

radar.instrument_parameters["frequency"] = {
"long_name": "Radar frequency",
"units": "Hz",
"data": [9.2e9]
}
"""
lapse_rate = -6.5

Expand Down
Loading