- All Superinterfaces:
Dataset
,SeriesDataset
,XYDataset
- All Known Implementing Classes:
DefaultWindDataset
Interface for a dataset that supplies wind intensity and direction values
observed at various points in time.
-
Method Summary
Modifier and TypeMethodDescriptiongetWindDirection
(int series, int item) Returns the wind direction (should be in the range 0 to 12, corresponding to the positions on an upside-down clock face).getWindForce
(int series, int item) Returns the wind force on the Beaufort scale (0 to 12).Methods inherited from interface org.jfree.data.general.Dataset
addChangeListener, getGroup, removeChangeListener, setGroup
Methods inherited from interface org.jfree.data.general.SeriesDataset
getSeriesCount, getSeriesKey, indexOf
Methods inherited from interface org.jfree.data.xy.XYDataset
getDomainOrder, getItemCount, getX, getXValue, getY, getYValue
-
Method Details
-
getWindDirection
Returns the wind direction (should be in the range 0 to 12, corresponding to the positions on an upside-down clock face).- Parameters:
series
- the series (in the range0
togetSeriesCount() - 1
).item
- the item (in the range0
togetItemCount(series) - 1
).- Returns:
- The wind direction.
-
getWindForce
Returns the wind force on the Beaufort scale (0 to 12). See:http://en.wikipedia.org/wiki/Beaufort_scale
- Parameters:
series
- the series (in the range0
togetSeriesCount() - 1
).item
- the item (in the range0
togetItemCount(series) - 1
).- Returns:
- The wind force.
-