/usr/share/gnudatalanguage/coyote/cgtasseledcap.pro is in gdl-coyote 2016.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | ; docformat = 'rst'
;
; NAME:
; cgTasseledCap
;
; PURPOSE:
;
; This function returns an image transformed by tasseled cap coefficients. The number of
; bands returned depends on the shape of the tasseled cap coefficients, but at least three
; bands are always returned: brightness, greenness, and yellowness.
;******************************************************************************************;
; ;
; Copyright (c) 2012, by Fanning Software Consulting, Inc. All rights reserved. ;
; ;
; Redistribution and use in source and binary forms, with or without ;
; modification, are permitted provided that the following conditions are met: ;
; ;
; * Redistributions of source code must retain the above copyright ;
; notice, this list of conditions and the following disclaimer. ;
; * Redistributions in binary form must reproduce the above copyright ;
; notice, this list of conditions and the following disclaimer in the ;
; documentation and/or other materials provided with the distribution. ;
; * Neither the name of Fanning Software Consulting, Inc. nor the names of its ;
; contributors may be used to endorse or promote products derived from this ;
; software without specific prior written permission. ;
; ;
; THIS SOFTWARE IS PROVIDED BY FANNING SOFTWARE CONSULTING, INC. ''AS IS'' AND ANY ;
; EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ;
; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ;
; SHALL FANNING SOFTWARE CONSULTING, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, ;
; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED ;
; TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; ;
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;
;******************************************************************************************;
;
;+
; This function returns an image transformed by tasseled cap coefficients. The number of
; bands returned depends on the shape of the tasseled cap coefficients, but at least three
; bands are always returned: brightness, greenness, and yellowness.
;
; :Categories:
; Utility
;
; :Params:
; input: in, required, type=varies
; The input may be either an image to be transformed or the name of an image
; file that can be read with READ_IMAGE (e.g., a GeoTiff file).
;
; :Keywords:
; display: in, optional, type=boolean
; Set this keyword to display the brightness, greenness, and yellowness band in
; a display window.
; envi: in, optional, type=boolean
; Set this keyword to return the tasseled cap coeficients used by ENVI 4.8.
; These are reported (by ITTVIS) to be for LandSat-5 TM data, although others
; report these are in error for TM-5 data and really apply to TM-4 data.
; Reference: http://www.exelisvis.com/language/en-US/UserCommunity/UserForums/forumid/29/threadid/12985/scope/posts.aspx.
; etm: in, optional, type=boolean
; Set this keyword to return the tasseled cap coeficients proposed by the USGS for
; LandSat-7 ETM+ images. Note that these values should be applied to reflectances.
; Reference: http://landcover.usgs.gov/pdf/tasseled.pdf.
; imagine: in, optional, type=boolean
; Set this keyword to return the tasseled cap coeficients used by the ERDAS Imagine software
; for LandSat-5 data.
; ls4: in, optional, type=boolean
; Set this keyword to return the tasseled cap coeficients reported by Crist, Laurin and Cicone
; for LandSat-4 imagery. Reference: http://www.ciesin.org/docs/005-419/005-419.html.
; ls5: in, optional, type=boolean
; Set this keyword to return the tasseled cap coeficients reported by Crist, Laurin and Cicone
; for LandSat-5 imagery. Reference: http://www.ciesin.org/docs/005-419/005-419.html.
; mss: in, optional, type=boolean
; Set this keyword to return the tasseled cap coeficients originally reported by R.J Kauth and G.S. Thomas
; for MSS LandSat imagery. Reference: http://web.pdx.edu/~jduh/courses/Archive/geog481w07/Students/Marcello_TasselledCap.pdf.
; quickbird: in, optional, type=boolean
; Set this keyword to return the tasseled cap Graham-Schmidt coeficients reportedly used for Quickbird imagery.
; Reference: http://www.asprs.org/a/publications/proceedings/pecora16/Yarbrough_L.pdf
; tm: in, optional, type=boolean
; Set this keyword to return the tasseled cap coeficients originally proposed for TM imagery by Kauth and Thomas.
; Reference: http://web.pdx.edu/~jduh/courses/Archive/geog481w07/Students/Marcello_TasselledCap.pdf.
;
; :Examples:
; tasselImage = cgTasseledCap('landsatImageFile.tif', /TM, /Display)
;
; :Author:
; FANNING SOFTWARE CONSULTING::
; David W. Fanning
; 1645 Sheely Drive
; Fort Collins, CO 80526 USA
; Phone: 970-221-0438
; E-mail: david@idlcoyote.com
; Coyote's Guide to IDL Programming: http://www.idlcoyote.com
;
; :History:
; Written, 24 August 2012, by David W. Fanning.
; Fixed a dimension problem caused by forgetting a Transpose operation. 17 October 2012. DWF.
; Fixed a type problem with the ETM keyword. 19 October 2012. DWF.
;
; :Copyright:
; Copyright (c) 2012, Fanning Software Consulting, Inc.
;-
FUNCTION cgTasseledCap, input, $
DISPLAY=display, $
ENVI=envi, $
ETM=etm, $
IMAGINE=imagine, $
LS4=ls4, $
LS5=ls5, $
MSS=mss, $
QUICKBIRD=quickbird, $
TM=tm
Compile_Opt idl2
; Standard error handling.
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /CANCEL
void = cgErrorMsg()
IF (N_Elements(putback) NE 0) && putback THEN input = Temporary(image)
RETURN, input
ENDIF
; Must set a cgTasseledCapCoeffs
IF Total(Keyword_Set(envi) + Keyword_Set(etm) + Keyword_Set(imagine) + $
Keyword_Set(ls4) + Keyword_Set(ls5) + Keyword_Set(mss) + Keyword_Set(quickbird) + $
Keyword_Set(tm)) EQ 0 THEN Message, 'One of the Tasseled Cap Coefficient keywords must be set.'
; Is the input a filename or an actual image?
IF Size(input, /TNAME) EQ 'STRING' THEN BEGIN
rootName = cgRootName(input, DIRECTORY=filedir, EXTENSION=ext)
image = Read_Image(input)
putback = 0
ENDIF ELSE BEGIN
image = Temporary(input)
putback = 1
ENDELSE
; This MUST be a three-dimensional image.
IF Size(image, /N_DIMENSIONS) NE 3 THEN Message, 'The input image must have three dimensions.'
dims = Size(image, /DIMENSIONS)
bands = Min(dims, bandindex)
CASE bandindex OF
0:
1: image = Transpose(image, [1,0,2])
2: image = Transpose(image, [2,0,1])
ENDCASE
dims = Size(image, /DIMENSIONS)
tasseledImage = Reform(image, dims[0], dims[1]*dims[2])
xdim = dims[1]
ydim = dims[2]
; If this is a 7 band image, we need to eliminate band 6.
IF bands EQ 7 THEN BEGIN
tasseledImage = tasseledImage[[0,1,2,3,4,6], *]
bands = 6
ENDIF
; Get the coefficients.
coeffs = cgTasseledCapCoeffs( $
ENVI=envi, $
ETM=etm, $
IMAGINE=imagine, $
LS4=ls4, $
LS5=ls5, $
MSS=mss, $
QUICKBIRD=quickbird, $
TM=tm)
; Make sure the column dimension of the tasseledImage matches the row dimension of the coefficients.
; If it doesn't, just use the first X dimensions of the input image.
s = Size(coeffs, /DIMENSIONS)
row = s[1]
ncoeffs = s[0]
s = Size(tasseledImage, /DIMENSIONS)
col = s[0]
IF col NE row THEN tasseledImage = tasseledImage[Indgen(row), *]
; Perform the transform.
tasseledImage = Reform(tasseledImage ## coeffs, ncoeffs, xdim, ydim)
tasseledImage = Transpose(tasseledImage, [1,2,0])
; Add values to make all bands positive numbers.
FOR j=0,ncoeffs-1 DO BEGIN
temp = tasseledImage[*,*,j]
minVal = Min(temp)
IF minVal LT 0 THEN tasseledImage[*,*,j] = Temporary(temp) + Abs(minVal)
ENDFOR
; If this is a TIFF image, we need to reverse in Y.
IF N_Elements(ext) NE 0 THEN BEGIN
IF StrUpCase(ext) EQ 'TIF' THEN tasseledImage = Reverse(tasseledImage,2)
ENDIF
; Clean-up and return.
IF putback THEN input = Temporary(image)
IF Keyword_Set(display) THEN BEGIN
cgDisplay, 1200, 400, /Free, Title='Tasseled Cap Transformation'
!P.Multi=[0,3,1]
LoadCT, 0
FOR j=0,2 DO BEGIN
cgImage, tasseledImage[*,*,j], Stretch=2
ENDFOR
cgText, 0.05, 0.025, /Normal, Font=0, 'Brightness', Color='red'
cgText, 0.38, 0.025, /Normal, Font=0, 'Greeness', Color='red'
cgText, 0.71, 0.025, /Normal, Font=0, 'Yellowness', Color='red'
!P.Multi=0
ENDIF
RETURN, tasseledImage
END
|