Declarative Visualization in Python - Update
Declarative Visualization in Python
New Website Design
Although it's not 100% finished, I'm launching the new version of my homepage. This version departs significantly from my older versions in that I've chosen to move everything to static site generator. I think this gels a nicer with my current writing/tools workflow, which leans heavily on plain-text files …
more ...Slides from JP Student Luncheon, 7/16/2015
The IPython Notebook and related media from my quick JP Student Luncheon talk is available on my GitHub page.
Slides (via nbviewer) -
more ...Abandoning Iris
Seven years ago, when I first started working with climate model output and analysis within Python, the software stack we had available was pretty shoddy. Although direct interfaces to netCDF (the de facto standard data format in climate science) existed, they could be kind of clunky. They didn't have smart …
more ...Plotting HYCOM/RTOFS SST data in Python
Based on this notebook, which highlights some basics on reading in RTOFS/netCDF output into Python, manipulating that data, and plotting it. For additional examples, Filipe Fernandes has a great example of similar operations on his blog.
import netCDF4 as nc
import numpy as np
%matplotlib inline
import matplotlib.pyplot …
Simple Ray Tracer in NumbaPro-CUDA
For a long time, I've been looking for a good application of CUDA/GPGPU programming to some of the basic analysis I do in my research. Unfortunately, there really hasn't ever been any low-hanging fruit. That coupled with my desire to avoid pure C-programming at all costs was an ideal …
more ...