public interface StationCollection extends PointCollection
Modifier and Type | Method and Description |
---|---|
List |
getData(List<Station> stations)
Get all data for a list of Stations.
|
List |
getData(List<Station> stations,
CancelTask cancel)
Get all data for a list of Stations, allow user to cancel.
|
List |
getData(List<Station> stations,
Date start,
Date end)
Get data for a list of Stations within the specified date range.
|
List |
getData(List<Station> stations,
Date start,
Date end,
CancelTask cancel)
Get data for a list of Stations within the specified date range, allow user to cancel.
|
List |
getData(Station s)
Get all data for this Station.
|
List |
getData(Station s,
CancelTask cancel)
Get all data for this Station, allow user to cancel.
|
List |
getData(Station s,
Date start,
Date end)
Get data for this Station within the specified date range.
|
List |
getData(Station s,
Date start,
Date end,
CancelTask cancel)
Get data for this Station within the specified date range, allow user to cancel.
|
DataIterator |
getDataIterator(Station s)
Get all data for this Station.
|
DataIterator |
getDataIterator(Station s,
Date start,
Date end)
Get data for this Station within the specified date range.
|
Station |
getStation(String name)
Find a Station by name
|
int |
getStationDataCount(Station s)
How many Data objects are available for this Station?
|
List<Station> |
getStations()
Get all the Stations in the collection.
|
List<Station> |
getStations(CancelTask cancel)
Get all the Stations in the collection, allow user to cancel.
|
List<Station> |
getStations(LatLonRect boundingBox)
Get all the Stations within a bounding box.
|
List<Station> |
getStations(LatLonRect boundingBox,
CancelTask cancel)
Get all the Stations within a bounding box, allow user to cancel.
|
getData, getData, getData, getData, getData, getData, getDataClass, getDataCount, getDataIterator, getTimeUnits
List<Station> getStations() throws IOException
IOException
- on io errorList<Station> getStations(CancelTask cancel) throws IOException
cancel
- allow user to cancel. Implementors should return ASAP.IOException
- on io errorList<Station> getStations(LatLonRect boundingBox) throws IOException
boundingBox
- restrict data to this bounding noxIOException
- on io errorList<Station> getStations(LatLonRect boundingBox, CancelTask cancel) throws IOException
boundingBox
- restrict data to this bounding noxcancel
- allow user to cancel. Implementors should return ASAP.IOException
- on io errorStation getStation(String name)
name
- find this nameint getStationDataCount(Station s)
s
- stationList getData(Station s) throws IOException
s
- for this StationIOException
- on io errorList getData(Station s, CancelTask cancel) throws IOException
s
- for this Stationcancel
- allow user to cancel. Implementors should return ASAP.IOException
- on io errorList getData(Station s, Date start, Date end) throws IOException
s
- for this Stationstart
- restrict data to after this timeend
- restrict data to before this timeIOException
- on io errorList getData(Station s, Date start, Date end, CancelTask cancel) throws IOException
s
- for this Stationstart
- restrict data to after this timeend
- restrict data to before this timecancel
- allow user to cancel. Implementors should return ASAP.IOException
- on io errorList getData(List<Station> stations) throws IOException
stations
- for these StationsIOException
- on io erroras a (possibly) more efficient alternative
List getData(List<Station> stations, CancelTask cancel) throws IOException
stations
- for these Stationscancel
- allow user to cancel. Implementors should return ASAP.IOException
- on io erroras a (possibly) more efficient alternative
List getData(List<Station> stations, Date start, Date end) throws IOException
stations
- for these Stationsstart
- restrict data to after this timeend
- restrict data to before this timeIOException
- on io erroras a (possibly) more efficient alternative
List getData(List<Station> stations, Date start, Date end, CancelTask cancel) throws IOException
stations
- for these Stationsstart
- restrict data to after this timeend
- restrict data to before this timecancel
- allow user to cancel. Implementors should return ASAP.IOException
- on io erroras a (possibly) more efficient alternative
DataIterator getDataIterator(Station s)
s
- for this StationDataIterator getDataIterator(Station s, Date start, Date end)
s
- for this Stationstart
- restrict data to after this timeend
- restrict data to before this timeCopyright © 1999–2014 UCAR/Unidata. All rights reserved.