Hi! Unless I'm missing something, in [atmosphere.py:378](https://github.com/pvlib/pvlib-python/blob/cf49deab04c938ad98a7bcd70b0e0560c69d12c1/pvlib/atmosphere.py#L378) the vapor pressure and saturation vapor pressure are inverted: it should be ``` relative_humidity = 100 * (e / es) ``` as per [Guide to Meteorological Instruments and Methods of Observation](https://www.weather.gov/media/epz/mesonet/CWOP-WMO8.pdf) at page 91 of the PDF.
Hi! Unless I'm missing something, in atmosphere.py:378 the vapor pressure and saturation vapor pressure are inverted: it should be
as per Guide to Meteorological Instruments and Methods of Observation at page 91 of the PDF.