Skip to content

Commit

Permalink
docstring fix
Browse files Browse the repository at this point in the history
  • Loading branch information
whitetuft committed Aug 1, 2023
1 parent be2cfe1 commit 8d7cb96
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pyrtlib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,12 +323,12 @@ def mr2e(p: np.ndarray, mr: np.ndarray) -> np.ndarray:


def rho2rh(rho: np.ndarray, t: np.ndarray, p: np.ndarray) -> np.ndarray:
"""_summary_
"""Convertsa water vapor density to relative humidity.
Args:
rho (np.ndarray): _description_
t (np.ndarray): _description_
p (np.ndarray): _description_
rho (np.ndarray): Water vapor density (g/m3)
t (np.ndarray): Temperature (K)
p (np.ndarray): Pressure (mb).
Returns:
np.ndarray: _description_
Expand All @@ -346,9 +346,9 @@ def rho2mr(rho: np.ndarray, t: np.ndarray, p: np.ndarray) -> np.ndarray:
temperature (t,K), and water vapor density (g/m3).
Args:
rho (np.ndarray): _description_
t (np.ndarray): _description_
p (np.ndarray): _description_
rho (np.ndarray): Water vapor density (g/m3)
t (np.ndarray): Temperature (K)
p (np.ndarray): Pressure (mb).
Returns:
np.ndarray: _description_
Expand Down

0 comments on commit 8d7cb96

Please sign in to comment.