blob: f460c51c5513403f53df4bfca843f946d7c5bbaf (
plain)
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
|
# Copyright (C) 1999-2016
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc LoadSRGBCubeFile {hdr fn} {
global loadParam
global current
switch -- [$current(frame) get type] {
base -
3d {
Error [msgcat::mc {Unable to load RGB image into a non-rgb frame}]
return
}
rgb {}
}
set loadParam(file,type) fits
set loadParam(file,mode) {rgb cube}
set loadParam(load,type) smmap
set loadParam(file,name) $fn
set loadParam(file,header) $hdr
# mask not supported
set loadParam(load,layer) {}
ProcessLoad
}
proc ProcessSRGBCubeCmd {varname iname sock fn} {
upvar $varname var
upvar $iname i
switch -- [string tolower [lindex $var $i]] {
new {
incr i
CreateRGBFrame
}
mask {
incr i
# not supported
}
slice {
incr i
# not supported
}
}
StartLoad
if {$sock != {}} {
# xpa
if {0} {
# not supported
} else {
LoadSRGBCubeFile [lindex $var $i] [lindex $var [expr $i+1]]
}
} else {
# comm
if {0} {
# not supported
} else {
LoadSRGBCubeFile [lindex $var $i] [lindex $var [expr $i+1]]
}
}
FinishLoad
}
|