summaryrefslogtreecommitdiffstats
path: root/ds9/library/mosaic.tcl
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 19:01:15 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 19:01:15 (GMT)
commit12166aa342f7c8d905097e43a1f50e0775503069 (patch)
tree73a6e7296fbf9898633a02c2503a3e959789d8c3 /ds9/library/mosaic.tcl
parentd4d595fa7fb12903db9227d33d48b2b00120dbd1 (diff)
downloadblt-12166aa342f7c8d905097e43a1f50e0775503069.zip
blt-12166aa342f7c8d905097e43a1f50e0775503069.tar.gz
blt-12166aa342f7c8d905097e43a1f50e0775503069.tar.bz2
Initial commit
Diffstat (limited to 'ds9/library/mosaic.tcl')
-rw-r--r--ds9/library/mosaic.tcl34
1 files changed, 34 insertions, 0 deletions
diff --git a/ds9/library/mosaic.tcl b/ds9/library/mosaic.tcl
new file mode 100644
index 0000000..cd9f57e
--- /dev/null
+++ b/ds9/library/mosaic.tcl
@@ -0,0 +1,34 @@
+# 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 ProcessMosaicCmd {varname iname sock fn} {
+ upvar $varname var
+ upvar $iname i
+
+ set vvar $var
+ set ii $i
+
+ switch -- [string tolower [lindex $var $i]] {
+ iraf {
+ incr ii
+ ProcessMosaicIRAFCmd vvar ii $sock $fn
+ }
+ wfpc2 {}
+ default {ProcessMosaicWCSCmd vvar ii $sock $fn}
+ }
+}
+
+proc ProcessSendMosaicCmd {proc id param sock fn} {
+ switch -- [string tolower [lindex $param 0]] {
+ iraf {}
+ wfpc2 {}
+ wcs {
+ set param [lindex $param 1 end]
+ ProcessSendMosaicWCSCmd $proc $id $param $sock $fn
+ }
+ default {ProcessSendMosaicWCSCmd $proc $id $param $sock $fn}
+ }
+}