| org.jfree.data.xy.WindDataset
All known Subclasses: org.jfree.data.xy.DefaultWindDataset,
WindDataset | public interface WindDataset extends XYDataset(Code) | | Interface for a dataset that supplies wind intensity and direction values
observed at various points in time.
|
Method Summary | |
public Number | getWindDirection(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).
Parameters: series - the series (in the range 0 to getSeriesCount() - 1 ). Parameters: item - the item (in the range 0 to getItemCount(series) - 1 ). | public Number | getWindForce(int series, int item) Returns the wind force on the Beaufort scale (0 to 12). |
getWindDirection | public Number getWindDirection(int series, int item)(Code) | | 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 range 0 to getSeriesCount() - 1 ). Parameters: item - the item (in the range 0 to getItemCount(series) - 1 ). The wind direction. |
getWindForce | public Number getWindForce(int series, int item)(Code) | | 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 range 0 to getSeriesCount() - 1 ). Parameters: item - the item (in the range 0 to getItemCount(series) - 1 ). The wind force. |
|
|