Package org.geotools.imageio.netcdf.cv
Interface CoordinateHandlerSpi
- All Known Implementing Classes:
 ClimatologicalTimeHandlerSpi
public interface CoordinateHandlerSpi
Constructs a live CoordinateHandler
 
In 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 - 
Method Summary
Modifier and TypeMethodDescriptionbooleancanHandle(CoordinateAxis axis) Check if the specified spi can handle the provided axis through aCoordinateHandlerSpi.CoordinateHandlerReturn a set of dimensions to be ignored 
- 
Method Details
- 
canHandle
boolean canHandle(CoordinateAxis axis) Check if the specified spi can handle the provided axis through aCoordinateHandlerSpi.CoordinateHandler - 
createHandler
CoordinateHandlerSpi.CoordinateHandler createHandler() - 
getIgnoreSet
Return a set of dimensions to be ignored 
 -