Skip to content

Commit 3915ccb

Browse files
committed
adding some more example functions for reading netcdf
files, a program to plot lorenz 63 and using Tkinter to have a resizeable window.
1 parent f28dd9c commit 3915ccb

File tree

9 files changed

+669
-1
lines changed

9 files changed

+669
-1
lines changed

examples/.DS_Store

6 KB
Binary file not shown.

examples/button/embedding_in_tk.py

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
#!/Users/hendric/anaconda3/bin/python
2+
# -*- coding: utf-8 -*-
3+
"""
4+
Created on Wed May 2 15:00:45 2018
5+
6+
@author: hendric
7+
"""
8+
9+
import matplotlib
10+
matplotlib.use('TkAgg')
11+
12+
from numpy import arange, sin, pi
13+
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, NavigationToolbar2TkAgg
14+
# implement the default mpl key bindings
15+
from matplotlib.backend_bases import key_press_handler
16+
17+
18+
from matplotlib.figure import Figure
19+
20+
import sys
21+
if sys.version_info[0] < 3:
22+
import Tkinter as Tk
23+
else:
24+
import tkinter as Tk
25+
26+
root = Tk.Tk()
27+
root.wm_title("Embedding in TK")
28+
29+
30+
f = Figure(figsize=(5, 4), dpi=100)
31+
a = f.add_subplot(111)
32+
t = arange(0.0, 3.0, 0.01)
33+
s = sin(2*pi*t)
34+
35+
a.plot(t, s)
36+
37+
38+
# a tk.DrawingArea
39+
canvas = FigureCanvasTkAgg(f, master=root)
40+
canvas.show()
41+
canvas.get_tk_widget().pack(side=Tk.TOP, fill=Tk.BOTH, expand=1)
42+
43+
toolbar = NavigationToolbar2TkAgg(canvas, root)
44+
toolbar.update()
45+
canvas._tkcanvas.pack(side=Tk.TOP, fill=Tk.BOTH, expand=1)
46+
47+
48+
def on_key_event(event):
49+
print('you pressed %s' % event.key)
50+
key_press_handler(event, canvas, toolbar)
51+
52+
canvas.mpl_connect('key_press_event', on_key_event)
53+
54+
55+
def _quit():
56+
root.quit() # stops mainloop
57+
root.destroy() # this is necessary on Windows to prevent
58+
# Fatal Python Error: PyEval_RestoreThread: NULL tstate
59+
60+
button = Tk.Button(master=root, text='Quit', command=_quit)
61+
button.pack(side=Tk.BOTTOM)
62+
63+
Tk.mainloop()
64+
# If you put root.destroy() here, it will cause an error if
65+
# the window is closed with the window manager.

examples/button/interactive_button.py

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
#!/Users/hendric/anaconda3/bin/python
2+
3+
import numpy as np
4+
import matplotlib.pyplot as plt
5+
from matplotlib.widgets import Slider, Button, RadioButtons
6+
7+
def lorenz_63(x, y, z, s=10, r=28, b=2.667):
8+
x_dot = s*(y - x)
9+
y_dot = r*x - y - x*z
10+
z_dot = x*y - b*z
11+
return x_dot, y_dot, z_dot
12+
13+
def gaussian(x,mu,sigma):
14+
return 1.0/np.sqrt(2*np.pi*sigma**2)*np.exp(-(x-mu)**2/(2*sigma**2))
15+
16+
dx = 0.0001
17+
xmin = -6.0
18+
xmax = 6.0
19+
ymin = 0.0
20+
ymax = 0.6
21+
22+
fig, ax = plt.subplots()
23+
plt.subplots_adjust(left=0.25, bottom=0.25)
24+
x = np.arange(xmin, xmax, dx)
25+
26+
mu0 = 0.0
27+
sigma0 = 1.0
28+
29+
y = gaussian(x, 0.0, 1.0)
30+
l, = plt.plot(x, y, lw=2, color='red')
31+
plt.axis([xmin,xmax,ymin,ymax])
32+
33+
axcolor = 'lightgoldenrodyellow'
34+
axfreq = plt.axes([0.35, 0.6, 0.15, 0.03], facecolor=axcolor)
35+
axamp = plt.axes([0.35, 0.4, 0.15, 0.03], facecolor=axcolor)
36+
37+
smu = Slider(axfreq, 'mu', -1.0, 1.0, valinit=mu0)
38+
ssigma = Slider(axamp, 'sigma', 0.0, 10.0, valinit=sigma0)
39+
40+
41+
42+
def update(val):
43+
sigma = ssigma.val
44+
mu = smu.val
45+
l.set_ydata(gaussian(x,mu,sigma))
46+
fig.canvas.draw_idle()
47+
smu.on_changed(update)
48+
ssigma.on_changed(update)
49+
50+
resetax = plt.axes([0.35, 0.2, 0.1, 0.04])
51+
button = Button(resetax, 'Reset', color=axcolor, hovercolor='0.975')
52+
53+
54+
def reset(event):
55+
smu.reset()
56+
ssigma.reset()
57+
button.on_clicked(reset)
58+
59+
rax = plt.axes([0.35, 0.7, 0.15, 0.15], facecolor=axcolor)
60+
radio = RadioButtons(rax, ('red', 'blue', 'green'), active=0)
61+
62+
63+
def colorfunc(label):
64+
l.set_color(label)
65+
fig.canvas.draw_idle()
66+
radio.on_clicked(colorfunc)
67+
68+
plt.show()

examples/button/window_class.py

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/Users/hendric/anaconda3/bin/python
2+
3+
4+
import tkinter
5+
from tkinter import ttk, Button, BOTH
6+
7+
class Window(ttk.Frame):
8+
9+
def __init__(self, master=None):
10+
ttk.Frame.__init__(self, master)
11+
12+
self.master = master
13+
self.init_window()
14+
15+
# Creation of init_window
16+
def init_window(self):
17+
# title of the master widget
18+
self.master.title("My GUI")
19+
20+
# allowing the widget to take the full space of the root window space
21+
self.pack(fill=BOTH, expand=1)
22+
23+
# creating a button instance
24+
quitButton = Button(self, text="Abort")
25+
quitButton.place(x=0,y=0)
26+
27+
root = tkinter.Tk()
28+
root.geometry("400x300")
29+
30+
app = Window(root)
31+
32+
root.mainloop()

examples/fourier_series/Problem 1.ipynb

+3-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,9 @@
404404
{
405405
"cell_type": "code",
406406
"execution_count": null,
407-
"metadata": {},
407+
"metadata": {
408+
"collapsed": true
409+
},
408410
"outputs": [],
409411
"source": [
410412
"print(ymin,ymax)"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"cells": [],
3+
"metadata": {},
4+
"nbformat": 4,
5+
"nbformat_minor": 2
6+
}

0 commit comments

Comments
 (0)