- HSK - TRACERS-1 ACI: Single Channel HSK Level 1A
- HSK_Anode - TRACERS-1 ACI: Per-Anode Housekeeping Level 1A
- HSK_Fast - TRACERS-1 ACI: Fast Single Channel HSK Level 1A
- IPD - TRACERS-1 ACI: Ion Energy-Angle Distribution Level 1A
- Merged - TRACERS-1 ACI: Merged Level 1A
Catalog Path: tag:das2.org,2012:site:/uiowa/tracers/tracers-1/l1a/aci
Read From: https://space.physics.uiowa.edu/das/stream/source/tracers/tracers-1/l1a/aci.json
import json import das2 node = das2.get_node("site:/uiowa/tracers/tracers-1/l1a/aci") # 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['hsk']
#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/l1a/aci", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);