RMS-NAV is a comprehensive navigation system designed for spacecraft imagery processing. It provides tools to analyze images from various space missions (Cassini, Voyager, Galileo, New Horizons) and determine precise positional offsets by comparing observed images with theoretical models of celestial bodies.
- Multi-mission support: Works with Cassini, Voyager, Galileo, and New Horizons imagery
- Multiple navigation techniques: Star-based, body-based, and rings-based navigation
- Automated offset calculation: Determines precise pointing corrections
- Visualization tools: Creates annotated images with identified features
- Configurable processing: Customizable parameters for different scenarios
- PDS4 bundle generation: Creates PDS4-compliant bundles with labels, metadata, and browse products
- Backplane generation: Computes per-pixel geometry products (longitude, latitude, angles, etc.)
- Python 3.10 or higher
- SPICE toolkit and kernels for planetary data
- Dependencies listed in
requirements.txt
-
Clone the repository:
git clone https://github.com/SETI/rms-nav.git cd rms-nav -
Create and activate a virtual environment (recommended):
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install the required packages:
pip install -r requirements.txt
-
Set up SPICE kernels:
-
Download the required SPICE kernels for your mission
-
Set the
SPICE_PATHenvironment variable to point to your kernels directory:export SPICE_PATH=/path/to/your/spice/kernels
-
Note: To fix mypy operability with editable pip installs:
export SETUPTOOLS_ENABLE_FEATURES="legacy-editable"
Process a single Cassini image using the installed CLI script:
nav_offset coiss N1234567890 \
--pds3-holdings-root /path/to/pds3 \
--nav-results-root /path/to/nav_resultsProcess all Voyager images within a single PDS3 volume:
nav_offset vgiss \
--volumes VGISS_5101 \
--pds3-holdings-root /path/to/pds3 \
--nav-results-root /path/to/nav_resultsGenerate backplanes for processed images:
nav_backplanes coiss_saturn \
--nav-results-root /path/to/nav_results \
--backplane-results-root /path/to/backplane_results \
--volumes COISS_2001Generate PDS4 bundle files:
nav_create_bundle labels coiss_saturn \
--nav-results-root /path/to/nav_results \
--backplane-results-root /path/to/backplane_results \
--bundle-results-root /path/to/bundle_results \
--volumes COISS_2001Comprehensive documentation is available in the docs directory.
To build the documentation:
cd docs
make htmlThe built documentation will be available in docs/_build/html.
Information on contributing to this package can be found in the Contributing Guide.
This code is licensed under the Apache License v2.0.