Package org.n52.series.spi.geo
Class TransformingStationOutputService
- java.lang.Object
-
- org.n52.series.spi.srv.ParameterService<StationOutput>
-
- org.n52.series.spi.geo.TransformingStationOutputService
-
- All Implemented Interfaces:
RawDataInfo
@Deprecated public class TransformingStationOutputService extends ParameterService<StationOutput>
Deprecated.since 2.0.0Composes aParameterServiceforGeoJSONFeatures to transform geometries to requested spatial reference system.
-
-
Constructor Summary
Constructors Constructor Description TransformingStationOutputService(ParameterService<StationOutput> toCompose)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanexists(String id, IoParameters parameters)Deprecated.If a resource exists or not.OutputCollection<StationOutput>getCondensedParameters(IoParameters query)Deprecated.OutputCollection<StationOutput>getExpandedParameters(IoParameters query)Deprecated.StationOutputgetParameter(String item, IoParameters query)Deprecated.Gets the requested item with respect to the given query parameters.OutputCollection<StationOutput>getParameters(String[] items, IoParameters query)Deprecated.Gets the requested items with respect to the given query parameters.RawDataServicegetRawDataService()Deprecated.booleansupportsRawData()Deprecated.Check if raw data output is supported-
Methods inherited from class org.n52.series.spi.srv.ParameterService
setRawDataService
-
-
-
-
Constructor Detail
-
TransformingStationOutputService
public TransformingStationOutputService(ParameterService<StationOutput> toCompose)
Deprecated.
-
-
Method Detail
-
getExpandedParameters
public OutputCollection<StationOutput> getExpandedParameters(IoParameters query)
Deprecated.- Specified by:
getExpandedParametersin classParameterService<StationOutput>- Parameters:
query- query parameters to control the output.- Returns:
- an output collection of expanded items.
-
getCondensedParameters
public OutputCollection<StationOutput> getCondensedParameters(IoParameters query)
Deprecated.- Specified by:
getCondensedParametersin classParameterService<StationOutput>- Parameters:
query- query parameters to control the output.- Returns:
- an output collection of compact items.
-
getParameters
public OutputCollection<StationOutput> getParameters(String[] items, IoParameters query)
Deprecated.Description copied from class:ParameterServiceGets the requested items with respect to the given query parameters. Note, that implementations may be aware of parameters not specified by the official timeseries API. However, at least all officially specified query parameters should be considered by all implementations.- Specified by:
getParametersin classParameterService<StationOutput>- Parameters:
items- a subset of item ids which are of interest.query- query parameters to control the output.- Returns:
- an output collection of expanded items which are of interest. Not known ids will be ignored.
-
getParameter
public StationOutput getParameter(String item, IoParameters query)
Deprecated.Description copied from class:ParameterServiceGets the requested item with respect to the given query parameters. Note, that implementations may be aware of parameters not specified by the official timeseries API. However, at least all officially specified query parameters should be considered by all implementations.- Specified by:
getParameterin classParameterService<StationOutput>- Parameters:
item- the item id of interest.query- query parameters to control the output.- Returns:
- an expanded items of interest.
-
exists
public boolean exists(String id, IoParameters parameters)
Deprecated.Description copied from class:ParameterServiceIf a resource exists or not.- Specified by:
existsin classParameterService<StationOutput>- Parameters:
id- the id of the resource.parameters- the query passed along.- Returns:
trueif the resource exists,falseotherwise.
-
getRawDataService
public RawDataService getRawDataService()
Deprecated.- Specified by:
getRawDataServicein interfaceRawDataInfo- Overrides:
getRawDataServicein classParameterService<StationOutput>
-
supportsRawData
public boolean supportsRawData()
Deprecated.Description copied from interface:RawDataInfoCheck if raw data output is supported- Returns:
true, if raw data output is supported
-
-