Statistics
| Revision:

root / branches / pilotoDWG / libraries / libFMap / src / com / iver / cit / gvsig / fmap / drivers / RasterDriver.java @ 2303

History | View | Annotate | Download (4.71 KB)

1 1100 fjp
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41 302 fernando
package com.iver.cit.gvsig.fmap.drivers;
42
43 659 luisw
import java.awt.Dimension;
44 671 luisw
import java.awt.Graphics2D;
45 659 luisw
import java.awt.Image;
46 567 luisw
import java.awt.geom.Rectangle2D;
47 671 luisw
import java.awt.image.BufferedImage;
48 358 fernando
import java.io.File;
49
import java.io.IOException;
50 515 luisw
51 659 luisw
import org.cresques.cts.ICoordTrans;
52
53 567 luisw
import com.hardcode.driverManager.Driver;
54 671 luisw
import com.iver.cit.gvsig.fmap.ViewPort;
55 540 luisw
56 567 luisw
public interface RasterDriver extends Driver {
57
    /**
58
     * Define los tipos de fichero que puede leer el driver. Si devuelve true,
59
     * el fichero est? aceptado (es de los que el driver puede leer), si
60
     * devuelve false es porque no lo puede leer.
61
     */
62
        public boolean fileAccepted(File fName);
63
64
        public void open(File f) throws IOException;
65 540 luisw
66 567 luisw
        public void initialize() throws IOException;
67
68
        public void close() throws IOException;
69
70 302 fernando
    /**
71 567 luisw
     * Obtiene la extensi?n en coordenadas del mundo real que ocupa este raster
72
     */
73
        public Rectangle2D getFullExtent();
74
    /**
75 302 fernando
     * Obtiene el n?mero de bandas del raster
76
     */
77 567 luisw
        public int getNumBands();
78 302 fernando
79
        /**
80 671 luisw
         * @see com.iver.cit.gvsig.fmap.layers.LayerOperations#draw(java.awt.image.BufferedImage, java.awt.Graphics2D, com.iver.cit.gvsig.fmap.ViewPort)
81
         */
82
        public void draw(BufferedImage image, Graphics2D g, ViewPort viewPort)
83
                        throws DriverIOException;
84
85
        /**
86 302 fernando
         * Obtiene el valor que el raster tiene en la posici?n x, y del bitmap
87
         * @see com.iver.cit.gvsig.fmap.layers.RasterComplexOperations#getValueByCoords(int, int, int)
88 567 luisw
         * /
89 302 fernando
        byte[] getPixel(int x, int y, byte[] dArray);
90

91 567 luisw
        / **
92 302 fernando
         * Obtiene el valor que el raster tiene en la posici?n x, y del bitmap
93
         * @see com.iver.cit.gvsig.fmap.layers.RasterComplexOperations#getValueByCoords(int, int, int)
94 567 luisw
         * /
95 302 fernando
        int[] getPixel(int x, int y, int[] dArray);
96

97
        /**
98
         * Obtiene el valor que el raster tiene en la posici?n x, y del bitmap
99
         * @see com.iver.cit.gvsig.fmap.layers.RasterComplexOperations#getValueByCoords(int, int, int)
100 518 luisw
         * /
101 302 fernando
        float[] getPixel(int x, int y, float[] dArray);
102

103
        /**
104
         * Obtiene el valor que el raster tiene en la posici?n x, y del mundo real para la banda que se pasa como par?metro
105
         * @see com.iver.cit.gvsig.fmap.layers.RasterComplexOperations#getValueByCoords(int, int, int)
106 518 luisw
         * /
107
        double[] getPixel(int x, int y, double[] dArray);
108
        */
109
110
        /**
111
         * Devuelve el tipo de datos del raster
112
         * @see java.awt.image.DataBuffer
113 302 fernando
         */
114 567 luisw
        public int getRasterDataType();
115 302 fernando
116
    /**
117
     * Obtiene una muestra del pixel que se pasa como par?metro en la banda que se pasa como par?metro
118
     */
119 567 luisw
        public Object getData(int x, int y, int band);
120 302 fernando
121
    /**
122
     * Obtiene una muestra del pixel que se pasa como par?metro en la banda que se pasa como par?metro
123
     */
124 567 luisw
        public int getDataAsInt(int x, int y, int band);
125 554 luisw
126
    /**
127
     * Obtiene una muestra del pixel que se pasa como par?metro en la banda que se pasa como par?metro
128
     */
129 567 luisw
        public byte getDataAsByte(int x, int y, int band);
130 302 fernando
131
    /**
132
     * Obtiene una muestra del pixel que se pasa como par?metro en la banda que se pasa como par?metro
133
     */
134 567 luisw
        public float getDataAsFloat(int x, int y, int band);
135 302 fernando
136
    /**
137 518 luisw
     * Obtiene una muestra el pixel que se pasa como par?metro en la banda que se pasa como par?metro
138 302 fernando
     */
139 567 luisw
        public double getDataAsDouble(int x, int y, int band);
140 659 luisw
141
        /**
142
         * Obtiene una imagen de tama?o especificado, de la zona (en
143
         * coordenadas de usuario) que se le pide.
144
         * @param size        Tama?o (en p?xeles de im?gen).
145
         * @param userSize Zona especificada (en coordenadas de usuario).
146
         * @param rp Reproyecci?n.
147
         * @return La imagen.
148
         */
149
        public Image getImage(Dimension size, Rectangle2D userSize, ICoordTrans rp);
150
151 302 fernando
}