Interface FeatureCatalogue
-
- All Known Subinterfaces:
WmsCatalogue
- All Known Implementing Classes:
DataCatalogue
,SimpleFeatureCatalogue
public interface FeatureCatalogue
An interface defining a catalogue which can extractDiscreteFeature
s based on aString
identifier and a set ofPlottingDomainParams
- Author:
- Guy Griffiths
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
FeatureCatalogue.FeaturesAndMemberName
Simple class combining aCollection
ofDiscreteFeature
s and the name of the member of interest
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FeatureCatalogue.FeaturesAndMemberName
getFeaturesForLayer(String layerName, PlottingDomainParams params)
Given a singleString
identifier and a set ofPlottingDomainParams
, returns aCollection
ofDiscreteFeature
s
-
-
-
Method Detail
-
getFeaturesForLayer
FeatureCatalogue.FeaturesAndMemberName getFeaturesForLayer(String layerName, PlottingDomainParams params) throws EdalException
Given a singleString
identifier and a set ofPlottingDomainParams
, returns aCollection
ofDiscreteFeature
s- Parameters:
layerName
- The name of the layer to extractparams
- ThePlottingDomainParams
describing the domain to be plotted- Returns:
- A
FeatureCatalogue.FeaturesAndMemberName
object encapsulating the returnedDiscreteFeature
s - Throws:
EdalException
- if there is a problem with feature extraction.
-
-