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 voidadd(String location)Deprecated.DataIteratorgetDataIterator(ucar.unidata.geoloc.Station s)Deprecated.Get all data for this Station.DataIteratorgetDataIterator(ucar.unidata.geoloc.Station s, Date start, Date end)Deprecated.Get data for this Station within the specified date range.ucar.unidata.geoloc.StationgetStation(String name)Deprecated.Find a Station by nameListgetStations()Deprecated.Get all the Stations in the collection.ListgetStations(ucar.unidata.geoloc.LatLonRect boundingBox)Deprecated.Get all the Stations within a bounding box.static voidmain(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(ucar.unidata.geoloc.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 ucar.unidata.geoloc.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(ucar.unidata.geoloc.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(ucar.unidata.geoloc.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:
IOExceptionParseException
-
-