solarforecastarbiter.validation.validator.check_temperature_limits

solarforecastarbiter.validation.validator.check_temperature_limits(temp_air, temp_limits=(-35.0, 50.0))[source]

Checks for extreme temperatures.

Parameters:
  • temp_air (Series) – Air temperature in Celsius
  • temp_limits (tuple, default (-35, 50)) – (lower bound, upper bound) for temperature.
Returns:

extreme_temp_flag (Series) – True if temp_air > lower bound and temp_air < upper bound.