Revision 20999 trunk/extensions/extRasterTools-SE/src/org/gvsig/fmap/raster/layers/FLyrRasterSE.java

View differences:

FLyrRasterSE.java
1399 1399
	 * (non-Javadoc)
1400 1400
	 * @see org.gvsig.raster.shared.IRasterOperations#getColourInterpretation(int, int)
1401 1401
	 */
1402
	public String getColourInterpretation(int band, int dataset) {
1403
		if (this.dataset.getColorInterpretation(dataset) == null)
1402
	public String getColorInterpretation(int band, int dataset) {
1403
		if (this.dataset.getDataset(dataset)[0].getColorInterpretation().get(band) == null)
1404 1404
			return "Undefined";
1405
		return this.dataset.getColorInterpretation(dataset).get(band);
1405
		return this.dataset.getDataset(dataset)[0].getColorInterpretation().get(band);
1406 1406
	}
1407 1407

  
1408 1408
	/*

Also available in: Unified diff