org.opengis.style.ChannelSelection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-opengis Show documentation
Show all versions of gt-opengis Show documentation
Standard interfaces implemented throughout the library.
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2011, Open Source Geospatial Foundation (OSGeo)
* (C) 2008, Open Geospatial Consortium Inc.
*
* All Rights Reserved. http://www.opengis.org/legal/
*/
package org.opengis.style;
import org.opengis.annotation.Extension;
import org.opengis.annotation.XmlElement;
/**
* The ChannelSelection element specifies the false-color channel selection for a multi-spectral
* raster source (such as a multi-band satellite-imagery source).
*
* @version Symbology Encoding
* Implementation Specification 1.1.0
* @author Open Geospatial Consortium
* @author Ian Turton, CCG
* @author Johann Sorel (Geomatys)
* @since GeoAPI 2.2
*/
@XmlElement("ChannelSelection")
public interface ChannelSelection {
/**
* get the RGB channels to be used
*
* @return array of channels in RGB order
*/
@XmlElement("RGB Channels")
SelectedChannelType[] getRGBChannels();
/**
* Get the gray channel to be used
*
* @return the gray channel
*/
@XmlElement("GrayChannel")
SelectedChannelType getGrayChannel();
/**
* calls the visit method of a StyleVisitor
*
* @param visitor the style visitor
*/
@Extension
Object accept(StyleVisitor visitor, Object extraData);
}