Package ucar.nc2.ft

Scientific feature types package

See:
          Description

Interface Summary
FeatureCollection A collection of FeatureTypes.
FeatureDataset Superclass for "scientific feature type" datasets.
FeatureDatasetFactory Interface for factories that wrap a NetcdfDataset with a FeatureDataset.
FeatureDatasetPoint A FeatureDataset, composed of one or more PointFeatureCollections.
NestedPointFeatureCollection A collection of PointFeatures nested inside one or more PointFeatureCollection.
NestedPointFeatureCollectionIterator An iterator over NestedPointFeatureCollection.
NestedPointFeatureCollectionIterator.Filter A filter on nestedPointFeatureCollection
PointFeature A collection of observations at one time and location.
PointFeatureCollection A collection of PointFeatures.
PointFeatureCollectionIterator An iterator over PointFeatureCollections.
PointFeatureCollectionIterator.Filter A filter on PointFeatureCollection.
PointFeatureIterator An iterator over PointFeatures.
PointFeatureIterator.Filter A filter on PointFeatures
ProfileFeature A set of observations along the vertical (z) axis.
ProfileFeatureCollection A collection of ProfileFeature.
SectionFeature A collection of profiles which originate along a trajectory.
SectionFeatureCollection A collection of SectionFeatures.
StationCollection A collection of data at named locations called Stations.
StationProfileFeature Time series of ProfileFeature at named locations.
StationProfileFeatureCollection A collection of StationProfileFeatures
StationTimeSeriesFeature Time series of PointFeature at a named location aka 'station'.
StationTimeSeriesFeatureCollection A collection of StationTimeSeriesFeature.
TrajectoryFeature A set of observations along a 1 dimensional path, connected in space and time.
TrajectoryFeatureCollection A collection of TrajectoryFeatures
 

Class Summary
FeatureDatasetFactoryManager Manager of factories for FeatureDatasets.
FeatureDatasetImpl Abstract superclass for implementations of FeatureDataset.
 

Package ucar.nc2.ft Description

Scientific feature types package

These are interfaces that define access to specialized "scientific feature" datasets. There are three types of interfaces:

  1. FeatureType: atomic type usually defined by its dimensionality and topology.
  2. Collection: a homogenous collection of atomic types, specifying the nature of the collection.
  3. Dataset: one or more Collections of a particular FeatureType, with dataset metadata.

A FeatureDataset and VariableSimpleIF are lightweight abstractions of NetcdfDataset and Variable, which allows implementations that are not necessarily based on NetcdfDataset objects.

See:

  • FeatureDatasets Overview