AWFFirePerimeter
Objective-C
@interface AWFFirePerimeter : AWFWeatherObject
Swift
class AWFFirePerimeter : AWFWeatherObject
An AWFFirePerimeter
object represents perimeter information for a fire as returned by the fires endpoint
of the Aeris Weather API.
-
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 (nonatomic, strong, nullable) NSDate *startedAt;
Swift
var startedAt: Date? { get set }
-
GMT date when the fire perimeter data was last updated.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSDate *updatedAt;
Swift
var updatedAt: Date? { get set }
-
Estimated coverage of the fire in square kilometers.
Declaration
Objective-C
@property (nonatomic) CGFloat areaKM;
Swift
var areaKM: CGFloat { get set }
-
Estimated coverage of the fire in square miles.
Declaration
Objective-C
@property (nonatomic) CGFloat areaMI;
Swift
var areaMI: CGFloat { get set }
-
Estimated coverage of the fire in acres.
Declaration
Objective-C
@property (nonatomic) CGFloat areaAC;
Swift
var areaAC: CGFloat { get set }
-
An array of
AWFGeoPolygon
instances that define the perimeter of the fire when available.In order to return polygons with your request, you must also include the
geo
filter with your request options. If this filter is not included and/or there are no cell groups, then this value will benil
.Declaration
Objective-C
@property (nonatomic, strong, nullable) NSArray<AWFGeoPolygon *> *polygons;
Swift
var polygons: [AWFGeoPolygon]? { get set }