This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1038 lines (996 loc) · 60.3 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 lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Resonant</title>
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/agency.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<img src="img/Resonant_Mark_Text.png" class="resonant-mark">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#portfolio">Success Stories</a>
</li>
<li>
<a class="page-scroll" href="#data">Data Management</a>
</li>
<li>
<a class="page-scroll" href="#analytics">Analytics</a>
</li>
<li>
<a class="page-scroll" href="#visualization">Visualization</a>
</li>
<li>
<a class="page-scroll" href="#consulting">Consulting</a>
</li>
<li>
<a href="https://www.kitware.com">Kitware</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">The Resonant data and analytics platform</div>
<div class="intro-heading">Welcome to Your Data</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<a href="#data" class="page-scroll fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-database fa-stack-1x fa-inverse"></i>
</a>
<h3 class="service-heading">Data Management</h3>
<p class="text-muted">Upload, share, and manage your data from SQL, NoSQL, Hadoop, Amazon S3, and more.</p>
</div>
<div class="col-md-4">
<a href="#analytics" class="page-scroll fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-rocket fa-stack-1x fa-inverse"></i>
</a>
<h3 class="service-heading">Analytics</h3>
<p class="text-muted">Perform heavy-lifting on your data with Python, R, Spark, and Docker containers through a uniform interface.</p>
</div>
<div class="col-md-4">
<a href="#visualization" class="page-scroll fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-bar-chart fa-stack-1x fa-inverse"></i>
</a>
<h3 class="service-heading">Visualization</h3>
<p class="text-muted">Gain insight with flexible, scalable web visualizations.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 architecture-description">
<p class="text-muted text-left">
The Resonant framework tools work in concert
to provide storage, analysis, and visualization solutions
for your data. All Resonant components
are fully open-source under the Apache v2 licence.
</p>
</div>
<div class="col-lg-6">
<img src="img/architecture.png" class="architecture-diagram">
</div>
</div>
</div>
</header>
<section id="resonant-lab">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Resonant Lab</h2>
</div>
<div class="col-md-6 text-muted">
<div class="text-center">
<img src="img/Resonant_Lab_Mark.png" class="resonant-lab-mark" alt="">
</div>
<p class="resonant-lab-description">
Resonant Lab lets you build and share advanced
visualizations without needing to write code. Upload
your own dataset, connect data fields to visual
properties, and export or share the resulting interative
visualizations through an easy to use free application
powered by the Resonant data and analytics platform.
</p>
<div class="text-center">
<a href="https://resonantlab.kitware.com" class="btn btn-lg btn-primary action-button">Try it!</a>
</div>
</div>
<div id="vis" class="col-md-6 text-center">
<a href="https://resonantlab.kitware.com">
<img src="img/kitware-candela.png" class="resonant-lab-img" alt="">
</a>
</div>
</div>
</div>
</section>
<section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Success Stories</h2>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/hospital.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Hospital Costs</h4>
<p class="text-muted">Interactive visualization</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/taxi.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>NYC Taxi</h4>
<p class="text-muted">Scalable geoinformatics</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/ebola.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Ebola Outbreak</h4>
<p class="text-muted">Storytelling with data</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModal8" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/hurricanes.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Hurricane Tracking</h4>
<p class="text-muted">Geoinformatics</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModalPermits" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/permits.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Explore Boston Permit Data</h4>
<p class="text-muted">U.S. Census Data</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/covalic.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Covalic</h4>
<p class="text-muted">Challenge hosting</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/arbor.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Arbor</h4>
<p class="text-muted">Bioinformatics workflows</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModal4" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/xdata.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>XDATA</h4>
<p class="text-muted">Big data visualization</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModal7" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/monkeybrain.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Brain Development</h4>
<p class="text-muted">Data management</p>
</div>
</div>
<div class="col-md-3 col-sm-6 portfolio-item">
<a href="#portfolioModalSUMO" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/sumo.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>SUMO</h4>
<p class="text-muted">Computational biology</p>
</div>
</div>
</div>
</div>
</section>
<section id="data">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Data Management</h2>
</div>
</div>
<div class="row resonant-component">
<div class="col-md-3">
<a href="http://girder.readthedocs.org/">
<img src="img/team/girder.png" class="img-responsive img-circle" alt="">
</a>
</div>
<div class="col-md-9">
<h3>Girder</h3>
<p class="text-muted">
Our versatile data management platform, Girder, is a great place to start. Follow the
<a href="http://girder.readthedocs.org/en/latest/installation.html">installation instructions</a>
to get a full data management platform running locally.
</p>
<ul class="list-inline social-buttons">
<li><a href="http://girder.readthedocs.org/" class="text-center"><i class="fa fa-home"></i></a>
</li>
<li><a href="http://girder.readthedocs.org/en/latest/user-guide.html" class="text-center"><i class="fa fa-graduation-cap"></i></a>
</li>
<li><a href="https://github.com/girder/girder" class="text-center"><i class="fa fa-git"></i></a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="analytics" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Analytics</h2>
</div>
</div>
<div class="row resonant-component">
<div class="col-sm-3">
<a href="http://girder-worker.readthedocs.org/">
<img src="img/team/girder-worker.png" class="img-responsive img-circle" alt="" />
</a>
</div>
<div class="col-md-9">
<h3>Girder Worker</h3>
<p class="text-muted">
Girder integrates with Girder Worker, a flexible execution engine for running analyses.
To see it in action, <a href="http://girder-worker.readthedocs.org/en/latest/installation.html">install Girder Worker</a>
and follow our tutorials on
<a href="http://girder-worker.readthedocs.org/en/latest/image-example.html">image analysis</a> and
<a href="http://girder-worker.readthedocs.org/en/latest/facebook-example.html">graph analysis</a>.
To run Girder Worker jobs through Girder, see how to enable the
<a href="http://girder-worker.readthedocs.org/en/latest/installation.html#installing-the-girder-plugin">Girder Worker plugin</a>.
</p>
<ul class="list-inline social-buttons">
<li><a href="http://girder-worker.readthedocs.org/" class="text-center"><i class="fa fa-home"></i></a></li>
<li><a href="http://girder-worker.readthedocs.org/en/latest/api-docs.html" class="text-center"><i class="fa fa-graduation-cap"></i></a></li>
<li><a href="https://github.com/girder/girder_worker" class="text-center"><i class="fa fa-git"></i></a></li>
</ul>
</div>
</div>
</div>
</section>
<section id="visualization">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Visualization</h2>
</div>
</div>
<div class="row resonant-component">
<div class="col-sm-3">
<a href="http://geojs.readthedocs.org/">
<img src="img/team/geojs.png" class="img-responsive img-circle" alt="">
</a>
</div>
<div class="col-md-9">
<h3>GeoJS</h3>
<p class="text-muted">
For geoinformatics applications, you may want to start by learning about
GeoJS, a scalable geospatial visualization library for the web. To get you started, GeoJS provides
<a href="http://opengeoscience.github.io/geojs/examples/index.html">several examples</a>
with associated source code.
</p>
<ul class="list-inline social-buttons">
<li><a href="http://geojs.readthedocs.org/" class="text-center"><i class="fa fa-home"></i></a>
</li>
<li><a href="http://opengeoscience.github.io/geojs/examples/index.html" class="text-center"><i class="fa fa-graduation-cap"></i></a>
</li>
<li><a href="https://github.com/OpenGeoscience/geojs" class="text-center"><i class="fa fa-git"></i></a>
</li>
</ul>
</div>
</div>
<div class="row resonant-component">
<div class="col-sm-3">
<a href="https://candela.readthedocs.io">
<img src="img/team/candela.png" height="225" width = "225" class="img-responsive img-circle" alt="">
</a>
</div>
<div class="col-md-9">
<h3>Candela</h3>
<p class="text-muted">Reusable visualization components for the web.</p>
<ul class="list-inline social-buttons">
<li><a href="https://candela.readthedocs.io" class="text-center"><i class="fa fa-home"></i></a>
</li>
<li><a href="https://candela.readthedocs.io#getting-started" class="text-center"><i class="fa fa-graduation-cap"></i></a>
</li>
<li><a href="https://github.com/Kitware/candela" class="text-center"><i class="fa fa-git"></i></a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="related-tools" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Related Tools</h2>
</div>
</div>
<div class="row resonant-component">
<div class="col-sm-3">
<a href="https://github.com/XDATA-Year-3/clique#readme">
<img src="img/team/clique.png" class="img-responsive img-circle" alt="">
</a>
</div>
<div class="col-md-9">
<h3>Clique</h3>
<p class="text-muted">Intuitive large graph visualization and curation.</p>
<ul class="list-inline social-buttons">
<li><a href="https://github.com/XDATA-Year-3/clique#readme" class="text-center"><i class="fa fa-home"></i></a>
</li>
<li><a href="https://github.com/XDATA-Year-3/clique#clique-api" class="text-center"><i class="fa fa-graduation-cap"></i></a>
</li>
<li><a href="https://github.com/XDATA-Year-3/clique" class="text-center"><i class="fa fa-git"></i></a>
</li>
</ul>
</div>
</div>
<div class="row resonant-component">
<div class="col-sm-3">
<a href="http://tangelo.readthedocs.org/">
<img src="img/team/tangelo.png" class="img-responsive img-circle" alt="">
</a>
</div>
<div class="col-md-9">
<h3>Tangelo</h3>
<p class="text-muted">
If you are looking for a dead-simple web framework to host analyses or visualizations,
consider Tangelo, a minimal, powerful, Pythonic web server for analysis.
Go through the <a href="http://tangelo.readthedocs.org/en/v0.9/tutorials/building-an-app.html">basic</a> and
<a href="http://tangelo.readthedocs.org/en/v0.9/tutorials/db-vis.html">advanced</a> tutorials to get started.
</p>
<ul class="list-inline social-buttons">
<li><a href="http://tangelo.readthedocs.org/" class="text-center"><i class="fa fa-home"></i></a>
</li>
<li><a href="http://tangelo.readthedocs.org/en/latest/tutorials/building-an-app.html" class="text-center"><i class="fa fa-graduation-cap"></i></a>
</li>
<li><a href="https://github.com/Kitware/tangelo" class="text-center"><i class="fa fa-git"></i></a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="consulting">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Consulting</h2>
<p class="text-muted">
Resonant is brought to you by <a href="https://www.kitware.com">Kitware</a>, a proven leader in advanced open-source solutions.
Kitware provides custom services supporting Resonant. Find out how we can work with you to create tailored web applications that resonate with your data.
</p>
<a href="https://www.kitware.com/products/consulting.html" class="btn btn-lg btn-primary action-button">Custom Solutions</a>
<a href="https://www.kitware.com/company/contact_kitware.php" class="btn btn-lg btn-primary action-button">Contact Us</a>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<ul class="list-inline quicklinks">
<li><span class="copyright">Copyright © <a href="https://www.kitware.com">Kitware</a> 2015</span>
</li>
<li><a href="https://www.kitware.com"><img src="img/kitware_footer.png"></img></a>
</li>
</div>
<div class="col-md-2">
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/Kitware"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="https://www.facebook.com/kitware"><i class="fa fa-facebook"></i></a>
</li>
<li><a href="https://www.linkedin.com/company/kitware-inc."><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
<div class="col-md-6">
<ul class="list-inline quicklinks">
<li><a rel="license" href="https://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/3.0/88x31.png"></a>
</li>
<li><a href="https://www.kitware.com/company/cclicense.html">Website license and management</a>
</li>
<li><a href="https://www.kitware.com/privacy">Privacy Notice</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Portfolio Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Arbor</h2>
<p class="item-intro text-muted">Bioinformatics workflows</p>
<a href="https://arbor.kitware.com">
<img class="img-responsive img-centered" src="img/portfolio/arbor-preview.png" alt="">
</a>
<p class="portfolio-description">
The Resonant Flow application was primarily developed for the National Science Foundation
(NSF) <a href="http://arborworkflows.com/">Arbor Revolutionary Workflows</a> project, which provides new ways for phylogenetics
researchers to share code and data, as well as to educate others on new methods. Resonant Flow
allows you to drag and drop data, author and run analytic scripts in R or Python, construct
complex bioinformatics workflows, and visualize results in a browser. The application uses
Girder to store both data and analyses and to manage the remote execution of analyses through
Celery, a popular Python framework for distributed task management. Resonant Flow also uses
GeoJS to plot the locations of the observations for a better understanding of the geographic
distribution of species.
</p>
<p class="portfolio-description">
For more information, visit <a href="https://arbor.kitware.com">https://arbor.kitware.com</a>.
</p>
<p class="portfolio-components">Resonant components:
<a href="#data" class="page-scroll" data-dismiss="modal">Girder</a>,
<a href="#analytics" class="page-scroll" data-dismiss="modal">Girder Worker</a>,
<a href="#visualization" class="page-scroll" data-dismiss="modal">GeoJS</a>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2 -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Covalic</h2>
<p class="item-intro text-muted">Challenge hosting</p>
<a href="http://challenge.kitware.com">
<img class="img-responsive img-centered" src="img/portfolio/covalic-preview.png" alt="">
</a>
<p class="portfolio-description">
Our COVALIC platform helps you get the most out of your data, while saving millions of dollars
in research and development. The platform unites datasets and software from world-class
researchers and developers for grand challenges. During grand challenges, participants submit
results to well-defined inputs and outputs. These results are scored against a known ground-truth
and ranked. The outcome of grand challenges is win-win data analysis, as stakeholders can
discover solutions from algorithm developers in their fields, and developers can see how their
methods work on real-world data. Thus, grand challenges help solve problems, advance the sate-
of-the-art, and evaluate novel algorithms through community competition.
The COVALIC platform combines decades of high-performance computing and medical
imaging experience with our modern data and analytics framework. The platform submits data to
Girder, processes it with Girder Worker, and visualizes the results using Tangelo.
</p>
<p class="portfolio-description">
For more information, visit <a href="https://challenge.kitware.com/">https://challenge.kitware.com/</a>.
</p>
<p class="portfolio-components">Resonant components:
<a href="#data" class="page-scroll" data-dismiss="modal">Girder</a>,
<a href="#analytics" class="page-scroll" data-dismiss="modal">Girder Worker</a>
<a href="#analytics" class="page-scroll" data-dismiss="modal">Tangelo</a>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3 -->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Hospital Costs</h2>
<p class="item-intro text-muted">Interactive visualization</p>
<a href="http://infovis.kitware.com/hospital-costs">
<img class="img-responsive img-centered" src="img/portfolio/hospital-preview.png" alt="">
</a>
<p class="portfolio-description">
When outcome and cost metrics for thousands of hospitals were released by the federal
government, we sought to answer the question, “Does hospital cost relate to the quality of patient
outcome?” As part of an effort sponsored by the Air Force Research Laboratory and the Defense
Advanced Research Projects Agency XDATA program, we developed an interactive online
visualization tool that allows you to compare the cost of treatments for pneumonia and heart
failure, the amount of Medicare reimbursement received, and the quality of care for hospitals
throughout the country.
</p>
<p class="portfolio-description">
The online visualization tool is built on the Tangelo web framework. Using this tool, you can
select different states, highlight particular hospitals, and toggle between a bar chart and a scatter
plot to see how your local hospital stacks up to national averages.
</p>
<p class="portfolio-description">
For more information, visit <a href="http://infovis.kitware.com/hospital-costs">http://infovis.kitware.com/hospital-costs</a>.
</p>
<p class="portfolio-components">Resonant components:
<a href="#analytics" class="page-scroll" data-dismiss="modal">Tangelo</a>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>XDATA</h2>
<p class="item-intro text-muted">Big data visualization</p>
<img class="img-responsive img-centered" src="img/portfolio/xdata-preview.png" alt="">
<p class="portfolio-description">
Funded by the Defense Advanced Research Projects Agency, the XDATA project aims to
develop Big Data analysis and visualization solutions by using and expanding open-source
frameworks. The project is comprised of dozens of interactive, visual web applications. XDATA
helps you to see patterns, map fields to visuals, search for anomalies, follow a network, link
database queries to visual information, and document entity relationships. For example, you can
find and filter data from Bitcoin, Akamai, or Twitter; explore the progression of table
partitioning in a predictive database; visualize large graphs using the Biofabric algorithm; track
theft; search for relationships among emails from Enron employees; and discover locations from
millions of photographs on Flickr.
</p>
<p class="portfolio-description">
XDATA is hosted on the modular and flexible structure of Tangelo, which rapidly creates the
interactive, visual web applications using a variety of data sources. Girder manages the large
XDATA datasets, and Girder Worker creates workflows for the extract, transform, and load (ETL)
data tasks.
</p>
<p class="portfolio-description">
Several of the Resonant examples on this site were built using XDATA technologies.
</p>
<p class="portfolio-components">Resonant components:
<a href="#data" class="page-scroll" data-dismiss="modal">Girder</a>,
<a href="#analytics" class="page-scroll" data-dismiss="modal">Girder Worker</a>,
<a href="#analytics" class="page-scroll" data-dismiss="modal">Tangelo</a>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal Permits -->
<div class="portfolio-modal modal fade" id="portfolioModalPermits" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Explore Boston Permit Data</h2>
<p class="item-intro text-muted">U.S. Census Data</p>
<a href="http://demo.kitware.com/bostonpermits">
<img class="img-responsive img-centered" src="img/portfolio/permits-preview.png" alt="">
</a>
<p class="portfolio-description">
Funded by the Defense Advanced Research Projects Agency, the XDATA project aims to
develop Big Data analysis and visualization solutions by using and expanding open-source
frameworks. Using data from the U.S. Census, we enable analysts so see geospatial
and temporal correlations between various permit, crime, and violation data in Boston.
</p>
<p class="portfolio-description">
Explore Boston Permits is hosted with Girder and GeoJS. Girder manages the large
datasets, and GeoJS enables scalable interaction and animation of the U.S. Census data.
</p>
<p class="portfolio-description">
To use the demonstration, visit <a href="http://demo.kitware.com/bostonpermits">http://demo.kitware.com/bostonpermits</a>.
</p>
<p class="portfolio-components">Resonant components:
<a href="#data" class="page-scroll" data-dismiss="modal">Girder</a>,
<a href="#visualization" class="page-scroll" data-dismiss="modal">GeoJS</a>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>NYC Taxi</h2>
<p class="item-intro text-muted">Scalable geoinformatics</p>
<a href="http://demo.kitware.com/minerva/#mapview?taxi-filter=ga-source%3Dtaxijuly%26ga-data-trips%3D250000&general-display=ga-tile-set%3Dstamenterrain%26ga-tile-opacity%3D0.5&taxi-display=ga-show-taxi-data%3Dtrue%26ga-display-type%3Dboth%26ga-display-process%3Dbinned%26ga-display-max-points%3D25000%26ga-display-max-lines%3D10000%26ga-display-num-bins%3D30%26ga-data-opacity%3D0.136&graph=series0%3Dinternal.fullrange%26type0%3Dline%26bin0%3Dday%26series1%3Dtaximodeldc.total%26type1%3Dline%26bin1%3Dday%26series2%3Dweatherdc.precipitation%26type2%3Dline%26bin2%3Dday&animation-anim=ga-cycle%3Dnone%26ga-cycle-group%3D3-hour%26ga-cycle-duration%3D30-s%26ga-cycle-framerate%3D10%26ga-play%3Dplay&anim=ga-cycle%3Dnone%26ga-cycle-group%3D3-hour%26ga-cycle-duration%3D30-s%26ga-cycle-framerate%3D10%26ga-play%3Dstop&general-filter=ga-region%3D%26ga-date-range%3D2014%2BFeb%2B11%2B-%2B2014%2BFeb%2B22&map=x0%3D-77.1599426%26y0%3D38.9666906%26x1%3D-76.8955078%26y1%3D38.8438643%26zoom%3D13.73&panels=ga-anim-settings%3Dtrue%26ga-taxi-settings%3Dtrue%26ga-general-settings%3Dfalse">
<img class="img-responsive img-centered" src="img/portfolio/taxi-preview.png" alt="">
</a>
<p class="portfolio-description">
Using data from 114 million taxi and bike trips, we created a
live application that allows you to search taxi and bike trip data in New York City, Washington D.C., and Boston and analyze population
movements. You can filter results by pick-up date, trip distance, and number of
passengers; display results for pick-up and drop-off locations using various tile sets including
MapQuest Satellite and OpenStreetMap; pan and zoom; and animate results. In the link below, watch
how the <a href="https://en.wikipedia.org/wiki/February_11%E2%80%9317,_2014_North_American_winter_storm">February 2014 winter storm</a>
affected Washington D.C. bicycle travel and the number of
days it took before the city returned to its natural rhythm.
</p>
<p class="portfolio-description">
For more information, visit <a href="http://demo.kitware.com/minerva/#mapview?taxi-filter=ga-source%3Dtaxijuly%26ga-data-trips%3D250000&general-display=ga-tile-set%3Dstamenterrain%26ga-tile-opacity%3D0.5&taxi-display=ga-show-taxi-data%3Dtrue%26ga-display-type%3Dboth%26ga-display-process%3Dbinned%26ga-display-max-points%3D25000%26ga-display-max-lines%3D10000%26ga-display-num-bins%3D30%26ga-data-opacity%3D0.136&graph=series0%3Dinternal.fullrange%26type0%3Dline%26bin0%3Dday%26series1%3Dtaximodeldc.total%26type1%3Dline%26bin1%3Dday%26series2%3Dweatherdc.precipitation%26type2%3Dline%26bin2%3Dday&animation-anim=ga-cycle%3Dnone%26ga-cycle-group%3D3-hour%26ga-cycle-duration%3D30-s%26ga-cycle-framerate%3D10%26ga-play%3Dplay&anim=ga-cycle%3Dnone%26ga-cycle-group%3D3-hour%26ga-cycle-duration%3D30-s%26ga-cycle-framerate%3D10%26ga-play%3Dstop&general-filter=ga-region%3D%26ga-date-range%3D2014%2BFeb%2B11%2B-%2B2014%2BFeb%2B22&map=x0%3D-77.1599426%26y0%3D38.9666906%26x1%3D-76.8955078%26y1%3D38.8438643%26zoom%3D13.73&panels=ga-anim-settings%3Dtrue%26ga-taxi-settings%3Dtrue%26ga-general-settings%3Dfalse">Minerva Taxi 2014 Winter Storm View</a>.
To see the animation, wait for the data to load, then click Play in the Animation panel.
</p>
<p class="portfolio-components">Resonant components:
<a href="#data" class="page-scroll" data-dismiss="modal">Girder</a>,
<a href="#visualization" class="page-scroll" data-dismiss="modal">GeoJS</a>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 6 -->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Ebola Outbreak</h2>
<p class="item-intro text-muted">Storytelling with data</p>
<img class="img-responsive img-centered" src="img/portfolio/ebola-preview.png" alt="">
<p class="portfolio-description">
In order to increase awareness of the 2014 Ebola outbreak in western Africa, we developed an
interactive visualization timeline. The timeline aggregates news, case count information, and a
generational disease outbreak model. It is broken down into two infographics. The first
represents news articles related to the outbreak, where each node on the timeline is linked to a
corresponding news report. The second depicts outbreak cases over the same date range.
Controls allow you to choose whether this information is displayed as a hypothetical tree
showing transmission links or graphed by the sum of cases reported over time (in total or broken
down per country).
</p>
<p class="portfolio-description">
In addition to the timeline, we created a map to visualize a live Twitter stream related to the
outbreak in a geospatial context. The map uses Tangelo's streaming data services to retrieve
Tweets containing the hashtag “Ebola.” GeoJS then plots the Tweets.
The Air Force Research Laboratory and the Defense Advanced Research Projects Agency
XDATA program sponsored the effort to create the timeline and the map, while HealthMap
provided the news articles used in the timeline.
</p>
<p class="portfolio-components">Resonant components:
<a href="#analytics" class="page-scroll" data-dismiss="modal">Tangelo</a>,
<a href="#visualization" class="page-scroll" data-dismiss="modal">GeoJS</a>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 7 -->
<div class="portfolio-modal modal fade" id="portfolioModal7" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Brain Development</h2>
<p class="item-intro text-muted">Longitudinal data management</p>
<a href="https://data.kitware.com/#collection/54b582c38d777f4362aa9cb3">
<img class="img-responsive img-centered" src="img/portfolio/monkeybrain-preview.png" alt="">
</a>
<p class="portfolio-description">
Macaque Neuro-Development Data contains over 150 neonate macaque brain scans, which span
more than 30 subjects. This longitudinal primate database is freely downloadable. It uses Girder
for data organization, dissemination, authentication, and management. The Harlow Center for
Biological Psychology at the University of Wisconsin-Madison and the Neuro Image Research
and Analysis Laboratories (NIRAL) at the University of North Carolina at Chapel Hill compiled
the database with funding from the National Institutes of Health through project
5R01MH091645-05.
</p>
<p class="portfolio-description">
For more information, inspect or download the data at <a href="https://data.kitware.com/#collection/54b582c38d777f4362aa9cb3">https://data.kitware.com/#collection/54b582c38d777f4362aa9cb3</a>,
or read the associated paper: Jeffrey T. Young et al. <a href="http://journal.frontiersin.org/article/10.3389/fnins.2017.00029/full">The UNC-Wisconsin Rhesus Macaque Neurodevelopment Database: A Structural MRI and DTI Database of Early Postnatal Development. Frontiers in Neuroscience</a>. Vol. 11, 2017.
</p>
<p class="portfolio-components">Resonant components: <a href="#data" class="page-scroll" data-dismiss="modal">Girder</a></p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 8 -->
<div class="portfolio-modal modal fade" id="portfolioModal8" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Hurricane Tracking</h2>
<p class="item-intro text-muted">Geoinformatics</p>
<a href="http://opengeoscience.github.io/geojs/examples/hurricanes/">
<img class="img-responsive img-centered" src="img/portfolio/hurricanes-preview.png" alt="">
</a>
<p class="portfolio-description">
As part of the Department of Energy-funded project <a href="http://opengeoscience.github.io/geojs/examples/hurricanes/">ClimatePipes</a>,
we created an interactive map
to help scientists studying geoinformatics track historic hurricane paths. The map uses GeoJS’
geospatial visualization capabilities to display hurricanes in different colors based on category.
You can explore the hurricanes by date, wind speed, and surface pressure, using pan-and-zoom
capabilities to focus on specific regions of the map.
</p>
<p class="portfolio-description">
As part of our commitment to open source, we provide source code for creating features such as
a map object and a legend. Source code is also available for drawing the map and loading the
data.
</p>
<p class="portfolio-description">
For more information, visit <a href="http://opengeoscience.github.io/geojs/examples/hurricanes">http://opengeoscience.github.io/geojs/examples/hurricanes</a>.
</p>
<p class="portfolio-components">Resonant components: <a href="#visualization" class="page-scroll" data-dismiss="modal">GeoJS</a></p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal SUMO -->
<div class="portfolio-modal modal fade" id="portfolioModalSUMO" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>SUMO</h2>
<p class="item-intro text-muted">Computational biology</p>
<a href="http://osumo.org">
<img class="img-responsive img-centered" src="img/portfolio/sumo-preview.png" alt="">
</a>
<p class="portfolio-description">
The SUMO collective laboratory works on problems of computational biology while
leveraging methods from bioinformatics, visualization, and image analysis. The
group, led by Ohio State University, has engineered several workflows for
processing and analyzing images for problems in cancer, neuro, and wound biology
and immunology. They have developed algorithms that have been adapted for
exploration in the laboratory at the microscopic scale (confocal, brightfield,
histology, etc.) and in radiology clinics (diffusion tensor MR, fMRI, etc.).
Kitware has assisted this group with developing online software to share these
algorithms and visualizations to a wide audience. The SUMO software enables
researchers to analyze data through a web interface supported by Girder and
Girder Worker.
</p>
<p class="portfolio-description">
For more information, visit <a href="http://osumo.org">http://osumo.org</a>.
Note: This application is still under development so not all features are available.
</p>
<p class="portfolio-components">Resonant components:
<a href="#data" class="page-scroll" data-dismiss="modal">Girder</a>,
<a href="#analytics" class="page-scroll" data-dismiss="modal">Girder Worker</a>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>