Mission Scenarios Index File
Contents
Mission Scenarios Index File#
Located in the scenarios/
data store directory, the mission_scenarios.json
file is in JSON format.
It contains a list of mission_scenario JSON object.
mission_scenario
#
JSON object describing a mission scenario. It includes the following members:
id
(string)Identifier of the mission scenario based on ESA CReMA ID. For example:
CREMA42
for CReMA 4.2.name
(string, optional)Name of the ESA CReMA.
description
(string, optional)Description of the ESA CReMA.
spice_metakernel
(string, optional)Path to the SPICE meta-kernel corresponding to the mission scenario. Path can be absolute or relative to the SPICE mission kernels base directory path, by using the
$GFINDER_KERNELS_DIR
symbol.event_file
(string, optional)Event file associated to the mission scenario. Path is relative to the directory where the
mission_scenarios.json
is located. For example:juice_crema_4_2_ops.csv
Example#
{
"mission_scenarios": [
{
"id": "CREMA42",
"name": "CReMA 4.2",
"description": "CReMA 4.2",
"spice_metakernel": "$GFINDER_KERNELS_DIR/mk/juice_crema_4_2.tm",
"event_file": "juice_crema_4_2_ops.csv"
},
{
"id": "CREMA50",
"name": "CReMA 5.0",
"description": "CReMA 5.0",
"spice_metakernel": "$GFINDER_KERNELS_DIR/mk/juice_crema_5_0.tm",
"event_file": "juice_crema_5_0_ops.csv"
}
]
}