Package ucar.nc2.dt.point
Class StationDatasetCollection
- java.lang.Object
-
- ucar.nc2.dt.point.StationDatasetCollection
-
public class StationDatasetCollection extends Object
Deprecated.use ucar.nc2.ft.pointA Collection of StationDatasets
-
-
Constructor Summary
Constructors Constructor Description StationDatasetCollection()
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
add(String location)
Deprecated.DataIterator
getDataIterator(Station s)
Deprecated.Get all data for this Station.DataIterator
getDataIterator(Station s, Date start, Date end)
Deprecated.Get data for this Station within the specified date range.Station
getStation(String name)
Deprecated.Find a Station by nameList
getStations()
Deprecated.Get all the Stations in the collection.List
getStations(LatLonRect boundingBox)
Deprecated.Get all the Stations within a bounding box.static void
main(String[] args)
Deprecated.
-
-
-
Method Detail
-
add
public void add(String location) throws IOException
Deprecated.- Throws:
IOException
-
getStations
public List getStations() throws IOException
Deprecated.Get all the Stations in the collection.- Returns:
- List of Station
- Throws:
IOException
- I/O error
-
getStations
public List getStations(LatLonRect boundingBox) throws IOException
Deprecated.Get all the Stations within a bounding box.- Parameters:
boundingBox
- within this bounding box- Returns:
- List of Station
- Throws:
IOException
- I/O error
-
getStation
public Station getStation(String name)
Deprecated.Find a Station by name- Parameters:
name
- name of the Station- Returns:
- Station with that name, or null if not found
-
getDataIterator
public DataIterator getDataIterator(Station s) throws IOException
Deprecated.Get all data for this Station.- Parameters:
s
- Station- Returns:
- iterator over type getDataClass()
- Throws:
IOException
- I/O error
-
getDataIterator
public DataIterator getDataIterator(Station s, Date start, Date end) throws IOException
Deprecated.Get data for this Station within the specified date range.- Parameters:
s
- Stationstart
- starting Dateend
- ending Date- Returns:
- Iterator over type getDataClass()
- Throws:
IOException
- I/O error
-
main
public static void main(String[] args) throws IOException, ParseException
Deprecated.- Throws:
IOException
ParseException
-
-