Hello again,
I am not sure if this is a matplotlib question, or a basemap one. The
sample code I found on Google for this either broke my script or
didn't change the end result.
I am attempting to turn the border (frame?) off altogether. Here is
the script, with some sections kept out for brevity:
----
import sys
import matplotlib
matplotlib.use('agg')
from mpl_toolkits.basemap import Basemap
import numpy as np
import matplotlib.pyplot as plt
fig = plt.figure(figsize=(2.56,2.56),dpi=70,frameon=False,linewidth=0)
fig.set_frameon(False)
# as you can see, above are some of attempts at turning the border off
plt.subplots_adjust(left=0, bottom=0, right=1, top=1, wspace=None, hspace=None)
m = Basemap(....)
m.drawcoastlines()
fig.savefig("test.png")
-----
Thank you in advance once again!
~ Jeremy
------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
Matplotlib-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel