Orbit leader
- Coverage - TRACERS-1 Packet telemetry coverage by instrument
- L0 - TRACERS-2 TIS CCSDS packets by instrument
- L1A - TRACERS-1 Level 1A: Decompresed and parsed raw integer values by instrument
- QL - TRACERS-1 Quicklook: Floating point data in physical units from static calibrations by instrument
Catalog Path: tag:das2.org,2012:site:/uiowa/tracers/tracers-1
Read From: https://space.physics.uiowa.edu/das/stream/source/tracers/tracers-1.json
import json import das2 node = das2.get_node("site:/uiowa/tracers/tracers-1") # 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['coverage']
#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/tracers/tracers-1", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);