-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1241 lines (1062 loc) · 77.1 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<!--Page Title-->
<title>CARTA - Cube Analysis and Rendering Tool for Astronomy</title>
<!--Meta Keywords and Description-->
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<!--Favicon-->
<link rel="shortcut icon" href="images/carta_favicon.ico" title="Favicon" />
<!-- Main CSS Files -->
<link rel="stylesheet" href="css/style.css">
<!-- Namari Color CSS -->
<link rel="stylesheet" href="css/namari-color.css">
<!--Icon Fonts - Font Awesome Icons-->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Animate CSS-->
<link href="css/animate.css" rel="stylesheet" type="text/css">
<!-- Horizontal tabs CSS-->
<link href="css/tabs.css" rel="stylesheet" type="text/css">
<link href="css/tabs2.css" rel="stylesheet" type="text/css">
<link href="css/tabs3.css" rel="stylesheet" type="text/css">
<link href="css/tabs4.css" rel="stylesheet" type="text/css">
<!-- For dark/light mode-->
<link rel="stylesheet" href="css/dark.css" media="(prefers-color-scheme: dark)">
<link rel="stylesheet" href="css/light.css"
media="(prefers-color-scheme: no-preference), (prefers-color-scheme: light)">
<!--Google Webfonts-->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div id="status" class="la-ball-triangle-path">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!--End of Preloader-->
<div class="page-border" data-wow-duration="0.7s" data-wow-delay="0.2s">
<div class="top-border wow fadeInDown animated" style="visibility: visible; animation-name: fadeInDown;"></div>
<div class="right-border wow fadeInRight animated" style="visibility: visible; animation-name: fadeInRight;">
</div>
<div class="bottom-border wow fadeInUp animated" style="visibility: visible; animation-name: fadeInUp;"></div>
<div class="left-border wow fadeInLeft animated" style="visibility: visible; animation-name: fadeInLeft;"></div>
</div>
<div id="wrapper">
<header id="banner" class="scrollto clearfix" data-enllax-ratio=".5">
<div id="header" class="nav-collapse">
<div class="row clearfix">
<div class="col-1">
<!--Logo-->
<div id="logo">
<!--Logo that is shown on the banner-->
<img src="images/carta_logo.png" id="banner-logo" alt="Landing Page" />
<!--End of Banner Logo-->
<!--The Logo that is shown on the sticky Navigation Bar-->
<!--<img src="images/carta_logo_text.png" id="navigation-logo" alt="Landing Page"/>-->
<picture>
<source srcset="images/carta_logo_text_dark.png" media="(prefers-color-scheme: dark)">
<source srcset="images/carta_logo_text.png" width=40px
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)">
<img src="images/carta_logo_text.png" id="navigation-logo" alt="Landing Page" />
</picture>
<!--End of Navigation Logo-->
</div>
<!--End of Logo-->
<aside>
<!--Social Icons in Header-->
<ul class="social-icons">
<li>
<a target="_blank" title="ASIAA" href="https://www.asiaa.sinica.edu.tw">
<img src="images/company-images/logo-asiaa.png" width=32px id="asiaa-logo"
alt="ASIAA" />
</a>
</li>
<li>
<a target="_blank" title="IDIA" href="https://www.idia.ac.za">
<img src="images/company-images/logo-idia.png" width=32px id="idia-logo"
alt="IDIA" />
<!--
<picture>
<source srcset="images/team-idia-light.png" width=32px media="(prefers-color-scheme: dark)">
<source srcset="images/team-idia-dark.png" width=32px media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)">
<img src="images/team-idia-dark.png" width=40px></a>
</picture>
-->
</a>
</li>
<li>
<a target="_blank" title="NRAO" href="https://science.nrao.edu">
<img src="images/company-images/logo-nrao.png" width=32px id="nrao-logo"
alt="NRAO" />
</a>
</li>
<li>
<a target="_blank" title="Department of Physics, University of Alberta"
href="https://www.ualberta.ca/physics">
<img src="images/company-images/logo-alberta.png" width=32px id="alberta-logo"
alt="Department of Physics, University of Alberta" />
<!-- <picture>
<source srcset="images/team-alberta-dark.png" width=32px media="(prefers-color-scheme: dark)">
<source srcset="images/team-alberta-light.png" width=32px media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)">
<img src="images/team-alberta-light.png" width=40px></a>
</picture>
-->
</a>
</li>
<!-- <li>
<a target="_blank" title="CARTA on GitHub" href="https://github.com/CARTAvis">
<picture>
<source srcset="images/company-images/logo-github-dark-b.png" width=32px media="(prefers-color-scheme: dark)">
<source srcset="images/company-images/logo-github-light-b.png" width=32px media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)">
<img src="images/company-images/logo-github-light-b.png" width=32px loading="lazy"></a>
</picture>
</a>
</li>-->
</li>
</ul>
<!--
<a href="https://github.com/cartavis"><img loading="lazy" width="149" height="149" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_red_aa0000.png?resize=149%2C149" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1"></a>
-->
<!--End of Social Icons in Header-->
</aside>
<!--Main Navigation-->
<nav id="nav-main">
<ul>
<li>
<a href="#banner">Home</a>
</li>
<li>
<a href="#features">Features</a>
</li>
<li>
<a href="#gallery">Gallery</a>
</li>
<li>
<a href="#roadmap">Roadmap</a>
</li>
<li>
<a href="#download">Installation</a>
</li>
<li>
<a href="#team">Team</a>
</li>
<li>
<a href="#about">About</a>
</li>
</ul>
</nav>
<!--End of Main Navigation-->
<div id="nav-trigger"><span></span></div>
<nav id="nav-mobile"></nav>
</div>
</div>
</div><!--End of Header-->
<!--Banner Content-->
<div id="banner-content" class="row clearfix">
<div class="col-38">
<!--<div class="section-heading">-->
<div>
<br>
<h1>CARTA</h1>
<h2>Cube Analysis and Rendering Tool for Astronomy,
is a next-generation image visualization and analysis tool
designed for ALMA, VLA, and SKA pathfinders.</h2>
<br>
<br>
<br>
</div>
<!--Call to Action-->
<a href="#download" class="button">Installation</a>
<a href="https://carta.readthedocs.io/en/4.1/" class="button" target="_blank">User Manual</a>
<a href="mailto:[email protected]" class="button" target="_blank">Helpdesk</a><br>
<!--
<span style="color:rgb(10, 68, 140);font-weight: bold;font-size:18px; background-color: rgba(255, 255, 255, 0.5);">Current release: v3-stable</span>
<br/>
-->
<span
style="color:rgb(10, 68, 140);font-weight: bold;font-size:18px; background-color: rgba(255, 255, 255, 0.5);;">New
release: v4.1</span>
<br>
<span
style="color:rgb(10, 68, 140);font-weight: bold;font-size:18px; background-color: rgba(255, 255, 255, 0.5);;">January 2024</span>
<!--End Call to Action-->
</div>
</div><!--End of Row-->
</header>
<!--Main Content Area-->
<main id="content">
<!--Introduction-->
<section id="features" class="introduction scrollto">
<div class="row clearfix">
<div class="col-3">
<div class="section-heading">
<h3>FEATURES</h3>
<h2 class="section-title">CARTA key features</h2>
<p>CARTA adopts a client-server
architecture which is suitable for visualizing images with large file
sizes (GB to TB) easily obtained from ALMA, VLA, or SKA pathfinder
observations. It is impractical to process such a huge file
with a personal computer or laptop. In a client-server architecture,
computation and data storage are handled by remote enterprise-class servers
or clusters with high performance storage, while processed products are
sent to clients only for visualization with modern web features, such
as GPU-accelerated rendering. This architecture also enables users to
interact with the ALMA and VLA science archives by using CARTA as an interface.<br><br>
CARTA has two flavors: Desktop version and Server version. The former is suitable
for single-user usage with a laptop, a desktop, or a remote server in the "remote"
execution mode.
The later is suitable for institution-wide deployment to support multiple users with
user authentication and addtional server-side features.
</p>
</div>
</div>
<div class="col-2-3">
<!--Icon Block-->
<div class="col-2 icon-block icon-top wow fadeInUp" data-wow-delay="0.1s">
<div class="icon-block-description">
<h4>Memory-efficient when loading images</h4>
<p>With ~1 GB of ram, a 16000 pixel x 16000 pixel image or a 16000 pixel x 16000
pixel x 1000 channel cube (~1 TB in size) can be loaded in seconds.</p>
</div>
</div>
<!--End of Icon Block-->
<!--Icon Block-->
<div class="col-2 icon-block icon-top wow fadeInUp" data-wow-delay="0.3s">
<div class="icon-block-description">
<h4>Parallelization and GPU-accelerated rendering</h4>
<p>Parallelization with CPUs is invoked in data processing. GPU-accelerated
rendering is adopted for tiled raster images, contour images, and catalog overlays.
</p>
</div>
</div>
<!--End of Icon Block-->
<!--Icon Block-->
<div class="col-2 icon-block icon-top wow fadeInUp" data-wow-delay="0.5s">
<div class="icon-block-description">
<h4>Spectral line cube analysis tools</h4>
<p>Flexible multi-profile plotting capability is supported. Analysis tools such as
profile fitting, profile smoothing, moment map generator, and spectral line query
and labelling are out of box.</p>
</div>
</div>
<!--End of Icon Block-->
<!--Icon Block-->
<div class="col-2 icon-block icon-top wow fadeInUp" data-wow-delay="0.7s">
<div class="icon-block-description">
<h4>Customizable and reusable GUI layouts and preferences</h4>
<p>CARTA is equipped with a highly customizable and reusable graphical user interface
for various use cases.</p>
</div>
</div>
<!--End of Icon Block-->
<!--Icon Block-->
<div class="col-2 icon-block icon-top wow fadeInUp" data-wow-delay="0.9s">
<div class="icon-block-description">
<h4>Efficient catalog processing and rendering</h4>
<p>Catalogs with millions of sources can be loaded and rendered in seconds. Catalog
files are processed with
parallelization techniques and are rendered with GPU acceleration.</p>
</div>
</div>
<!--End of Icon Block-->
<!--Icon Block-->
<div class="col-2 icon-block icon-top wow fadeInUp" data-wow-delay="1.1s">
<div class="icon-block-description">
<h4>Efficient visualization with HDF5 (IDIA schema) images</h4>
<p>The HDF5 format with the IDIA schema improves the user's experience of viewing large
image cubes significantly.</p>
</div>
</div>
<!--End of Icon Block-->
</div>
</div>
</section>
<!--End of Introduction-->
<!--Gallery-->
<aside id="gallery" class="row text-center scrollto clearfix" data-featherlight-gallery
data-featherlight-filter="a">
<a href="images/gallery-images/widefield.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.1s"><img src="images/gallery-images/widefield.png"
alt="Landing Page" /></a>
<a href="images/gallery-images/image_matching.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.2s"><img src="images/gallery-images/image_matching.png"
alt="Landing Page" /></a>
<a href="images/gallery-images/flexible_analytics_layout.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.3s"><img
src="images/gallery-images/flexible_analytics_layout.png" alt="Landing Page" /></a>
<a href="images/gallery-images/spectral_line_analysis.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.4s"><img
src="images/gallery-images/spectral_line_analysis.png" alt="Landing Page" /></a>
<a href="images/gallery-images/spectral_line_label.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.5s"><img
src="images/gallery-images/spectral_line_label.png" alt="Landing Page" /></a>
<a href="images/gallery-images/moment_map_generator.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.6s"><img
src="images/gallery-images/moment_map_generator.png" alt="Landing Page" /></a>
<a href="images/gallery-images/pv_generator.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.7s"><img src="images/gallery-images/pv_generator.png"
alt="Landing Page" /></a>
<a href="images/gallery-images/polarization_analysis.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.8s"><img
src="images/gallery-images/polarization_analysis.png" alt="Landing Page" /></a>
<a href="images/gallery-images/catalog_rendering.png" data-featherlight="image"
data-featherlight-iframe-width="85vw" data-featherlight-iframe-height="85vh"
class="col-3 wow fadeIn" data-wow-delay="0.9s"><img
src="images/gallery-images/catalog_rendering.png" alt="Landing Page" /></a>
</aside>
<!--End of Gallery-->
<!--Content Section-->
<div id="roadmap" class="scrollto clearfix">
<div class="row no-padding-bottom clearfix">
<div class="col-1">
<div class="section-heading">
<h3>ROADMAP</h3>
<h2 class="section-title">Release plan</h2>
</div>
</div>
<!--Content Left Side-->
<div class="col-3">
<div class="section-heading">
<h4>Current release</h4>
</div>
<p>The current release is v4.1 (a maintenance release based on v4.0 to address core library update and critical bugs), released on 23rd of January 2024.
v4.0 was released on 12th of September 2023, with the following features:
</p>
<ul>
<li>Interactive PV preview</li>
<li>Enhanced PV generator</li>
<li>Initial support of workspace (save and restore)</li>
<li>Initial support of workspace sharing (carta-controller only; experimental)</li>
<li>Enhanced image fitting capabilities</li>
<li>Image annotation</li>
<li>Visualization of a rotated cube (no image analytics)</li>
<li>Support beam info for AIPS-generated cubes</li>
<li>Support animation playback with matched images in multi-panel view</li>
<li>A new dialog for angular distance measurement</li>
<li>Show/hide and lock all regions</li>
<li>Auto-scrolling the selected region into the region list view</li>
<li>Mirroring cursor markers on spatially matched images</li>
<li>Cursor info with dual spectral convention in the spectral profiler</li>
<li>Pan and zoom images with manual inputs</li>
<li>Switch directory path with manual input</li>
<li>Custom range and number of bins in the histogram calculation</li>
</ul>
<br />
</div>
<!--End Content Left Side-->
<!--Content of the Middle-->
<div class="col-3">
<div class="section-heading">
<h4>Next release</h4>
</div>
<p> The next release will be v5.0 (Q3 2024) with the planned main new features (details TBD):</p>
<ul>
<li>Full support of workspace</li>
<li>Full support of workspace sharing (carta-controller only)</li>
<li>RGB image blender</li>
<li>Channel-map view</li>
<li>Image source finder </li>
<li>Spectral line query enhancement</li>
<li>Catalog visualization enhancement</li>
<li>Python scripting interface (long-term effort)</li>
</ul>
</div>
<!--End Content of the Middle-->
<!--Content of the Right Side-->
<div class="col-3">
<div class="section-heading">
<h4>Future releases</h4>
</div>
<p>This is a non-exclusive list of features we would like to add in subsequent
releases, but they are not 100% decided upon yet and depend on feedback from users,
resourcing etc.:
<ul>
<li> Collaborative tools </li>
<li> Volume (pseudo 3D) rendering </li>
<li> Profile, histogram, and image fitting tools </li>
<li> VO service (image and catalog) </li>
<li> Smart layout </li>
<li> New moment image generator </li>
<li> Python scripting interface (long-term effort) </li>
</ul>
<br>
</p>
</div>
<!--End Content Right Side-->
</div>
</div>
<!--End of Content Section-->
<!--Download Tables-->
<section id="download" class="secondary-color text-left scrollto clearfix ">
<div class="row clearfix">
<div class="col-1">
<div class="section-heading">
<h3>INSTALLATION</h3>
<h2 class="section-title">Obtaining CARTA</h2>
<h4>v4.1</h4>
<p>Supported operating systems:
<ul>
<li>Ubuntu Linux: 20.04 LTS (Focal Fossa), and 22.04 LTS (Jammy Jellyfish)
for amd64 and aarch64 architectures.</li>
<li>Red Hat Enterprise Linux: 7, 8 and 9 for x86_64 and aarch64 architectures.</li>
<li>macOS: 11 (Big Sur), 12 (Monterey), and 13 (Ventura)
for Intel and Apple Silicon architectures.</li>
</ul>
</p>
<style>
.collapsible {
background-color: rgb(57, 105, 148);
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 18px;
}
.collapsible:hover,
.active-collapsible {
background-color: rgb(30, 80, 134);
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
</style>
<button class="collapsible">Site deployment</button>
<div class="content">
<p>To deploy CARTA at your institution as a web-based application for multiple users,
please refer to the <a href="https://carta-controller.readthedocs.io/en/dev/"
target="_blank">CARTA controller documentation</a>.</p>
<p>To start CARTA, please refer to the user manual <a
href="https://carta.readthedocs.io/en/4.1/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.</p>
</div>
<button class="collapsible">Packages</button>
<div class="content">
<!-- Package details in simple horizontal tabs -->
<div id="containertab">
<input id="tab-1" type="radio" name="tab-group" checked="checked" />
<label for="tab-1">Ubuntu</label>
<input id="tab-2" type="radio" name="tab-group" />
<label for="tab-2">RHEL 7 & CentOS 7</label>
<input id="tab-3" type="radio" name="tab-group" />
<label for="tab-3">RHEL 8/9 & AlmaLinux 8/9</label>
<input id="tab-4" type="radio" name="tab-group" />
<label for="tab-4">macOS</label>
<div id="contenttab">
<div id="content-1tab">
<p>Ubuntu 20.04, and 22.04 packages are available <a
href="https://launchpad.net/~cartavis-team/+archive/ubuntu/carta"
target="_blank">from our PPA</a>.</p>
<p><code>sudo add-apt-repository ppa:cartavis-team/carta
<br/>sudo apt-get update
<br/>sudo apt install carta</code></p>
<p>To start CARTA, please refer to the user manual <a
href="https://carta.readthedocs.io/en/4.1/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.</p>
<p>The 'carta-beta' package is updated with intermediate preview releases as
well as official releases. Users may install this package instead if
they wish to receive these updates,
and users who already have 'carta-beta' installed may update their
existing package now to obtain this release:
<p><code>sudo apt-get update
<br/>sudo apt install carta-beta</code></p>
</div>
<div id="content-2tab">
<p>We now host the CARTA RPMs on the <a
href="https://copr.fedorainfracloud.org/coprs/cartavis/carta/"
target="_blank">Fedora Copr</a> service.<br>
If you have previously
used our old "packages.cartavis.org" RPM repository,
we recommend uninstalling any existing carta packages and removing
the old cartavis.repo file first:<br>
<code>sudo yum remove carta carta-beta
<br/>sudo rm /etc/yum.repos.d/cartavis.repo</code>
<p>Follow these steps to add the Copr repository and install CARTA
(Root access is required, unless you install it in a Docker
container):<br>
<code>sudo yum -y install yum-plugin-copr
<br/>sudo yum -y copr enable cartavis/carta
<br/>sudo yum -y install epel-release
<br/>sudo yum -y install carta</code>
</p>
</div>
<div id="content-3tab">
<p>We now host the CARTA RPMs on the <a
href="https://copr.fedorainfracloud.org/coprs/cartavis/carta/"
target="_blank">Fedora Copr</a> service.<br>
If you have previously
used our old "packages.cartavis.org" RPM repository,
we recommend uninstalling any existing carta packages and removing
the old cartavis.repo file first:<br>
<code>sudo dnf remove carta carta-beta
<br/>sudo rm /etc/yum.repos.d/cartavis.repo</code>
<p>Follow these steps to add the Copr repository and install CARTA
(Root access is required, unless you install it in a Docker
container):<br>
<code>sudo dnf -y install 'dnf-command(copr)'
<br/>sudo dnf -y copr enable cartavis/carta
<br/>sudo dnf -y install epel-release
<br/>sudo dnf -y install carta</code>
</p>
</div>
<div id="content-4tab">
<p>We officially support macOS 11 Big Sur, macOS 12 Monterey, and macOS 13 Ventura through <a
href="https://brew.sh" target="_blank">Homebrew</a>.
<p>If you do not already have it, you may install Homebrew using the
following command (root access is required):<br>
<code>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"</code>
<p>Now CARTA can be installed with:<br>
<code>brew update
<br/> brew install --cask cartavis/tap/carta
</code>
<p>To start CARTA, please refer to the user manual <a
href="https://carta.readthedocs.io/en/4.1/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.</p>
</div>
</div>
</div>
</div>
<button class="collapsible">Stand-alone application</button>
<div class="content">
<div id="containertab2">
<input id="tab2-1" type="radio" name="tab2-group" checked="checked" />
<label for="tab2-1">macOS Electron Desktop</label>
<input id="tab2-2" type="radio" name="tab2-group" />
<label for="tab2-2">Linux AppImage</label>
<div id="contenttab2">
<div id="content-1tab2">
<p>The traditional macOS Electron Desktop version can be downloaded by
clicking the appropriate download button below. In addition to the
standard x86_64 version for Intel based Macs, we now supply a native
arm64 version for Apple Silicon based Macs.</p>
<p><b>Installation:</b><br>
Click the download button below. After downloading, open the DMG
installer and drag the <b>CARTA</b> icon to the Applications folder.<br>
<b>Operation:</b><br>
Click the <b>CARTA</b> icon in the Launchpad.
<p>Alternatively, you may create an alias for starting CARTA in your
terminal.<br>
Here is an example:<br>
Open your <b>~/.zshrc</b> file (or <b>~/.bashrc</b> if you use bash) in
a text editor and add the following line:<br>
<code>alias carta='/Applications/CARTA.app/Contents/MacOS/CARTA'</code><br>
Then enter <code>source ~/.zshrc</code> (or
<code>source ~/.bashrc</code>) in the terminal.<br>
Now you will be able to start CARTA by simply typing <code>carta</code>
in the terminal.
<br><a
href="https://github.com/CARTAvis/carta/releases/latest/download/CARTA-v4.1.0-x64.dmg"
class="button">DOWNLOAD - Intel Mac</a>
<a href="https://github.com/CARTAvis/carta/releases/latest/download/CARTA-v4.1.0-arm64.dmg"
class="button">DOWNLOAD - Apple Silicon Mac</a>
</div>
<div id="content-2tab2">
<p>The CARTA Linux AppImage does not require root access. You simply
download, extract, and run it.
It uses your default web browser to display the CARTA graphical
interface.
The CARTA AppImage can now run universally between Ubuntu and RedHat
platforms, but we have separate versions for x86_64 and aarch64
architectures.
<p><b>Installation:</b><br>
Either click the Download button below or run:<br>
<code>wget https://github.com/CARTAvis/carta/releases/latest/download/carta.AppImage.$(arch).tgz</code><br>
Extract the tarball:<br>
<code>tar -xzf carta.AppImage.$(arch).tgz</code><br>
<b>Operation:</b><br>
To start CARTA, please refer to the user manual <a
href="https://carta.readthedocs.io/en/4.1/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.
<p>Note: If you wish to run the AppImage inside a Docker container, or you
system has trouble with FUSE, please prefix with the following
environment variable:<br>
<code>APPIMAGE_EXTRACT_AND_RUN=1 ./carta-4.1-x86_64.AppImage </code>
<br><a
href="https://github.com/CARTAvis/carta/releases/latest/download/carta.AppImage.x86_64.tgz"
class="button">DOWNLOAD - x86_64</a>
<a href="https://github.com/CARTAvis/carta/releases/latest/download/carta.AppImage.aarch64.tgz"
class="button">DOWNLOAD - aarch64</a>
</div>
</div>
</div>
</div>
<button class="collapsible">Docker</button>
<div class="content">
<p>CARTA is available in the form of a Docker container from <a
href="https://hub.docker.com/r/cartavis/carta/" target="_blank">Docker Hub</a>.
This version could be useful to run CARTA on unsupported platforms such as macOS
10.14.</p>
With <a href="https://www.docker.com/" target="_blank"> Docker</a> installed and running
on your system, simply enter the following command in your terminal:<br>
<code>docker run -ti -p 3002:3002 -v $PWD:/images -v $HOME/.carta:/home/cartauser/.carta cartavis/carta:latest</code><br>
It will download the latest version of CARTA from Docker Hub and run it using your
current directory (<code>$PWD</code>) in the CARTA file-browser. A unique URL will be
displayed in the terminal.
Copy & Paste the unique URL into your local web browser in order to access the CARTA
frontend interface.
<p>Please refer to the user manual for more information <a
href="https://carta.readthedocs.io/en/4.1/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.</p>
</div>
<p>Known critical bug: <a
href="https://github.com/CARTAvis/carta-frontend/issues?q=is%3Aopen+is%3Aissue+label%3A%22critical+bug%22"
target="_blank">frontend</a>, <a
href="https://github.com/CARTAvis/carta-backend/issues?q=is%3Aopen+is%3Aissue+label%3A%22critical+bug%22"
target="_blank">backend</a>, <a
href="https://github.com/CARTAvis/carta-controller/issues?q=is%3Aopen+is%3Aissue+label%3A%22critical+bug%22"
target="_blank">controller</a></p>
<p>Known bug: <a
href="https://github.com/CARTAvis/carta-frontend/issues?q=is%3Aopen+is%3Aissue+label%3A%22bug%22"
target="_blank">frontend</a>, <a
href="https://github.com/CARTAvis/carta-backend/issues?q=is%3Aopen+is%3Aissue+label%3A%22bug%22"
target="_blank">backend</a>, <a
href="https://github.com/CARTAvis/carta-controller/issues?q=is%3Aopen+is%3Aissue+label%3A%22bug%22"
target="_blank">controller</a></p>
<p>For more information, please refer to the <a
href="https://carta.readthedocs.io/en/4.1/installation_and_configuration.html"
target="_blank">user manual</a>.</p>
<p>In case of any issues encountered during the installation, please contact the <a
href="mailto:[email protected]?subject=CARTA installation issues">CARTA
helpdesk</a>.</p>
<p>To obtain previous release versions, please refer to <a
href="https://github.com/CARTAvis/carta/releases"
target="_blank">https://github.com/CARTAvis/carta/releases</a>.</p>
<!-- Hiding the beta release section for now
<hr>
<h4>v4.0-beta.1</h4>
<p>Supported operating systems:
<ul>
<li>Ubuntu Linux: 20.04 LTS (Focal Fossa) and 22.04 LTS (Jammy Jellyfish) for amd64 and
aarch64 architectures</li>
<li>Red Hat Enterprise Linux: 7 and 8 for x86_64 and aarch64 architectures</li>
<li>macOS: 11 (Big Sur), 12 (Monterey), and 13 (Ventura) for Intel and Apple Silicon
architectures</li>
</ul>
</p>
<button class="collapsible">Site deployment</button>
<div class="content">
<p>To deploy CARTA at your institution as a web-based application for multiple users,
please refer to the <a href="https://carta-controller.readthedocs.io/en/dev/"
target="_blank">CARTA controller documentation</a>.</p>
<p>To start CARTA, please refer to the user manual <a
href="https://carta.readthedocs.io/en/3.0/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.</p>
</div>
<button class="collapsible">Packages</button>
<div class="content">
<!- - Package details in simple horizontal tabs - ->
<div id="containertab3">
<input id="tab3-1" type="radio" name="tab3-group" checked="checked" />
<label for="tab3-1">Ubuntu</label>
<input id="tab3-2" type="radio" name="tab3-group" />
<label for="tab3-2">RHEL7 / CentOS7</label>
<input id="tab3-3" type="radio" name="tab3-group" />
<label for="tab3-3">RHEL8 / AlmaLinux 8</label>
<input id="tab3-4" type="radio" name="tab3-group" />
<label for="tab3-4">macOS</label>
<div id="contenttab3">
<div id="content-1tab3">
<p>Ubuntu 20.04 and 22.04 packages are available <a
href="https://launchpad.net/~cartavis-team/+archive/ubuntu/carta"
target="_blank">from our PPA</a>.</p>
<p><code>sudo add-apt-repository ppa:cartavis-team/carta
<br/>sudo apt-get update
<br/>sudo apt install carta-beta</code></p>
<p>To start CARTA, please refer to the user manual <a
href="https://carta.readthedocs.io/en/3.0/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.</p>
</div>
<div id="content-2tab3">
<p>We now host the CARTA RPMs on the <a
href="https://copr.fedorainfracloud.org/coprs/cartavis/carta/"
target="_blank">Fedora Copr</a> service. If you have previously
used our old "packages.cartavis.org" RPM repository,
we recommend uninstalling any existing carta packages and removing
the old cartavis.repo file first:<br>
<code>sudo yum remove carta carta-beta
<br/>sudo rm /etc/yum.repos.d/cartavis.repo</code>
<p>Follow these steps to add the Copr repository and install carta-beta
(Root access is required, unless you install it in a Docker
container):<br>
<code>sudo yum -y install yum-plugin-copr
<br/>sudo yum -y copr enable cartavis/carta
<br/>sudo yum -y install epel-release
<br/>sudo yum -y install carta-beta</code>
</p>
<p>Note: We are currently testing the ability to have the beta and
mainline versions of the CARTA RPMs installable side-by-side. To
start carta-beta, please run:<br>
<code>carta-beta</code>
</p>
</div>
<div id="content-3tab3">
<p>We now host the CARTA RPMs on the <a
href="https://copr.fedorainfracloud.org/coprs/cartavis/carta/"
target="_blank">Fedora Copr</a> service. If you have previously
used our old "packages.cartavis.org" RPM repository,
we recommend uninstalling any existing carta packages and removing
the old cartavis.repo file first:<br>
<code>sudo dnf remove carta carta-beta
<br/>sudo rm /etc/yum.repos.d/cartavis.repo</code>
<p>Follow these steps to add the Copr repository and install carta-beta
(Root access is required, unless you install it in a Docker
container):<br>
<code>sudo dnf -y install 'dnf-command(copr)'
<br/>sudo dnf -y copr enable cartavis/carta
<br/>sudo dnf -y install epel-release
<br/>sudo yum -y install carta-beta</code>
</p>
<p>Note: We are currently testing the ability to have the beta and
mainline versions of the CARTA RPMs installable side-by-side. To
start carta-beta, please run:<br>
<code>carta-beta</code>
</p>
</div>
<div id="content-4tab3">
<p>We officially support macOS 11 Big Sur, macOS 12 Monterey, and macOS
13 Ventura through <a href="https://brew.sh"
target="_blank">Homebrew</a>.
<p>If you do not already have it, you may install Homebrew using the
following command (root access is required):<br>
<code>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"</code><br>
If you have previously installed CARTA via Homebrew, we recommend
unlinking it first with:<br>
<code>brew unlink carta</code><br>
<p>Now CARTA can be installed with:<br>
<code>brew install cartavis/tap/carta-beta</code>
<p>To start CARTA, please refer to the user manual <a
href="https://carta.readthedocs.io/en/3.0/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.</p>
</div>
</div>
</div>
</div>
<button class="collapsible">Stand-alone application</button>
<div class="content">
<div id="containertab4">
<input id="tab4-1" type="radio" name="tab4-group" checked="checked" />
<label for="tab4-1">macOS Electron Desktop</label>
<input id="tab4-2" type="radio" name="tab4-group" />
<label for="tab4-2">Linux AppImage</label>
<div id="contenttab4">
<div id="content-1tab4">
<p>The traditional macOS Electron Desktop version can be downloaded by
clicking the appropriate download button below. In addition to the
standard Intel version for Intel (x64) based Macs, we now supply a
native Apple Silicon (arm64) based Macs.</p>
<p><b>Installation:</b><br>
Click the download button below. After downloading, open the DMG
installer and drag the <b>CARTA</b> icon to the Applications folder.<br>
<b>Operation:</b><br>
Click the <b>CARTA</b> icon in the Launchpad.
<p>Alternatively, you may create an alias for starting CARTA in your
terminal.<br>
Here is an example:<br>
Open your <b>~/.zshrc</b> file (or <b>~/.bashrc</b> if you use bash) in
a text editor and add the following line:<br>
<code>alias carta-beta='/Applications/CARTA-v4.0.0-beta.1.app/Contents/MacOS/CARTA-v4.0.0-beta.1'</code><br>
Then enter <code>source ~/.zshrc</code> (or
<code>source ~/.bashrc</code>) in the terminal.<br>
Now you will be able to start CARTA by simply typing
<code>carta-beta</code> in the terminal.
<br><a
href="https://github.com/CARTAvis/carta/releases/download/v4.0.0-beta.1/CARTA-v4.0.0-beta.1-x64.dmg"
class="button">DOWNLOAD - Intel Mac</a>
<a href="https://github.com/CARTAvis/carta/releases/download/v4.0.0-beta.1/CARTA-v4.0.0-beta.1-arm64.dmg"
class="button">DOWNLOAD - Apple Silicon Mac</a>
</div>
<div id="content-2tab4">
<p>The CARTA Linux AppImage does not require root access. You simply
download, extract, and run it.
It uses your default web browser to display the CARTA graphical
interface.
The CARTA AppImage can now run universally between Ubuntu and RedHat
platforms, but we have separate versions for x86_64 and aarch64
architectures.
<p><b>Installation:</b><br>
Either click the Download button below or run:<br>
<code>wget https://github.com/CARTAvis/carta/releases/download/v4.0.0-beta.1/carta.AppImage.v4.0.0-beta.1.$(arch).tgz</code><br>
Extract the tarball:<br>
<code>tar -xzf carta.AppImage.v4.0.0-beta.1.$(arch).tgz</code><br>
<b>Operation:</b><br>
To start CARTA, please refer to the user manual <a
href="https://carta.readthedocs.io/en/3.0/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.
<p>Note: If you wish to run the AppImage inside a Docker container, or you
system has trouble with FUSE, please prefix with the following
environment variable:<br>
<code>APPIMAGE_EXTRACT_AND_RUN=1 ./carta-v4.0.0-beta.1-$(arch).AppImage </code>
<br><a
href="https://github.com/CARTAvis/carta/releases/download/v4.0.0-beta.1/carta.AppImage.v4.0.0-beta.1.x86_64.tgz"
class="button">DOWNLOAD - x86_64</a>
<a href="https://github.com/CARTAvis/carta/releases/download/v4.0.0-beta.1/carta.AppImage.v4.0.0-beta.1.aarch64.tgz"
class="button">DOWNLOAD - aarch64</a>
</div>
</div>
</div>
</div>
<button class="collapsible">Docker</button>
<div class="content">
<p>CARTA is available in the form of a Docker container from <a
href="https://hub.docker.com/r/cartavis/carta/" target="_blank">Docker Hub</a>.
This version could be useful to run CARTA on unsupported platforms such as macOS
10.14.</p>
With <a href="https://www.docker.com/" target="_blank"> Docker</a> installed and running
on your system, simply enter the following command in your terminal:<br>
<code>docker run -ti -p 3002:3002 -v $PWD:/images cartavis/carta:beta</code><br>
It will download the v4.0.0-beta.1 version of CARTA from Docker Hub and run it using
your current directory (<code>$PWD</code>) in the CARTA file-browser. A unique URL will
be displayed in the terminal.
Copy & Paste the unique URL into your local web browser in order to access the CARTA
frontend interface.
<p>Please refer to the user manual for more information <a
href="https://carta.readthedocs.io/en/3.0/installation_and_configuration.html#how-to-run-carta"
target="_blank">How to Run CARTA</a>.</p>
</div>
hiding the beta release section for now -->
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function () {
this.classList.toggle("active-collapsible");
var content = this.nextElementSibling;
if (content.style.maxHeight) {
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
</script>
<!--
</div>
<p>For more information, please refer to the <a
href="https://docs.google.com/document/d/1TLFma7bP7yZ879N8tqmNmBZX9CbxaXktFv3GNOwQ9n4"
target="_blank">beta release quick guide</a>.</p>
<p>In case of any issues encountered during the installation, please contact the <a
href="mailto:[email protected]?subject=CARTA installation issues">CARTA
helpdesk</a>.</p>
</div>
-->
</div>
</section>
<!--End of Download Tables-->