-
Notifications
You must be signed in to change notification settings - Fork 0
/
velmaps-2015-10-16.bck
2929 lines (2926 loc) · 97 KB
/
velmaps-2015-10-16.bck
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
global ds9
set vv 7.3.2
# this is a check for to ensure a match between the
# current ds9 version matches the prefs version
switch -- [string compare $vv [lindex $ds9(version) 0]] {
-1 {
if {[tk_messageBox -type yesno -icon question -message [msgcat::mc {DS9 has detected an older backup file, do you wish to continue?}]] == {no}} {
return
}
}
0 {}
1 {
tk_messageBox -type ok -icon warning -message [msgcat::mc {DS9 has detected a newer version of a backup file and therefore will not process this file.}]
return
}
}
proc BackupFindFile {varname} {
upvar $varname var
set id [string first "\[" $var(file,name)]
if {$id > 0} {
set fn [string range $var(file,name) 0 [expr $id-1]]
set ext [string range $var(file,name) $id end]
} else {
set fn $var(file,name)
set ext {}
}
if {![file exists $fn]} {
Error "[msgcat::mc {Unable to load}] $fn"
global fitsfbox
set fn [OpenFileDialog fitsfbox]
if {$fn == {}} {
Error [msgcat::mc {An error has occurred during restore}]
return 0
}
if {![file exists $fn]} {
Error [msgcat::mc {An error has occurred during restore}]
return 0
}
set var(file,name) "$fn$ext"
}
return 1
}
panner compass 1
colorbar configure -size 20
colorbar configure -ticks 11
colorbar configure -numerics 1
colorbar configure -space 0
colorbar configure -orientation 0
colorbar configure -font helvetica
colorbar configure -fontsize 9
colorbar configure -fontweight normal
colorbar configure -fontslant roman
colorbar colorbar 1 0.5 1 0
colorbar tag "{}"
colorbarrgb configure -size 20
colorbarrgb configure -ticks 11
colorbarrgb configure -numerics 1
colorbarrgb configure -space 0
colorbarrgb configure -orientation 0
colorbarrgb configure -font helvetica
colorbarrgb configure -fontsize 9
colorbarrgb configure -fontweight normal
colorbarrgb configure -fontslant roman
colorbarrgb colorbar rgb 0.5 0.5 0.5 1 1 1 0
colorbarrgb tag "{}"
CreateNameNumberFrame Frame32 base
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/orionwest/Calibrated/BGsub/2010-01-236-nii.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame32 magnifier graphics 1
Frame32 magnifier cursor 1
Frame32 magnifier zoom 4
Frame32 magnifier color white
Frame32 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbar get colorbar]
colorbar colorbar 1 0.5 1 0
Frame32 colormap [colorbar get colormap]
colorbar colorbar $sav
Frame32 bg color black
Frame32 nan color #332244
Frame32 rgb channel red
Frame32 rgb view 1 1 1
Frame32 rgb system image
Frame32 3d view 0 0
Frame32 3d scale 1
Frame32 3d method mip
Frame32 3d highlite 1
Frame32 3d border 1
Frame32 3d background none
Frame32 bin factor to 1 1
Frame32 bin depth 1
Frame32 bin filter {""}
Frame32 bin buffer size 1024
Frame32 bin about 0 0
Frame32 bin function sum
Frame32 colorscale sqrt
Frame32 colorscale log 1000
Frame32 datasec 1
Frame32 clip user -0.0001 0.05
Frame32 clip mode user
Frame32 clip scope local
Frame32 clip minmax mode auto
Frame32 clip minmax sample 25
Frame32 clip zscale contrast 0.25
Frame32 clip zscale sample 600
Frame32 clip zscale line 120
Frame32 pan preserve 0
Frame32 pan to physical -147968.14 -5.433375
Frame32 3d view point 0 0 0 0 0
Frame32 zoom to 267.09656 6085.6365
Frame32 rotate to 0
Frame32 orient none
Frame32 wcs align 1
Frame32 marker load ds9 {"./velmaps-2015-10-16.bck.dir/Frame32/ds9.reg"}
Frame32 marker centroid radius 10
Frame32 marker centroid iteration 30
Frame32 wcs wcs fk5 sexagesimal
Frame32 mask color red
Frame32 mask mark 1
Frame32 mask transparency 0
Frame32 contour create blue 1 0 block 7 2 sqrt 1000 user -0.0001 0.05 {"0.01 0.0113622 0.01567 0.0292923 0.07237 0.208593 0.63937"}
CreateNameNumberFrame Frame8 base
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Work/OrionTreasury/wfi/Orion_H_B_deep.fits load,layer {} file,type fits load,type mmapincr]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame8 magnifier graphics 1
Frame8 magnifier cursor 1
Frame8 magnifier zoom 4
Frame8 magnifier color white
Frame8 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbar get colorbar]
colorbar colorbar 1 0.5 1 0
Frame8 colormap [colorbar get colormap]
colorbar colorbar $sav
Frame8 bg color black
Frame8 nan color #332244
Frame8 rgb channel red
Frame8 rgb view 1 1 1
Frame8 rgb system image
Frame8 3d view 0 0
Frame8 3d scale 1
Frame8 3d method mip
Frame8 3d highlite 1
Frame8 3d border 1
Frame8 3d background none
Frame8 bin factor to 1 1
Frame8 bin depth 1
Frame8 bin filter {""}
Frame8 bin buffer size 1024
Frame8 bin about 0 0
Frame8 bin function sum
Frame8 colorscale sqrt
Frame8 colorscale log 1000
Frame8 datasec 1
Frame8 clip user 2 62.01652
Frame8 clip mode user
Frame8 clip scope local
Frame8 clip minmax mode auto
Frame8 clip minmax sample 25
Frame8 clip zscale contrast 0.25
Frame8 clip zscale sample 600
Frame8 clip zscale line 120
Frame8 pan preserve 0
Frame8 pan to physical 5448.8954 4553.9764
Frame8 3d view point 0 0 0 0 0
Frame8 zoom to 0.40232806 0.40232806
Frame8 rotate to 0
Frame8 orient none
Frame8 wcs align 1
Frame8 marker centroid radius 10
Frame8 marker centroid iteration 30
Frame8 wcs wcs fk5 sexagesimal
Frame8 mask color red
Frame8 mask mark 1
Frame8 mask transparency 0
CreateNameNumberFrame Frame1 base
global loadParam
array set loadParam [list file,mode {} file,name {/Users/will/Dropbox/OrionWest/new-slits-ha-allvels.fits[3]} load,layer {} file,type fits load,type mmapincr socket,id 29]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame1 magnifier graphics 1
Frame1 magnifier cursor 1
Frame1 magnifier zoom 4
Frame1 magnifier color white
Frame1 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbar get colorbar]
colorbar colorbar 1 0.5 1 0
Frame1 colormap [colorbar get colormap]
colorbar colorbar $sav
Frame1 bg color black
Frame1 nan color #332244
Frame1 rgb channel red
Frame1 rgb view 1 1 1
Frame1 rgb system image
Frame1 3d view 0 0
Frame1 3d scale 1
Frame1 3d method mip
Frame1 3d highlite 1
Frame1 3d border 1
Frame1 3d background none
Frame1 bin factor to 1 1
Frame1 bin depth 1
Frame1 bin filter {""}
Frame1 bin buffer size 1024
Frame1 bin about 0 0
Frame1 bin function sum
Frame1 colorscale linear
Frame1 colorscale log 1000
Frame1 datasec 1
Frame1 clip user 0 30
Frame1 clip mode user
Frame1 clip scope local
Frame1 clip minmax mode auto
Frame1 clip minmax sample 25
Frame1 clip zscale contrast 0.25
Frame1 clip zscale sample 600
Frame1 clip zscale line 120
Frame1 pan preserve 0
Frame1 pan to physical 1069.0004 992.99999
Frame1 3d view point 0 0 0 0 0
Frame1 zoom to 0.84522729 0.84522729
Frame1 rotate to 0
Frame1 orient none
Frame1 wcs align 1
Frame1 marker centroid radius 10
Frame1 marker centroid iteration 30
Frame1 wcs wcs fk5 sexagesimal
Frame1 mask color red
Frame1 mask mark 1
Frame1 mask transparency 0
CreateNameNumberFrame Frame2 base
global loadParam
array set loadParam [list file,mode {} file,name {/Users/will/Dropbox/OrionWest/new-slits-nii-allvels.fits[3]} load,layer {} file,type fits load,type mmapincr socket,id 29]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame2 magnifier graphics 1
Frame2 magnifier cursor 1
Frame2 magnifier zoom 4
Frame2 magnifier color white
Frame2 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbar get colorbar]
colorbar colorbar 1 0.5 1 0
Frame2 colormap [colorbar get colormap]
colorbar colorbar $sav
Frame2 bg color black
Frame2 nan color #332244
Frame2 rgb channel red
Frame2 rgb view 1 1 1
Frame2 rgb system image
Frame2 3d view 0 0
Frame2 3d scale 1
Frame2 3d method mip
Frame2 3d highlite 1
Frame2 3d border 1
Frame2 3d background none
Frame2 bin factor to 1 1
Frame2 bin depth 1
Frame2 bin filter {""}
Frame2 bin buffer size 1024
Frame2 bin about 0 0
Frame2 bin function sum
Frame2 colorscale linear
Frame2 colorscale log 1000
Frame2 datasec 1
Frame2 clip user 0 7
Frame2 clip mode user
Frame2 clip scope local
Frame2 clip minmax mode auto
Frame2 clip minmax sample 25
Frame2 clip zscale contrast 0.25
Frame2 clip zscale sample 600
Frame2 clip zscale line 120
Frame2 pan preserve 0
Frame2 pan to physical 1069.0004 992.99999
Frame2 3d view point 0 0 0 0 0
Frame2 zoom to 0.84522729 0.84522729
Frame2 rotate to 0
Frame2 orient none
Frame2 wcs align 1
Frame2 marker centroid radius 10
Frame2 marker centroid iteration 30
Frame2 wcs wcs fk5 sexagesimal
Frame2 mask color red
Frame2 mask mark 1
Frame2 mask transparency 0
CreateNameNumberFrame Frame3 base
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-over-ha-allvels.fits load,layer {} file,type fits load,type mmapincr socket,id 29]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame3 magnifier graphics 1
Frame3 magnifier cursor 1
Frame3 magnifier zoom 4
Frame3 magnifier color white
Frame3 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbar get colorbar]
colorbar colorbar 1 0.5 1 0
Frame3 colormap [colorbar get colormap]
colorbar colorbar $sav
Frame3 bg color black
Frame3 nan color #332244
Frame3 rgb channel red
Frame3 rgb view 1 1 1
Frame3 rgb system image
Frame3 3d view 0 0
Frame3 3d scale 1
Frame3 3d method mip
Frame3 3d highlite 1
Frame3 3d border 1
Frame3 3d background none
Frame3 bin factor to 1 1
Frame3 bin depth 1
Frame3 bin filter {""}
Frame3 bin buffer size 1024
Frame3 bin about 0 0
Frame3 bin function sum
Frame3 colorscale squared
Frame3 colorscale log 1000
Frame3 datasec 1
Frame3 clip user 0 0.5
Frame3 clip mode user
Frame3 clip scope local
Frame3 clip minmax mode auto
Frame3 clip minmax sample 25
Frame3 clip zscale contrast 0.25
Frame3 clip zscale sample 600
Frame3 clip zscale line 120
Frame3 pan preserve 0
Frame3 pan to physical 1069.0004 992.99999
Frame3 3d view point 0 0 0 0 0
Frame3 zoom to 0.84522729 0.84522729
Frame3 rotate to 0
Frame3 orient none
Frame3 wcs align 1
Frame3 marker centroid radius 10
Frame3 marker centroid iteration 30
Frame3 wcs wcs fk5 sexagesimal
Frame3 mask color red
Frame3 mask mark 1
Frame3 mask transparency 0
CreateNameNumberFrame Frame4 base
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-plus-ha-allvels.fits load,layer {} file,type fits load,type mmapincr socket,id 29]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame4 magnifier graphics 1
Frame4 magnifier cursor 1
Frame4 magnifier zoom 4
Frame4 magnifier color white
Frame4 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbar get colorbar]
colorbar colorbar 7 0.5 1 0
Frame4 colormap [colorbar get colormap]
colorbar colorbar $sav
Frame4 bg color black
Frame4 nan color #332244
Frame4 rgb channel red
Frame4 rgb view 1 1 1
Frame4 rgb system image
Frame4 3d view 0 0
Frame4 3d scale 1
Frame4 3d method mip
Frame4 3d highlite 1
Frame4 3d border 1
Frame4 3d background none
Frame4 bin factor to 1 1
Frame4 bin depth 1
Frame4 bin filter {""}
Frame4 bin buffer size 1024
Frame4 bin about 0 0
Frame4 bin function sum
Frame4 colorscale sqrt
Frame4 colorscale log 1000
Frame4 datasec 1
Frame4 clip user 4 50
Frame4 clip mode user
Frame4 clip scope local
Frame4 clip minmax mode auto
Frame4 clip minmax sample 25
Frame4 clip zscale contrast 0.25
Frame4 clip zscale sample 600
Frame4 clip zscale line 120
Frame4 pan preserve 0
Frame4 pan to physical 1069.0004 992.99999
Frame4 3d view point 0 0 0 0 0
Frame4 zoom to 0.84522729 0.84522729
Frame4 rotate to 0
Frame4 orient none
Frame4 wcs align 1
Frame4 marker load ds9 {"./velmaps-2015-10-16.bck.dir/Frame4/ds9.reg"}
Frame4 marker centroid radius 10
Frame4 marker centroid iteration 30
Frame4 wcs wcs fk5 sexagesimal
Frame4 mask color red
Frame4 mask mark 1
Frame4 mask transparency 0
CreateNameNumberFrame Frame6 base
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-ha-allvels-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame6 magnifier graphics 1
Frame6 magnifier cursor 1
Frame6 magnifier zoom 4
Frame6 magnifier color white
Frame6 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbar get colorbar]
colorbar colorbar 1 0.5 1 0
Frame6 colormap [colorbar get colormap]
colorbar colorbar $sav
Frame6 bg color black
Frame6 nan color #332244
Frame6 rgb channel red
Frame6 rgb view 1 1 1
Frame6 rgb system image
Frame6 3d view 0 0
Frame6 3d scale 1
Frame6 3d method mip
Frame6 3d highlite 1
Frame6 3d border 1
Frame6 3d background none
Frame6 bin factor to 1 1
Frame6 bin depth 1
Frame6 bin filter {""}
Frame6 bin buffer size 1024
Frame6 bin about 0 0
Frame6 bin function sum
Frame6 colorscale sqrt
Frame6 colorscale log 1000
Frame6 datasec 1
Frame6 clip user 2.2 40
Frame6 clip mode user
Frame6 clip scope local
Frame6 clip minmax mode auto
Frame6 clip minmax sample 25
Frame6 clip zscale contrast 0.25
Frame6 clip zscale sample 600
Frame6 clip zscale line 120
Frame6 pan preserve 0
Frame6 pan to physical 1069.0004 992.99999
Frame6 3d view point 0 0 0 0 0
Frame6 zoom to 0.84522729 0.84522729
Frame6 rotate to 0
Frame6 orient none
Frame6 wcs align 1
Frame6 marker centroid radius 10
Frame6 marker centroid iteration 30
Frame6 wcs wcs fk5 sexagesimal
Frame6 mask color red
Frame6 mask mark 1
Frame6 mask transparency 0
CreateNameNumberFrame Frame7 base
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-allvels-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame7 magnifier graphics 1
Frame7 magnifier cursor 1
Frame7 magnifier zoom 4
Frame7 magnifier color white
Frame7 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbar get colorbar]
colorbar colorbar 1 0.5 1 0
Frame7 colormap [colorbar get colormap]
colorbar colorbar $sav
Frame7 bg color black
Frame7 nan color #332244
Frame7 rgb channel red
Frame7 rgb view 1 1 1
Frame7 rgb system image
Frame7 3d view 0 0
Frame7 3d scale 1
Frame7 3d method mip
Frame7 3d highlite 1
Frame7 3d border 1
Frame7 3d background none
Frame7 bin factor to 1 1
Frame7 bin depth 1
Frame7 bin filter {""}
Frame7 bin buffer size 1024
Frame7 bin about 0 0
Frame7 bin function sum
Frame7 colorscale sqrt
Frame7 colorscale log 1000
Frame7 datasec 1
Frame7 clip user 0.7 9
Frame7 clip mode user
Frame7 clip scope local
Frame7 clip minmax mode auto
Frame7 clip minmax sample 25
Frame7 clip zscale contrast 0.25
Frame7 clip zscale sample 600
Frame7 clip zscale line 120
Frame7 pan preserve 0
Frame7 pan to physical 1069.0004 992.99999
Frame7 3d view point 0 0 0 0 0
Frame7 zoom to 0.84522729 0.84522729
Frame7 rotate to 0
Frame7 orient none
Frame7 wcs align 1
Frame7 marker centroid radius 10
Frame7 marker centroid iteration 30
Frame7 wcs wcs fk5 sexagesimal
Frame7 mask color red
Frame7 mask mark 1
Frame7 mask transparency 0
CreateNameNumberFrame Frame10 rgb
Frame10 rgb channel red
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/orionwest/new-slits-ha+030+050-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame10 rgb channel green
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/orionwest/new-slits-ha+010+030-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame10 rgb channel blue
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/orionwest/new-slits-ha-010+010-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
RGBDialog
Frame10 magnifier graphics 1
Frame10 magnifier cursor 1
Frame10 magnifier zoom 4
Frame10 magnifier color white
Frame10 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbarrgb get colorbar]
colorbarrgb colorbar rgb 0.500000 0.500000 0.500000 1.000000 1.000000 1.000000 0
Frame10 colormap [colorbarrgb get colormap]
colorbarrgb colorbar $sav
Frame10 bg color black
Frame10 nan color #332244
Frame10 rgb channel red
Frame10 rgb channel green
Frame10 rgb channel blue
Frame10 rgb channel red
Frame10 rgb channel red
Frame10 rgb view 1 1 1
Frame10 rgb system wcs
Frame10 3d view 0 0
Frame10 3d scale 1
Frame10 3d method mip
Frame10 3d highlite 1
Frame10 3d border 1
Frame10 3d background none
Frame10 rgb channel red
Frame10 bin factor to 1 1
Frame10 bin depth 1
Frame10 bin filter {""}
Frame10 bin buffer size 1024
Frame10 bin about 0 0
Frame10 bin function sum
Frame10 rgb channel green
Frame10 bin factor to 1 1
Frame10 bin depth 1
Frame10 bin filter {""}
Frame10 bin buffer size 1024
Frame10 bin about 0 0
Frame10 bin function sum
Frame10 rgb channel blue
Frame10 bin factor to 1 1
Frame10 bin depth 1
Frame10 bin filter {""}
Frame10 bin buffer size 1024
Frame10 bin about 0 0
Frame10 bin function sum
Frame10 rgb channel red
Frame10 rgb channel red
Frame10 colorscale linear
Frame10 colorscale log 1000
Frame10 datasec 1
Frame10 clip user 0.5 2.3659673
Frame10 clip mode user
Frame10 clip scope local
Frame10 clip minmax mode auto
Frame10 clip minmax sample 25
Frame10 clip zscale contrast 0.25
Frame10 clip zscale sample 600
Frame10 clip zscale line 120
Frame10 rgb channel green
Frame10 colorscale linear
Frame10 colorscale log 1000
Frame10 datasec 1
Frame10 clip user 1 6.4149385
Frame10 clip mode user
Frame10 clip scope local
Frame10 clip minmax mode auto
Frame10 clip minmax sample 25
Frame10 clip zscale contrast 0.25
Frame10 clip zscale sample 600
Frame10 clip zscale line 120
Frame10 rgb channel blue
Frame10 colorscale linear
Frame10 colorscale log 1000
Frame10 datasec 1
Frame10 clip user 0.4 3.9079967
Frame10 clip mode user
Frame10 clip scope local
Frame10 clip minmax mode auto
Frame10 clip minmax sample 25
Frame10 clip zscale contrast 0.25
Frame10 clip zscale sample 600
Frame10 clip zscale line 120
Frame10 rgb channel red
Frame10 pan preserve 0
Frame10 pan to physical 1069.0004 992.99999
Frame10 3d view point 0 0 0 0 0
Frame10 zoom to 0.84522729 0.84522729
Frame10 rotate to 0
Frame10 orient none
Frame10 wcs align 1
Frame10 rgb channel red
Frame10 rgb channel green
Frame10 rgb channel blue
Frame10 rgb channel red
Frame10 marker load ds9 {"./velmaps-2015-10-16.bck.dir/Frame10/ds9.reg"}
Frame10 marker centroid radius 10
Frame10 marker centroid iteration 30
Frame10 wcs wcs fk5 sexagesimal
Frame10 mask color red
Frame10 mask mark 1
Frame10 mask transparency 0
Frame10 rgb channel red
Frame10 rgb channel green
Frame10 rgb channel blue
Frame10 rgb channel red
Frame10 rgb channel red
Frame10 rgb channel green
Frame10 rgb channel blue
Frame10 rgb channel red
CreateNameNumberFrame Frame12 rgb
Frame12 rgb channel red
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-ha+000+060-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame12 rgb channel green
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-ha-060+000-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame12 rgb channel blue
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-ha-120-060-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
RGBDialog
Frame12 magnifier graphics 1
Frame12 magnifier cursor 1
Frame12 magnifier zoom 4
Frame12 magnifier color white
Frame12 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbarrgb get colorbar]
colorbarrgb colorbar rgb 0.500000 0.500000 0.500000 1.000000 1.000000 1.000000 0
Frame12 colormap [colorbarrgb get colormap]
colorbarrgb colorbar $sav
Frame12 bg color black
Frame12 nan color #332244
Frame12 rgb channel red
Frame12 rgb channel green
Frame12 rgb channel blue
Frame12 rgb channel red
Frame12 rgb channel red
Frame12 rgb view 1 1 1
Frame12 rgb system wcs
Frame12 3d view 0 0
Frame12 3d scale 1
Frame12 3d method mip
Frame12 3d highlite 1
Frame12 3d border 1
Frame12 3d background none
Frame12 rgb channel red
Frame12 bin factor to 1 1
Frame12 bin depth 1
Frame12 bin filter {""}
Frame12 bin buffer size 1024
Frame12 bin about 0 0
Frame12 bin function sum
Frame12 rgb channel green
Frame12 bin factor to 1 1
Frame12 bin depth 1
Frame12 bin filter {""}
Frame12 bin buffer size 1024
Frame12 bin about 0 0
Frame12 bin function sum
Frame12 rgb channel blue
Frame12 bin factor to 1 1
Frame12 bin depth 1
Frame12 bin filter {""}
Frame12 bin buffer size 1024
Frame12 bin about 0 0
Frame12 bin function sum
Frame12 rgb channel red
Frame12 rgb channel red
Frame12 colorscale sqrt
Frame12 colorscale log 1000
Frame12 datasec 1
Frame12 clip user 2 16.811866
Frame12 clip mode user
Frame12 clip scope local
Frame12 clip minmax mode auto
Frame12 clip minmax sample 25
Frame12 clip zscale contrast 0.25
Frame12 clip zscale sample 600
Frame12 clip zscale line 120
Frame12 rgb channel green
Frame12 colorscale sqrt
Frame12 colorscale log 1000
Frame12 datasec 1
Frame12 clip user 0.1 3.9137589
Frame12 clip mode user
Frame12 clip scope local
Frame12 clip minmax mode auto
Frame12 clip minmax sample 25
Frame12 clip zscale contrast 0.25
Frame12 clip zscale sample 600
Frame12 clip zscale line 120
Frame12 rgb channel blue
Frame12 colorscale sqrt
Frame12 colorscale log 1000
Frame12 datasec 1
Frame12 clip user 0.001 0.27835156
Frame12 clip mode user
Frame12 clip scope local
Frame12 clip minmax mode auto
Frame12 clip minmax sample 25
Frame12 clip zscale contrast 0.25
Frame12 clip zscale sample 600
Frame12 clip zscale line 120
Frame12 rgb channel red
Frame12 pan preserve 0
Frame12 pan to physical 1069.0004 992.99999
Frame12 3d view point 0 0 0 0 0
Frame12 zoom to 0.84522729 0.84522729
Frame12 rotate to 0
Frame12 orient none
Frame12 wcs align 1
Frame12 rgb channel red
Frame12 rgb channel green
Frame12 rgb channel blue
Frame12 rgb channel red
Frame12 marker centroid radius 10
Frame12 marker centroid iteration 30
Frame12 wcs wcs fk5 sexagesimal
Frame12 mask color red
Frame12 mask mark 1
Frame12 mask transparency 0
Frame12 rgb channel red
Frame12 rgb channel green
Frame12 rgb channel blue
Frame12 rgb channel red
Frame12 rgb channel red
Frame12 rgb channel green
Frame12 rgb channel blue
Frame12 rgb channel red
CreateNameNumberFrame Frame15 rgb
Frame15 rgb channel red
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-030-010-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame15 rgb channel green
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-050-030-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame15 rgb channel blue
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-070-050-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
RGBDialog
Frame15 magnifier graphics 1
Frame15 magnifier cursor 1
Frame15 magnifier zoom 4
Frame15 magnifier color white
Frame15 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbarrgb get colorbar]
colorbarrgb colorbar rgb 0.500000 0.500000 0.500000 1.000000 1.000000 1.000000 0
Frame15 colormap [colorbarrgb get colormap]
colorbarrgb colorbar $sav
Frame15 bg color black
Frame15 nan color #332244
Frame15 rgb channel red
Frame15 rgb channel green
Frame15 rgb channel blue
Frame15 rgb channel red
Frame15 rgb channel red
Frame15 rgb view 1 1 1
Frame15 rgb system wcs
Frame15 3d view 0 0
Frame15 3d scale 1
Frame15 3d method mip
Frame15 3d highlite 1
Frame15 3d border 1
Frame15 3d background none
Frame15 rgb channel red
Frame15 bin factor to 1 1
Frame15 bin depth 1
Frame15 bin filter {""}
Frame15 bin buffer size 1024
Frame15 bin about 0 0
Frame15 bin function sum
Frame15 rgb channel green
Frame15 bin factor to 1 1
Frame15 bin depth 1
Frame15 bin filter {""}
Frame15 bin buffer size 1024
Frame15 bin about 0 0
Frame15 bin function sum
Frame15 rgb channel blue
Frame15 bin factor to 1 1
Frame15 bin depth 1
Frame15 bin filter {""}
Frame15 bin buffer size 1024
Frame15 bin about 0 0
Frame15 bin function sum
Frame15 rgb channel red
Frame15 rgb channel red
Frame15 colorscale sqrt
Frame15 colorscale log 1000
Frame15 datasec 1
Frame15 clip user 0.01 0.48557838
Frame15 clip mode user
Frame15 clip scope local
Frame15 clip minmax mode auto
Frame15 clip minmax sample 25
Frame15 clip zscale contrast 0.25
Frame15 clip zscale sample 600
Frame15 clip zscale line 120
Frame15 rgb channel green
Frame15 colorscale sqrt
Frame15 colorscale log 1000
Frame15 datasec 1
Frame15 clip user 0.003 0.15
Frame15 clip mode user
Frame15 clip scope local
Frame15 clip minmax mode auto
Frame15 clip minmax sample 25
Frame15 clip zscale contrast 0.25
Frame15 clip zscale sample 600
Frame15 clip zscale line 120
Frame15 rgb channel blue
Frame15 colorscale sqrt
Frame15 colorscale log 1000
Frame15 datasec 1
Frame15 clip user 0.003 0.2
Frame15 clip mode user
Frame15 clip scope local
Frame15 clip minmax mode auto
Frame15 clip minmax sample 25
Frame15 clip zscale contrast 0.25
Frame15 clip zscale sample 600
Frame15 clip zscale line 120
Frame15 rgb channel red
Frame15 pan preserve 0
Frame15 pan to physical 1069.0004 992.99999
Frame15 3d view point 0 0 0 0 0
Frame15 zoom to 0.84522729 0.84522729
Frame15 rotate to 0
Frame15 orient none
Frame15 wcs align 1
Frame15 rgb channel red
Frame15 rgb channel green
Frame15 rgb channel blue
Frame15 rgb channel red
Frame15 marker centroid radius 10
Frame15 marker centroid iteration 30
Frame15 wcs wcs fk5 sexagesimal
Frame15 mask color red
Frame15 mask mark 1
Frame15 mask transparency 0
Frame15 rgb channel red
Frame15 rgb channel green
Frame15 rgb channel blue
Frame15 rgb channel red
Frame15 rgb channel red
Frame15 rgb channel green
Frame15 rgb channel blue
Frame15 rgb channel red
CreateNameNumberFrame Frame16 rgb
Frame16 rgb channel red
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-070-050-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame16 rgb channel green
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-090-070-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
Frame16 rgb channel blue
global loadParam
array set loadParam [list file,mode {} file,name /Users/will/Dropbox/OrionWest/new-slits-nii-110-090-multibin.fits load,layer {} file,type fits load,type mmapincr socket,id 30]
if [BackupFindFile loadParam] {
ProcessLoad
}
RGBDialog
Frame16 magnifier graphics 1
Frame16 magnifier cursor 1
Frame16 magnifier zoom 4
Frame16 magnifier color white
Frame16 colorbar tag "{}"
colorbar tag "{}"
set sav [colorbarrgb get colorbar]
colorbarrgb colorbar rgb 0.500000 0.500000 0.500000 1.000000 1.000000 1.000000 0
Frame16 colormap [colorbarrgb get colormap]
colorbarrgb colorbar $sav
Frame16 bg color black
Frame16 nan color #332244
Frame16 rgb channel red
Frame16 rgb channel green
Frame16 rgb channel blue
Frame16 rgb channel red
Frame16 rgb channel red
Frame16 rgb view 1 1 1
Frame16 rgb system wcs
Frame16 3d view 0 0
Frame16 3d scale 1
Frame16 3d method mip
Frame16 3d highlite 1
Frame16 3d border 1
Frame16 3d background none
Frame16 rgb channel red
Frame16 bin factor to 1 1
Frame16 bin depth 1
Frame16 bin filter {""}
Frame16 bin buffer size 1024
Frame16 bin about 0 0
Frame16 bin function sum
Frame16 rgb channel green
Frame16 bin factor to 1 1
Frame16 bin depth 1
Frame16 bin filter {""}
Frame16 bin buffer size 1024
Frame16 bin about 0 0
Frame16 bin function sum
Frame16 rgb channel blue
Frame16 bin factor to 1 1
Frame16 bin depth 1
Frame16 bin filter {""}
Frame16 bin buffer size 1024
Frame16 bin about 0 0
Frame16 bin function sum
Frame16 rgb channel red
Frame16 rgb channel red
Frame16 colorscale sqrt
Frame16 colorscale log 1000
Frame16 datasec 1
Frame16 clip user 0.001 0.12876947
Frame16 clip mode user
Frame16 clip scope local
Frame16 clip minmax mode auto
Frame16 clip minmax sample 25
Frame16 clip zscale contrast 0.25
Frame16 clip zscale sample 600
Frame16 clip zscale line 120
Frame16 rgb channel green
Frame16 colorscale sqrt
Frame16 colorscale log 1000
Frame16 datasec 1
Frame16 clip user 0.001 0.08
Frame16 clip mode user