Skip to content

Instantly share code, notes, and snippets.

@wradlib
wradlib / colombia_epsg_21899.ipynb
Created September 2, 2016 04:08
Creating and using DEM from SRTM v4
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wradlib
wradlib / rainbow_CAPPI.ipynb
Created July 29, 2016 09:20
Create CAPPI from Rainbow Volume Data
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wradlib
wradlib / netcdf-cf-radial.ipynb
Last active October 15, 2021 22:27
read and plot cf-radial nectdf radar data
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wradlib
wradlib / treeview_rainbow.py
Last active March 12, 2016 10:51
Simple TreeView using traits
# adapted with help from
# http://stackoverflow.com/questions/15023333/simple-tool-library-to-visualize-huge-python-dict
from traits.api import HasTraits, Instance
from traitsui.api import View, VGroup, Item, ValueEditor
from wradlib.io import read_Rainbow
def ex_load_rainbow():
filename = '/path/to/your/rainbow5-file'
# load rainbow file contents to dict
rbdict = read_Rainbow(filename, loaddata=False)