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
from netCDF4 import Dataset | |
from datetime import datetime, timedelta | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from mpl_toolkits.basemap import Basemap | |
class MonthMean(object): | |
def __init__(self, data, month, year): |
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
Show hidden characters
{ | |
"name": "Monokai", | |
"author": "Sublime HQ Pty Ltd, Wimer Hazenberg", | |
"variables": | |
{ | |
"black": "hsl(0, 0%, 0%)", | |
"black2": "hsl(60, 17%, 11%)", | |
"black3": "hsl(70, 8%, 15%)", | |
"blue": "hsl(190, 81%, 67%)", | |
"grey": "hsl(55, 8%, 26%)", |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Monokai</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> |
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
/* | |
Adapted from Jupyter Themes Monokai theme | |
https://github.com/dunovank/jupyter-themes/blob/master/jupyterthemes/styles/compiled/monokai.css | |
To use the custom template, make a directory ~/.jupyter/custom/ and then create | |
the file custom.css in that directory. | |
*/ | |
div#notebook { |