forked from geodynamics/hc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdens.py
executable file
·39 lines (31 loc) · 1.32 KB
/
pdens.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#! /usr/bin/env python
#
# plot and mofiy a HC density scaling file
#
from optparse import OptionParser
import math
import pylab as p
import matplotlib
from matplotlib.backends.backend_gtk import FigureCanvasGTK, NavigationToolbar
matplotlib.use('GTK')
from manipulate_hc import *
parser = OptionParser()
parser.add_option("--df", "--density-scaling-file", type="string", dest="filename", default="dscale.dat", \
help="HC type density scaling file to display and modify")
(options, args) = parser.parse_args()
filename = options.filename
print 'using ', filename, ' as HC density scaling profile '
mp = ManipulateXYData(filename,2)
#
# connect main data window plot handling routines with mouse click procedures
p.connect('button_press_event', mp.on_click)
p.connect('button_release_event', mp.on_release)
# add some GUI neutral buttons
reset_button = matplotlib.widgets.Button(p.axes([0.85, 0.025, 0.1, 0.04]), 'Reset', hovercolor='gray')
cancel_button = matplotlib.widgets.Button(p.axes([0.75, 0.025, 0.1, 0.04]), 'Cancel', hovercolor='gray')
done_button = matplotlib.widgets.Button(p.axes([0.65, 0.025, 0.1, 0.04]), 'Save', hovercolor='gray')
# button handling routines
reset_button.on_clicked(mp.reset_data)
done_button.on_clicked(mp.save_and_exit)
cancel_button.on_clicked(mp.exit)
p.show()