Current version: observation_types.json

Observation Types Index File#

Located in the scenarios/ data store directory, the mission_scenarios.json file is in JSON format. It only contains the following member:

observation_types (array)

List of observation_type JSON objects.

observation_type#

JSON object describing an observation type. It includes the following members:

mnemonic (string)

Mnemonic of an observation type as defined in the JSOC Uplink Core System’s observation definitions.

master_odf_file (string)

Corresponding ODF master file path relative to data store ODF directory.

Example:

{
  "observation_types": [
    {
      "mnemonic": "MAJIS_JUP_DISK_SLEW",
      "master_odf_file": "MAJIS_JUP_DISK_SLEW.json"
    },
    {
      "mnemonic": "MAJIS_JUP_DISK_SCAN",
      "master_odf_file": "MAJIS_JUP_DISK_SCAN.json"
    },
    {
      "mnemonic": "MAJIS_JUP_DISK_MOSAIC",
      "master_odf_file": "MAJIS_JUP_DISK_MOSAIC.json"
    }
  ]
}