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
""" | |
Very basic implementation of a cube explorer function. | |
This is a proof of concept rather than a solid design idea. It is | |
currently hard-wired to work on one dimension only although the | |
workings allow for multiple dimensions, I just didn't get round to | |
writing code to add the buttons for these! | |
""" | |
import functools |
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
{ | |
"metadata": { | |
"name": "1D Plotting Example" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
This file has been truncated, but you can view the full file.
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
{ | |
"metadata": { | |
"name": "Cartopy Vector Transforms" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
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
biggus 0.7.0 np18py27_0 | |
cairo 1.12.2 2 | |
cartopy 0.12.x <pip> | |
curl 7.30.0 0 | |
cython 0.21 py27_0 | |
dateutil 2.1 py27_2 | |
docutils 0.12 py27_0 | |
ecmwf_grib 1.9.16 np18py27_10 | |
freetype 2.4.10 0 | |
gdal 1.10.1 np18py27_2 |
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
"""Construct an SRTM lookup file for Cartopy.""" | |
from HTMLParser import HTMLParser | |
import json | |
import os | |
import urllib2 | |
#: Base URL where SRTM data files (with extensions .hgt.zip) are located. | |
SRTM_URL = 'http://e4ftl01.cr.usgs.gov/SRTM/SRTMGL3.003/2000.02.11/' |
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
#include <stdio.h> | |
#include <udunits2.h> | |
int main(int argc, char *argv[]) | |
{ | |
ut_system* unitSystem = ut_read_xml(NULL); | |
ut_unit *unit0, *unit1, *unit2; | |
char unit0_str[128], unit1_str[128], unit2_str[128]; | |
unsigned format_opts = UT_ASCII; |
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
"""Tools for working with Gaussian grids.""" | |
from __future__ import (absolute_import, division, print_function) | |
import functools | |
import numpy as np | |
import numpy.linalg as la | |
from numpy.polynomial.legendre import legcompanion, legder, legval | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer