Revision 358 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/RasterDriver.java

View differences:

RasterDriver.java
2 2

  
3 3
package com.iver.cit.gvsig.fmap.drivers;
4 4

  
5
import java.awt.geom.Rectangle2D;
6

  
7
import org.cresques.cts.IProjection;
5
import java.io.File;
6
import java.io.IOException;
8 7
public interface RasterDriver {
9 8
    /**
10 9
     * Obtiene el n?mero de bandas del raster 
......
54 53
     * Obtiene una muestra del pixel que se pasa como par?metro en la banda que se pasa como par?metro 
55 54
     */
56 55
    double getSampleDouble(int x, int y, int band);
56

  
57
    void open(File f) throws IOException;
58

  
59
    void close() throws IOException;
60

  
61
    void initialize() throws IOException;
57 62
}

Also available in: Unified diff