solarforecastarbiter.datamodel.ValidationResult

class solarforecastarbiter.datamodel.ValidationResult(flag: str, count: int)[source]

Stores the validation result for a single flag for a forecast and observation pair.

Parameters:
  • flag (str) – The quality flag being recorded. See solarforecastarbiter.validation.quality_mapping.
  • count (int) – The number of timestamps that were flagged.
__init__(flag: str, count: int) → None

Methods

__init__(flag, count)
from_dict(input_dict[, raise_on_extra]) Construct a dataclass from the given dict, matching keys with the class fields.
replace(**kwargs) Convience wrapper for dataclasses.replace() to create a new dataclasses from the old with the given keys replaced.
to_dict() Convert the dataclass into a dictionary suitable for uploading to the API.