Package com.aerisweather.aeris.model
Class FiresPerimeter
- java.lang.Object
-
- com.aerisweather.aeris.model.FiresPerimeter
-
public class FiresPerimeter extends Object
-
-
Field Summary
Fields Modifier and Type Field Description NumberareaACThe area of the perimeter in square acresNumberareaKMThe area of the perimeter in square kilometersNumberareaMIThe area of the perimeter in square milesStringmodifiedDateISOISO 8601 date of the date/time the perimeter polygon was last updatedIntegermodifiedTimestampUnix timestamp of the date/time the perimeter polygon was last updatedGeoPolygonpolygonGeoPolygon of the fire perimeter.StringstartDateISOISO 8601 date of the initial start date that the fire perimeter was createdIntegerstartTimestampUnix timestamp of the initial start date that the fire perimeter was created
-
Constructor Summary
Constructors Constructor Description FiresPerimeter(Perimeter perimeter)Used to construct the FiresPerimeter from the general report.
-
-
-
Field Detail
-
startTimestamp
public Integer startTimestamp
Unix timestamp of the initial start date that the fire perimeter was created
-
startDateISO
public String startDateISO
ISO 8601 date of the initial start date that the fire perimeter was created
-
modifiedTimestamp
public Integer modifiedTimestamp
Unix timestamp of the date/time the perimeter polygon was last updated
-
modifiedDateISO
public String modifiedDateISO
ISO 8601 date of the date/time the perimeter polygon was last updated
-
areaKM
public Number areaKM
The area of the perimeter in square kilometers
-
areaMI
public Number areaMI
The area of the perimeter in square miles
-
areaAC
public Number areaAC
The area of the perimeter in square acres
-
polygon
public GeoPolygon polygon
GeoPolygon of the fire perimeter. Will either be a polygon or Multipolygon
-
-
Constructor Detail
-
FiresPerimeter
public FiresPerimeter(Perimeter perimeter)
Used to construct the FiresPerimeter from the general report.- Parameters:
perimeter- Report to construct from.
-
-