Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libCq CMS for java.old / src / org / cresques / io / GeoRasterFile.java @ 2

History | View | Annotate | Download (883 Bytes)

1
/*
2
 * Created on 26-abr-2004
3
 *
4
 * @author "Luis W. Sevilla" <sevilla_lui@gva.es>
5
 */
6
package org.cresques.io;
7

    
8
import java.awt.Image;
9

    
10
import org.cresques.geo.Projection;
11
import org.cresques.geo.ReProjection;
12
import org.cresques.px.Extent;
13
import org.cresques.px.PxContour;
14

    
15
/**
16
 * 
17
 * @author "Luis W. Sevilla" <sevilla_lui@gva.es>* @author administrador
18
 */
19
public abstract class GeoRasterFile extends GeoFile {
20
        public GeoRasterFile(Projection proj) {
21
                super(proj);
22
        }
23
        public static PxContour getContour(String fName, String name, Projection proj) {
24
                PxContour contour = null;
25
                return contour;
26
        }
27

    
28
        abstract public void reProject(ReProjection rp);
29

    
30
        abstract public GeoFile load();
31
        
32
        abstract public void setView(Extent e);
33
        abstract public Extent getView();
34
        
35
        abstract public void setTransparency(boolean t);
36
        
37
        abstract public Image updateImage(int width, int height);
38
}