01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2005-2006, Geotools Project Managment Committee (PMC)
05: * (C) 2005, Institut de Recherche pour le Développement
06: *
07: * This library is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License as published by the Free Software Foundation; either
10: * version 2.1 of the License, or (at your option) any later version.
11: *
12: * This library is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: */
17: package org.geotools.coverage.grid;
18:
19: // Dependencies
20: import java.awt.image.RenderedImage;
21: import javax.media.jai.PropertySource;
22: import org.opengis.coverage.grid.GridCoverage;
23:
24: /**
25: * A grid coverage backed by a {@linkplain RenderedImage rendered image}.
26: *
27: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/coverage/src/main/java/org/geotools/coverage/grid/RenderedCoverage.java $
28: * @version $Id: RenderedCoverage.java 20970 2006-08-11 07:53:22Z jgarnett $
29: * @author Martin Desruisseaux
30: *
31: * @since 2.1
32: */
33: public interface RenderedCoverage extends GridCoverage, PropertySource {
34: /**
35: * Returns grid data as a rendered image.
36: */
37: RenderedImage getRenderedImage();
38: }
|