forked from nasa/Open-Source-Catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalog.json
12124 lines (12124 loc) · 538 KB
/
catalog.json
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
[
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://www.nas.nasa.gov/Resources/Software/Open-Source/code.html",
"Description": "CODE is a framework for the control and observation of resources, services, and applications. The technology supports the secure and scalable transmission of observed information to other programs, and it enables the secure execution of actions on remote computer systems. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://www.nas.nasa.gov/Resources/Software/Open-Source/code.html",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "CODE-A Software Framework For Control and Observation In Distributed Environments"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/mission-simulation-toolkit/",
"Description": "MST offers a simulation framework to support research in autonomy for remote exploration. The system allows developers to test models in a high-fidelity simulation and then evaluate system performance against a set of integrated, standardized simulations.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/mission-simulation-toolkit/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Autonomous Systems"
],
"Software": "Mission Simulation Toolkit (MST)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/livingstone2/",
"Description": "Livingstone 2 is a reusable artificial intelligence (AI) software system designed to assist spacecraft, life support systems, chemical plants, or other complex systems in operating robustly with minimal human supervision, even in the face of hardware failures or unexpected events. The technology diagnoses the current state of a spacecraft or other system and recommends commands or repair actions that will allow the system to continue operations. A re-engineered version of the Livingstone diagnosis system that was flight-tested onboard the Deep Space One spacecraft in 1999, Livingstone 2 contains significant enhancements to robustness, performance, and usability. Skunkworks is a suite of software tools that support the rapid deployment of model-based representations of complex systems for Livingstone2 via a visual model builder/tester and two graphical user interface tools that provide status information during testing.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/livingstone2/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Autonomous Systems"
],
"Software": "Livingstone 2 (System for Automated Diagnosis and Discrete Control of Complex Systems) and Skunkworks (Suite of Supporting Development and Runtime Tools)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://babelfish.arc.nasa.gov/trac/jpf/wiki/install/repositories",
"Description": "Java Pathfinder (JPF) is a model checker for Java. The technology takes a Java program and \"executes\" it in a way that explores all possible executions/interleavings of the threads in the program. This allows JPF to detect certain bugs (e.g., deadlocks and assertion violations) that may be missed during testing. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://babelfish.arc.nasa.gov/trac/jpf/wiki/install/repositories",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Java Pathfinder (JPF), Version 2.0"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://software.nasa.gov/software/ARC-14487-1",
"Description": "CAPO analyzes a Fortran program and inserts OpenMP directives into the code to improve its performance on a parallel machine. The tool relies on accurate inter-procedural data-dependence information currently provided by CAPTools, which was developed at the University of Greenwich.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://software.nasa.gov/software/ARC-14487-1",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "CAPTools-based Automatic Parallelizer Using OpenMP (CAPO)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/slab-spatial-audio-renderer/",
"Description": "SLAB is a software-based, real-time, virtual acoustic-environment rendering system designed to study spatial hearing in environments such as concert halls, listening rooms, virtual reality, aviation spatial information displays, and video game sound effects. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/slab-spatial-audio-renderer/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"System Testing"
],
"Software": "Sound Lab (SLAB), Version 5"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/libibvpp/",
"Description": "Libibvpp is a C++ wrapper around libibverbs, which is part of the OpenFabrics software suite.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/libibvpp/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Libibvpp"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/mariana/",
"Description": "Mariana is an algorithm that efficiently optimizes the hyperparameters for support vector machines for regression and classification. It currently uses simulated annealing for optimization but can be extended to use a variety of stochastic optimization techniques, including Markov Chain Monte Carlo, Sequential Monte Carlo, and genetic algorithms. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/mariana/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Mariana: Text Classification System"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/gmp/",
"Description": "GMP serializes datatypes between XML and ANSI C data structures to support CFD applications. The library currently provides a description of geometric configurations, general moving-body scenarios (prescribed and/or 6-DOF), and control surface settings. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/gmp/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Geometry Manipulation Protocol (GMP) for ComputationalFluid Dynamics (CFD) Applications, Version 1.0"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://software.nasa.gov/software/ARC-16033-1",
"Description": "The Constellation PRACA I-1 system is a modified version of an open-source, Web-based defect tracking tool called Bugzilla. Bugzilla allows software developers to document and track outstanding bugs in their products; in the Constellation PRACA I-1 system, these core capabilities have been extended to provide the necessary functionality and usability defined in the PRACA processing requirements.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://software.nasa.gov/software/ARC-16033-1",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Constellation PRACA Extension of the Bugzilla Application"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/nu-anomica/",
"Description": "nu-Anomica is an anomaly detector that can run faster than traditional OC-SVMs. The technology can handle large training sets and works with a well-defined target function. The program utilizes the OSU SVMs code (which is a MATLAB version of Lib-SVMs) as the baseline.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/nu-anomica/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "nu-Anomica (Previously Sparse One Class Support Vector Machines (SOC-SVMs))"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://sourceforge.net/p/irg-verve/wiki/VERVE%20Wiki%20Home/",
"Description": "VERVE is a 3D visualization system that provides situational awareness, science analysis tools, and data understanding capabilities for robotics researchers and exploration science operations. The technology is highly modular and extensible and includes a 3D scene-graph database, an interactive 3D viewer, and associated graphical user interfaces to OSGI plugin-based applications.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://sourceforge.net/p/irg-verve/wiki/VERVE%20Wiki%20Home/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Visual Environment for Remote Virtual Exploration (VERVE), Version 2"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/tech/asr/intelligent-robotics/ngt/stereo/",
"Description": "NGT is a collection of automated processing tools that can transform raw geospatial raster data from remote sensing instruments into useful cartographic products, including visible image base maps and topographic models. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/tech/asr/intelligent-robotics/ngt/stereo/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Environmental Science (Earth, Air, Space, Exoplanet)"
],
"Software": "Neo-Geography Toolkit (NGT), Version 2"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/ikos/",
"Description": "IKOS is a kernel for the construction of open-static analyzers based on Patrick Cousot and Radhia Cousot's theory of abstract interpretation, which states that computations can be abstracted and reduced to a generalized set of objects and still exhibit the same critical properties of the parent program. By reducing the set of objects through abstraction, IKOS is scalable to large complex computer programs and presents a sound approach to verification of such programs. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/ikos/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Inference Kernel for Open Static (IKOS) Analyzers: A High-Performance Static Analysis Engine to Build Automated Code Analysis Tools for the Formal Verification of Critical Software Properties"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://rapid.nasa.gov/index.html",
"Description": "RAPID is a software reference implementation framework for remote operations. The technology promotes interoperability between robot software modules and includes a standard programming interface and data distribution middleware. RAPID facilitates integration of experimental robot software modules created by a distributed development team; improves the compatibility and reusability of robotic functions; and offers speed prototype robot development in a wide range of configurations and environments.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://rapid.nasa.gov/index.html",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Autonomous Systems"
],
"Software": "Robot Application Programming Interface Delegate (RAPID), Version 2"
},
{
"Update_Date": "2014-11-05",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/pathdroid/",
"Description": "PathDroid is an extension of the open sourced Java Pathfinder (JPF) verification framework that supports checking binary Android applications for absence of software defects such as unhandled exceptions and deadlocks.\r\nPathDroid let users run such applications on development platforms, without the need for hardware-in-the-loop or availability of sources.\r\n",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/pathdroid/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"System Testing"
],
"Software": "PathDroid"
},
{
"Update_Date": "2014-12-11",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/block-gp/",
"Description": "Block GP is a Gaussian Process regression framework for multimodal data, that can be an order of magnitude more scalable than existing state-of-the-art nonlinear regression algorithms. The framework builds local Gaussian Processes on semantically meaningful partitions of the data and provides higher prediction accuracy than a single global model with very high confidence. The method relies on approximating the covariance matrix of the entire input space by smaller covariance matrices that can be modeled independently, and\r\ncan therefore be parallelized for faster execution. \r\n",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/block-gp/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Scalable Gaussian Process Regression"
},
{
"Update_Date": "2015-03-05",
"Public Code Repo": "https://babelfish.arc.nasa.gov/hg/jpf/jpf-core",
"Description": "Java Pathfinder core system (jpf-core), is a model checker for Java bytecode. The technology takes a binary Java program and executes it in a user configurable way to detect defects such as deadlocks and unhandled exceptions, providing significantly higher confidence in correct program behavior than conventional testing.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://babelfish.arc.nasa.gov/hg/jpf/jpf-core",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Java Pathfinder (JPF) core system"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/ind/",
"Description": "Decision trees are commonly used in artificial intelligence and statistical pattern recognition. A tree is \"grown\" from data using a recursive-partitioning algorithm. IND re-implements parts of existing standard prediction algorithms, offers experimental control suites, and also introduces new, more sophisticated methods for growing decision trees.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/ind/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "IND 2.1-Creation and Manipulation of Decision Trees from Data"
},
{
"Update_Date": "2015-03-05",
"Public Code Repo": "https://babelfish.arc.nasa.gov/hg/jpf/jpf-nas",
"Description": "JPF-NAS is developed to provide support for model checking distributed applications. It relies on the multiprocess support included in Java Pathfinder (JPF) which provides basic functionality to verify the bytecode of distributed applications. JPF-NAS is implemented as a JPF extension which models interprocess communication mechanisms. It uses a form of partial order reduction to explore all possible executions of a distributed Java application. Moreover, JPF-NAS provides a functionality to check the given distributed application under test against possible network failures which can occur at the operating system or the hardware layer.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://babelfish.arc.nasa.gov/hg/jpf/jpf-nas",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"System Testing"
],
"Software": "JPF-NAS, an extension of Java Pathfinder that provides support for model checking distributed systems"
},
{
"Update_Date": "2015-03-05",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/mfsim/",
"Description": "MFS (Multi-Fidelity Simulator) is a pluggable framework for creating an air traffic flow simulator at multiple levels of fidelity. The framework is designed to allow low-fidelity simulations of the entire US Airspace to be completed very quickly (on the order of seconds). The framework allows higher-fidelity plugins to be added to allow higher-fidelity simulations to occur in certain regions of the airspace concurrently with the low-fidelity simulation of the full airspace.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/mfsim/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Aeronautics"
],
"Software": "MFSim - Multi-fidelity Simulation"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/surfer/",
"Description": "Surfer examines the pool of potential grid resources and extracts the highest-ranking resources that meet user-specified constraints and preferences. The technology has been implemented as a grid service that is compliant with an Open Grid Services Infrastructure (OGSI), and it can also be embedded directly into Java applications through its application programming interface or into non-java applications through its XML-based command-line interface.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/surfer/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Surfer: An Extensible Pull-Based Framework For Resource Selection and Ranking"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/pour/",
"Description": "Pour is a general-purpose information service framework for periodic, on-demand, and user-specified information reconciliation. The technology is designed to accommodate a wide variety of information types with support for high-volume, low-frequency periodic updates, user-specified updates, and automatic updates collected on demand when needed. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/pour/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Pour: A Framework for Periodic, On-Demand, and User-Specified Information Reconciliation"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/swim/",
"Description": "Swim is a software information service for the grid built on top of the NASA-developed Pour framework. Software information is periodically gathered from native package managers on FreeBSD, Solaris, and IRIX as well as the RPM, Perl, and Python package managers on multiple platforms. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/swim/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data and Image Processing"
],
"Software": "Swim: A Software Information Metacatalog for the Grid"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://github.com/pkolano/ballast",
"Description": "Ballast is a tool for balancing user load across Secure Shell Handler (SSH) servers. The system includes a load-balancing client, a lightweight data server, scripts for collecting system load, and scripts for analyzing user behavior. Because Ballast is invoked as part of the SSH login process, it has access to user names. This capability, which is not available in traditional approaches, enables Ballast to perform user-specific load balancing. In addition, Ballast is easy to install, induces near-zero overhead, and has fault-tolerant features in its architectures that will eliminate single points of failure.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://github.com/pkolano/ballast",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "Ballast: Balancing Load Across Systems"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://sourceforge.net/projects/dyper/",
"Description": "Dyper protects a site from unauthorized network flows. The tool offers dynamic perimeter enforcement by providing a general-purpose mechanism for maintaining least-privilege network security policies while still supporting the full utilization of multiport protocols. Dyper requires no changes to software or practices outside of the perimeter and only minimal changes inside.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://sourceforge.net/projects/dyper/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "Dyper: Dynamic Perimeter Enforcement"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/javagenes/",
"Description": "JavaGenes is a genetic algorithm code written in Java. It evolves graphs using genetic software techniques and has applications in designing drugs, circuits, or any other system that is easily represented by graphs. ",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/javagenes/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "JavaGenes Genetic Graphs"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://ti.arc.nasa.gov/opensource/projects/javagenes/",
"Description": "JavaGenes-Scheduler is a general purpose evolutionary system designed to compare techniques for scheduling observations. It was originally developed for scheduling observations made by Earth-observing satellites. JavaGenes-Scheduler uses a simple, earliest-first scheduler to insert observations into the timeline in permutation order.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://ti.arc.nasa.gov/opensource/projects/javagenes/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "JavaGenes-Scheduler: Evolutionary Software for Earth Observing Satellite Scheduling"
},
{
"Update_Date": "2016-07-07",
"Public Code Repo": "https://github.com/nasa/openmct/",
"Description": "Open MCT is an open source and web-based mission control framework for visualization of data on desktop and mobile devices. Open MCT is designed for analysis, visualization, operation, and support of spacecraft missions. Open MCT provides an extensible plugin system allowing it to be integrated with existing ground systems, and adapted to support multiple missions as well as non-space applications.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://github.com/nasa/openmct/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Operations"
],
"Software": "Open Mission Control Technologies (Open MCT)"
},
{
"Update_Date": "2014-11-12",
"Public Code Repo": "https://github.com/nasa/XPlaneConnect/",
"Description": "The X-Plane Connect Toolbox enables users to receive real-time information on one or more simulated vehicles state from the X-Plane flight simulator, and control vehicles running in the X-Plane simulation environment. The toolbox can be used to record simulated flight data, visualize flight profiles, create out-the-window visuals, test autopilots, and test control algorithms. Additionally, the toolbox enables the display of ghost traffic flying predefined flight paths in the simulated airspace, and the visualization of flight plans in the form of waypoints. The toolbox allows custom built or third party autopilot programs to interface with X-Plane through MATLAB, C, C++, Java, or Python . Code examples are included in the open source distribution. The toolbox uses a network communication protocol, allowing X-Plane and the client program to run on different computers.",
"License": [
"NASA Open Source"
],
"NASA Center": "ARC",
"External Link": "https://github.com/nasa/XPlaneConnect/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"ARC",
"Open Source",
"Aeronautics"
],
"Software": "X-Plane Communication Toolbox (XPC)"
},
{
"Update_Date": "2016-03-14",
"Public Code Repo": "https://software.nasa.gov/software/DRC-015-017",
"Description": "In the analysis of radiation, it is helpful to be able to predict the heat transfer rate and the spectral distribution of the emitted energy. Presented here is a set of routines written in Microsoft Visual Basic for Applications (VBA) and incorporating functions specific to Microsoft Excel that are useful for predicting the radiative behavior of heated surfaces. These routines include functions for calculating important engineering quantities of primary importance to engineers and scientists such as radiative flux and spectral distributions. In addition, the routines also provide the capability to use such information to determine surface temperatures from spectral intensities and for calculating the sensitivity of these temperature measurements to unknowns in the input parameters.",
"License": [
"NASA Open Source"
],
"NASA Center": "DFRC",
"External Link": "https://software.nasa.gov/software/DRC-015-017",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"DFRC",
"Open Source",
"Materials and Processes"
],
"Software": "Blackbody VBA Excel Functions"
},
{
"Update_Date": "2016-07-12",
"Public Code Repo": "https://software.nasa.gov/software/DRC-014-036",
"Description": "This is an easy-to-use MATLAB based finite element modeling and simulation tool for aeroservoelastic analysis of rectangular wings with trailing-edge control surfaces. It includes a tutorial on structural finite element modeling (FEM_Tutorial.m) using elements such as 12 DOF plates and 6 DOF beams. The aero tutorial (DLM_VLM_Tutorial.m) shows how to code doublet lattice and vortex lattice, with symmetry capability. Together the finite element and aero tutorials can be used to compare to experimental studies such as ground vibration testing, cantilever beam analysis, as well as wind tunnel testing. The primary code, EZASE.m, links structures and aero together in a commented way to produce a wing in flutter which can be controlled. The wing may include control surfaces or they can be excluded. A state space model with control surface inputs and accelerometer outputs can be produced. This model is used to design a PID control system and is tested using margin studies and pole plots. Other visualization methods such as V-g plots determined using the K-method are also included. The code is commented for Graduate and Undergraduate students of aeroservoelasticity who want to know the basic concepts of medium fidelity aeroservoelastic modeling. Not all methods are coded to industry standards. But students of the field including practicing engineers may find it useful for basic understanding; theoretical manuals for industry level codes tend to leave out many of the coding details. All of the details of the code are open sourced here and most of it is referenced at the top of the file to its source paper or book section. Two AIAA publications with one focusing on V&V with experimental wind tunnel test and ground vibration test data are also included.",
"License": [
"NASA Open Source"
],
"NASA Center": "DFRC",
"External Link": "https://software.nasa.gov/software/DRC-014-036",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"DFRC",
"Open Source",
"Aeronautics"
],
"Software": "EZASE Easy Aeroservoelasticity"
},
{
"Update_Date": "2014-10-30",
"Public Code Repo": "https://github.com/nasa/TTECTrA",
"Description": "Tool for Turbine Engine Closed-loop Transient Analysis (TTECTrA)\r\n\r\nThe Tool for Turbine Engine Closed-loop Transient Analysis (TTECTrA) is a tool, developed in the Mathworks(R) Matlab/Simulink enviornment, intended to extend systems analysis by providing an estimate of the transient performance/capability of a conceptual engine design. The TTECTrA tool is capable of designing a basic turbofan engine controller, with transient protection, based on the user's engine model and constraints. TTECTrA is built in the Mathworks Matlab/Simulink environment and relies on the Matlab Control Systems Toolbox to provide additional functionality and streamline the control design process.",
"License": [
"NASA Open Source"
],
"NASA Center": "GRC",
"External Link": "https://github.com/nasa/TTECTrA",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GRC",
"Open Source",
"Aeronautics"
],
"Software": "Tool for Turbine Engine Closed-loop Transient Analysis (TTECTrA)"
},
{
"Update_Date": "2016-03-22",
"Public Code Repo": "https://www.nasa.gov/centers/glenn/multimedia/grchistory.html",
"Description": "Photographic gallery type application containing imagery and descriptions from the GRC image archive. Photos and data cover the period from 1941-1979. The software has been compiled and bundled as an iOS app for the iPad and intended for release through the Apple App Store.",
"License": [
"NASA Open Source"
],
"NASA Center": "GRC",
"External Link": "https://www.nasa.gov/centers/glenn/multimedia/grchistory.html",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GRC",
"Open Source",
"Aeronautics"
],
"Software": "NASA Glenn Research Center: The Early Years for iPad"
},
{
"Update_Date": "2016-03-22",
"Public Code Repo": "https://www.nasa.gov/centers/glenn/multimedia/applied_science/flywheel",
"Description": "Augmented reality application intended to highlight NASA Glenn's research efforts in the area of flywheel energy storage systems. The app utilizes a printed optical target, available on the GRC Flywheel Program brochure and through the NASA Glenn web portal, to present users with 3D views of flywheel hardware and space applications. Additional video and imagery are also inlcuded in the application package. The software has been compiled and bundled as an iOS app for the iPad and intended for release through the Apple App Store.",
"License": [
"NASA Open Source"
],
"NASA Center": "GRC",
"External Link": "https://www.nasa.gov/centers/glenn/multimedia/applied_science/flywheel",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GRC",
"Open Source",
"Propulsion"
],
"Software": "NASA Flywheel for iPad"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://software.nasa.gov/software/GSC-15011-1",
"Description": "The Hierarchical Data Format Earth Observing System (HDF-EOS) Data Extractor (HEEX) is a tool that enables users to extract HDF-EOS data to binary or ASCII data formats in HTML or XML index. The software can be used for both HDF-EOS2 and HDF-EOS5, and it automatically recognizes the two formats.",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://software.nasa.gov/software/GSC-15011-1",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "Hierarchical Data Format Earth Observing System (HDF-EOS)Data Extractor (HEEX)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://opensource.gsfc.nasa.gov/projects/paramesh/index.php",
"Description": "PARAMESH offers parallel support with adaptive mesh capability for a large class of models on distributed memory machines. This package of Fortran 90 subroutines provides an application developer with an easy route to extend an existing serial code using a logically Cartesian structured mesh into a parallel code with adaptive mesh refinement.",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://opensource.gsfc.nasa.gov/projects/paramesh/index.php",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Design and Integration Tools"
],
"Software": "Parallel Adaptive Mesh Refinement Library (PARAMESH)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://opensource.gsfc.nasa.gov/projects/tipsod/index.php",
"Description": "TIPSOD is a software application designed for interactive, animated, 4D (space and time) visualization of satellite orbits. The technology is implemented in Java 3D and is an extension to the existing Satellite Situation Center Web (SSCWeb) 2D static orbit graphics. Please visit the following URL for additional information: http://opensource.gsfc.nasa.gov/projects/tipsod/index.php",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://opensource.gsfc.nasa.gov/projects/tipsod/index.php",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Data and Image Processing"
],
"Software": "Tool For Interactive Plotting, Sonification, and 3D Orbit Display (TIPSOD)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://opensource.gsfc.nasa.gov/projects/Matlab_Zemax/index.php",
"Description": "The MATLAB-Zemax toolkit is a set of MATLAB scripts and functions that enable rapid transfer of optical system and performance data from Zemax optical software into the MATLAB environment. Typical applications include: extracting prescription data into MATLAB to confirm consistency of various delivered models; perturbing the models and performing various analyses in support of integrated modeling activities; and enabling a MATLAB-driven optical model for integrated system-level modeling of wavefront sensing and control. The toolkit can be downloaded at: http://opensource.gsfc.nasa.gov/projects/Matlab_Zemax/index.php",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://opensource.gsfc.nasa.gov/projects/Matlab_Zemax/index.php",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Data and Image Processing"
],
"Software": "MATLAB-Zemax Toolkit"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://opensource.gsfc.nasa.gov/projects/Alias/",
"Description": "ALIAS supports radiometric and geometric multispectral image processing for the Advanced Land Imager (ALI) instrument onboard NASA's Earth Observing-1 (EO-1) satellite. The radiometric subsystem characterizes and (where possible) corrects: detector operability; gain; bias; coherent, impulse, and random noise; signal-to-noise ratios; saturation levels; striping and banding; and the stability of detector performance. Geometric processing functions support sensor alignment calibrations; sensor chip assembly alignments; modulation transfer function characterizations; image-to-image characterizations; and geodetic accuracy assessments. Please visit the following URL for more information: http://opensource.gsfc.nasa.gov/projects/Alias/index.php",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://opensource.gsfc.nasa.gov/projects/Alias/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Environmental Science (Earth, Air, Space, Exoplanet)"
],
"Software": "Advanced Land Image Assessment System (ALIAS)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://cdaweb.gsfc.nasa.gov/about.html",
"Description": "The CDAWeb software and the CDAWeb service built on this software have been developed and continue to be enhanced and maintained by the Space Physics Data Facility. The technology has supported NASA/Office of Space Science programs dealing with the connections between the Sun and the Earth. CDAWeb software is essentially a set of Interactive Data Language (IDL) scripts that act as the engine of the system. Please visit: http://cdaweb.gsfc.nasa.gov/cdaweb/istp_public/",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://cdaweb.gsfc.nasa.gov/about.html",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "Coordinated Data Analysis Workshop Web (CDAWeb)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://api.echo.nasa.gov/legacy-services/apis.html",
"Description": "The Earth Observing System Clearing House (ECHO) affords the earth science community more flexibility in accessing and sharing data and services. As a metadata clearinghouse, ECHO supports iterative query data access. As a service broker, ECHO decentralizes data-manipulation tools and supports the interoperability of distributed functions. For more information, please visit: http://ti.arc.nasa.gov/opensource/projects/echo/",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://api.echo.nasa.gov/legacy-services/apis.html",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "Earth Observing System (EOS) Clearing House (ECHO)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "ftp://spdf.gsfc.nasa.gov/",
"Description": "These Web services provide a distributed programming interface to a portion of the Space Physics Data Facility (SPDF) software. The technology conforms to all applicable Web service specifications of the World Wide Web Consortium. Please visit the following URL for additional information: http://spdf.gsfc.nasa.gov/",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "ftp://spdf.gsfc.nasa.gov/",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Environmental Science (Earth, Air, Space, Exoplanet)"
],
"Software": "Space Physics Data Facility (SPDF) Web Services"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://opensource.gsfc.nasa.gov/projects/eqflux/index.php",
"Description": "The WindowsEQFlux computer program converts solar-cell damage resulting from hard-particle radiation into the equivalent fluence on MeV electrons. Please visit the following URL for more information: http://opensource.gsfc.nasa.gov/projects/eqflux/index.php",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://opensource.gsfc.nasa.gov/projects/eqflux/index.php",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Environmental Science (Earth, Air, Space, Exoplanet)"
],
"Software": "General EQFlux"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://opensource.gsfc.nasa.gov/projects/edg/index.php",
"Description": "The Earth Observing System Data Gateway (EDG) provides the earth science community with a single interface that will search for data granules from distributed data archives. The innovation enables users to explore, discover, and order available data from geographically distributed providers. For more information, please visit: http://opensource.gsfc.nasa.gov/projects/edg/index.php#software",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://opensource.gsfc.nasa.gov/projects/edg/index.php",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Data Servers Processing and Handling"
],
"Software": "Earth Observing System (EOS) Data Gateway (EDG)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://sourceforge.net/projects/s4pm",
"Description": "S4PM is a set of Perl scripts that implement a data-driven processing system that executes science algorithms automatically as new data arrive. S4PM includes a graphical user interface for monitoring algorithms and the overall system for failures. The Perl scripts can currently process data from the Moderate Resolution Imaging Spectroradiometer and the Atmospheric Infrared Sounder, but the technology can be extended to process data from other missions if desired. Please visit the following URL for more information: http://opensource.gsfc.nasa.gov/projects/s4pm/",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://sourceforge.net/projects/s4pm",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Autonomous Systems"
],
"Software": "Simple, Scalable, Script-Based Science Processor for Missions (S4PM)"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://opensource.gsfc.nasa.gov/projects/xml2he/index.php",
"Description": "This software program takes an XML representation of the contents of a Hierarchical Data Format-Earth Observing System (HDF-EOS) file and recreates the file from that description. Please visit the following URL for additional information: http://opensource.gsfc.nasa.gov/projects/xml2he/index.php",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://opensource.gsfc.nasa.gov/projects/xml2he/index.php",
"Contributors": [
],
"Labor_Hours": 0,
"Categories": [
"NASA",
"GSFC",
"Open Source",
"Data and Image Processing"
],
"Software": "XML to HDF-EOS Convertor"
},
{
"Update_Date": "2014-04-15",
"Public Code Repo": "https://opensource.gsfc.nasa.gov/projects/HDF/index.php",
"Description": "This Java-language software plug-in to HDFView provides an interface for two versions of hierarchical data formats (HDF 4 and HDF 5). Please visit the following URL for more information: http://opensource.gsfc.nasa.gov/projects/HDF/index.php",
"License": [
"NASA Open Source"
],
"NASA Center": "GSFC",
"External Link": "https://opensource.gsfc.nasa.gov/projects/HDF/index.php",
"Contributors": [
],