Package uk.ac.rdg.resc.edal.feature
Class PointCollectionFeature
- java.lang.Object
-
- uk.ac.rdg.resc.edal.feature.AbstractDiscreteFeature<HorizontalPosition,HorizontalPosition>
-
- uk.ac.rdg.resc.edal.feature.PointCollectionFeature
-
- All Implemented Interfaces:
Serializable
,DiscreteFeature<HorizontalPosition,HorizontalPosition>
,Feature<HorizontalPosition>
public class PointCollectionFeature extends AbstractDiscreteFeature<HorizontalPosition,HorizontalPosition>
A feature consisting of measurements at a series ofHorizontalPosition
s fixed vertically and temporally (i.e. on aPointCollectionDomain
)- Author:
- Guy Griffiths
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PointCollectionDomain
getDomain()
Array1D<Number>
getValues(String paramId)
Gets the array of values for the given parameter.-
Methods inherited from class uk.ac.rdg.resc.edal.feature.AbstractDiscreteFeature
getDescription, getFeatureProperties, getId, getName, getParameter, getParameterMap, getVariableIds
-
-
-
-
Method Detail
-
getDomain
public PointCollectionDomain getDomain()
Description copied from interface:DiscreteFeature
- Specified by:
getDomain
in interfaceDiscreteFeature<HorizontalPosition,HorizontalPosition>
- Specified by:
getDomain
in interfaceFeature<HorizontalPosition>
- Overrides:
getDomain
in classAbstractDiscreteFeature<HorizontalPosition,HorizontalPosition>
- Returns:
- the domain of the values contained with the feature. May not
return
null
-
getValues
public Array1D<Number> getValues(String paramId)
Description copied from interface:DiscreteFeature
Gets the array of values for the given parameter. The shape of this array must match the shape of the array of domain objects (fromDiscreteDomain.getDomainObjects()
).- Specified by:
getValues
in interfaceDiscreteFeature<HorizontalPosition,HorizontalPosition>
- Overrides:
getValues
in classAbstractDiscreteFeature<HorizontalPosition,HorizontalPosition>
- Parameters:
paramId
- The identifier from theFeature.getVariableIds()
set of parameter IDs.- Returns:
- the list of values for the requested member
-
-