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: 19082 $, $Date: 2009-08-13 12:28:39 +0200 (Do, 13. Aug 2009) $
Author:
Oliver Tonnhofer, last edited by: $Author: rbezema $
See Also:
ServiceLoader

Method Summary
 RasterReader getRasterReader(java.lang.String type)
           
 java.util.Set<java.lang.String> getRasterReaderFormats()
           
 RasterWriter getRasterWriter(java.lang.String type)
           
 java.util.Set<java.lang.String> getRasterWriterFormats()
           
 

Method Detail

getRasterReader

RasterReader getRasterReader(java.lang.String type)
Parameters:
type -
Returns:
a raster reader of the requested type, or null

getRasterWriter

RasterWriter getRasterWriter(java.lang.String type)
Parameters:
type -
Returns:
a raster writer of the requested type, or null

getRasterReaderFormats

java.util.Set<java.lang.String> getRasterReaderFormats()
Returns:
a Set of (image) formats the raster writer can read.

getRasterWriterFormats

java.util.Set<java.lang.String> getRasterWriterFormats()
Returns:
a Set of (image) formats the raster writer support.


Copyright © 2011. All Rights Reserved.