Package com.aerisweather.aeris.model
Class ConditionsSummaryWinds
- java.lang.Object
-
- com.aerisweather.aeris.model.ConditionsSummaryWinds
-
public class ConditionsSummaryWinds extends Object
Speed info
-
-
Field Summary
Fields Modifier and Type Field Description double
avgKPH
The average speed in km/hdouble
avgKTS
The average speed in knotsdouble
avgMPH
The average speed in miles per hourString
maxDateTimeISO
The ISO date time of when the maximum occurredString
maxDir
The wind direction at the time of the maximum wind speed in cardinal lettersInteger
maxDirDEG
The wind direction at the time of the maximum wind speed in degrees.double
maxKPH
The maximum speed in km/hdouble
maxKTS
The maximum speed in knotsdouble
maxMPH
The maximum speed in miles per hourNumber
maxTimestamp
The unix timestamp of when the maximum occurredString
minDateTimeISO
The unix timestamp of when the minimum occurredString
minDir
The wind direction at the time of the minimum wind speed in cardinal lettersInteger
minDirDeg
The wind direction at the time of the minium wind speed in degrees.double
minKPH
The minimum speed in km/hdouble
minKTS
The minimum speed in knotsdouble
minMPH
The minimum speed in miles per hourNumber
minTimestamp
The unix timestamp of when the minimum occurred
-
Constructor Summary
Constructors Constructor Description ConditionsSummaryWinds()
-
-
-
Field Detail
-
maxKTS
public double maxKTS
The maximum speed in knots
-
maxKPH
public double maxKPH
The maximum speed in km/h
-
maxMPH
public double maxMPH
The maximum speed in miles per hour
-
minKTS
public double minKTS
The minimum speed in knots
-
minKPH
public double minKPH
The minimum speed in km/h
-
minMPH
public double minMPH
The minimum speed in miles per hour
-
avgKTS
public double avgKTS
The average speed in knots
-
avgKPH
public double avgKPH
The average speed in km/h
-
avgMPH
public double avgMPH
The average speed in miles per hour
-
maxDirDEG
public Integer maxDirDEG
The wind direction at the time of the maximum wind speed in degrees. 0 = north
-
maxDir
public String maxDir
The wind direction at the time of the maximum wind speed in cardinal letters
-
minDirDeg
public Integer minDirDeg
The wind direction at the time of the minium wind speed in degrees. 0 = north
-
minDir
public String minDir
The wind direction at the time of the minimum wind speed in cardinal letters
-
maxTimestamp
public Number maxTimestamp
The unix timestamp of when the maximum occurred
-
maxDateTimeISO
public String maxDateTimeISO
The ISO date time of when the maximum occurred
-
minTimestamp
public Number minTimestamp
The unix timestamp of when the minimum occurred
-
minDateTimeISO
public String minDateTimeISO
The unix timestamp of when the minimum occurred
-
-