From 3f873a536cdc15b0e7781206a36de9275b21d5f0 Mon Sep 17 00:00:00 2001 From: zbruick Date: Wed, 9 Oct 2019 16:14:58 -0600 Subject: [PATCH] Update LCL docstring to indicate how this function works with arrays --- src/metpy/calc/thermo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/metpy/calc/thermo.py b/src/metpy/calc/thermo.py index 3ebb09c1123..23057f2a536 100644 --- a/src/metpy/calc/thermo.py +++ b/src/metpy/calc/thermo.py @@ -310,7 +310,8 @@ def lcl(pressure, temperature, dewpt, max_iters=50, eps=1e-5): r"""Calculate the lifted condensation level (LCL) using from the starting point. The starting state for the parcel is defined by `temperature`, `dewpt`, - and `pressure`. + and `pressure`. If these are arrays, this function will return a LCL + for every index. This function does work with surface grids as a result. Parameters ----------