AWFRangeSummary
Objective-C
@interface AWFRangeSummary : AWFWeatherObject
Swift
class 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 (nonatomic) NSInteger count;
Swift
var count: Int { get set }
-
Minimum value for the range.
Declaration
Objective-C
@property (nonatomic) CGFloat min;
Swift
var min: CGFloat { get set }
-
GMT date that the minimum value occurred when available.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSDate *minTimestamp;
Swift
var minTimestamp: Date? { get set }
-
Maximum value for the range.
Declaration
Objective-C
@property (nonatomic) CGFloat max;
Swift
var max: CGFloat { get set }
-
GMT date when the maximum value occurred when available.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSDate *maxTimestamp;
Swift
var maxTimestamp: Date? { get set }
-
Average of all values for the range.
Declaration
Objective-C
@property (nonatomic) CGFloat average;
Swift
var average: CGFloat { get set }