AWFFire
@interface AWFFire : AWFGeographicObject
An AWFFire
object represents data returned by the fires endpoint
of the Aeris Weather API.
-
Unique identifier for the fire event.
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *fireId;
Swift
var fireId: String? { get set }
-
GMT date for the observation.
Declaration
Objective-C
@property (readwrite, strong, nonatomic, nullable) NSDate *timestamp;
Swift
var timestamp: Date? { get set }
-
Type of fire observation.
L
= Confirmed large fire as deteremined by the USFSM
= Fire detection by the MODIS satellite
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *type;
Swift
var type: String? { get set }
-
Name assigned to the fire event.
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *name;
Swift
var name: String? { get set }
-
Descriptive location of the fire.
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *location;
Swift
var location: String? { get set }
-
GMT date when the fire started.
This property is usually only provided for critical/large fires (type=
L
), but not always.Declaration
Objective-C
@property (readwrite, strong, nonatomic, nullable) NSDate *startDate;
Swift
var startDate: Date? { get set }
-
The confidence percentage of the fire ranging from 0 to 100%.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat confidence;
Swift
var confidence: CGFloat { get set }
-
Estimated coverage of the fire in square kilometers.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat areaKM;
Swift
var areaKM: CGFloat { get set }
-
Estimated coverage of the fire in square miles.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat areaMI;
Swift
var areaMI: CGFloat { get set }
-
Estimated coverage of the fire in acres.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat areaAC;
Swift
var areaAC: CGFloat { get set }
-
Percentage of the fire that is currently contained.
This property is usually only provided for critical/large fires (type=
L
), but not always.Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat percentContained;
Swift
var percentContained: CGFloat { get set }
-
Satellite-estimated width of the fire in kilometers.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat satelliteWidthKM;
Swift
var satelliteWidthKM: CGFloat { get set }
-
Satellite-estimated width of the fire in miles.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat satelliteWidthMI;
Swift
var satelliteWidthMI: CGFloat { get set }
-
Satellite-estimated height of the fire in kilometers.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat satelliteHeightKM;
Swift
var satelliteHeightKM: CGFloat { get set }
-
Satellite-estimated height of the fire in miles.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat satelliteHeightMI;
Swift
var satelliteHeightMI: CGFloat { get set }
-
Measured brightness temperature of the detected fire in degrees Kelvin.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat satelliteTempK;
Swift
var satelliteTempK: CGFloat { get set }
-
Measured brightness temperature of the detected fire in degrees Celsius.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat satelliteTempC;
Swift
var satelliteTempC: CGFloat { get set }
-
Measured brightness temperature of the detected fire in degrees Fahrenheit.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat satelliteTempF;
Swift
var satelliteTempF: CGFloat { get set }
-
Station source of MODIS data and detection (for MODIS-detected fires only).
gsfc
: NASA-Goddard Space Flight Center MODIS Rapid Response Systemrsac
: USDA Forecast Serice Remote Sensing Application Centerssec
: University of Wisconsin Space Science Engineering Centeruaf
: University of Alaska-Fairbanks
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *satelliteSource;
Swift
var satelliteSource: String? { get set }
-
Satellite source of MODIS data and detection (for MODIS-detected fires only).
T
: TERRA MODISA
: AQUA MODIS
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *satelliteCode;
Swift
var satelliteCode: String? { get set }