/usr/share/saods9/src/envi.tcl is in saods9-data 7.3.2+repack-1.
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 | # Copyright (C) 1999-2014
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc ImportENVIFile {hdr fn} {
global loadParam
set loadParam(file,type) envi
set loadParam(file,mode) {}
set loadParam(load,type) smmap
set loadParam(file,name) $fn
set loadParam(file,header) $hdr
set loadParam(load,layer) {}
ProcessLoad
}
proc ExportENVIFile {hdr fn opt} {
global current
if {$fn == {} || $current(frame) == {}} {
return
}
if {![$current(frame) has fits]} {
return
}
$current(frame) save envi file "\{$hdr\}" "\{$fn\}" $opt
}
proc ProcessENVICmd {varname iname sock fn} {
upvar $varname var
upvar $iname i
global loadParam
global current
set layer {}
switch -- [string tolower [lindex $var $i]] {
new {
incr i
CreateFrame
}
mask {
incr i
# not supported
}
slice {
incr i
# not supported
}
}
StartLoad
if {$sock != {}} {
# xpa
if {0} {
# not supported
} else {
set fn [lindex $var $i]
set fn2 [lindex $var [expr $i+1]]
if {$fn2 == {}} {
set fn2 [FindENVIDataFile $fn]
}
ImportENVIFile $fn $fn2
}
} else {
# comm
if {0} {
# not supported
} else {
set fn [lindex $var $i]
set fn2 [lindex $var [expr $i+1]]
if {$fn2 == {}} {
set fn2 [FindENVIDataFile $fn]
}
ImportENVIFile $fn $fn2
}
}
FinishLoad
}
proc FindENVIDataFile {fn} {
set rn [file rootname $fn]
foreach ff {{bil} {bip} {bsq} {raw} {cube}} {
set fn2 "$rn.$ff"
if {[file exists $fn2]} {
return $fn2
}
}
return {}
}
|