Sunburst visualization of modal importance aerosol activation experiment results.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def dataset_to_cube(ds, field): | |
""" Construct an iris Cube from a field of a given | |
xray DataSet. """ | |
raise NotImplementedError("`iris` deprecated for Python 3") | |
dsf = ds[field] | |
## Attach coordinates to the cube, using full dataset for lookup | |
# dim_coords_and_dims = [] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
SPHERE SCENE RAY TRACER | |
This is a basic port of the simple ray tracer from Chapter 6 of | |
"CUDA by Example", by Sanders and Kandrot. With a few exceptions | |
(notably, the `hit()` method is not bound to a struct containing | |
sphere data and we use a numpy record array). |
NewerOlder