Package org.geotools.imageio.netcdf.cv
Interface CoordinateHandlerSpi
-
- All Known Implementing Classes:
ClimatologicalTimeHandlerSpi
public interface CoordinateHandlerSpi
Constructs a live CoordinateHandlerIn addition to implementing this interface, this service file should be defined:
META-INF/services/org.geotools.imageio.netcdf.cv.CoordinateHandlerSpi
The file should contain a single line which gives the full name of the implementing class.
example:
e.g. org.geotools.imageio.netcdf.cv.ClimatologicalTimeHandlerSPI
The factories are never called directly by users, instead the CoordinateHandlerFinder class is used.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
CoordinateHandlerSpi.CoordinateHandler
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
canHandle(CoordinateAxis axis)
Check if the specified spi can handle the provided axis through aCoordinateHandlerSpi.CoordinateHandler
CoordinateHandlerSpi.CoordinateHandler
createHandler()
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()
-
-