Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / drivers / GeorreferencedRasterDriver.java @ 540

History | View | Annotate | Download (646 Bytes)

1
/* Generated by Together */
2

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

    
5
import java.awt.geom.Rectangle2D;
6
import java.io.IOException;
7

    
8
import org.cresques.cts.IProjection;
9

    
10

    
11

    
12

    
13
public interface GeorreferencedRasterDriver extends RasterDriver {
14
        /**
15
         * Inicializa el raster con la proyecci?n que se le pasa.
16
         * @param proj
17
         * @throws IOException
18
         */
19
    void initialize(IProjection proj) throws IOException;
20

    
21
    /**
22
     * Obtiene la proyecci?n en la que est? el raster 
23
     */
24
    IProjection getProjection();
25

    
26
    /**
27
     * Obtiene la extensi?n en coordenadas del mundo real que ocupa este raster 
28
     */
29
        Rectangle2D getFullExtent();
30
        
31
}