Statistics
| Revision:

gvsig-raster / org.gvsig.raster.postgis / branches / org.gvsig.raster.postgis_dataaccess_refactoring / org.gvsig.raster.postgis.io / src / main / java / org / gvsig / raster / postgis / io / downloader / TileDownloaderForPostGISRaster.java @ 2289

History | View | Annotate | Download (595 Bytes)

1
package org.gvsig.raster.postgis.io.downloader;
2

    
3
import org.gvsig.fmap.dal.coverage.store.RasterDataStore;
4
import org.gvsig.raster.cache.tile.provider.CacheStruct;
5
import org.gvsig.raster.impl.provider.tile.TileDownloaderForFiles;
6

    
7
/** 
8
 * Tile getter for postGIS raster
9
 * @author Nacho Brodin (nachobrodin@gmail.com)
10
 */
11
public class TileDownloaderForPostGISRaster extends TileDownloaderForFiles {
12
        
13
        public TileDownloaderForPostGISRaster(RasterDataStore store,
14
                        CacheStruct struct,
15
                        int tilePxWidth,
16
                        int tilePxHeight) {
17
                super(store, struct, tilePxWidth, tilePxHeight, "tif");
18
        }
19
        
20
}