TRACERS-2 Level 1A: Decompresed and parsed raw integer values by instrument
- ACE - TRACERS-2 ACE Level1A: Integer values by dataset
- aci - An untitled Catalog
- CDPU - TRACERS-2 CDPU & LVPS Level1A: Integer values by dataset
- EFI - TRACERS-2 EFI Level1A: Integer values by dataset
- MAG - TRACERS-2 MAG Level1A: Integer values by dataset
- MAGIC - TRACERS-2 MAGIC Level1A: Integer values by dataset
- MSC - TRACERS-2 MSC Level1A: Integer values by dataset
Catalog Path: tag:das2.org,2012:site:/uiowa/tracers/tracers-2/l1a
Read From: https://space.physics.uiowa.edu/das/stream/source/tracers/tracers-2/l1a.json
import json import das2 node = das2.get_node("site:/uiowa/tracers/tracers-2/l1a") # 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['ace']
#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-2/l1a", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);