AWFRangeSummary

@interface AWFRangeSummary : AWFWeatherObject

An AWFRangeSummary object represents a summary of data for a specific range, including the minimum, maximum and average of all values within the range.

  • Number of records used for the range.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) NSInteger count;

    Swift

    var count: Int { get set }
  • min

    Minimum value for the range.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) CGFloat min;

    Swift

    var min: CGFloat { get set }
  • max

    Maximum value for the range.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) CGFloat max;

    Swift

    var max: CGFloat { get set }
  • Average of all values for the range.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) CGFloat average;

    Swift

    var average: CGFloat { get set }