Package org.geotools.imageio.netcdf.cv
Interface CoordinateHandlerSpi
-
- All Known Implementing Classes:
ClimatologicalTimeHandlerSpi
public interface CoordinateHandlerSpiConstructs a live CoordinateHandlerIn addition to implementing this interface, this service file should be defined:
META-INF/services/org.geotools.imageio.netcdf.cv.CoordinateHandlerSpiThe file should contain a single line which gives the full name of the implementing class.
example:
e.g. org.geotools.imageio.netcdf.cv.ClimatologicalTimeHandlerSPIThe factories are never called directly by users, instead the CoordinateHandlerFinder class is used.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceCoordinateHandlerSpi.CoordinateHandler
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanHandle(CoordinateAxis axis)Check if the specified spi can handle the provided axis through aCoordinateHandlerSpi.CoordinateHandlerCoordinateHandlerSpi.CoordinateHandlercreateHandler()Set<String>getIgnoreSet()Return a set of dimensions to be ignored
-
-
-
Method Detail
-
canHandle
boolean canHandle(CoordinateAxis axis)
Check if the specified spi can handle the provided axis through aCoordinateHandlerSpi.CoordinateHandler
-
createHandler
CoordinateHandlerSpi.CoordinateHandler createHandler()
-
-