Statistics
| Revision:

gvsig-raster / org.gvsig.raster / trunk / org.gvsig.raster / org.gvsig.raster.lib / org.gvsig.raster.lib.api / src / main / java / org / gvsig / fmap / dal / coverage / store / ListRasterStore.java @ 186

History | View | Annotate | Download (1.63 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22
package org.gvsig.fmap.dal.coverage.store;
23

    
24

    
25

    
26

    
27
/**
28
 * Esta interfaz est? compuestas de multiples datasets formando una rejilla de NxM
29
 * rasters. Un cliente de esta clase debe tener una visi?n de la rejilla como si
30
 * fuese un solo raster, gestionando esta el acceso la imagen que corresponda en
31
 * cada petici?n de usuario.
32
 *
33
 * @author Nacho Brodin (nachobrodin@gmail.com)
34
 */
35
public interface ListRasterStore extends RasterDataStore {
36
        
37
        /**
38
         * Gets the RasterDataStore in the position i
39
         * @param i
40
         * @return
41
         */
42
        public RasterDataStore getTile(int i);
43
        
44
        /**
45
         * Gets the number of tiles
46
         * @return
47
         */
48
        public int getNumberOfTiles();
49
        
50
        /**
51
         * Add a new tile to the list
52
         * @param store
53
         */
54
        public void addTile(RasterDataStore store);
55
        
56
}