The code base here is frozen, the resulting projects are available here:
- https://github.com/ioam/holoviews
- https://github.com/ioam/geoviews
- https://github.com/SciTools/cube_browser
Exploration and visualization of https://github.com/SciTools/iris cubes in a web browser, including a Jupyter notebook.
To install, first install HoloViews and Iris. At the moment, cube-explorer relies on the latest git version of both those packages, and the easiest way to get all their dependencies is to install them via conda:
conda install -c ioam holoviews
conda install -c scitools iris
and then install the latest git version of the two packages, e.g. via:
pip install https://github.com/ioam/holoviews/zipball/master
pip install https://github.com/CubeBrowser/cube-explorer/zipball/master
Then run setup on a copy of this git repository:
git clone https://github.com/CubeBrowser/cube-explorer.git
cd cube-explorer
python setup.py develop
You will probably also want a copy of the Iris sample data. Sample bash commands for downloading and linking to it:
cd ~
git clone https://github.com/SciTools/iris-sample-data.git
DIR=`python -c 'import iris ; print(iris.sample_data_path())'`
cd `dirname $DIR`
ln -s ~/iris-sample-data/sample_data .
You should now be able to run the examples in the notebooks
directory:
cd ~/cube-explorer
cd notebooks
jupyter notebook