University of Iowa, Department of Physics and Astronomy
- Cassini - Saturn System Explorer - Orbit Insertion 2004-06-30
- DE - Earth polar orbiters - Launch date 1981-08-03
- Earth - Earth based observatories
- Galileo - Jupiter equatorial orbiter - Launch date 1989-10-13
- ISEE - International Sun-Earth Explorers - Launch date 1977-10-22
- Juno - Jupiter polar orbiter - Launch date 2011-08-05
- Mars Express - Mars polar orbiter - Launch date 2003-06-02
- Maven - Mars Atmosphere and Volatile Evolution Mission - Orbit Insertion 2014-09-22
- Stereo - Dual Solar Terrestrial Relation Observatories - Launch date 2006-10-26
- Van Allen Probes - Twin probes of the Earth's inner and outer radiation belts, launched on 2012-08-30
- Voyager - Dual Spacecraft Mission to the Outer Planets, and Beyond
- Wind - WIND Solar-Terrestrial Mission - Launch date 1994-11-01
import json import das2 node = das2.get_node("site:/uiowa") # 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['cassini']
#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", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);