org.deegree.coverage.raster.io
Interface RasterIOProvider
- All Known Implementing Classes:
- ASCRasterIOProvider, GridRasterIOProvider, IIORasterIOProvider, JAIRasterIOProvider, WMSIOProvider, XYZRasterIOProvider
public interface RasterIOProvider
This interface is for all classes that provide raster IO. It uses the new Java 6 ServiceLoader.
To add your own raster IO to deegree you have to implement this interface and put the class name of _your_
implementing class in META-INF/services/org.deegree.model.coverage.raster within _your_ .jar or classes directory.
Then you have to add your implementation to the classpath of deegree.
- Version:
- $Revision: 31644 $, $Date: 2011-08-24 22:27:43 +0200 (Wed, 24 Aug 2011) $
- Author:
- Oliver Tonnhofer, last edited by: $Author: mschneider $
- See Also:
ServiceLoader
getRasterReader
RasterReader getRasterReader(String type)
- Parameters:
type
-
- Returns:
- a raster reader of the requested type, or null
getRasterWriter
RasterWriter getRasterWriter(String type)
- Parameters:
type
-
- Returns:
- a raster writer of the requested type, or null
getRasterReaderFormats
Set<String> getRasterReaderFormats()
- Returns:
- a
Set
of (image) formats the raster writer can read.
getRasterWriterFormats
Set<String> getRasterWriterFormats()
- Returns:
- a
Set
of (image) formats the raster writer support.
Copyright © 2011. All Rights Reserved.