I have been using Gnuplot.py for about a year now and
have added a few minor aminities that you are more
than welcome to. Thanks for the software!
Justin Shaw
wyojustin@hotmail.com
A partial listing:
class Map:
'''World map class, (as opposed to a world class map)"
class Zoom:
"Add zoom-unzoom capibility"
def zoom(self, *args):
def unzoom(self, levels = 1):
def zoomStr(self):
def repr(self):
def reset(self):
class FieldPlot(PlotItem):
"""Plot 2d vector field"""
def init(self, data):
def command(self):
class Gnuplot:
def rotate(self, rot_x, rot_z, nStep = 20, scale = '',
scale_z = ''):
def wrapPlot(self, boundries, data, linetype):
def setContour(self, levels = 18):
def colorPlot(self, data, colorBy=None,
key=1, with=None):
def histogram(self, bins):
"""Requires class Bins which I forgot
to get but plots histograms"""
def field(self, data, linetype=1, plotPoints=3,
diff=None, scale=1.):
'''Vector Field"
def zoom(self, *args):
def unzoom(self, level = 1):
class Group:
'''group of plots that behave together'''
My Version of Gnuplot.py