Uses of Interface
ucar.unidata.geoloc.Station

Packages that use Station
ucar.nc2.dt Scientific data types package. 
ucar.nc2.ft Scientific feature types package 
ucar.unidata.geoloc Support library for georeferencing coordinate systems and transformations. 
 

Uses of Station in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return Station
 Station StationObsDatatype.getStation()
          Station location of the observation
 Station StationCollection.getStation(java.lang.String name)
          Find a Station by name
 

Methods in ucar.nc2.dt that return types with arguments of type Station
 java.util.List<Station> StationCollection.getStations()
          Get all the Stations in the collection.
 java.util.List<Station> StationRadarCollection.getStations()
          Get all the Stations in the collection.
 java.util.List<Station> StationCollection.getStations(CancelTask cancel)
          Get all the Stations in the collection, allow user to cancel.
 java.util.List<Station> StationCollection.getStations(LatLonRect boundingBox)
          Get all the Stations within a bounding box.
 java.util.List<Station> StationCollection.getStations(LatLonRect boundingBox, CancelTask cancel)
          Get all the Stations within a bounding box, allow user to cancel.
 java.util.List<Station> StationRadarCollection.getStations(LatLonRect boundingBox, CancelTask cancel)
          Get all the Stations within a bounding box, allow user to cancel.
 

Methods in ucar.nc2.dt with parameters of type Station
 java.util.List StationCollection.getData(Station s)
          Get all data for this Station.
 java.util.List StationCollection.getData(Station s, CancelTask cancel)
          Get all data for this Station, allow user to cancel.
 java.util.List StationCollection.getData(Station s, java.util.Date start, java.util.Date end)
          Get data for this Station within the specified date range.
 java.util.List StationCollection.getData(Station s, java.util.Date start, java.util.Date end, CancelTask cancel)
          Get data for this Station within the specified date range, allow user to cancel.
 DataIterator StationCollection.getDataIterator(Station s)
          Get all data for this Station.
 DataIterator StationCollection.getDataIterator(Station s, java.util.Date start, java.util.Date end)
          Get data for this Station within the specified date range.
 int StationCollection.getStationDataCount(Station s)
          How many Data objects are available for this Station?
 

Method parameters in ucar.nc2.dt with type arguments of type Station
 java.util.List StationCollection.getData(java.util.List<Station> stations)
          Get all data for a list of Stations.
 java.util.List StationCollection.getData(java.util.List<Station> stations, CancelTask cancel)
          Get all data for a list of Stations, allow user to cancel.
 java.util.List StationCollection.getData(java.util.List<Station> stations, java.util.Date start, java.util.Date end)
          Get data for a list of Stations within the specified date range.
 java.util.List StationCollection.getData(java.util.List<Station> stations, java.util.Date start, java.util.Date end, CancelTask cancel)
          Get data for a list of Stations within the specified date range, allow user to cancel.
 

Uses of Station in ucar.nc2.ft
 

Subinterfaces of Station in ucar.nc2.ft
 interface StationProfileFeature
          Time series of ProfileFeature at named locations.
 interface StationTimeSeriesFeature
          Time series of PointFeature at a named location aka 'station'.
 

Methods in ucar.nc2.ft that return Station
 Station StationCollection.getStation(java.lang.String name)
          Find a Station by name.
 

Methods in ucar.nc2.ft that return types with arguments of type Station
 java.util.List<Station> StationCollection.getStations()
          Get all the Stations in the collection.
 java.util.List<Station> StationCollection.getStations(LatLonRect boundingBox)
          Get all the Stations within a bounding box.
 java.util.List<Station> StationCollection.getStations(java.lang.String[] names)
          Get a list of named Stations.
 

Methods in ucar.nc2.ft with parameters of type Station
 StationTimeSeriesFeature StationTimeSeriesFeatureCollection.getStationFeature(Station s)
          Get the collection of data for a particular Station.
 StationProfileFeature StationProfileFeatureCollection.getStationProfileFeature(Station s)
          Get the StationProfileFeature for a specific Station.
 

Method parameters in ucar.nc2.ft with type arguments of type Station
 StationProfileFeatureCollection StationProfileFeatureCollection.subset(java.util.List<Station> stations)
          Get a subsetted StationProfileFeatureCollection
 StationTimeSeriesFeatureCollection StationTimeSeriesFeatureCollection.subset(java.util.List<Station> stations)
          Get a subsetted StationCollection based on a list of Stations.
 

Uses of Station in ucar.unidata.geoloc
 

Classes in ucar.unidata.geoloc that implement Station
 class StationImpl
          Implementation of Station
 

Methods in ucar.unidata.geoloc with parameters of type Station
 int StationImpl.compareTo(Station so)