Jovian Energetic Particle Detector Instrument - Johns Hopkins University Applied Physics Laboratory (Barry Mauk)
- ElectronPitchAngle - Electron differential intensity and pitch angle from a single JEDI sensor, defaults to 90 sensor.
- ElectronPitchAngle LowRes - Electron differential intensity and pitch angle from a single JEDI sensor, defaults to 90 sensor.
- ElectronSpectra - High resolution electron spectra from a single JEDI sensor, defaults to the 180 sensor
- ElectronSpectra LowRes - Low resolution electron spectra from a single JEDI sensor, defaults to the 180 sensor
- IonPitchAngle - Ion differential intensity and pitch angle from a single JEDI sensor, defaults to 90 sensor.
- IonPitchAngle LowRes - Ion differential intensity and pitch angle from a single JEDI sensor, defaults to 90 sensor.
- IonSpectra - High resolution ion spectra from a single JEDI sensor, defaults to the 180 sensor
- IonSpectra LowRes - Low resolution ion spectra from a single JEDI sensor, defaults to the 180 sensor
- ProtonPitchAngle - Proton differential intensity and pitch angle from a single JEDI sensor, defaults to 90 sensor.
- ProtonSpectra - Time of flight (TOF) proton energies from JEDI-090 and JEDI-270
- Uncalibrated - Raw instrument values, mostly from Level 2 data
Catalog Path: tag:das2.org,2012:site:/uiowa/juno/jed
Read From: https://das2.org/catalog/das/site/uiowa/juno/jed.json
import json import das2 node = das2.get_node("site:/uiowa/juno/jed") # Pretty print node content s = json.dumps(node.props, ensure_ascii=False, indent=" ", sort_keys=True) print(s) # List and access sub-nodes node.keys() subnode = node['electronpitchangle']
#include <stdio.h> #include <das2/core.h> DasNode* pRoot = new_RootNode(NULL, NULL, NULL); DasNode* pNode = DasNode_subNode(pRoot, "tag:das2.org,2012:site:/uiowa/juno/jed", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);