summaryrefslogtreecommitdiffstats
path: root/ds9/doc/ref/xpa.html
blob: 0c4f8b21fb45b05a4afb3cf120622a0e4c14be93 (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
<!DOCTYPE doctype PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta name="generator" content="HTML Tidy for Mac OS X (vers 31 October 2006 - Apple Inc. build 16.4), see www.w3.org">
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="GENERATOR" content="Mozilla/4.78 [en] (X11; U; Linux 2.4.7-10 i686) [Netscape]">
<title>XPA Access Points</title>
</head>
<body link="#0000FF" alink="#FF0000" vlink="#551A8B">
<h3><img alt="" src="../sun.gif" height="98" align="middle" width="100"> XPA Access Points</h3>
<blockquote>
<p>The <a href="http://hea-www.harvard.edu/RD/xpa/index.html">XPA</a> messaging system provides seamless communication between DS9 and other Unix programs, including X programs. It also provides an easy way for users to communicate with DS9 by executing XPA client commands in the shell or by utilizing such commands in scripts. Because XPA works both at the programming level and the shell level, it is a powerful tool for unifying any analysis environment.<br></p>
<tt><a href="#twomass">2mass</a><br>
<a href="#threed">3d</a><br>
<a href="#about">about</a><br>
<a href="#align">align</a><br>
<a href="#analysis">analysis</a><br>
<a href="#array">array</a><br>
<a href="#background">background</a><br>
<a href="#backup">backup</a><br>
<a href="#bin">bin</a><br>
<a href="#blink">blink</a><br>
<a href="#block">block</a><br>
<a href="#catalog">catalog</a><br>
<a href="#cd">cd</a><br>
<a href="#cmap">cmap</a><br>
<a href="#colorbar">colorbar</a><br>
<a href="#console">console</a><br>
<a href="#contour">contour</a><br>
<a href="#crop">crop</a><br>
<a href="#crosshair">crosshair</a><br>
<a href="#cube">cube</a><br>
<a href="#cursor">cursor</a><br>
<a href="#data">data</a><br>
<a href="#dsssao">dsssao</a><br>
<a href="#dsseso">dsseso</a><br>
<a href="#dssstsci">dssstsci</a><br>
<a href="#envi">envi</a><br>
<a href="#exit">exit</a><br>
<a href="#export">export</a><br>
<a href="#file">file</a><br>
<a href="#fits">fits</a><br>
<a href="#frame">frame</a><br>
<a href="#gif">gif</a><br>
<a href="#grid">grid</a><br>
<a href="#header">header</a><br>
<a href="#height">height</a><br>
<a href="#iconify">iconify</a><br>
<a href="#iexam">iexam</a><br>
<a href="#iis">iis</a><br>
<a href="#jpeg">jpeg</a><br>
<a href="#lock">lock</a><br>
<a href="#lower">lower</a><br>
<a href="#magnifier">magnifier</a><br>
<a href="#mask">mask</a><br>
<a href="#match">match</a><br>
<a href="#mecube">mecube</a><br>
<a href="#minmax">minmax</a><br>
<a href="#mode">mode</a><br>
<a href="#mosaic">mosaic</a><br>
<a href="#mosaicimage">mosaicimage</a><br>
<a href="#movie">movie</a><br>
<a href="#multiframe">multiframe</a><br>
<a href="#nameserver">nameserver</a><br>
<a href="#nrrd">nrrd</a><br>
<a href="#nvss">nvss</a><br>
<a href="#orient">orient</a><br>
<a href="#pagesetup">pagesetup</a><br>
<a href="#pan">pan</a><br>
<a href="#pixeltable">pixeltable</a><br>
<a href="#plot">plot</a><br>
<a href="#png">png</a><br>
<a href="#precision">precision</a><br>
<a href="#prefs">prefs</a><br>
<a href="#preserve">preserve</a><br>
<a href="#print">psprint</a><br>
<a href="#print">print</a><br>
<a href="#exit">quit</a><br>
<a href="#raise">raise</a><br>
<a href="#regions">regions</a><br>
<a href="#restore">restore</a><br>
<a href="#rgb">rgb</a><br>
<a href="#rgbarray">rgbarray</a><br>
<a href="#rgbcube">rgbcube</a><br>
<a href="#rgbimage">rgbimage</a><br>
<a href="#rotate">rotate</a><br>
<a href="#save">save</a><br>
<a href="#saveimage">saveimage</a><br>
<a href="#scale">scale</a><br>
<a href="#shm">shm</a><br>
<a href="#sia">sia</a><br>
<a href="#single">single</a><br>
<a href="#skyview">skyview</a><br>
<a href="#sleep">sleep</a><br>
<a href="#smooth">smooth</a><br>
<a href="#source">source</a><br>
<a href="#tcl">tcl</a><br>
<a href="#threads">threads</a><br>
<a href="#tile">tile</a><br>
<a href="#update">update</a><br>
<a href="#url">url</a><br>
<a href="#version">version</a><br>
<a href="#view">view</a><br>
<a href="#vla">vla</a><br>
<a href="#vlss">vlss</a><br>
<a href="#vo">vo</a><br>
<a href="#wcs">wcs</a><br>
<a href="#web">web</a><br>
<a href="#width">width</a><br>
<a href="#xpa">xpa</a><br>
<a href="#zscale">zscale</a><br>
<a href="#zoom">zoom</a><br></tt>
<p><b><a name="twomass" id="twomass"></a>2mass</b></p>
<p>Support for 2MASS Digital Sky Survey.</p>
<tt>Syntax:<br>
2mass []<br>
&nbsp;&nbsp;&nbsp; [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;|clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ra&gt; &lt;dec&gt;] # in wcs fk5<br>
&nbsp;&nbsp;&nbsp; [size &lt;width&gt; &lt;height&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [save yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame new|current]<br>
&nbsp;&nbsp;&nbsp; [update frame|crosshair]<br>
&nbsp;&nbsp;&nbsp; [survey j|h|k]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 2mass name<br>
$xpaget ds9 2mass coord<br>
$xpaget ds9 2mass size<br>
$xpaget ds9 2mass save<br>
$xpaget ds9 2mass frame<br>
$xpaget ds9 2mass survey<br>
<br>
$xpaset -p ds9 2mass<br>
$xpaset -p ds9 2mass m31<br>
$xpaset -p ds9 2mass name m31<br>
$xpaset -p ds9 2mass name clear<br>
$xpaset -p ds9 2mass 00:42:44.404 +41:16:08.78<br>
$xpaset -p ds9 2mass size 60 60 arcmin<br>
$xpaset -p ds9 2mass save yes<br>
$xpaset -p ds9 2mass frame current<br>
$xpaset -p ds9 2mass update frame<br>
$xpaset -p ds9 2mass survey j<br>
$xpaset -p ds9 2mass open<br>
$xpaset -p ds9 2mass close</tt><br>
<p><b><a name="threed" id="threed"></a>3d</b></p>
<p>Support for 3D frame.</p>
<tt>Syntax:<br>
3d []<br>
&nbsp;&nbsp;&nbsp; [view &lt;az&gt; &lt;el&gt;]<br>
&nbsp;&nbsp;&nbsp; [az &lt;az&gt;]<br>
&nbsp;&nbsp;&nbsp; [el &lt;el&gt;]<br>
&nbsp;&nbsp;&nbsp; [scale &lt;scale&gt;]<br>
&nbsp;&nbsp;&nbsp; [method mip|aip]<br>
&nbsp;&nbsp;&nbsp; [background none|azimuth|elevation]<br>
&nbsp;&nbsp;&nbsp; [border yes|no]<br>
&nbsp;&nbsp;&nbsp; [border color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [highlite yes|no]<br>
&nbsp;&nbsp;&nbsp; [highlite color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [compass yes|no]<br>
&nbsp;&nbsp;&nbsp; [compass color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [match]<br>
&nbsp;&nbsp;&nbsp; [lock [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 3d view<br>
$xpaget ds9 3d az<br>
$xpaget ds9 3d el<br>
$xpaget ds9 3d scale<br>
$xpaget ds9 3d method<br>
$xpaget ds9 3d background<br>
$xpaget ds9 3d border<br>
$xpaget ds9 3d border color<br>
$xpaget ds9 3d highlite<br>
$xpaget ds9 3d highlite color<br>
$xpaget ds9 3d compass<br>
$xpaget ds9 3d compass color<br>
$xpaget ds9 3d lock<br>
<br>
$xpaset -p ds9 3d # create new 3D frame<br>
$xpaset -p ds9 3d view 45 30<br>
$xpaset -p ds9 3d az 45<br>
$xpaset -p ds9 3d el 30<br>
$xpaset -p ds9 3d scale 10<br>
$xpaset -p ds9 3d method mip<br>
$xpaset -p ds9 3d background azimuth<br>
$xpaset -p ds9 3d border yes<br>
$xpaset -p ds9 3d border color red<br>
$xpaset -p ds9 3d highlite yes<br>
$xpaset -p ds9 3d highlite color red<br>
$xpaset -p ds9 3d compass yes<br>
$xpaset -p ds9 3d compass color red<br>
$xpaset -p ds9 3d match<br>
$xpaset -p ds9 3d lock yes<br>
$xpaset -p ds9 3d open<br>
$xpaset -p ds9 3d close</tt><br>
<p><b><a name="about" id="about"></a>about</b></p>
<p>Get DS9 credits.</p>
<tt>Syntax:<br>
about<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 about<br></tt>
<p><b><a name="align" id="align"></a>align</b></p>
<p>Controls the World Coordinate System alignment for the current frame.</p>
<tt>Syntax:<br>
align []<br>
&nbsp;&nbsp;&nbsp; [yes|no]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 align<br>
<br>
$xpaset -p ds9 align yes<br></tt>
<p><b><a name="analysis" id="analysis"></a>analysis</b></p>
<p>Control external analysis tasks. Tasks are numbered as they are loaded, starting with 0. Can also be used to display a message and display text in the text dialog window.</p>
<tt>Syntax:<br>
analysis [&lt;task number&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [task &lt;task number&gt;|&lt;task name&gt;]<br>
&nbsp;&nbsp;&nbsp; [load &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [clear]<br>
&nbsp;&nbsp;&nbsp; [clear][load &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [message ok|okcancel|yesno &lt;message&gt;]<br>
&nbsp;&nbsp;&nbsp; [entry &lt;message&gt;]<br>
&nbsp;&nbsp;&nbsp; [text]<br>
<br>
Example:<br>
$xpaget ds9 analysis<br>
$xpaget ds9 analysis task<br>
$xpaget ds9 analysis entry {Please enter something}<br>
$xpaget ds9 analysis message okcancel {Hello World}<br>
<br>
$xpaset -p ds9 analysis 0 # invoke first analysis task<br>
$xpaset -p ds9 analysis task 0<br>
$xpaset -p ds9 analysis task foobar<br>
$xpaset -p ds9 analysis {foo bar}<br>
$xpaset -p ds9 analysis my.ans<br>
$xpaset -p ds9 analysis load my.ans<br>
$xpaset -p ds9 analysis clear<br>
$xpaset -p ds9 analysis clear load my.ans<br>
$xpaset -p ds9 analysis message {This is a message}<br>
$xpaset -p ds9 analysis text {this is text}<br>
<br>
$cat my.ans | xpaset ds9 analysis load<br>
$cat foo.txt | xpaset ds9 analysis text</tt><br>
<p><b><a name="array" id="array"></a>array</b></p>
<p>Load raw data array into current frame.<br></p>
<tt>Syntax:<br>
array [native|little|big]<br>
array [new|mask] [[xdim=&lt;x&gt;,ydim=&lt;y&gt;|dim=&lt;dim&gt;],zdim=&lt;z&gt;,bitpix=&lt;b&gt;,skip=&lt;s&gt;,endian=[little|big]]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 array &gt; foo.arr<br>
$xpaget ds9 array little &gt; foo.arr<br>
<br>
$xpaset -p ds9 array foo.arr[dim=512,bitpix=-32,endian=little]<br>
$xpaset -p ds9 array new foo.arr[dim=512,bitpix=-32,endian=little]<br>
$xpaset -p ds9 array mask foo.arr[dim=512,bitpix=-32,endian=little]<br>
<br>
$cat foo.arr | xpaset ds9 array[dim=512,bitpix=-32,endian=little]<br>
$cat foo.arr | xpaset ds9 array new[dim=512,bitpix=-32,endian=little]<br>
$cat foo.arr | xpaset ds9 array mask [dim=512,bitpix=-32,endian=little]</tt>
<p><b><a name="background" id="background"></a>bg<br>
background</b></p>
<p>Set image background color.</p>
<tt>Syntax:<br>
bg &lt;color&gt;<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 bg<br>
<br>
$xpaset -p ds9 bg red</tt><br>
<p><b><a name="backup" id="backup"></a>backup</b></p>
<p>Create a backup save set.</p>
<tt>Syntax:<br>
backup &lt;filename&gt;<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 backup ds9.bck</tt><br>
<p><b><a name="bin" id="bin"></a>bin</b></p>
<p>Controls binning factor, binning buffer size, and&nbsp; binning function for binning FITS bin tables. The access point blocking is provided for backward compatibility.</p>
<tt>Syntax:<br>
bin [about &lt;x&gt; &lt;y&gt;]<br>
&nbsp;&nbsp;&nbsp; [about center]<br>
&nbsp;&nbsp;&nbsp; [buffersize &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [cols &lt;x&gt; &lt;y&gt;]<br>
&nbsp;&nbsp;&nbsp; [colsz &lt;x&gt; &lt;y&gt; &lt;z&gt;]<br>
&nbsp;&nbsp;&nbsp; [factor &lt;value&gt; [&lt;vector&gt;]]<br>
&nbsp;&nbsp;&nbsp; [depth &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [filter &lt;string&gt;]<br>
&nbsp;&nbsp;&nbsp; [filter clear]<br>
&nbsp;&nbsp;&nbsp; [function average|sum]<br>
&nbsp;&nbsp;&nbsp; [in]<br>
&nbsp;&nbsp;&nbsp; [out]<br>
&nbsp;&nbsp;&nbsp; [to fit]<br>
&nbsp;&nbsp;&nbsp; [match]<br>
&nbsp;&nbsp;&nbsp; [lock [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 bin about<br>
$xpaget ds9 bin buffersize<br>
$xpaget ds9 bin cols<br>
$xpaget ds9 bin factor<br>
$xpaget ds9 bin depth<br>
$xpaget ds9 bin filter<br>
$xpaget ds9 bin function<br>
$xpaget ds9 bin smooth<br>
$xpaget ds9 bin smooth function<br>
$xpaget ds9 bin smooth radius<br>
$xpaget ds9 bin lock<br>
<br>
$xpaset -p ds9 bin about 4096 4096<br>
$xpaset -p ds9 bin about center<br>
$xpaset -p ds9 bin buffersize 512<br>
$xpaset -p ds9 bin cols detx dety<br>
$xpaset -p ds9 bin colsz detx dety time<br>
$xpaset -p ds9 bin factor 4<br>
$xpaset -p ds9 bin factor 4 2<br>
$xpaset -p ds9 bin depth 10<br>
$xpaset -p ds9 bin filter 'pha &gt; 5'<br>
$xpaset -p ds9 bin filter clear<br>
$xpaset -p ds9 bin function sum<br>
$xpaset -p ds9 bin in<br>
$xpaset -p ds9 bin out<br>
$xpaset -p ds9 bin to fit<br>
$xpaset -p ds9 bin match<br>
$xpaset -p ds9 bin lock yes<br>
$xpaset -p ds9 bin open<br>
$xpaset -p ds9 bin close</tt><br>
<p><b><a name="blink" id="blink"></a>blink</b></p>
<p>Blink mode parameters. Interval is in seconds.<br></p>
<tt>Syntax:<br>
blink []<br>
&nbsp;&nbsp;&nbsp; [yes|no]<br>
&nbsp;&nbsp;&nbsp; [interval &lt;value&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 blink<br>
$xpaget ds9 blink interval<br>
<br>
$xpaset -p ds9 blink<br>
$xpaset -p ds9 blink yes<br>
$xpaset -p ds9 blink interval 1</tt><br>
<p><b><a name="block" id="block"></a>block</b></p>
<p>Controls blocking parameters.</p>
<tt>Syntax:<br>
block[&lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;value&gt; &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [to &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [to &lt;value&gt;&lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [in]<br>
&nbsp;&nbsp;&nbsp; [out]<br>
&nbsp;&nbsp;&nbsp; [to fit]<br>
&nbsp;&nbsp;&nbsp; [match]<br>
&nbsp;&nbsp;&nbsp; [lock [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 block<br>
$xpaget ds9 block lock<br>
<br>
$xpaset -p ds9 block 4<br>
$xpaset -p ds9 block 4 2<br>
$xpaset -p ds9 block to 4<br>
$xpaset -p ds9 block to 4 2<br>
$xpaset -p ds9 block in<br>
$xpaset -p ds9block out<br>
$xpaset -p ds9 block to fit<br>
$xpaset -p ds9 block match<br>
$xpaset -p ds9 block lock yes<br>
$xpaset -p ds9 block open<br>
$xpaset -p ds9 block close</tt><br>
<p><b><a name="catalog" id="catalog"></a>catalog<br>
cat<br></b></p>
<p>Support for catalogs. The first three commands will create a new catalog search. All other commands operated on the last search created, unless indicated otherwise.</p>
<tt>Syntax:<br>
catalog [new]<br>
&nbsp;&nbsp;&nbsp; [ned|simbad|denis|skybot]<br>
&nbsp;&nbsp;&nbsp; [aavso|ac|ascss|cmc|gaia|gsc1|gsc2|gsc3|nomad|ppmx|sao|sdss5|sdss6|sdss7|sdss8|sdss9|tycho]<br>
&nbsp;&nbsp;&nbsp; [ua2|ub1|ucac2|ucac2sup|ucac3|ucac4|urat1]<br>
&nbsp;&nbsp;&nbsp; [2mass|iras]<br>
&nbsp;&nbsp;&nbsp; [csc|xmm|rosat]<br>
&nbsp;&nbsp;&nbsp; [first|nvss]<br>
&nbsp;&nbsp;&nbsp; [chandralog|cfhtlog|esolog|stlog|xmmlog]<br>
&nbsp;&nbsp;&nbsp; [cds &lt;catalogname&gt;]<br>
&nbsp;&nbsp;&nbsp; [cds &lt;catalogid&gt;]<br>
<br>
&nbsp;&nbsp;&nbsp; [load &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [import sb|tsv &lt;filename&gt;]<br>
<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [&lt;ra&gt; &lt;dec&gt; &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [allcols]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [allrows]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [cancel]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [close]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [crosshair]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [dec &lt;col&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [edit yes|no]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [export sb|tsv &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [filter &lt;string&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [filter load &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [header]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [location &lt;code&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [match]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [match &lt;ref&gt; &lt;ref&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [match error &lt;value&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [match function 1and2|1not2|2not1]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [match return 1and2|1only|2only]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [match unique yes|no]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [maxrows &lt;number&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [name &lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [panto yes|no]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [plot &lt;xcol&gt; &lt;ycol&gt; &lt;xerrcol&gt; &lt;yerrcol&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [print]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [psky &lt;skyframe&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [psystem &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [ra &lt;col&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [regions]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [retrieve]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [samp]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [samp broadcast]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [samp send &lt;application&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [save &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [server cds|adac|cadc|cambridge|sao|ukirt|iucaa|bejing|saao]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [show yes|no]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [radius &lt;value&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [sky &lt;skyframe&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [skyformat &lt;skyformat&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [sort &lt;col&gt; incr|decr]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [symbol [#] condition|shape|color|text|font|fontsize|fontweight|fontslant &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [symbol [#] text|size|size2|units|angle &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [symbol shape circle|ellipse|box|text|point]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [symbol shapecircle point|box point|diamond point|cross point|x point|arrow point|boxcircle point]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [symbol add| [#] remove]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [symbol save|load &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [system &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [update]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [x &lt;col&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [y &lt;col&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 catalog<br>
$xpaget ds9 catalog header<br>
<br>
$xpaset -p ds9 catalog new<br>
$xpaset -p ds9 catalog 2mass<br>
$xpaset -p ds9 catalog cds 2mass<br>
$xpaset -p ds9 catalog cds {I/252}<br>
<br>
$xpaset -p ds9 catalog load foo.xml<br>
$xpaset -p ds9 catalog import tsv foo.tsv<br>
<br>
$xpaset -p ds9 catalog 202.48 47.21 fk5<br>
$xpaset -p ds9 catalog allrows<br>
$xpaset -p ds9 catalog allcols<br>
$xpaset -p ds9 catalog cancel<br>
$xpaset -p ds9 catalog clear<br>
$xpaset -p ds9 catalog close<br>
$xpaset -p ds9 catalog crosshair<br>
$xpaset -p ds9 catalog dec DEC<br>
$xpaset -p ds9 catalog edit yes<br>
$xpaset -p ds9 catalog export tsv bar.tsv<br>
$xpaset -p ds9 catalog filter '$Jmag&gt;10'<br>
$xpaset -p ds9 catalog filter load foo.flt<br>
$xpaset -p ds9 catalog header<br>
$xpaset -p ds9 catalog location 500<br>
$xpaset -p ds9 catalog match error 2 arcsec<br>
$xpaset -p ds9 catalog match function 1and2<br>
$xpaset -p ds9 catalog match unique no<br>
$xpaset -p ds9 catalog match return 1only<br>
$xpaset -p ds9 catalog match # last two catalogs loaded<br>
$xpaset -p ds9 catalog match 2mass csc<br>
$xpaset -p ds9 catalog maxrows 2000<br>
$xpaset -p ds9 catalog name m51<br>
$xpaset -p ds9 catalog panto no<br>
$xpaset -p ds9 catalog plot '$Jmag' '$Hmag' '$e_Jmag' '$e_Hmag'<br>
$xpaset -p ds9 catalog print<br>
$xpaset -p ds9 catalog psky fk5<br>
$xpaset -p ds9 catalog psystem wcs<br>
$xpaset -p ds9 catalog ra RA<br>
$xpaset -p ds9 catalog regions<br>
$xpaset -p ds9 catalog retrieve<br>
$xpaset -p ds9 catalog samp broadcast<br>
$xpaset -p ds9 catalog samp send aladin<br>
$xpaset -p ds9 catalog save foo.xml<br>
$xpaset -p ds9 catalog server sao<br>
$xpaset -p ds9 catalog show yes<br>
$xpaset -p ds9 catalog radius 1 degrees<br>
$xpaset -p ds9 catalog symbol condition '$Jmag&gt;15'<br>
$xpaset -p ds9 catalog symbol 2 shape {boxcircle point}<br>
$xpaset -p ds9 catalog symbol color red<br>
$xpaset -p ds9 catalog symbol font times<br>
$xpaset -p ds9 catalog symbol fontsize 14<br>
$xpaset -p ds9 catalog symbol fontweight bold<br>
$xpaset -p ds9 catalog symbol fontslant italic<br>
$xpaset -p ds9 catalog symbol add<br>
$xpaset -p ds9 catalog symbol 2 remove<br>
$xpaset -p ds9 catalog symbol load foo.sym<br>
$xpaset -p ds9 catalog symbol save bar.sym<br>
$xpaset -p ds9 catalog sky fk5<br>
$xpaset -p ds9 catalog skyformat degrees<br>
$xpaset -p ds9 catalog sort {Jmag} incr<br>
$xpaset -p ds9 catalog system wcs<br>
$xpaset -p ds9 catalog update<br>
$xpaset -p ds9 catalog x RA<br>
$xpaset -p ds9 catalog y DEC</tt><br>
<p><b><a name="cd" id="cd"></a>cd</b></p>
<p>Sets/Returns the current working directory.</p>
<tt>Syntax:<br>
cd [&lt;directory&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 cd<br>
<br>
$xpaset -p ds9 cd /home/mrbill<br></tt>
<p><b><a name="cmap" id="cmap"></a>cmap</b></p>
<p>Controls the colormap for the current frame. The colormap name is not case sensitive. A valid contrast value is&nbsp; from 0 to 10 and bias value from 0 to 1.</p>
<tt>Syntax:<br>
cmap [&lt;colormap&gt;]<br>
&nbsp;&nbsp;&nbsp; [file]<br>
&nbsp;&nbsp;&nbsp; [load &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [save &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [invert yes|no]<br>
&nbsp;&nbsp;&nbsp; [&lt;constrast&gt; &lt;bias&gt;]<br>
&nbsp;&nbsp;&nbsp; [tag [load|save] &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [tag delete]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 cmap<br>
$xpaget ds9 cmap file<br>
$xpaget ds9 cmap invert<br>
$xpaget ds9 cmap value<br>
<br>
$xpaset -p ds9 cmap Heat<br>
$xpaset -p ds9 cmap load foo.sao<br>
$xpaset -p ds9 cmap save bar.sao<br>
$xpaset -p ds9 cmap invert yes<br>
$xpaset -p ds9 cmap 5 .5<br>
$xpaset -p ds9 cmap tag load foo.tag<br>
$xpaset -p ds9 cmap tag save foo.tag<br>
$xpaset -p ds9 cmap tag delete<br>
$xpaset -p ds9 cmap open<br>
$xpaset -p ds9 cmap close<br></tt>
<p><b><a name="colorbar" id="colorbar"></a>colorbar<br></b></p>
<p>Controls colorbar parameters.</p>
<tt>Syntax:<br>
colorbar []<br>
&nbsp;&nbsp;&nbsp; [yes|no]<br>
&nbsp;&nbsp;&nbsp; [orientation]<br>
&nbsp;&nbsp;&nbsp; [horizontal|vertical]<br>
&nbsp;&nbsp;&nbsp; [numerics yes|no]<br>
&nbsp;&nbsp;&nbsp; [space value|distance]<br>
&nbsp;&nbsp;&nbsp; [font times|helvetica|courier]<br>
&nbsp;&nbsp;&nbsp; [fontsize &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [fontweight normal|bold]<br>
&nbsp;&nbsp;&nbsp; [fontslant roman|italic]<br>
&nbsp;&nbsp;&nbsp; [size]<br>
&nbsp;&nbsp;&nbsp; [ticks]<br>
&nbsp;&nbsp;&nbsp; [match]<br>
&nbsp;&nbsp;&nbsp; [lock [yes|no]]<br>
&nbsp;</tt><br>
<tt>Example:<br>
$xpaget ds9 colorbar<br>
$xpaget ds9 colorbar orientation<br>
$xpaget ds9 colorbar numerics<br>
$xpaget ds9 colorbar space<br>
$xpaget ds9 colorbar font<br>
$xpaget ds9 colorbar fontsize<br>
$xpaget ds9 colorbar fontweight<br>
$xpaget ds9 colorbar fontslant<br>
$xpaget ds9 colorbar size<br>
$xpaget ds9 colorbar ticks<br>
$xpaget ds9 colorbar lock<br>
<br>
$xpaset -p ds9 colorbar yes<br>
$xpaset -p ds9 colorbar vertical<br>
$xpaset -p ds9 colorbar orientation vertical<br>
$xpaset -p ds9 colorbar numerics yes<br>
$xpaset -p ds9 colorbar space value<br>
$xpaset -p ds9 colorbar font times<br>
$xpaset -p ds9 colorbar fontsize 14<br>
$xpaset -p ds9 colorbar fontweight bold<br>
$xpaset -p ds9 colorbar fontslant italic<br>
$xpaset -p ds9 colorbar size 20<br>
$xpaset -p ds9 colorbar ticks 11<br>
$xpaset -p ds9 colorbar match<br>
$xpaset -p ds9 colorbar lock yes<br></tt>
<p><b><a name="console" id="console"></a>console</b></p>
<p>Display tcl console window.</p>
<tt>Syntax:<br>
-console<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 console<br></tt>
<p><b><a name="contour" id="contour"></a>contour<br></b></p>
<p>Controls contours in the current frame.</p>
<tt>Syntax:<br>
contour []<br>
&nbsp;&nbsp;&nbsp; [yes|no]<br>
&nbsp;&nbsp;&nbsp; [&lt;coordsys&gt; [&lt;skyframe&gt;]]<br>
&nbsp;&nbsp;&nbsp; [clear]<br>
&nbsp;&nbsp;&nbsp; [generate]<br>
&nbsp;&nbsp;&nbsp; [load &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [save &lt;filename&gt; [&lt;coordsys&gt; &lt;skyframe&gt;]]<br>
&nbsp;&nbsp;&nbsp; [convert]<br>
&nbsp;&nbsp;&nbsp; [load levels &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [save levels &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [copy]<br>
&nbsp;&nbsp;&nbsp; [paste [&lt;coordsys&gt; &lt;color&gt; &lt;width&gt; yes|no]]<br>
&nbsp;&nbsp;&nbsp; [color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [width &lt;width&gt;]<br>
&nbsp;&nbsp;&nbsp; [dash yes|no]<br>
&nbsp;&nbsp;&nbsp; [smooth &lt;smooth&gt;]<br>
&nbsp;&nbsp;&nbsp; [method block|smooth]<br>
&nbsp;&nbsp;&nbsp; [nlevels &lt;number of levels&gt;]<br>
&nbsp;&nbsp;&nbsp; [scale linear|log|pow|squared|sqrt|asinh|sinh|histequ]<br>
&nbsp;&nbsp;&nbsp; [log exp &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [mode minmax|&lt;value&gt;|zscale|zmax]<br>
&nbsp;&nbsp;&nbsp; [scope global|local]<br>
&nbsp;&nbsp;&nbsp; [limits &lt;min&gt; &lt;max&gt;]<br>
&nbsp;&nbsp;&nbsp; [levels &lt;value value value...&gt;]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 contour<br>
$xpaget ds9 contour wcs fk5<br>
$xpaget ds9 contour color<br>
$xpaget ds9 contour width<br>
$xpaget ds9 contour dash<br>
$xpaget ds9 contour smooth<br>
$xpaget ds9 contour method<br>
$xpaget ds9 contour nlevels<br>
$xpaget ds9 contour scale<br>
$xpaget ds9 contour log exp<br>
$xpaget ds9 contour mode<br>
$xpaget ds9 contour scope<br>
$xpaget ds9 contour limits<br>
$xpaget ds9 contour levels<br>
<br>
$xpaset -p ds9 contour<br>
$xpaset -p ds9 contour yes<br>
$xpaset -p ds9 contour clear<br>
$xpaset -p ds9 contour generate<br>
$xpaset -p ds9 contour load ds9.ctr<br>
$xpaset -p ds9 contour save ds9.ctr<br>
$xpaset -p ds9 contour save ds9.ctr wcs fk5<br>
$xpaset -p ds9 contour convert<br>
$xpaset -p ds9 contour load levels ds9.ctr<br>
$xpaset -p ds9 contour save levels ds9.lev<br>
$xpaset -p ds9 contour copy<br>
$xpaset -p ds9 contour paste<br>
$xpaset -p ds9 contour paste wcs red 2 no<br>
$xpaset -p ds9 contour color yellow<br>
$xpaset -p ds9 contour width 2<br>
$xpaset -p ds9 contour dash yes<br>
$xpaset -p ds9 contour smooth 5<br>
$xpaset -p ds9 contour method smooth<br>
$xpaset -p ds9 contour nlevels 10<br>
$xpaset -p ds9 contour scale sqrt<br>
$xpaset -p ds9 contour log exp 1000<br>
$xpaset -p ds9 contour mode zscale<br>
$xpaset -p ds9 contour scope local<br>
$xpaset -p ds9 contour limits 1 100<br>
$xpaset -p ds9 contour levels 1 10 100 1000<br>
$xpaset -p ds9 contour open<br>
$xpaset -p ds9 contour close</tt><br>
<p><b><a name="crop" id="crop"></a>crop</b></p>
<p>Set current image display area.</p>
<tt>Syntax:<br>
crop [&lt;x&gt; &lt;y&gt; &lt;width&gt; &lt;height&gt; [&lt;coordsys&gt;][&lt;skyframe&gt;][degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [match &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [lock &lt;coordsys&gt;|none]<br>
&nbsp;&nbsp;&nbsp; [reset]<br>
&nbsp;&nbsp;&nbsp; [3d zmin zmax &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 crop # get crop in physical coords<br>
$xpaget ds9 crop wcs galactic sexagesimal arcsec<br>
$xpaget ds9 crop lock<br>
<br>
$xpaset -p ds9 crop 40 30 10 20 # set crop in physical coords<br>
$xpaset -p ds9 crop +104:51:06.915 +68:33:40.761&nbsp; 28.144405 22.000204 wcs galactic arcsec<br>
$xpaset -p ds9 crop match wcs<br>
$xpaset -p ds9 crop lock wcs<br>
$xpaset -p ds9 crop reset<br>
$xpaset -p ds9 crop 3d .25 .50 wcs<br>
$xpaset -p ds9 crop open<br>
$xpaset -p ds9 crop close</tt>
<p><b><a name="crosshair" id="crosshair"></a>crosshair</b></p>
<p>Controls the current position of the crosshair in the current frame. DS9 is placed in crosshair mode when the crosshair is set.</p>
<tt>Syntax:<br>
crosshair [&lt;x&gt; &lt;y&gt; &lt;coordsys&gt; [&lt;skyframe&gt;]]<br>
&nbsp;&nbsp;&nbsp; [match &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [lock &lt;coordsys&gt;|none]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 crosshair # get crosshair in physical coords<br>
$xpaget ds9 crosshair wcs fk4 sexagesimal # get crosshair in wcs coords<br>
$xpaget ds9 crosshair lock<br>
<br>
$xpaset -p ds9 crosshair 100 100 physical # set crosshair in physical<br>
$xpaset -p ds9 crosshair 345 58.8 wcs fk5 # set crosshair in wcs coords<br>
$xpaset -p ds9 crosshair 23:01:00 +58:52:51 wcs fk5<br>
$xpaset -p ds9 crosshair match wcs<br>
$xpaset -p ds9 crosshair lock wcs<br></tt>
<p><b><a name="cube" id="cube"></a>cube<br></b></p>
<p>Controls FITS cube dialog.</p>
<tt>Syntax:<br>
cube []<br>
&nbsp;&nbsp;&nbsp; [play|stop|next|prev|first|last]<br>
&nbsp;&nbsp;&nbsp; [&lt;slice&gt; [&lt;coordsys&gt;]]<br>
&nbsp;&nbsp;&nbsp; [interval &lt;numeric&gt;]<br>
&nbsp;&nbsp;&nbsp; [match &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [lock &lt;coordsys&gt;|none]<br>
&nbsp;&nbsp;&nbsp; [order 123|132|213|231|312|321]<br>
&nbsp;&nbsp;&nbsp; [axes lock [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 cube<br>
$xpaget ds9 cube wcs<br>
$xpaget ds9 cube interval<br>
$xpaget ds9 cube lock<br>
$xpaget ds9 cube order<br>
$xpaget ds9 cube axes lock<br>
<br>
$xpaset -p ds9 cube<br>
$xpaset -p ds9 cube play<br>
$xpaset -p ds9 cube last<br>
$xpaset -p ds9 cube 3<br>
$xpaset -p ds9 cube 4.4 wcs<br>
$xpaset -p ds9 cube interval 2<br>
$xpaset -p ds9 cube match wcs<br>
$xpaset -p ds9 cube lock wcs<br>
$xpaset -p ds9 cube order 123<br>
$xpaset -p ds9 cube axes lock yes<br>
$xpaset -p ds9 cube open<br>
$xpaset -p ds9 cube close</tt><br>
<p><b><a name="cursor" id="cursor"></a>cursor</b></p>
<p>Move mouse pointer or crosshair in image pixels in the current frame. Note, this will move selected Regions also.</p>
<tt>Syntax:<br>
cursor [&lt;x&gt; &lt;y&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 cursor 10 10<br></tt>
<p><b><a name="data" id="data"></a>data</b></p>
<p>Return an array of data values given a lower left corner and a width and height in specified coordinate system. The last argument of yes indicates to strip the coordinates from the output and just list the data values. The default is yes.</p>
<tt>Syntax:<br>
data [&lt;coordsys&gt; [&lt;skyframe&gt;] &lt;x&gt; &lt;y&gt; &lt;width&gt; &lt;height&gt; [yes|no]]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 data image 450 520 3 3 yes<br>
$xpaget ds9 data physical 899 1039 6 6 no<br>
$xpaget ds9 data fk5 202.47091 47.196811 0.00016516669 0.00016516669 no<br>
$xpaget ds9 data wcs fk5 13:29:53.018 +47:11:48.52 0.00016516669 0.00016516669 no<br></tt>
<p><b><a name="dsssao" id="dsssao"></a>dsssao<br>
dss<br></b></p>
<p>Support for Digital Sky Survey at SAO.</p>
<tt>Syntax:<br>
dsssao []<br>
&nbsp;&nbsp;&nbsp; [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;|clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ra&gt; &lt;dec&gt;] # in wcs fk5<br>
&nbsp;&nbsp;&nbsp; [size &lt;width&gt; &lt;height&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [save yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame new|current]<br>
&nbsp;&nbsp;&nbsp; [update frame|crosshair]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 dsssao name<br>
$xpaget ds9 dsssao coord<br>
$xpaget ds9 dsssao size<br>
$xpaget ds9 dsssao save<br>
$xpaget ds9 dsssao frame<br>
<br>
$xpaset -p ds9 dsssao<br>
$xpaset -p ds9 dsssao m31<br>
$xpaset -p ds9 dsssao name m31<br>
$xpaset -p ds9 dsssao name clear<br>
$xpaset -p ds9 dsssao 00:42:44.404 +41:16:08.78<br>
$xpaset -p ds9 dsssao size 60 60 arcmin<br>
$xpaset -p ds9 dsssao save yes<br>
$xpaset -p ds9 dsssao frame current<br>
$xpaset -p ds9 dsssao update frame<br>
$xpaset -p ds9 dsssao open<br>
$xpaset -p ds9 dsssao close</tt><br>
<p><b><a name="dsseso" id="dsseso"></a>dsseso</b></p>
<p>Support for Digital Sky Survey at ESO.</p>
<tt>Syntax:<br>
dsseso []<br>
&nbsp;&nbsp;&nbsp; [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;|clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ra&gt; &lt;dec&gt;] # in wcs fk5<br>
&nbsp;&nbsp;&nbsp; [size &lt;width&gt; &lt;height&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [save yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame new|current]<br>
&nbsp;&nbsp;&nbsp; [update frame|crosshair]<br>
&nbsp;&nbsp;&nbsp; [survey DSS1|DSS2-red|DSS2-blue|DSS2-infrared]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 dsseso name<br>
$xpaget ds9 dsseso coord<br>
$xpaget ds9 dsseso size<br>
$xpaget ds9 dsseso save<br>
$xpaget ds9 dsseso frame<br>
$xpaget ds9 dsseso survey<br>
<br>
$xpaset -p ds9 dsseso<br>
$xpaset -p ds9 dsseso m31<br>
$xpaset -p ds9 dsseso name m31<br>
$xpaset -p ds9 dsseso name clear<br>
$xpaset -p ds9 dsseso 00:42:44.404 +41:16:08.78<br>
$xpaset -p ds9 dsseso size 60 60 arcmin<br>
$xpaset -p ds9 dsseso save yes<br>
$xpaset -p ds9 dsseso frame current<br>
$xpaset -p ds9 dsseso update frame<br>
$xpaset -p ds9 dsseso survey DSS2-red<br>
$xpaset -p ds9 dsseso open<br>
$xpaset -p ds9 dsseso close</tt><br>
<p><b><a name="dssstsci" id="dssstsci"></a>dssstsci</b></p>
<p>Support for Digital Sky Survey at STSCI.</p>
<tt>Syntax:<br>
dssstsci []<br>
&nbsp;&nbsp;&nbsp; [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;|clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ra&gt; &lt;dec&gt;] # in wcs fk5<br>
&nbsp;&nbsp;&nbsp; [size &lt;width&gt; &lt;height&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [save yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame new|current]<br>
&nbsp;&nbsp;&nbsp; [update frame|crosshair]<br>
&nbsp;&nbsp;&nbsp; [survey poss2ukstu_red|poss2ukstu_ir|poss2ukstu_blue]<br>
&nbsp;&nbsp;&nbsp; [survey poss1_blue|poss1_red]<br>
&nbsp;&nbsp;&nbsp; [survey all|quickv|phase2_gsc2|phase2_gsc1]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 dssstsci name<br>
$xpaget ds9 dssstsci coord<br>
$xpaget ds9 dssstsci size<br>
$xpaget ds9 dssstsci save<br>
$xpaget ds9 dssstsci frame<br>
$xpaget ds9 dssstsci survey<br>
<br>
$xpaset -p ds9 dssstsci<br>
$xpaset -p ds9 dssstsci m31<br>
$xpaset -p ds9 dssstsci name m31<br>
$xpaset -p ds9 dssstsci name clear<br>
$xpaset -p ds9 dssstsci 00:42:44.404 +41:16:08.78<br>
$xpaset -p ds9 dssstsci size 60 60 arcmin<br>
$xpaset -p ds9 dssstsci save yes<br>
$xpaset -p ds9 dssstsci frame current<br>
$xpaset -p ds9 dssstsci update frame<br>
$xpaset -p ds9 dssstsci survey all<br>
$xpaset -p ds9 dssstsci open<br>
$xpaset -p ds9 dssstsci close</tt><br>
<p><b><a name="envi" id="envi"></a>envi</b></p>
<p>Load an ENVI header and file. Optional parameter: array endian.<br></p>
<tt>Syntax:</tt><tt><br></tt> <tt>envi [new] &lt;header&gt; [&lt;filename&gt;]</tt><tt><br></tt> <tt>&nbsp;</tt><tt><br></tt> <tt>Example:</tt><tt><br></tt> <tt>$xpaset -p ds9 envi foo.hdr</tt><tt><br></tt> <tt>$xpaset -p ds9 envi new foo.hdr</tt><tt><br></tt> <tt>$xpaset -p ds9 envi foo.hdr foo.bsq</tt><tt><br></tt><br>
<b><a name="exit" id="exit"></a>exit</b><br>
<p><b>quits<br></b></p>
<p>Quits DS9.</p>
<tt>Syntax:<br>
exit<br>
quit<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 exit<br></tt>
<p><b><a name="export" id="export"></a>export<br></b></p>
<p>Export loaded image data of current frame in specified image format. Optional parameters: array endian, nrrd endian, jpeg quality (1-100) and tiff compression method.</p>
<tt>Syntax:<br>
export[array|nrrd|envi|gif|tiff|jpeg|png]&lt;filename&gt;<br>
export array &lt;filename&gt;[big|little|native]<br>
export nrrd &lt;filename&gt;[big|little|native]<br>
export envi &lt;header&gt; [&lt;filename&gt;][big|little|native]<br>
export jpeg &lt;filename&gt;[1-100]<br>
export tiff &lt;filename&gt;[none|jpeg|packbits|deflate]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 export array foo.arr little<br>
$xpaset -p ds9 export nrrd foo.nrrd little<br>
$xpaset -p ds9 export envi foo.hdr little<br>
$xpaset -p ds9 export envi foo.hdr foo.bsq little<br>
$xpaset -p ds9 export tiff foo.tiff jpeg<br>
$xpaset -p ds9 export jpeg foo.jpeg 75<br>
$xpaset -p ds9 export png foo.png</tt><br>
<p><b><a name="file" id="file"></a>file</b></p>
<p>Query currently loaded file information.</p>
<tt>Syntax:<br>
file<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 file</tt><br>
<p><b><a name="fits" id="fits"></a>fits</b></p>
<p>Load a FITS image into the current frame or query the currently loaded image.<br></p>
<tt>Syntax:<br>
fits[new|mask|slice] [&lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [width|height|depth|bitpix]<br>
&nbsp;&nbsp;&nbsp; [size [wcs|wcsa...wcsz] [fk4|fk5|icrs|galactic|ecliptic] [degrees|arcmin|arcsecs]]<br>
&nbsp;&nbsp;&nbsp;&nbsp;[header [&lt;ext&gt;] [keyword &lt;string&gt;]]<br>
&nbsp;&nbsp;&nbsp; [image|table|slice]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 fits &gt; foo.fits<br>
$xpaget ds9 fits width<br>
$xpaget ds9 fits height<br>
$xpaget ds9 fits depth<br>
$xpaget ds9 fits bitpix<br>
$xpaget ds9 fits size<br>
$xpaget ds9 fits size wcs fk5 arcmin<br>
$xpaget ds9 fits header # primary<br>
$xpaget ds9 fits header 2 # hdu 2<br>
$xpaget ds9 fits header -2 # hdu 2 with inherit<br>
$xpaget ds9 fits header keyword BITPIX<br>
$xpaget ds9 fits header 1 keyword BITPIX<br>
$xpaget ds9 fits image &gt; foo.fits<br>
$xpaget ds9 fits table &gt; bar.fits<br>
$xpaget ds9 fits slice &gt; foo.fits<br>
<br>
$xpaset -p ds9 fits foo.fits<br>
$xpaset -p ds9 fits new foo.fits<br>
$xpaset -p ds9 fits bar.fits[bin=detx,dety]<br>
$xpaset -p ds9 fits slice foo.fits<br>
$xpaset -p ds9 fits mask foo.fits<br>
<br>
$cat foo.fits | xpaset ds9 fits<br>
$cat foo.fits | xpaset ds9 fits new<br>
$cat bar.fits | xpaset ds9 fits -[bin=detx,dety]<br>
$cat foo.fits | xpaset ds9 fits slice<br>
$cat foo.fits | xpaset ds9 fits mask<br></tt>
<p><b><a name="frame" id="frame"></a>frame</b></p>
<p>Controls frame functions. Frames may be created, deleted, reset, and centered. While return the current frame number. If you goto a frame that does not exists, it will be created. If the frame is hidden, it will be shown. The 'frameno' option is available for backward compatibility.</p>
<tt>Syntax:<br>
frame [center [#|all]]<br>
&nbsp;&nbsp;&nbsp; [clear [#|all]]<br>
&nbsp;&nbsp;&nbsp; [new [rgb|3d]]<br>
&nbsp;&nbsp;&nbsp; [delete [#|all]]<br>
&nbsp;&nbsp;&nbsp; [reset [#|all]]<br>
&nbsp;&nbsp;&nbsp; [refresh [#|all]]<br>
&nbsp;&nbsp;&nbsp; [hide [#|all]]<br>
&nbsp;&nbsp;&nbsp; [show [#|all]]<br>
&nbsp;&nbsp;&nbsp; [move first]<br>
&nbsp;&nbsp;&nbsp; [move back]<br>
&nbsp;&nbsp;&nbsp; [move forward]<br>
&nbsp;&nbsp;&nbsp; [move last]<br>
&nbsp;&nbsp;&nbsp; [first]<br>
&nbsp;&nbsp;&nbsp; [prev]<br>
&nbsp;&nbsp;&nbsp; [next]<br>
&nbsp;&nbsp;&nbsp; [last]<br>
&nbsp;&nbsp;&nbsp; [frameno #]<br>
&nbsp;&nbsp;&nbsp; [#]<br>
&nbsp;&nbsp;&nbsp; [match &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [lock &lt;coordsys&gt;|none]<br>
&nbsp;&nbsp;&nbsp; [has [amplifier|datamin|datasec|detector|grid|iis|irafmin|physical|smooth]]<br>
&nbsp;&nbsp;&nbsp; [has contour [aux]]]<br>
&nbsp;&nbsp;&nbsp; [has fits [bin|cube|mosaic]]<br>
&nbsp;&nbsp;&nbsp; [has marker [highlite|paste|select|undo]]<br>
&nbsp;&nbsp;&nbsp; [has system &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [has wcs [&lt;wcssys&gt;]]<br>
&nbsp;&nbsp;&nbsp; [has wcs celestial [&lt;wcssys&gt;]]<br>
&nbsp;&nbsp;&nbsp; [has wcs linear [&lt;wcssys&gt;]]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 frame # returns the id of the current frame<br>
$xpaget ds9 frame frameno # returns the id of the current frame<br>
$xpaget ds9 frame all # returns the id of all frames<br>
$xpaget ds9 frame active # returns the id of all active frames<br>
$xpaget ds9 frame lock<br>
$xpaget ds9 frame has amplifier<br>
$xpaget ds9 frame has datamin<br>
$xpaget ds9 frame has datasec<br>
$xpaget ds9 frame has detector<br>
$xpaget ds9 frame has grid<br>
$xpaget ds9 frame has iis<br>
$xpaget ds9 frame has irafmin<br>
$xpaget ds9 frame has physical<br>
$xpaget ds9 frame has smooth<br>
$xpaget ds9 frame has contour<br>
$xpaget ds9 frame has contour aux<br>
$xpaget ds9 frame has fits<br>
$xpaget ds9 frame has fits bin<br>
$xpaget ds9 frame has fits cube<br>
$xpaget ds9 frame has fits mosaic<br>
$xpaget ds9 frame has marker highlite<br>
$xpaget ds9 frame has marker paste<br>
$xpaget ds9 frame has marker select<br>
$xpaget ds9 frame has marker undo<br>
$xpaget ds9 frame has system physical<br>
$xpaget ds9 frame has wcs wcsa<br>
$xpaget ds9 frame has wcs celestial wcsa<br>
$xpaget ds9 frame has wcs linear wcsa<br>
<br>
$xpaset -p ds9 frame center # center current frame<br>
$xpaset -p ds9 frame center 1 # center 'Frame1'<br>
$xpaset -p ds9 frame center all # center all frames<br>
$xpaset -p ds9 frame clear # clear current frame<br>
$xpaset -p ds9 frame new # create new frame<br>
$xpaset -p ds9 frame new rgb # create new rgb frame<br>
$xpaset -p ds9 frame delete # delete current frame<br>
$xpaset -p ds9 frame reset # reset current frame<br>
$xpaset -p ds9 frame refresh # refresh current frame<br>
$xpaset -p ds9 frame hide # hide current frame<br>
$xpaset -p ds9 frame show 1 # show frame 'Frame1'<br>
$xpaset -p ds9 frame move first # move frame to first in order<br>
$xpaset -p ds9 frame move back # move frame back in order<br>
$xpaset -p ds9 frame move forward # move frame forward in order<br>
$xpaset -p ds9 frame move last # move frame to last in order<br>
$xpaset -p ds9 frame first # goto first frame<br>
$xpaset -p ds9 frame prev # goto prev frame<br>
$xpaset -p ds9 frame next # goto next frame<br>
$xpaset -p ds9 frame last # goto last frame<br>
$xpaset -p ds9 frame frameno 4 # goto frame 'Frame4', create if needed<br>
$xpaset -p ds9 frame 3 # goto frame 'Frame3', create if needed<br>
$xpaset -p ds9 frame match wcs<br>
$xpaset -p ds9 frame lock wcs<br></tt>
<p><b><a name="gif" id="gif"></a>gif</b></p>
<p>Load GIF image into current frame.<tt><br></tt></p>
<tt>Syntax:<br>
gif [new|slice] [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 gif &gt; foo.gif<br>
<br>
$xpaset -p ds9 gif foo.gif<br>
$xpaset -p ds9 gif new foo.gif<br>
$xpaset -p ds9 gif slice foo.gif<br>
<br>
$cat foo.gif | xpaset ds9 gif # not available windows<br>
$cat foo.gif | xpaset ds9 gifnew # not available windows<br>
$cat foo.gif | xpaset ds9 gifslice# not available windows</tt>
<p><b><a name="grid" id="grid"></a>grid</b></p>
<p>Controls coordinate grid. For grid numeric format syntax,&nbsp; click <a href="grid.html#Format">here</a>.</p>
<tt>Syntax:<br>
grid&nbsp; []<br>
&nbsp;&nbsp;&nbsp; [yes|no]<br>
&nbsp;&nbsp;&nbsp; [type analysis|publication]<br>
&nbsp;&nbsp;&nbsp; [system &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [sky &lt;skyframe&gt;]<br>
&nbsp;&nbsp;&nbsp; [skyformat &lt;skyformat&gt;]<br>
&nbsp;&nbsp;&nbsp; [grid yes|no]<br>
&nbsp;&nbsp;&nbsp; [grid color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [grid width &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [grid dash yes|no]<br>
&nbsp;&nbsp;&nbsp; [grid gap1 &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [grid gap2 &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [grid gap3 &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [axes yes|no]<br>
&nbsp;&nbsp;&nbsp; [axes color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [axes width &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [axes dash yes|no]<br>
&nbsp;&nbsp;&nbsp; [axes type interior|exterior]<br>
&nbsp;&nbsp;&nbsp; [axes origin lll|llu|lul|luu|ull|ulu|uul|uuu]<br>
&nbsp;&nbsp;&nbsp; [format1 &lt;format&gt;]<br>
&nbsp;&nbsp;&nbsp; [format2 &lt;format&gt;]<br>
&nbsp;&nbsp;&nbsp; [tickmarks yes|no]<br>
&nbsp;&nbsp;&nbsp; [tickmarks color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [tickmarks width &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [tickmarks dash yes|no]<br>
&nbsp;&nbsp;&nbsp; [border yes|no]<br>
&nbsp;&nbsp;&nbsp; [border color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [border width &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [border dash yes|no]<br>
&nbsp;&nbsp;&nbsp; [numerics yes|no]<br>
&nbsp;&nbsp;&nbsp; [numerics font times|helvetica|courier]<br>
&nbsp;&nbsp;&nbsp; [numerics fontsize &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [numerics fontweight normal|bold]<br>
&nbsp;&nbsp;&nbsp; [numerics fontslant roman|italic]<br>
&nbsp;&nbsp;&nbsp; [numerics color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [numerics gap1 &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [numerics gap2 &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [numerics gap3 &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [numerics type interior|exterior]<br>
&nbsp;&nbsp;&nbsp; [numerics vertical yes|no]<br>
&nbsp;&nbsp;&nbsp; [title yes|no]<br>
&nbsp;&nbsp;&nbsp; [title text &lt;text&gt;]<br>
&nbsp;&nbsp;&nbsp; [title def yes|no]<br>
&nbsp;&nbsp;&nbsp; [title gap &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [title font times|helvetica|courier]<br>
&nbsp;&nbsp;&nbsp; [title fontsize &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [title fontweight normal|bold]<br>
&nbsp;&nbsp;&nbsp; [title fontslant roman|italic]<br>
&nbsp;&nbsp;&nbsp; [title color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [labels yes|no]<br>
&nbsp;&nbsp;&nbsp; [labels def1 yes|no]<br>
&nbsp;&nbsp;&nbsp; [labels def2 yes|no]<br>
&nbsp;&nbsp;&nbsp; [labels text1 &lt;text&gt;]<br>
&nbsp;&nbsp;&nbsp; [labels text2 &lt;text&gt;]<br>
&nbsp;&nbsp;&nbsp; [labels gap1 &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [labels gap2 &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [labels font times|helvetica|courier]<br>
&nbsp;&nbsp;&nbsp; [labels fontsize &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [labels fontweight normal|bold]<br>
&nbsp;&nbsp;&nbsp; [labels fontslant roman|italic]<br>
&nbsp;&nbsp;&nbsp; [labels color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [reset]<br>
&nbsp;&nbsp;&nbsp; [load &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [save &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 grid<br>
$xpaget ds9 grid type<br>
$xpaget ds9 grid system<br>
$xpaget ds9 grid sky<br>
$xpaget ds9 grid skyformat<br>
$xpaget ds9 grid grid<br>
$xpaget ds9 grid grid color<br>
$xpaget ds9 grid grid width<br>
$xpaget ds9 grid grid dash<br>
$xpaget ds9 grid grid gap1<br>
$xpaget ds9 grid grid gap2<br>
$xpaget ds9 grid grid gap3<br>
$xpaget ds9 grid axes<br>
$xpaget ds9 grid axes color<br>
$xpaget ds9 grid axes width<br>
$xpaget ds9 grid axes dash<br>
$xpaget ds9 grid axes type<br>
$xpaget ds9 grid axes origin<br>
$xpaget ds9 grid format1<br>
$xpaget ds9 grid format2<br>
$xpaget ds9 grid tickmarks<br>
$xpaget ds9 grid tickmarks color<br>
$xpaget ds9 grid tickmarks width<br>
$xpaget ds9 grid tickmarks dash<br>
$xpaget ds9 grid border<br>
$xpaget ds9 grid border color<br>
$xpaget ds9 grid border width<br>
$xpaget ds9 grid border dash<br>
$xpaget ds9 grid numerics<br>
$xpaget ds9 grid numerics font<br>
$xpaget ds9 grid numerics fontsize<br>
$xpaget ds9 grid numerics fontweight<br>
$xpaget ds9 grid numerics fontslant<br>
$xpaget ds9 grid numerics color<br>
$xpaget ds9 grid numerics gap1<br>
$xpaget ds9 grid numerics gap2<br>
$xpaget ds9 grid numerics gap3<br>
$xpaget ds9 grid numerics type<br>
$xpaget ds9 grid numerics vertical<br>
$xpaget ds9 grid title<br>
$xpaget ds9 grid title text<br>
$xpaget ds9 grid title def<br>
$xpaget ds9 grid title gap<br>
$xpaget ds9 grid title font<br>
$xpaget ds9 grid title fontsize<br>
$xpaget ds9 grid title fontweight<br>
$xpaget ds9 grid title fontslant<br>
$xpaget ds9 grid title color<br>
$xpaget ds9 grid labels<br>
$xpaget ds9 grid labels text1<br>
$xpaget ds9 grid labels def1<br>
$xpaget ds9 grid labels gap1<br>
$xpaget ds9 grid labels text2<br>
$xpaget ds9 grid labels def2<br>
$xpaget ds9 grid labels gap2<br>
$xpaget ds9 grid labels font<br>
$xpaget ds9 grid labels fontsize<br>
$xpaget ds9 grid labels fontweight<br>
$xpaget ds9 grid labels fontslant<br>
$xpaget ds9 grid labels color<br>
<br>
$xpaset -p ds9 grid<br>
$xpaset -p ds9 grid yes<br>
$xpaset -p ds9 grid type analysis<br>
$xpaset -p ds9 grid system wcs<br>
$xpaset -p ds9 grid sky fk5<br>
$xpaset -p ds9 grid skyformat degrees<br>
$xpaset -p ds9 grid grid yes<br>
$xpaset -p ds9 grid grid color red<br>
$xpaset -p ds9 grid grid width 2<br>
$xpaset -p ds9 grid grid dash yes<br>
$xpaset -p ds9 grid grid gap1 10<br>
$xpaset -p ds9 grid grid gap2 10<br>
$xpaset -p ds9 grid grid gap3 10<br>
$xpaset -p ds9 grid axes yes<br>
$xpaset -p ds9 grid axes color red<br>
$xpaset -p ds9 grid axes width 2<br>
$xpaset -p ds9 grid axes dash yes<br>
$xpaset -p ds9 grid axes type exterior<br>
$xpaset -p ds9 grid axes origin lll<br>
$xpaset -p ds9 grid format1 d.2<br>
$xpaset -p ds9 grid format2 d.2<br>
$xpaset -p ds9 grid tickmarks yes<br>
$xpaset -p ds9 grid tickmarks color red<br>
$xpaset -p ds9 grid tickmarks width 2<br>
$xpaset -p ds9 grid tickmarks dash yes<br>
$xpaset -p ds9 grid border yes<br>
$xpaset -p ds9 grid border color red<br>
$xpaset -p ds9 grid border width 2<br>
$xpaset -p ds9 grid border dash yes<br>
$xpaset -p ds9 grid numerics yes<br>
$xpaset -p ds9 grid numerics font courier<br>
$xpaset -p ds9 grid numerics fontsize 12<br>
$xpaset -p ds9 grid numerics fontweight bold<br>
$xpaset -p ds9 grid numerics fontslant italic<br>
$xpaset -p ds9 grid numerics color red<br>
$xpaset -p ds9 grid numerics gap1 10<br>
$xpaset -p ds9 grid numerics gap2 10<br>
$xpaset -p ds9 grid numerics gap3 10<br>
$xpaset -p ds9 grid numerics type exterior<br>
$xpaset -p ds9 grid numerics vertical yes<br>
$xpaset -p ds9 grid title yes<br>
$xpaset -p ds9 grid title text {Hello World}<br>
$xpaset -p ds9 grid title def yes<br>
$xpaset -p ds9 grid title gap 10<br>
$xpaset -p ds9 grid title font courier<br>
$xpaset -p ds9 grid title fontsize 12<br>
$xpaset -p ds9 grid title fontweight bold<br>
$xpaset -p ds9 grid title fontslant italic<br>
$xpaset -p ds9 grid title color red<br>
$xpaset -p ds9 grid labels yes<br>
$xpaset -p ds9 grid labels text1 {Hello World}<br>
$xpaset -p ds9 grid labels def1 yes<br>
$xpaset -p ds9 grid labels gap1 10<br>
$xpaset -p ds9 grid labels text2 {Hello World}<br>
$xpaset -p ds9 grid labels def2 yes<br>
$xpaset -p ds9 grid labels gap2 10<br>
$xpaset -p ds9 grid labels font courier<br>
$xpaset -p ds9 grid labels fontsize 12<br>
$xpaset -p ds9 grid labels fontweight boldj<br>
$xpaset -p ds9 grid labels fontslant italic<br>
$xpaset -p ds9 grid labels color red<br>
$xpaset -p ds9 grid reset<br>
$xpaset -p ds9 grid load foo.grd<br>
$xpaset -p ds9 grid save foo.grd<br>
$xpaset -p ds9 grid open<br>
$xpaset -p ds9 grid close</tt><br>
<p><b><a name="header" id="header"></a>header</b></p>
<p>Display current fits header dialog. Optional extension number maybe specified. Please note, this differs from xpa fits header.</p>
<tt>Syntax:<br>
header [&lt;ext&gt;]<br>
&nbsp;&nbsp;&nbsp; [close [&lt;ext&gt;]]<br>
&nbsp;&nbsp;&nbsp; [save [&lt;ext&gt;] &lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 header<br>
$xpaset -p ds9 header 2<br>
$xpaset -p ds9 header close<br>
$xpaset -p ds9 header save 1 foo.txt<br></tt>
<p><b><a name="height" id="height"></a>height</b></p>
<p>Set the height of the image display window.</p>
<tt>Syntax:<br>
height [&lt;value&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 height<br>
<br>
$xpaset -p ds9 height 512<br></tt>
<p><b><a name="iconify" id="iconify"></a>iconify</b></p>
<p>Toggles iconification.</p>
<tt>Syntax:<br>
iconify []<br>
&nbsp;&nbsp;&nbsp; [yes|no]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 iconify<br>
<br>
$xpaset -p ds9 iconify<br>
$xpaset -p ds9 iconify yes<br></tt>
<p><b><a name="iexam" id="iexam"></a>iexam</b></p>
<p>Interactive examine function. A blinking cursor will indicate to the user to click on a point on an image. The specified information will be returned at that time. The default event is <tt>button</tt>. In the last form, the following macros will be expanded if present: <tt>$width, $height, $depth, $bitpix, $filename, $regions, $filename[$regions], $env, $pan, $value, $x, $y, $z.</tt> See <a href="analysis.html#macros">Analysis Macros</a> for more information.<br></p>
<tt>Syntax:<br>
iexam []<br>
&nbsp;&nbsp;&nbsp; [[]|button|key|any] coordinate &lt;coordsys&gt; [&lt;skyframe&gt;] [&lt;skyformat&gt;]<br>
&nbsp;&nbsp;&nbsp; [[]|button|key|any] data [width][height]<br>
&nbsp;&nbsp;&nbsp; [[]|button|key|any] &lt;macro string&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 iexam # image coordinates<br>
$xpaget ds9 iexam coordinate image<br>
$xpaget ds9 iexam key coordinate image # return coordinate and key event<br>
$xpaget ds9 iexam coordinate wcs fk5 degrees<br>
$xpaget ds9 iexam coordinate wcs galactic sexagesimal<br>
$xpaget ds9 iexam coordinate fk5<br>
$xpaget ds9 iexam data # return data value<br>
$xpaget ds9 iexam key data # return data value and key event<br>
$xpaget ds9 iexam data 3 3 # return all data in 3x3 box about selected point<br>
$xpaget ds9 iexam {'Click at $x,$y in file $filename'}</tt><br>
<p><b><a name="iis" id="iis"></a>iis</b></p>
<p>Set/Get IIS Filename. Optional mosaic number maybe supplied.</p>
<tt>Syntax:<br>
iis [filename &lt;filename&gt; [#]]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 iis filename<br>
$xpaget ds9 iis filename 4<br>
<br>
$xpaset -p ds9 iis filename foo.fits<br>
$xpaset -p ds9 iis filename bar.fits 4</tt><br>
<p><b><a name="jpeg" id="jpeg"></a>jpeg</b></p>
<p>Load JPEG image into current frame. Optional parameters: <tt>jpeg</tt> quality (1-100)</p>
<tt>Syntax:<br>
jpeg [new|slice] [&lt;filename&gt;] [1-100]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 jpeg &gt; foo.jpeg<br>
$xpaget ds9 jpeg 100 &gt; foo.jpeg<br>
<br>
$xpaset -p ds9 jpeg foo.jpeg<br>
$xpaset -p ds9 jpeg new foo.jpeg<br>
$xpaset -p ds9 jpeg slice foo.jpeg<br>
<br>
$cat foo.jpeg | xpaset ds9 jpeg# not available windows<br>
$cat foo.jpeg | xpaset ds9 jpegnew# not available windows<br>
$cat foo.jpeg | xpaset ds9 jpegslice# not available windows</tt>
<p><b><a name="lock" id="lock"></a>lock</b></p>
<p>Lock all other frames to the current frame.</p>
<tt>Syntax:<br>
lock[frame &lt;coordsys&gt;|none]<br>
&nbsp;&nbsp;&nbsp; [crosshair &lt;coordsys&gt;|none]<br>
&nbsp;&nbsp;&nbsp; [crop &lt;coordsys&gt;|none]<br>
&nbsp;&nbsp;&nbsp; [slice &lt;coordsys&gt;|none]]<br>
&nbsp;&nbsp;&nbsp; [bin [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [axes [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [scale [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [scalelimites [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [colorbar [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [block [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [smooth [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [3d [yes|no]]<br>
&nbsp;<br>
Example:<br>
$xpaget -p ds9 lock frame<br>
$xpaget -p ds9 lock crosshair<br>
$xpaget -p ds9 lock crop<br>
$xpaget -p ds9 lock slice<br>
$xpaget -p ds9 lock bin<br>
$xpaget -p ds9 lock axes<br>
$xpaget -p ds9 lock scale<br>
$xpaget -p ds9 lock scalelimits<br>
$xpaget -p ds9 lock colorbar<br>
$xpaget -p ds9 lock block<br>
$xpaget -p ds9 lock smooth<br>
$xpaget -p ds9 lock 3d<br>
<br>
$xpaset -p ds9 lock frame wcs<br>
$xpaset -p ds9 lock crosshair wcs<br>
$xpaset -p ds9 lock crop wcs<br>
$xpaset -p ds9 lock slice wcs<br>
$xpaset -p ds9 lock bin yes<br>
$xpaset -p ds9 lock axes yes<br>
$xpaset -p ds9 lock scale yes<br>
$xpaset -p ds9 lock scalelimits yes<br>
$xpaset -p ds9 lock colorbar yes<br>
$xpaset -p ds9 lock block yes<br>
$xpaset -p ds9 lock smooth yes<br>
$xpaset -p ds9 lock 3d yes<br>
<br></tt> <b><a name="lower" id="lower"></a>lower</b>
<p>Lower in the window stacking order.</p>
<tt>Syntax:<br>
lower<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 lower<br></tt>
<p><b><a name="magnifier" id="magnifier"></a>magnifier</b></p>
<p>Controls the magnifier settings.</p>
<tt>Syntax:<br>
magnifier [color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [zoom &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [cursor yes|no]<br>
&nbsp;&nbsp;&nbsp; [region yes|no]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 magnifier color<br>
$xpaget ds9 magnifier zoom<br>
$xpaget ds9 magnifier cursor<br>
$xpaget ds9 magnifier region<br>
<br>
$xpaset -p ds9 magnifier color yellow<br>
$xpaset -p ds9 magnifier zoom 2<br>
$xpaset -p ds9 magnifier cursor no<br>
$xpaset -p ds9 magnifier region no</tt><br>
<p><b><a name="mask" id="mask"></a>mask<br></b></p>
<p>Controls mask parameters.</p>
<tt>Syntax:<br>
mask [color &lt;color&gt;]<br>
&nbsp;&nbsp;&nbsp; [mark zero|nonzero|nan|nonnan|range]<br>
&nbsp;&nbsp;&nbsp; [range &lt;low&gt; &lt;high&gt;]<br>
&nbsp;&nbsp;&nbsp; [transparency &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [system &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [clear]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 mask color<br>
$xpaget ds9 mask mark<br>
$xpaget ds9 mask range<br>
$xpaget ds9 mask system<br>
$xpaget ds9 mask transparency<br>
<br>
$xpaset -p ds9 mask color red<br>
$xpaset -p ds9 mask mark zero<br>
$xpaset -p ds9 mask range 10 100<br>
$xpaset -p ds9 mask transparency 50<br>
$xpaset -p ds9 mask system wcs<br>
$xpaset -p ds9 mask clear<br>
$xpaset -p ds9 mask open<br>
$xpaset -p ds9 mask close</tt><br>
<p><b><a name="match" id="match"></a>match</b></p>
<p>Match all other frames to the current frame.</p>
<tt>Syntax:<br>
match[frame &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [crosshair &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [crop &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [slice &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [bin]<br>
&nbsp;&nbsp;&nbsp; [axes]<br>
&nbsp;&nbsp;&nbsp; [scale]<br>
&nbsp;&nbsp;&nbsp; [scalelimits]<br>
&nbsp;&nbsp;&nbsp; [colorbar]<br>
&nbsp;&nbsp;&nbsp; [block]<br>
&nbsp;&nbsp;&nbsp; [smooth]<br>
&nbsp;&nbsp;&nbsp; [3d]<br>
<br>
Example:<br>
$xpaset -p ds9 match frame wcs<br>
$xpaset -p ds9 match crosshair wcs<br>
$xpaset -p ds9 match crop wcs<br>
$xpaset -p ds9 match slicewcs<br>
$xpaset -p ds9 match bin<br>
$xpaset -p ds9 match axes<br>
$xpaset -p ds9 match scale<br>
$xpaset -p ds9 match scalelimits<br>
$xpaset -p ds9 match colorbar<br>
$xpaset -p ds9 match block<br>
$xpaset -p ds9 match smooth<br>
$xpaset -p ds9 match 3d<br>
<br></tt> <b><a name="mecube" id="mecube"></a>mecube</b>
<p>Load FITS multiple extension file as data cube.<br></p>
<tt>Syntax:<br>
mecube [new] [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 mecube &gt; foo.fits<br>
<br>
$xpaset -p ds9 mecube foo.fits<br>
$xpaset -p ds9 mecube new foo.fits<br>
<br>
$cat foo.fits | xpaset ds9 mecube<br>
$cat foo.fits | xpaset ds9 mecube new</tt>
<p><b><a name="minmax" id="minmax"></a>minmax</b></p>
<p>This is how DS9 determines&nbsp; the min and max data values from the data. <tt>SCAN</tt> will scan all data.&nbsp;<tt>DATAMIN</tt> and <tt>IRAFMIN</tt> will use the values of the keywords if present.<br></p>
<tt>Syntax:<br>
minmax [scan|sample|datamin|irafmin]<br>
&nbsp;&nbsp;&nbsp; [mode scan|sample|datamin|irafmin]<br>
&nbsp;&nbsp;&nbsp; [interval #]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 minmax mode<br>
$xpaget ds9 minmax interval<br>
<br>
$xpaset -p ds9 minmax scan<br>
$xpaset -p ds9 minmax mode scan<br>
$xpaset -p ds9 minmax interval 100<br></tt>
<p><b><a name="mode" id="mode"></a>mode</b></p>
<p>Controls the first mouse button mode.</p>
<tt>Syntax:<br>
mode [none|region|crosshair|colorbar|pan|zoom|rotate|catalog|examine|3d]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 mode<br>
$xpaset -p ds9 mode crosshair</tt><br>
<p><b><a name="mosaic" id="mosaic"></a>mosaic</b></p>
<p>Load FITS mosaic segment into current frame.</p>
<tt>Syntax:<br>
mosaic [wcs|wcsa...wcsz|iraf] [new|mask] [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 mosaic &gt; foo.fits<br>
<br>
$xpaset -p ds9 mosaic foo.fits<br>
$xpaset -p ds9 mosaic wcs foo.fits<br>
$xpaset -p ds9 mosaic wcs new foo.fits<br>
$xpaset -p ds9 mosaic wcs mask foo.fits<br>
<br>
$cat foo.fits | xpaset ds9 mosaic<br>
$cat foo.fits | xpaset ds9 mosaic wcs<br>
$cat foo.fits | xpaset ds9 mosaic wcs new<br>
$cat foo.fits | xpaset ds9 mosaic wcs mask<br></tt>
<p><b><a name="mosaicimage" id="mosaicimage"></a>mosaicimage</b></p>
<p>Load FITS mosaic image into current frame.</p>
<tt>Syntax:<br>
mosaicimage [wcs|wcsa...wcsz|iraf|wfpc2] [new|mask] [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 mosaicimage &gt; foo.fits<br>
<br>
$xpaset -p ds9 mosaicimage foo.fits<br>
$xpaset -p ds9 mosaicimage wcs foo.fits<br>
$xpaset -p ds9 mosaicimage wcs new foo.fits<br>
$xpaset -p ds9 mosaicimage wcs mask foo.fits<br>
<br>
$cat foo.fits | xpaset ds9 mosaicimage<br>
$cat foo.fits | xpaset ds9 mosaicimage wcs<br>
$cat foo.fits | xpaset ds9 mosaicimage wcs new<br>
$cat foo.fits | xpaset ds9 mosaicimage wcs mask<br></tt>
<p><b><a name="movie" id="movie"></a>movie<br></b></p>
<p>Create a movie from snap shots of the DS9 window. A <tt>slice</tt> movie cycles though all slices of a cube. A <tt>frame</tt> movie cycles through all active frames. A <tt>3d</tt> movie cycles through specified viewing angles. The default action is <tt>slice</tt>. Movie types are either <tt>MPEG</tt> or <tt>Animated GIF</tt>, with default <tt>MPEG</tt>. Optional parameters for <tt>3d</tt>: number of frames, azimuth from/to, elevation from/to, slice from/to, oscillate/repeat times.</p>
<tt>Syntax:<br>
movie [slice|frame|3d][mpeg|gif] &lt;filename&gt;<br>
movie 3d [mpeg|gif] &lt;filename&gt; [number|azfrom|azto|elfrom|elto|slfrom|slto|oscillate|repeat &lt;#&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 movie slice mpeg ds9.mpg<br>
$xpaset -p ds9 movie frame gif ds9.gif<br>
$xpaset -p ds9 movie 3d mpeg ds9.mpg number 10 azfrom -60 azto 60 oscillate 1<br></tt>
<p><b><a name="multiframe" id="multiframe"></a>multiframe</b></p>
<p>Load FITS multiple extension file as multiple images.<br></p>
<tt>Syntax:<br>
multiframe [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 multiframe foo.fits<br>
<br>
$cat foo.fits | xpaset ds9 multiframe# not available windows</tt><br>
<p><b><a name="nameserver" id="nameserver"></a>nameserver</b></p>
<p>Support Name Server functions. Coordinates are in fk5.</p>
<tt>Syntax:<br>
nameserver [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [serverned-sao|ned-cds|simbad-sao|simbad-cds|vizier-sao|vizier-cds]<br>
&nbsp;&nbsp;&nbsp; [skyformat degrees|sexagesimal]<br>
&nbsp;&nbsp;&nbsp; [pan]<br>
&nbsp;&nbsp;&nbsp; [crosshair]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
<br>
Example:<br>
$xpaget ds9 nameserver<br>
$xpaget ds9 nameserver server<br>
$xpaget ds9 nameserver skyformat<br>
$xpaget ds9 nameserver m31<br>
<br>
$xpaset -p ds9 nameserver m31<br>
$xpaset -p ds9 nameserver name m31<br>
$xpaset -p ds9 nameserver server ned-sao<br>
$xpaset -p ds9 nameserver skyformat sexagesimal<br>
$xpaset -p ds9 nameserver pan<br>
$xpaset -p ds9 nameserver crosshair<br>
$xpaset -p ds9 nameserver open<br>
$xpaset -p ds9 nameserver close</tt><br>
<p><b><a name="nan" id="nan"></a>nan</b></p>
<p>Set image not-a-number color.</p>
<tt>Syntax:<br>
nan &lt;color&gt;<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 nan<br>
<br>
$xpaset -p ds9 nan red<br></tt>
<p><b><a name="nrrd" id="nrrd"></a>nrrd</b></p>
<p>Load an NRRD (Nearly Raw Raster Data) file. Optional parameter: array endian.<br></p>
<tt>Syntax:<br>
nrrd [native|little|big]<br>
nrrd [new|mask] [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 nrrd<br>
$xpaget ds9 nrrd big<br>
<br>
$xpaset -p ds9 nrrd foo.nrrd<br>
$xpaset -p ds9 nrrd new foo.nrrd<br>
$xpaset -p ds9 nrrd mask foo.nrrd<br>
<br>
$cat foo.nrrd | xpaset ds9 nrrd<br>
$cat foo.nrrd | xpaset ds9 nrrdnew<br>
$cat foo.nrrd | xpaset ds9 nrrd mask</tt>
<p><b><a name="nvss" id="nvss"></a>nvss</b></p>
<p>Support for NRAO VLA Sky Survey.</p>
<tt>Syntax:<br>
nvss []<br>
&nbsp;&nbsp;&nbsp; [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;|clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ra&gt; &lt;dec&gt;] # in wcs fk5<br>
&nbsp;&nbsp;&nbsp; [size &lt;width&gt; &lt;height&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [save yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame new|current]<br>
&nbsp;&nbsp;&nbsp; [update frame|crosshair]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 nvss name<br>
$xpaget ds9 nvss coord<br>
$xpaget ds9 nvss size<br>
$xpaget ds9 nvss save<br>
$xpaget ds9 nvss frame<br>
<br>
$xpaset -p ds9 nvss<br>
$xpaset -p ds9 nvss m31<br>
$xpaset -p ds9 nvss name m31<br>
$xpaset -p ds9 nvss name clear<br>
$xpaset -p ds9 nvss 00:42:44.404 +41:16:08.78<br>
$xpaset -p ds9 nvss size 60 60 arcmin<br>
$xpaset -p ds9 nvss save yes<br>
$xpaset -p ds9 nvss frame current<br>
$xpaset -p ds9 nvss update frame<br>
$xpaset -p ds9 nvss open<br>
$xpaset -p ds9 nvss close</tt><br>
<p><b><a name="orient" id="orient"></a>orient</b></p>
<p>Controls the orientation of the current frame.</p>
<tt>Syntax:<br>
orient [none|x|y|xy]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 orient<br>
<br>
$xpaset -p ds9 orient xy<br>
$xpaset -p ds9 orient open<br>
$xpaset -p ds9 orient close<br></tt>
<p><b><a name="pagesetup" id="pagesetup"></a>pagesetup</b></p>
<p>Controls Page Setup options.<br></p>
<tt>Syntax:<br>
pagesetup [orient portrait|landscape]<br>
&nbsp;&nbsp;&nbsp; [scale &lt;numberic&gt;]<br>
&nbsp;&nbsp;&nbsp; [size letter|legal|tabloid|poster|a4]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 pagesetup orient<br>
$xpaget ds9 pagesetup scale<br>
$xpaget ds9 pagesetup size<br>
<br>
$xpaset -p ds9 pagesetup orient portrait<br>
$xpaset -p ds9 pagesetup scale 50<br>
$xpaset -p ds9 pagesetup size poster<br></tt>
<p><b><a name="pan" id="pan"></a>pan</b></p>
<p>Controls the current image cursor location for the current frame.</p>
<tt>Syntax:<br>
pan [&lt;coordsys&gt; [&lt;skyframe&gt;] [&lt;skyformat&gt;]] # get current coords<br>
<br>
pan [&lt;x&gt; &lt;y&gt; &lt;coordsys&gt; [&lt;skyframe&gt;]] # relative<br>
&nbsp;&nbsp;&nbsp; [to &lt;x&gt; &lt;y&gt; &lt;coordsys&gt; [&lt;skyframe&gt;]] # absolute<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 pan # get current image coords<br>
$xpaget ds9 pan wcs fk4 sexagesimal # get current coords<br>
<br>
$xpaset -p ds9 pan 200 200 image # pan relative<br>
$xpaset -p ds9 pan to 400 400 physical # pan to physical coords<br>
$xpaset -p ds9 pan to 13:29:55 47:11:50 wcs fk5 # pan to wcs coords<br>
$xpaset -p ds9 pan open<br>
$xpaset -p ds9 pan close<br></tt>
<p><b><a name="pixeltable" id="pixeltable"></a>pixeltable</b></p>
<p>Display/Hide the pixel table.</p>
<tt>Syntax:<br>
pixeltable []<br>
&nbsp;&nbsp;&nbsp; [yes|open]<br>
&nbsp;&nbsp;&nbsp; [no|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 pixeltable<br>
<br>
$xpaset -p ds9 pixeltable<br>
$xpaset -p ds9 pixeltable yes<br>
$xpaset -p ds9 pixeltable open<br>
$xpaset -p ds9 pixeltable close</tt><br>
<p><b><a name="plot" id="plot"></a>plot</b></p>
<p>Display and configure data plots. All plot commands take an optional second command, the plot name. If no plot name is specified, the last plot created is assumed. Plot data is assumed to be a pair of coordinates, with optional error values. The follow are valid data descriptions:</p>
<blockquote><tt>xy&nbsp;&nbsp;&nbsp;&nbsp; x and y coordinates<br>
xyex&nbsp;&nbsp;&nbsp; x,y coordinates with x errors<br>
xyey&nbsp;&nbsp;&nbsp; x,y coordinates with y errors<br>
xyexey&nbsp;&nbsp;&nbsp; x,y coordinates with&nbsp; x and y errors<br></tt></blockquote>
<p><tt>To create a new plot, use the plot new command.</tt></p>
<tt>Syntax:<br>
# create new empty plot window<br>
plot []<br>
&nbsp;&nbsp;&nbsp; [line|bar|scatter]<br>
&nbsp;&nbsp;&nbsp; [new]<br>
&nbsp;&nbsp;&nbsp; [new line|bar|scatter]<br>
&nbsp;&nbsp;&nbsp; [new name &lt;plotname&gt;]<br>
&nbsp;&nbsp;&nbsp; [new name &lt;plotname&gt; line|bar|scatter]<br>
<br>
# create new plot with data from stdin<br>
plot[new &lt;title&gt; &lt;xaxis label&gt; &lt;yaxis label&gt;xy|xyex|xyey|xyexey]<br>
&nbsp;&nbsp;&nbsp; [new line|bar|scatter &lt;title&gt; &lt;xaxis label&gt; &lt;yaxis label&gt;xy|xyex|xyey|xyexey]<br>
&nbsp;&nbsp;&nbsp; [newname &lt;plotname&gt;&lt;title&gt; &lt;xaxis label&gt; &lt;yaxis label&gt;xy|xyex|xyey|xyexey]<br>
&nbsp;&nbsp;&nbsp; [newname &lt;plotname&gt;line|bar|scatter &lt;title&gt; &lt;xaxis label&gt; &lt;yaxis label&gt;xy|xyex|xyey|xyexey]<br>
<br>
# create new plot with data from stdin which includes title/dim headers<br>
plot [new stdin]<br>
&nbsp;&nbsp;&nbsp; [new line|bar|scatter stdin]<br>
&nbsp;&nbsp;&nbsp; [new name &lt;plotname&gt; stdin]<br>
&nbsp;&nbsp;&nbsp; [new name &lt;plotname&gt;line|bar|scatterstdin]<br>
<br>
#load data into existing plot from stdin<br>
plot [[&lt;plotname&gt;] data xy|xyex|xyey|xyexey]<br>
<br>
# existing plot<br>
plot [[&lt;plotname&gt;] load &lt;filename&gt; xy|xyex|xyey|xyexey]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] save &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] layout grid|row|column|strip]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] layout strip weight &lt;percent&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] add graph line|bar|scatter]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] select graph &lt;graph&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] delete graph]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] select dataset &lt;dataset&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] delete dataset]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] duplicate]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] stats yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] list yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] loadconfig &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] saveconfig &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] pagesetup orient portrait|landscape]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] pagesetup size letter|legal|tabloid|poster|a4]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] print]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] print destination printer|file]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] print command &lt;command&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] print filename &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] print color rgb|gray]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] close]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] mode pointer|zoom]<br>
<br>
# export<br>
plot [[&lt;plotname&gt;] export &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] export gif|tiff|jpeg|png &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] export jpeg &lt;filename&gt; [1-100]]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] export tiff &lt;filename&gt; none|jpeg|packbits|deflate]]<br>
&nbsp;<br>
# configure graph<br>
plot [[&lt;plotname&gt;] axis x|y grid yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] axis x|y log yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] axis x|y flip yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] axis x|y auto yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] axis x|y min &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] axis x|y max &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] axis x|y format &lt;string&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] background &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] legend yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] legend position right|left|top|bottom|plotarea]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] font title|labels|numbers font times|helvetica|courier]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] font title|labels|numbers size &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] font title|labels|numbers weight normal|bold]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] font title|labels|numbers slant roman|italic]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] title &lt;string&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] title x|y &lt;string&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] barmode normal|stacked|aligned|overlap]<br>
<br>
# configure current dataset<br>
plot[[&lt;plotname&gt;] show yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] shape none|circle|square|diamond|plus|splus|scross|triangle|arrow]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] shape fill yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] shape color &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] smooth step|linear|cubic|quadratic|catrom]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] color &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] width &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] dash yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] error yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] error color &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] error cap yes|no]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] error width &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [[&lt;plotname&gt;] name &lt;string&gt;]<br>
<br>
Example:<br>
# return all plotnames<br>
$xpaget ds9 plot<br>
<br>
# create new empty plot window<br>
$xpaset -p ds9 plot<br>
$xpaset -p ds9 plot bar<br>
$xpaset -p ds9 plot new<br>
$xpaset -p ds9 plot new bar<br>
$xpaset -p ds9 plot new name foo<br>
$xpaset -p ds9 plot new name foo bar<br>
<br>
# create new plot with data from stdin<br>
$cat xy.dat | xpaset ds9 plot new {The Title} {X Axis} {Y Axis} xy<br>
$cat xy.dat | xpaset ds9 plot new bar {The Title} {X Axis} {Y Axis} xy<br>
$cat xy.dat | xpaset ds9 plot new name foo {The Title} {X Axis} {Y Axis} xy<br>
$cat xy.dat | xpaset ds9 plot new name foo bar {The Title} {X Axis} {Y Axis} xy<br>
<br>
# create new plot with data from stdin which includes title/dim headers<br>
$cat stdin.2.dat | xpaset ds9 plot new stdin<br>
$cat stdin.2.dat | xpaset ds9 plot new line stdin<br>
$cat stdin.2.dat | xpaset ds9 plot new name foo stdin<br>
$cat stdin.2.dat | xpaset ds9 plot new name foo line stdin<br>
<br>
#load data into existing plot from stdin<br>
$cat xy.dat | xpaset ds9 plot data xy<br>
$cat xy.dat | xpaset ds9 plot foo data xy<br>
<br>
# existing plot<br>
$xpaget ds9 plot layout<br>
$xpaget ds9 plot layout strip weight<br>
$xpaget ds9 plot select graph<br>
$xpaget ds9 plot select dataset<br>
$xpaget ds9 plot stats<br>
$xpaget ds9 plot list<br>
$xpaset -p ds9 plot load xy.dat xy<br>
$xpaset -p ds9 plot save foo.dat<br>
$xpaset -p ds9 plot layout strip<br>
$xpaset -p ds9 plot layout strip weight 30<br>
$xpaset -p ds9 plot add graph scatter<br>
$xpaset -p ds9 plot select graph 1<br>
$xpaset -p ds9 plot delete graph<br>
$xpaset -p ds9 plot select dataset 1<br>
$xpaset -p ds9 plot delete dataset<br>
$xpaset -p ds9 plot duplicate<br>
$xpaset -p ds9 plot stats yes<br>
$xpaset -p ds9 plot list yes<br>
$xpaset -p ds9 plot loadconfig foo.plt<br>
$xpaset -p ds9 plot saveconfig foo.plt<br>
$xpaset -p ds9 plot pagesetup orient portrait<br>
$xpaset -p ds9 plot pagesetup size letter<br>
$xpaset -p ds9 plot print<br>
$xpaset -p ds9 plot print destination file<br>
$xpaset -p ds9 plot print command lp<br>
$xpaset -p ds9 plot print filename foo.ps<br>
$xpaset -p ds9 plot print color rgb<br>
$xpaset -p ds9 plot close<br>
<br>
# plot mode<br>
$xpaget ds9 plot mode<br>
$xpaset -p ds9 plot mode pointer<br>
<br>
# export plot<br>
$xpaset -p ds9 plot export tiff foo.tiff jpeg<br>
$xpaset -p ds9 plot export jpeg foo.jpeg 75<br>
$xpaset -p ds9 plot export png foo.png<br>
<br>
# configure plot<br>
$xpaget ds9 plot axis x grid<br>
$xpaget ds9 plot axis x log<br>
$xpaget ds9 plot axis x flip<br>
$xpaget ds9 plot axis x auto<br>
$xpaget ds9 plot axis x min<br>
$xpaget ds9 plot axis x max<br>
$xpaget ds9 plot axis x format<br>
$xpaget ds9 plot background<br>
$xpaget ds9 plot legend<br>
$xpaget ds9 plot legend position<br>
$xpaget ds9 plot font numbers font<br>
$xpaget ds9 plot font numbers size<br>
$xpaget ds9 plot font numbers weight<br>
$xpaget ds9 plot font numbers slant<br>
$xpaget ds9 plot title<br>
$xpaget ds9 plot title xaxis<br>
$xpaget ds9 plot title yaxis<br>
$xpaset -p ds9 plot axis x grid yes<br>
$xpaset -p ds9 plot axis x log yes<br>
$xpaset -p ds9 plot axis x flip yes<br>
$xpaset -p ds9 plot axis x auto no<br>
$xpaset -p ds9 plot axis x min 1<br>
$xpaset -p ds9 plot axis x max 100<br>
$xpaset -p ds9 plot axis x format {%f}<br>
$xpaset -p ds9 plot background white<br>
$xpaset -p ds9 plot legend yes<br>
$xpaset -p ds9 plot legend position left<br>
$xpaset -p ds9 plot font numbers font times<br>
$xpaset -p ds9 plot font numbers size 12<br>
$xpaset -p ds9 plot font numbers weight bold<br>
$xpaset -p ds9 plot font numbers slant italic<br>
$xpaset -p ds9 plot title {This is a Title}<br>
$xpaset -p ds9 plot title x {X Axis}<br>
$xpaset -p ds9 plot title y {Y Axis}<br>
$xpaset -p ds9 plot title legend {This is the Legend}<br>
<br>
# bar plot<br>
$xpaget ds9 plot barmode<br>
<br>
$xpaset -p ds9 plot barmode aligned<br>
<br>
# configure current dataset<br>
$xpaget ds9 plot show<br>
$xpaget ds9 plot shape<br>
$xpaget ds9 plot shape fill<br>
$xpaget ds9 plot shape color<br>
$xpaget ds9 plot smooth<br>
$xpaget ds9 plot color<br>
$xpaget ds9 plot width<br>
$xpaget ds9 plot dash<br>
$xpaget ds9 plot error<br>
$xpaget ds9 plot error color<br>
$xpaget ds9 plot error cap<br>
$xpaget ds9 plot error width<br>
$xpaget ds9 plot name<br>
<br>
$xpaset -p ds9 plot show yes<br>
$xpaset -p ds9 plot shape circle<br>
$xpaset -p ds9 plot shape fill no<br>
$xpaset -p ds9 plot shape color cyan<br>
$xpaset -p ds9 plot smooth step<br>
$xpaset -p ds9 plot color red<br>
$xpaset -p ds9 plot width 2<br>
$xpaset -p ds9 plot dash yes<br>
$xpaset -p ds9 plot error yes<br>
$xpaset -p ds9 plot error color red<br>
$xpaset -p ds9 plot error cap yes<br>
$xpaset -p ds9 plot error width 2<br>
$xpaset -p ds9 plot name {My Data}<br>
<br></tt> <b><a name="png" id="png"></a>png</b>
<p>Load PNG image into current frame.<br></p>
<tt>Syntax:<br>
png [new|slice] [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 png &gt; foo.png<br>
<br>
$xpaset -p ds9 png foo.png<br>
$xpaset -p ds9 png new foo.png<br>
$xpaset -p ds9 png slice foo.png<br>
<br>
$cat foo.png | xpaset ds9 png<br>
$cat foo.png | xpaset ds9 png new<br>
$cat foo.png | xpaset ds9 png slice</tt><br>
<p><b><a name="precision" id="precision"></a>precision</b></p>
<p>Set region and coordinate output format precision.</p>
<tt>Syntax:<br>
precision &lt;linear&gt;&lt;degree&gt;&lt;hms&gt;&lt;dms&gt;&lt;arcmin&gt;&lt;arcsec&gt;<br>
<br>
Example:<br>
$xpaget ds9 precision<br>
<br>
$xpaset -p ds9 precision 8 10 4 3 5 3</tt><br>
<p><b><a name="prefs" id="prefs"></a>prefs</b></p>
<p>Controls various preference settings.</p>
<tt>Syntax:<br>
prefs [clear]<br>
&nbsp;&nbsp;&nbsp; [irafalign yes|no]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 prefs irafalign<br>
<br>
$xpaset -p ds9 prefs clear<br>
$xpaset -p ds9 prefs iraf yes<br></tt>
<p><b><a name="preserve" id="preserve"></a>preserve</b></p>
<p>Preserve the follow attributes while loading a new image.</p>
<tt>Syntax:<br>
preserve [pan yes|no]<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [regions yes|no]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 preserve pan<br>
$xpaget ds9 preserve regions<br>
<br>
$xpaset -p ds9 preserve pan yes<br>
$xpaset -p ds9 preserve regions yes<br></tt>
<p><b><a name="psprint" id="psprint"></a>psprint</b></p>
<p>Invokes postscript printing. Please see <a href="command.html#print">print</a> for further details.</p>
<p><b><a name="print" id="print"></a>print</b></p>
<p>Controls printing. Use print option to set printing options. Only available for <tt>XPA_METHOD local.</tt></p>
<tt>Syntax:<br>
print [destination printer|file]<br>
&nbsp;&nbsp;&nbsp; [command &lt;command&gt;]<br>
&nbsp;&nbsp;&nbsp; [filename &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [color rgb|cmyk|gray]<br>
&nbsp;&nbsp;&nbsp; [level 1|2|3]<br>
&nbsp;&nbsp;&nbsp; [resolution 72|screen|96|144|150|225|300|600|1200]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 print destination<br>
$xpaget ds9 print command<br>
$xpaget ds9 print filename<br>
$xpaget ds9 print color<br>
$xpaget ds9 print level<br>
$xpaget ds9 print resolution<br>
<br>
$xpaset -p ds9 print<br>
$xpaset -p ds9 print destination file<br>
$xpaset -p ds9 print command lp<br>
$xpaset -p ds9 print filename foo.ps<br>
$xpaset -p ds9 print color cmyk<br>
$xpaset -p ds9 print level 2<br>
$xpaset -p ds9 print resolution 96</tt>
<p><b><a name="raise" id="raise"></a>raise</b></p>
<p>Raise in the window stacking order.</p>
<tt>Syntax:<br>
raise<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 raise</tt>
<p><b><a name="regions" id="regions"></a>regions</b></p>
<p>Controls regions in the current frame.</p>
<tt>Syntax:<br>
regions&nbsp;[&lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [load [all] &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [save &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [list [close]]<br>
&nbsp;&nbsp;&nbsp; [epsilon &lt;integer&gt;]<br>
&nbsp;&nbsp;&nbsp; [show yes|no]<br>
&nbsp;&nbsp;&nbsp; [showtext yes|no]<br>
&nbsp;&nbsp;&nbsp; [centroid]<br>
&nbsp;&nbsp;&nbsp; [centroid auto yes|no]<br>
&nbsp;&nbsp;&nbsp; [centroid radius &lt;value&gt;|iteration &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [getinfo]<br>
&nbsp;&nbsp;&nbsp; [move front]<br>
&nbsp;&nbsp;&nbsp; [move back]<br>
&nbsp;&nbsp;&nbsp; [select all]<br>
&nbsp;&nbsp;&nbsp; [select none]<br>
&nbsp;&nbsp;&nbsp; [select invert]<br>
&nbsp;&nbsp;&nbsp; [delete all]<br>
&nbsp;&nbsp;&nbsp; [delete select]<br>
&nbsp;&nbsp;&nbsp; [format ds9|xml|ciao|saotng|saoimage|pros|xy]<br>
&nbsp;&nbsp;&nbsp; [system image|physical|wcs|wcsa...wcsz]<br>
&nbsp;&nbsp;&nbsp; [sky fk4|fk5|icrs|galactic|ecliptic]<br>
&nbsp;&nbsp;&nbsp; [skyformat degrees|sexagesimal]<br>
&nbsp;&nbsp;&nbsp; [strip yes|no]<br>
&nbsp;&nbsp;&nbsp; [shape &lt;shape&gt;]<br>
&nbsp;&nbsp;&nbsp; [color &amp;ltcolor&gt;]<br>
&nbsp;&nbsp;&nbsp; [width &lt;width&gt;]<br>
&nbsp;&nbsp;&nbsp; [fixed|edit|rotate|delete yes|no]<br>
&nbsp;&nbsp;&nbsp; [include|exclude|source|background]<br>
&nbsp;&nbsp;&nbsp; [command &lt;marker command&gt;]<br>
&nbsp;&nbsp;&nbsp; [composite]<br>
&nbsp;&nbsp;&nbsp; [dissolve]<br>
&nbsp;&nbsp;&nbsp; [template &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [template &lt;filename&gt; at &lt;ra&gt; &lt;dec&gt; &lt;coordsys&gt; &lt;skyframe&gt;]<br>
&nbsp;&nbsp;&nbsp; [savetemplate &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [groups]<br>
&nbsp;&nbsp;&nbsp; [group new]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; new]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; update]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; select]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; color &amp;ltcolor&gt;]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; copy]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; delete]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; cut]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; font &lt;font&gt;]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; move &lt;int&gt; &lt;int&gt;]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; movefront]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; moveback]<br>
&nbsp;&nbsp;&nbsp; [group &lt;tag&gt; property &lt;property&gt; yes|no]<br>
&nbsp;&nbsp;&nbsp; [copy]<br>
&nbsp;&nbsp;&nbsp; [cut]<br>
&nbsp;&nbsp;&nbsp; [paste image|physical|wcs|wcsa...wcsz]<br>
&nbsp;&nbsp;&nbsp; [undo]<br>
&nbsp;&nbsp;&nbsp; [-format ds9|ciao|saotng|saoimage|pros|xy]<br>
&nbsp;&nbsp;&nbsp; [-system image|physical|wcs|wcsa...wcsz]<br>
&nbsp;&nbsp;&nbsp; [-sky fk4|fk5|icrs|galactic|ecliptic]<br>
&nbsp;&nbsp;&nbsp; [-skyformat degrees|sexagesimal]<br>
&nbsp;&nbsp;&nbsp; [-delim [nl|&lt;char&gt;]]<br>
&nbsp;&nbsp;&nbsp; [-prop select|edit|move|rotate|delete|fixed|include|source 1|0]<br>
&nbsp;&nbsp;&nbsp; [-group &lt;tag&gt;]<br>
&nbsp;&nbsp;&nbsp; [-strip yes|no]<br>
&nbsp;&nbsp;&nbsp; [-wcs yes|no]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 regions<br>
$xpaget ds9 regions -format ds9 -system wcs -sky fk5 -skyformat sexagesimal -prop edit 1 -group foo<br>
$xpaget ds9 regions epsilon<br>
$xpaget ds9 regions show<br>
$xpaget ds9 regions showtext<br>
$xpaget ds9 regions centroid auto<br>
$xpaget ds9 regions centroid radius<br>
$xpaget ds9 regions centroid iteration<br>
$xpaget ds9 regions selected<br>
$xpaget ds9 regions format<br>
$xpaget ds9 regions system<br>
$xpaget ds9 regions sky<br>
$xpaget ds9 regions skyformat<br>
$xpaget ds9 regions strip<br>
$xpaget ds9 regions shape<br>
$xpaget ds9 regions color<br>
$xpaget ds9 regions width<br>
$xpaget ds9 regions source<br>
$xpaget ds9 regions background<br>
$xpaget ds9 regions include<br>
$xpaget ds9 regions exclude<br>
$xpaget ds9 regions selected<br>
$xpaget ds9 regions groups<br>
<br>
$cat foo.reg | xpaset ds9 regions -format xy -system wcs -sky fk5<br>
$cat bar.reg | xpaset ds9 regions -format ds9<br>
$echo "image; circle 100 100 20" | xpaset ds9 regions<br>
$echo "image; circle 100 100 20" | xpaset ds9 regions<br>
$echo "fk5; circle 13:29:55 47:11:50 .5'" | xpaset ds9 regions<br>
$echo "physical; ellipse 100 100 20 40" | xpaset ds9 regions<br>
$echo "box 100 100 20 40 25" | xpaset ds9 regions<br>
$echo "image; line 100 100 200 400" | xpaset ds9 regions<br>
$echo "physical; ruler 200 300 200 400" | xpaset ds9 regions<br>
$echo "image; text 100 100 # text={Hello, World}" | xpaset ds9 regions<br>
$echo "fk4; boxcircle point 13:29:55 47:11:50" | xpaset ds9 regions<br>
<br>
$xpaset -p ds9 regions foo.reg<br>
$xpaset -p ds9 regions -format ciao bar.reg # load as ciao format<br>
$xpaset -p ds9 regions foo.fits # FITS regions files do not need a format specification<br>
$xpaset -p ds9 regions load foo.reg # load foo.reg into current frame<br>
$xpaset -p ds9 regions load all foo.reg # load foo.reg into all frames<br>
$xpaset -p ds9 regions load '*.reg'# expand *.reg and load into current frame<br>
$xpaset -p ds9 regions load all '*.reg' # expand *.reg and load into all frames<br>
$xpaset -p ds9 regions save foo.reg<br>
$xpaset -p ds9 regions list<br>
$xpaset -p ds9 regions list close<br>
$xpaset -p ds9 regions epsilon 5<br>
$xpaset -p ds9 regions show yes<br>
$xpaset -p ds9 regions showtext no<br>
$xpaset -p ds9 regions centroid<br>
$xpaset -p ds9 regions centroid auto yes<br>
$xpaset -p ds9 regions centroid radius 10<br>
$xpaset -p ds9 regions centroid iteration 20<br>
$xpaset -p ds9 regions getinfo<br>
$xpaset -p ds9 regions move back<br>
$xpaset -p ds9 regions move front<br>
$xpaset -p ds9 regions select all<br>
$xpaset -p ds9 regions select none<br>
$xpaset -p ds9 regions select invert<br>
$xpaset -p ds9 regions delete all<br>
$xpaset -p ds9 regions delete select<br>
$xpaset -p ds9 regions format ds9<br>
$xpaset -p ds9 regions system wcs<br>
$xpaset -p ds9 regions sky fk5<br>
$xpaset -p ds9 regions skyformat degrees<br>
$xpaset -p ds9 regions strip yes<br>
$xpaset -p ds9 regions shape ellipse<br>
$xpaset -p ds9 regions color red<br>
$xpaset -p ds9 regions width 3<br>
$xpaset -p ds9 regions edit yes<br>
$xpaset -p ds9 regions include<br>
$xpaset -p ds9 regions command '{circle 100 100 20 # color=red}'<br>
$xpaset -p ds9 regions composite<br>
$xpaset -p ds9 regions dissolve<br>
$xpaset -p ds9 regions template foo.tpl<br>
$xpaset -p ds9 regions template foo.tpl at 13:29:55.92 +47:12:48.02 fk5<br>
$xpaset -p ds9 regions savetemplate foo.tpl<br>
$xpaset -p ds9 regions group new<br>
$xpaset -p ds9 regions group foo new<br>
$xpaset -p ds9 regions group foo update<br>
$xpaset -p ds9 regions group foo select<br>
$xpaset -p ds9 regions group foo color red<br>
$xpaset -p ds9 regions group foo copy<br>
$xpaset -p ds9 regions group foo delete<br>
$xpaset -p ds9 regions group foo cut<br>
$xpaset -p ds9 regions group foo font {times 14 bold}<br>
$xpaset -p ds9 regions group foo move 100 100<br>
$xpaset -p ds9 regions group foo movefront<br>
$xpaset -p ds9 regions group foo moveback<br>
$xpaset -p ds9 regions group foo property delete no<br>
$xpaset -p ds9 regions copy<br>
$xpaset -p ds9 regions cut<br>
$xpaset -p ds9 regions paste wcs<br>
$xpaset -p ds9 regions undo<br></tt>
<p><b><a name="restore" id="restore"></a>restore</b></p>
<p>Restore DS9 to a previous state from a backup save set.</p>
<tt>Syntax:<br>
restore &lt;filename&gt;<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 restore ds9.bck</tt><br>
<p><b><a name="rgb" id="rgb"></a>rgb</b></p>
<p>Create RGB frame and control RGB frame parameters.</p>
<tt>Syntax:<br>
rgb []<br>
&nbsp;&nbsp;&nbsp; [red|green|blue]<br>
&nbsp;&nbsp;&nbsp; [channel [red|green|blue]]<br>
&nbsp;&nbsp;&nbsp; [view [red|green|blue] [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [system &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [lock wcs|crop|slice|bin|scale|scalelimits|colorbar|block|smooth [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 rgb channel<br>
$xpaget ds9 rgb lock wcs<br>
$xpaget ds9 rgb lock crop<br>
$xpaget ds9 rgb lock slice<br>
$xpaget ds9 rgb lock bin<br>
$xpaget ds9 rgb lock scale<br>
$xpaset ds9 rgb lock scalelimits<br>
$xpaget ds9 rgb lock colorbar<br>
$xpaget ds9 rgb lock block<br>
$xpaget ds9 rgb lock smooth<br>
$xpaget ds9 rgb system<br>
$xpaget ds9 rgb view red<br>
$xpaget ds9 rgb view green<br>
$xpaget ds9 rgb view blue<br>
<br>
$xpaset -p ds9 rgb # create new rgb frame<br>
$xpaset -p ds9 rgb red # set current channel to red<br>
$xpaset -p ds9 rgb channel red # set current channel to red<br>
$xpaset -p ds9 rgb view blue no # turn off blue channel<br>
$xpaset -p ds9 rgb system wcs # set rgb coordinate system<br>
$xpaset -p ds9 rgb lock wcs yes<br>
$xpaset -p ds9 rgb lock crop yes<br>
$xpaset -p ds9 rgb lock slice yes<br>
$xpaset -p ds9 rgb lock bin yes<br>
$xpaset -p ds9 rgb lock scale yes<br>
$xpaset -p ds9 rgb lock scalelimits yes<br>
$xpaset -p ds9 rgb lock colorbar yes<br>
$xpaset -p ds9 rgb lock block yes<br>
$xpaset -p ds9 rgb lock smooth yes<br>
$xpaset -p ds9 rgb open<br>
$xpaset -p ds9 rgb close</tt><br>
<p><b><a name="rgbarray" id="rgbarray"></a>rgbarray</b></p>
<p>Load raw data array cube into rgb frame.<br></p>
<tt>Syntax:<br>
rgbarray [native|big|little]<br>
rgbarray [new] [[xdim=&lt;x&gt;,ydim=&lt;y&gt;|dim=&lt;dim&gt;],[zdim=3],bitpix=&lt;b&gt;,skip=&lt;s&gt;,endian=[little|big]]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 rgbarray &gt; foo.arr<br>
<br>
$xpaget ds9 rgbarray little &gt; foo.arr<br>
$xpaset -p ds9 rgbarray foo.arr[dim=512,zdim=3,bitpix=-32,endian=little]<br>
$xpaset -p ds9 rgbarray new foo.arr[dim=512,zdim=3,bitpix=-32,endian=little]<br>
<br>
$cat foo.arr | xpaset ds9 rgbarray [dim=512,zdim=3,bitpix=-32,endian=little]<br>
$cat foo.arr | xpaset ds9 rgbarray new [dim=512,zdim=3,bitpix=-32,endian=little]</tt><br>
<p><b><a name="rgbcube" id="rgbcube"></a>rgbcube</b></p>
<p>Load FITS rgbcube into rgb frame.<br></p>
<tt>Syntax:<br>
rgbcube [new] [&lt;filename&gt;]<br>
<br>
Example:<br>
$xpaget ds9 rgbcube &gt; foo.fits<br>
<br>
$xpaset -p ds9 rgbcube foo.fits<br>
$xpaset -p ds9 rgbcube new foo.fits<br>
<br>
$cat foo.fits | xpaset ds9 rgbcube<br>
$cat foo.fits | xpaset ds9 rgbcubenew</tt><br>
<p><b><a name="rgbimage" id="rgbimage"></a>rgbimage</b></p>
<p>Load FITS rgbimage into rgb frame.<br></p>
<tt>Syntax:<br>
rgbimage [new] [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 rgbimage &gt; foo.fits<br>
<br>
$xpaset -p ds9 rgbimage foo.fits<br>
$xpaset -p ds9 rgbimage new foo.fits<br>
<br>
$cat foo.fits | xpaset ds9 rgbimage<br>
$cat foo.fits | xpaset ds9 rgbimage new<br></tt>
<p><b><a name="rotate" id="rotate"></a>rotate</b></p>
<p>Controls the rotation angle (in degrees) of the current frame.</p>
<tt>Syntax:<br>
rotate [&lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [to &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
<br>
Example:<br>
$xpaget ds9 rotate<br>
<br>
$xpaset -p ds9 rotate 45<br>
$xpaset -p ds9 rotate to 30<br>
$xpaset -p ds9 rotate open<br>
$xpaset -p ds9 rotate close<br></tt>
<p><b><a name="save" id="save"></a>save<br></b></p>
<p>Save loaded image data of current frame as FITS.</p>
<tt>Syntax:<br>
save [fits|rgbimage|rgbcube|mecube|mosaic|mosaicimage] &lt;filename&gt; [image|table|slice]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 save foo.fits<br>
$xpaset -p ds9 save fits foo.fits image<br>
$xpaset -p ds9 save fits foo.fits table<br>
$xpaset -p ds9 save fits foo.fits slice<br>
$xpaset -p ds9 save rgbimage foo.fits<br>
$xpaset -p ds9 save rgbcube foo.fits<br>
$xpaset -p ds9 save mecube foo.fits<br>
$xpaset -p ds9 save mosaic foo.fits<br>
$xpaset -p ds9 save mosaicimage foo.fits</tt><br>
<p><b><a name="saveimage" id="saveimage"></a>saveimage<br></b></p>
<p>Create a snap shot of the current DS9 window and save in specified image format. If no format specified, the file name extension is used to determine the output format. Optional parameters: <tt>jpeg</tt> quality (1-100) and <tt>tiff</tt> compression method.</p>
<tt>Syntax:<br>
saveimage [fits|eps|gif|tiff|jpeg|png]&lt;filename&gt;<br>
saveimage &lt;filename&gt;.jpeg [1-100]<br>
saveimage &lt;filename&gt;.tiff [none|jpeg|packbits|deflate]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 saveimage ds9.tiff<br>
$xpaset -p ds9 saveimage jpeg ds9.jpeg 75</tt><br>
<p><b><a name="scale" id="scale"></a>scale</b></p>
<p>Controls the limits and color scale distribution.</p>
<tt>Syntax:<br>
scale [linear|log|pow|sqrt|squared|asinh|sinh|histequ]<br>
&nbsp;&nbsp;&nbsp; [log exp &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [datasec yes|no]<br>
&nbsp;&nbsp;&nbsp; [limits &lt;minvalue&gt; &lt;maxvalue&gt;]<br>
&nbsp;&nbsp;&nbsp; [mode minmax|&lt;value&gt;|zscale|zmax]<br>
&nbsp;&nbsp;&nbsp; [scope local|global]<br>
&nbsp;&nbsp;&nbsp; [match]<br>
&nbsp;&nbsp;&nbsp; [match limits]<br>
&nbsp;&nbsp;&nbsp; [lock [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [lock limits [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
<br>
Example:<br>
$xpaget ds9 scale<br>
$xpaget ds9 scale log exp<br>
$xpaget ds9 scale datasec<br>
$xpaget ds9 scale limits<br>
$xpaget ds9 scale mode<br>
$xpaget ds9 scale scope<br>
$xpaget ds9 scale lock<br>
$xpaget ds9 scale lock limits<br>
<br>
$xpaset -p ds9 scale linear<br>
$xpaset -p ds9 scale log exp 100<br>
$xpaset -p ds9 scale datasec yes<br>
$xpaset -p ds9 scale histequ<br>
$xpaset -p ds9 scale limits 1 100<br>
$xpaset -p ds9 scale mode zscale<br>
$xpaset -p ds9 scale mode 99.5<br>
$xpaset -p ds9 scale scope local<br>
$xpaset -p ds9 scale match<br>
$xpaset -p ds9 scale match limits<br>
$xpaset -p ds9 scale lock yes<br>
$xpaset -p ds9 scale lock limits yes<br>
$xpaset -p ds9 scale open<br>
$xpaset -p ds9 scale close<br></tt>
<p><b><a name="shm" id="shm"></a>shm</b></p>
<p>Load a shared memory segment into the current frame.</p>
<tt>Syntax:<br>
shm [&lt;key&gt; [&lt;filename&gt;]]<br>
&nbsp;&nbsp;&nbsp; [key &lt;key&gt; [&lt;filename&gt;]]<br>
&nbsp;&nbsp;&nbsp; [shmid &lt;id&gt; [&lt;filename&gt;]]<br>
&nbsp;&nbsp;&nbsp; [fits [key|shmid] &lt;id&gt; [&lt;filename&gt;]]<br>
&nbsp;&nbsp;&nbsp; [mosaicimage [iraf|wcs|wcsa...wcsz|wfpc2] [key|shmid] &lt;id&gt; [&lt;filename&gt;]]<br>
&nbsp;&nbsp;&nbsp; [mosaic [iraf|wcs|wcsa...wcsz] [key|shmid] &lt;id&gt; [&lt;filename&gt;]]<br>
&nbsp;&nbsp;&nbsp; [rgbcube [key|shmid] &lt;id&gt; [&lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [rgbimage [key|shmid] &lt;id&gt; [&lt;filename&gt;]]<br>
&nbsp;&nbsp;&nbsp; [rgbarray [key|shmid] &lt;id&gt; [xdim=&lt;x&gt;,ydim=&lt;y&gt;|dim=&lt;dim&gt;,zdim=3],bitpix=&lt;b&gt;,[skip=&lt;s&gt;]]<br>
&nbsp;&nbsp;&nbsp; [array [key|shmid] &lt;id&gt; [xdim=&lt;x&gt;,ydim=&lt;y&gt;|dim=&lt;dim&gt;],bitpix=&lt;b&gt;,[skip=&lt;s&gt;]]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 shm<br>
<br>
$xpaset -p ds9 shm 102<br>
$xpaset -p ds9 shm key 102<br>
$xpaset -p ds9 shm shmid 102 foo<br>
$xpaset -p ds9 shm fits key 100 foo<br>
$xpaset -p ds9 shm mosaicimage iraf key 100 foo<br>
$xpaset -p ds9 shm mosaicimage wcs key 100 foo<br>
$xpaset -p ds9 shm mosaicimage wcsa key 100 foo<br>
$xpaset -p ds9 shm mosaicimage wfpc2 key 100 foo<br>
$xpaset -p ds9 shm mosaic iraf key 100 foo<br>
$xpaset -p ds9 shm mosaic wcs key 100 foo<br>
$xpaset -p ds9 shm rgbcube key 100 foo<br>
$xpaset -p ds9 shm rgbimage key 100 foo<br>
$xpaset -p ds9 shm rgbarray key 100 [dim=200,zdim=3,bitpix=-32]<br>
$xpaset -p ds9 shm array shmid 102 [dim=32,bitpix=-32]<br>
<br></tt> <b><a name="sia" id="sia"></a>sia<br></b>
<p>Support for VO Simple Image Access protocol. The first command will create a new search. All other commands operated on the last search created, unless indicated otherwise.</p>
<tt>Syntax:<br>
sia [2mass|akari|astrowise|cadc|cxc|mast|sdss|skyview|tgssadr]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [cancel]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [close]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [coordinate &lt;ra&gt; &lt;dec&gt; &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [crosshair]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [export sb|tsv &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [name &lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [print]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [retrieve]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [save &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [radius &lt;value&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [sky &lt;skyframe&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [skyformat &lt;skyformat&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [system &lt;coordsys&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ref&gt;] [update]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 sia<br>
<br>
$xpaset -p ds9 sia 2mass<br>
$xpaset -p ds9 sia cancel<br>
$xpaset -p ds9 sia clear<br>
$xpaset -p ds9 sia close<br>
$xpaset -p ds9 sia coordinate 202.48 47.21 fk5<br>
$xpaset -p ds9 sia crosshair<br>
$xpaset -p ds9 sia export tsv bar.tsv<br>
$xpaset -p ds9 sia name m51<br>
$xpaset -p ds9 sia print<br>
$xpaset -p ds9 sia retrieve<br>
$xpaset -p ds9 sia save foo.xml<br>
$xpaset -p ds9 sia radius 1 degrees<br>
$xpaset -p ds9 sia sky fk5<br>
$xpaset -p ds9 sia skyformat degrees<br>
$xpaset -p ds9 sia system wcs<br>
$xpaset -p ds9 sia update<br>
<br></tt> <b><a name="single" id="single"></a>single</b>
<p>Select Single Display mode</p>
<tt>Syntax:<br>
single<br>
<br>
Example:<br>
$xpaget ds9 single<br>
<br>
$xpaset -p ds9 single<br></tt>
<p><b><a name="skyview" id="skyview"></a>skyview</b></p>
<p>Support for SkyView image server at HEASARC.</p>
<tt>Syntax:<br>
skyview []<br>
&nbsp;&nbsp;&nbsp; [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;|clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ra&gt; &lt;dec&gt;] # in wcs fk5<br>
&nbsp;&nbsp;&nbsp; [size &lt;width&gt; &lt;height&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [pixels &lt;width&gt; &lt;height&gt;]<br>
&nbsp;&nbsp;&nbsp; [save yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame new|current]<br>
&nbsp;&nbsp;&nbsp; [update frame|crosshair]<br>
&nbsp;&nbsp;&nbsp; [survey &lt;survey&gt;]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
<br>
Example:<br>
$xpaget ds9 skyview name<br>
$xpaget ds9 skyview coord<br>
$xpaget ds9 skyview size<br>
$xpaget ds9 skyview pixels<br>
$xpaget ds9 skyview save<br>
$xpaget ds9 skyview frame<br>
$xpaget ds9 skyview survey<br>
<br>
$xpaset -p ds9 skyview<br>
$xpaset -p ds9 skyview m31<br>
$xpaset -p ds9 skyview name m31<br>
$xpaset -p ds9 skyview name clear<br>
$xpaset -p ds9 skyview 00:42:44.404 +41:16:08.78<br>
$xpaset -p ds9 skyview size 60 60 arcmin<br>
$xpaset -p ds9 skyview pixels 600 600<br>
$xpaset -p ds9 skyview save yes<br>
$xpaset -p ds9 skyview frame current<br>
$xpaset -p ds9 skyview update frame<br>
$xpaset -p ds9 skyview survey sdssi<br>
$xpaset -p ds9 skyview open<br>
$xpaset -p ds9 skyview close</tt><br>
<p><b><a name="sleep" id="sleep"></a>sleep</b></p>
<p>Delays execution for specified number of seconds. Default is 1 second.<br></p>
<tt>Syntax:<br>
sleep [#]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 sleep<br>
$xpaset -p ds9 sleep 2<br></tt>
<p><b><a name="smooth" id="smooth"></a>smooth</b></p>
<p>Smooth current image or set smooth parameters.</p>
<p><tt>Boxcar width =<i>2*radius+1</i><br>
Tophat diameter =<i>2*radius+1</i><br>
Gaussian diameter =<i>2*radius+1,</i>mean<i>=0</i><br>
Elliptical Gaussian diameter =<i>2*radius+1,</i>mean<i>=0<br></i><br>
Syntax:<br>
smooth []<br>
&nbsp;&nbsp;&nbsp; [yes|no]<br>
&nbsp;&nbsp;&nbsp; [function boxcar|tophat|gaussian]<br>
&nbsp;&nbsp;&nbsp; [radius &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [radiusminor &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [sigma &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [sigmaminor &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [angle &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [match]<br>
&nbsp;&nbsp;&nbsp; [lock [yes|no]]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br></tt></p>
<p><tt>Example:<br>
$xpaget ds9 smooth<br>
$xpaget ds9 smooth function<br>
$xpaget ds9 smooth radius<br>
$xpaget ds9 smooth radiusminor<br>
$xpaget ds9 smooth sigma<br>
$xpaget ds9 smooth sigmaminor<br>
$xpaget ds9 smooth lock</tt></p>
<p><tt>$xpaset -p ds9 smooth<br>
$xpaset -p ds9 smooth yes<br>
$xpaset -p ds9 smooth function tophat<br>
$xpaset -p ds9 smooth radius 4<br>
$xpaset -p ds9 smooth radiusminor 4<br>
$xpaset -p ds9 smooth sigma 2.0<br>
$xpaset -p ds9 smooth sigmaminor 2.0<br>
$xpaset -p ds9 smooth angle 45<br>
$xpaset -p ds9 smooth match<br>
$xpaset -p ds9 smooth lock yes<br>
$xpaset -p ds9 smooth open<br>
$xpaset -p ds9 smooth close</tt></p>
<p><b><a name="source" id="source"></a>source</b></p>
<p>Source TCL code from a file. Only available for <tt>XPA_METHOD local.</tt></p>
<tt>Syntax:<br>
source [&lt;filename&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 source foo.tcl</tt>
<p><b><a name="tcl" id="tcl"></a>tcl</b></p>
<p>Execute one tcl command. Only available for <tt>XPA_METHOD local.</tt></p>
<tt>Syntax:<br>
tcl [&lt;tcl command&gt;]<br>
&nbsp;<br>
Example:<br>
$echo 'puts "Hello, World"' | xpaset ds9 tcl<br>
$xpaset -p ds9 tcl {puts {Hello, World}}<br></tt>
<p><b><a name="threads" id="threads"></a>threads</b></p>
<p>Set number of process threads for functions which are multi-threaded.<br></p>
<tt>Syntax:<br>
threads #<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 threads<br>
<br>
$xpaset -p ds9 threads 8</tt><br>
<p><b><a name="tiff" id="tiff"></a>tiff</b></p>
<p>Load TIFF image into current frame. Optional parameters: <tt>tiff</tt> compression method.</p>
<tt>Syntax:<br>
tiff [new|slice] [&lt;filename&gt;] [none|jpeg|packbits|deflate]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 tiff &gt; foo.tiff<br>
$xpaget ds9 tiff jpeg &gt; foo.tiff<br>
<br>
$xpaset -p ds9 tiff foo.tiff<br>
$xpaset -p ds9 tiff new foo.tiff<br>
$xpaset -p ds9 tiff slice foo.tiff<br>
<br>
$cat foo.tiff | xpaset ds9 tiff<br>
$cat foo.tiff | xpaset ds9 tiff new<br>
$cat foo.tiff | xpaset ds9 tiff slice</tt>
<p><b><a name="tile" id="tile"></a>tile</b></p>
<p>Controls the tile display mode.</p>
<tt>Syntax:<br>
tile []<br>
&nbsp;&nbsp;&nbsp; [yes|no]<br>
&nbsp;&nbsp;&nbsp; [mode grid|column|row]<br>
&nbsp;&nbsp;&nbsp; [grid]<br>
&nbsp;&nbsp;&nbsp; [grid mode automatic|manual]<br>
&nbsp;&nbsp;&nbsp; [grid direction x|y]<br>
&nbsp;&nbsp;&nbsp; [grid layout &lt;col&gt; &lt;row&gt;]<br>
&nbsp;&nbsp;&nbsp; [grid gap &lt;pixels&gt;]<br>
&nbsp;&nbsp;&nbsp; [row]<br>
&nbsp;&nbsp;&nbsp; [column]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 tile<br>
$xpaget ds9 tile mode<br>
$xpaget ds9 tile grid mode<br>
$xpaget ds9 tile grid direction<br>
$xpaget ds9 tile grid layout<br>
$xpaget ds9 tile grid gap<br>
<br>
$xpaset -p ds9 tile<br>
$xpaset -p ds9 tile yes<br>
$xpaset -p ds9 tile mode row<br>
$xpaset -p ds9 tile grid<br>
$xpaset -p ds9 tile grid mode manual<br>
$xpaset -p ds9 tile grid direction x<br>
$xpaset -p ds9 tile grid layout 5 5<br>
$xpaset -p ds9 tile grid gap 10<br>
$xpaset -p ds9 tile row<br>
$xpaset -p ds9 tile column</tt>
<p><b><a name="update" id="update"></a>update</b></p>
<p>Updates the current frame or region of frame. In the second form, the first argument is the number of the fits HDU (starting with 1) and the remaining args are a bounding box in IMAGE coordinates. By default, the screen is updated the next available idle cycle. However, you may force an immediate update by specifying the NOW option.</p>
<tt>Syntax:<br>
update []<br>
&nbsp;&nbsp;&nbsp; [# x1 y1 x2 y2]<br>
&nbsp;&nbsp;&nbsp; [now]<br>
&nbsp;&nbsp;&nbsp; [now # x1 y1 x2 y2]<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 update<br>
$xpaset -p ds9 update 1 100 100 300 400<br>
$xpaset -p ds9 update now<br>
$xpaset -p ds9 update now 1 100 100 300 400</tt><br>
<p><b><a name="url" id="url"></a>url</b></p>
<p>Load FITS from URL into the current frame</p>
<tt>Syntax:<br>
url &lt;url&gt;<br>
&nbsp;<br>
Example:<br>
$xpaset -p ds9 url http://foo.bar.edu/foo.fits<br></tt>
<p><b><a name="version" id="version"></a>version</b></p>
<p>Returns the current version of DS9.</p>
<tt>Syntax:<br>
version<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 version</tt>
<p><b><a name="view" id="view"></a>view</b></p>
<p>Controls the GUI.</p>
<tt>Syntax:<br>
view&nbsp; [layout horizontal|vertical]<br>
&nbsp;&nbsp;&nbsp; [keyvalue &lt;string&gt;]<br>
&nbsp;&nbsp;&nbsp; [info yes|no]<br>
&nbsp;&nbsp;&nbsp; [panner yes|no]<br>
&nbsp;&nbsp;&nbsp; [magnifier yes|no]<br>
&nbsp;&nbsp;&nbsp; [buttons yes|no]<br>
&nbsp;&nbsp;&nbsp; [colorbar yes|no]<br>
&nbsp;&nbsp;&nbsp; [colorbar horizontal|vertical]<br>
&nbsp;&nbsp;&nbsp; [colorbar numerics yes|no]<br>
&nbsp;&nbsp;&nbsp; [graph horizontal|vertical yes|no]<br>
&nbsp;&nbsp;&nbsp; [filename yes|no[<br>
&nbsp;&nbsp;&nbsp; [object yes|no]<br>
&nbsp;&nbsp;&nbsp; [keyword yes|no]<br>
&nbsp;&nbsp;&nbsp; [minmax yes|no]<br>
&nbsp;&nbsp;&nbsp; [lowhigh yes|no]<br>
&nbsp;&nbsp;&nbsp; [units yes|no]<br>
&nbsp;&nbsp;&nbsp; [image|physical|wcs|wcsa...wcsz yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame yes|no]<br>
&nbsp;&nbsp;&nbsp; [red yes|no]<br>
&nbsp;&nbsp;&nbsp; [green yes|no]<br>
&nbsp;&nbsp;&nbsp; [blue yes|no]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 view layout<br>
$xpaget ds9 view keyvalue<br>
$xpaget ds9 view info<br>
$xpaget ds9 view panner<br>
$xpaget ds9 view magnifier<br>
$xpaget ds9 view buttons<br>
$xpaget ds9 view colorbar<br>
$xpaget ds9 view graph horizontal<br>
$xpaget ds9 view filename<br>
$xpaget ds9 view object<br>
$xpaget ds9 view keyword<br>
$xpaget ds9 view minmax<br>
$xpaget ds9 view lowhigh<br>
$xpaget ds9 view units<br>
$xpaget ds9 view image<br>
$xpaget ds9 view wcsa<br>
$xpaget ds9 view red<br>
$xpaget ds9 view frame<br>
<br>
$xpaset -p ds9 view layout vertical<br>
$xpaset -p ds9 view keyvalue BITPIX<br>
$xpaset -p ds9 view info yes<br>
$xpaset -p ds9 view panner yes<br>
$xpaset -p ds9 view magnifier yes<br>
$xpaset -p ds9 view buttons yes<br>
$xpaset -p ds9 view colorbar yes<br>
$xpaset -p ds9 view graph horizontal yes<br>
$xpaset -p ds9 view filename yes<br>
$xpaset -p ds9 view object yes<br>
$xpaset -p ds9 view keyword yes<br>
$xpaset -p ds9 view minmax yes<br>
$xpaset -p ds9 view lowhigh yes<br>
$xpaset -p ds9 view units yes<br>
$xpaset -p ds9 view wcsa yes<br>
$xpaset -p ds9 view frame yes<br>
$xpaset -p ds9 view red yes<br>
$xpaset -p ds9 view green yes<br>
$xpaset -p ds9 view blue yes</tt><br>
<br>
<b><a name="vla" id="vla"></a>vla</b>
<p>Support for VLA Sky Survey.</p>
<tt>Syntax:<br>
vla []<br>
&nbsp;&nbsp;&nbsp; [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;|clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;ra&gt; &lt;dec&gt;] # in wcs fk5<br>
&nbsp;&nbsp;&nbsp; [size &lt;width&gt; &lt;height&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [save yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame new|current]<br>
&nbsp;&nbsp;&nbsp; [update frame|crosshair]<br>
&nbsp;&nbsp;&nbsp; [survey first|stripe82]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 vla name<br>
$xpaget ds9 vla coord<br>
$xpaget ds9 vla size<br>
$xpaget ds9 vla save<br>
$xpaget ds9 vla frame<br>
$xpaget ds9 vla survey<br>
<br>
$xpaset -p ds9 vla<br>
$xpaset -p ds9 vla m31<br>
$xpaset -p ds9 vla name m31<br>
$xpaset -p ds9 vla name clear<br>
$xpaset -p ds9 vla 00:42:44.404 +41:16:08.78<br>
$xpaset -p ds9 vla size 60 60 arcmin<br>
$xpaset -p ds9 vla save yes<br>
$xpaset -p ds9 vla frame current<br>
$xpaset -p ds9 vla update frame<br>
$xpaset -p ds9 vla survey stripe82<br>
$xpaset -p ds9 vla open<br>
$xpaset -p ds9 vla close</tt><br>
<p><b><a name="vlss" id="vlss"></a>vlss</b></p>
<p>Support for NRAO VLSS Sky Survey.</p>
<tt>Syntax:<br>
vlss []<br>
&nbsp;&nbsp;&nbsp; [&lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [name &lt;object&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;ra&gt; &lt;dec&gt;] # in wcs fk5<br>
&nbsp;&nbsp;&nbsp; [size &lt;width&gt; &lt;height&gt; degrees|arcmin|arcsec]<br>
&nbsp;&nbsp;&nbsp; [save yes|no]<br>
&nbsp;&nbsp;&nbsp; [frame new|current]<br>
&nbsp;&nbsp;&nbsp; [update frame|crosshair]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 vlss name<br>
$xpaget ds9 vlss coord<br>
$xpaget ds9 vlss size<br>
$xpaget ds9 vlss save<br>
$xpaget ds9 vlss frame<br>
<br>
$xpaset -p ds9 vlss<br>
$xpaset -p ds9 vlss m31<br>
$xpaset -p ds9 vlss name m31<br>
$xpaset -p ds9 vlss name clear<br>
$xpaset -p ds9 vlss 00:42:44.404 +41:16:08.78<br>
$xpaset -p ds9 vlss size 60 60 arcmin<br>
$xpaset -p ds9 vlss save yes<br>
$xpaset -p ds9 vlss frame current<br>
$xpaset -p ds9 vlss update frame<br>
$xpaset -p ds9 vlss open<br>
$xpaset -p ds9 vlss close</tt><br>
<p><b><a name="vo" id="vo"></a>vo</b></p>
<p>Invoke an connection to a Virtual Observatory site.</p>
<tt>Syntax:<br>
vo [method xpa|mime]<br>
&nbsp;&nbsp; [server &lt;url&gt;]<br>
&nbsp;&nbsp; [internal yes|no]<br>
&nbsp;&nbsp; [delay #]<br>
&nbsp;&nbsp; [&lt;url&gt;]<br>
&nbsp;&nbsp; [connect &lt;url&gt;]<br>
&nbsp;&nbsp; [disconnect &lt;url&gt;]<br>
&nbsp;&nbsp; [open|close]<br>
<br>
Example:<br>
$xpaget ds9 vo<br>
$xpaget ds9 vo method<br>
$xpaget ds9 vo server<br>
$xpaget ds9 vo internal<br>
$xpaget ds9 vo delay<br>
$xpaget ds9 vo connect<br>
<br>
$xpaset -p ds9 vo method xpa<br>
$xpaset -p ds9 vo server http://foo.bar.edu/list.txt<br>
$xpaset -p ds9 vo internal yes<br>
$xpaset -p ds9 vo delay 15 # keep-alive delay<br>
$xpaset -p ds9 vo chandra-ed<br>
$xpaset -p ds9 vo connect chandra-ed<br>
$xpaset -p ds9 vo disconnect chandra-ed<br>
$xpaset -p ds9 vo open<br>
$xpaset -p ds9 vo close<br></tt>
<p><b><a name="wcs" id="wcs"></a>wcs</b></p>
<p>Controls the World Coordinate System for the current frame. If the wcs system, skyframe, or skyformat is modified, the info panel, compass, grid, and alignment will be modified accordingly. Also, using this access point, a new WCS specification can be loaded and used by the current image regardless of the WCS that was contained in the image file. WCS specification can be sent to DS9 as an ASCII file . Please see <a href="file.html#WCS">WCS</a> for more information.</p>
<tt>Syntax:<br>
wcs [[system] wcs|wcsa...wcsz]<br>
&nbsp;&nbsp;&nbsp; [[sky] fk4|fk5|icrs|galactic|ecliptic]<br>
&nbsp;&nbsp;&nbsp; [[skyformat] degrees|sexagesimal]<br>
&nbsp;&nbsp;&nbsp; [align yes|no]<br>
&nbsp;&nbsp;&nbsp; [reset [#]]<br>
&nbsp;&nbsp;&nbsp; [replace [#] &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [append [#] &lt;filename&gt;]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
<br>
Example:<br>
$xpaget ds9 wcs<br>
$xpaget ds9 wcs system<br>
$xpaget ds9 wcs sky<br>
$xpaget ds9 wcs skyformat<br>
$xpaget ds9 wcs align<br>
<br>
$xpaset -p ds9 wcs wcs<br>
$xpaset -p ds9 wcs system wcs<br>
$xpaset -p ds9 wcs fk5<br>
$xpaset -p ds9 wcs sky fk5<br>
$xpaset -p ds9 wcs sexagesimal<br>
$xpaset -p ds9 wcs skyformat sexagesimal<br>
$xpaset -p ds9 wcs align yes<br>
$xpaset -p ds9 wcs reset<br>
$xpaset -p ds9 wcs reset 3<br>
$xpaset -p ds9 wcs replace foo.wcs<br>
$xpaset -p ds9 wcs replace 3 foo.wcs<br>
$xpaset -p ds9 wcs append foo.wcs<br>
$xpaset -p ds9 wcs append 3 foo.wcs<br>
$xpaset -p ds9 open<br>
$xpaset -p ds9 close<br></tt><br>
<tt>$cat foo.wcs | xpaset ds9 wcs replace<br>
$cat foo.wcs | xpaset ds9 wcs append<br>
$echo "OBJECT = 'foobar'" | xpaset ds9 wcs append<br></tt>
<p><b><a name="web" id="web"></a>web</b></p>
<p>Display specified URL in the web display.</p>
<tt>Syntax:<br>
web []<br>
&nbsp;&nbsp;&nbsp; [&lt;url&gt;]<br>
&nbsp;&nbsp;&nbsp; [new &lt;webname&gt; &lt;url&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;webname&gt;] [click back|forward|stop|reload|#]<br>
&nbsp;&nbsp;&nbsp; [&lt;webname&gt;] [clear]<br>
&nbsp;&nbsp;&nbsp; [&lt;webname&gt;] [close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 web<br>
<br>
$xpaset -p ds9 web www.cnn.com<br>
$xpaset -p ds9 web new www.cnn.com<br>
$xpaset -p ds9 web hvweb www.apple.com<br>
$xpaset -p ds9 web click back<br>
$xpaset -p ds9 web click 2<br>
$xpaset -p ds9 web clear<br>
$xpaset -p ds9 web close<br></tt>
<p><b><a name="width" id="width"></a>width</b></p>
<p>Set the width of the image display window.</p>
<tt>Syntax:<br>
width [&lt;value&gt;]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 width<br>
<br>
$xpaset -p ds9 width 512</tt><br>
<p><b><a name="xpa" id="xpa"></a>xpa</b></p>
<p>Configure XPA.</p>
<tt>Syntax:<br>
-xpa [disconnect]<br>
&nbsp;&nbsp;&nbsp; [info]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 info<br>
<br>
$xpaset -p ds9 disconnect<br>
$xpaset -p ds9 info<br></tt>
<p><b><a name="zscale" id="zscale"></a>zscale</b></p>
<p>Set Scale Limits based&nbsp; on the <i>IRAF</i> algorithm.</p>
<tt>Syntax:<br>
zscale []<br>
&nbsp;&nbsp;&nbsp; [contrast]<br>
&nbsp;&nbsp;&nbsp; [sample]<br>
&nbsp;&nbsp;&nbsp; [line]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 zscale contrast<br>
$xpaget ds9 zscale sample<br>
$xpaget ds9 zscale line<br>
<br>
$xpaset -p ds9 zscale<br>
$xpaset -p ds9 zscale contrast .25<br>
$xpaset -p ds9 zscale sample 600<br>
$xpaset -p ds9 zscale line 120<br></tt>
<p><b><a name="zoom" id="zoom"></a>zoom</b></p>
<p>Controls the current zoom value for the current frame.</p>
<tt>Syntax:<br>
zoom [&lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [&lt;value&gt; &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [to &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [to &lt;value&gt; &lt;value&gt;]<br>
&nbsp;&nbsp;&nbsp; [in]<br>
&nbsp;&nbsp;&nbsp; [out]<br>
&nbsp;&nbsp;&nbsp; [to fit]<br>
&nbsp;&nbsp;&nbsp; [open|close]<br>
&nbsp;<br>
Example:<br>
$xpaget ds9 zoom<br>
<br>
$xpaset -p ds9 zoom 2<br>
$xpaset -p ds9 zoom 2 4<br>
$xpaset -p ds9 zoom to 4<br>
$xpaset -p ds9 zoom to 2 4<br>
$xpaset -p ds9 zoom in<br>
$xpaset -p ds9 zoom out<br>
$xpaset -p ds9 zoom to fit<br>
$xpaset -p ds9 zoom open<br>
$xpaset -p ds9 zoom close<br></tt></blockquote>
</body>
</html>