This Software Development Kit (SDK) provides a set of tools and utilities that have been developed by NASA's Conjunction Assessment Risk Analysis (CARA) team. These tools and data products are designed to help users assess the risk of close approach events between Earth-orbiting satellites. This software is provided to the public under a NASA Open Source Software Agreement (see the NOSA_GSC-18593-1.pdf
file to view the agreement).
The following directories and files will be found at the top level of the SDK:
DataFiles
- Contains common static data that are used by one or more tools in the SDK baseline. This data may be used by unit tests or by the tools themselves.DistributedMatlab
- Contains Matlab code and tools that are available for public release. See theREADME.md
file within theDistributedMatlab
directory for a more comprehensive description of the tools provided.References
- Contains reference documents which provide the theoretical basis for many of the tools provided in the SDK.NOSA_GSC-18593-1.pdf
- NASA Open Source License Agreement.README.md
- Help document describing the SDK.
Most top-level functions should provide help text. From the Matlab prompt, simply use the help
or doc
commands to view the help text. Help documentation can generally be found within a directory's README.md
file or within a Documentation
subdirectory. If a piece of code or documentation lists a set of references, then the referenced document should appear within the References
directory.
A number of the functions provided in the SDK also come with a set of automated unit tests. After downloading the SDK, it might be a good idea to run all of the unit tests using the following Matlab command within the SDK folder:
results = runtests('IncludingSubfolders',true);
Matlab will then find and run all unit tests included within the SDK. This will ensure that you have all of the necessary toolboxes needed to run the CARA code.
If any unit tests fail, a table of failed tests will be displayed to the screen at the end of the run. Running the disp(results)
command will show an overview of the total tests passed, failed, or had incomplete runs as well as an overall runtime. Running the table(results)
command will show similar information for each test case that was run.