Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. #---Some code to read in the data
  3. # ...
  4.  
  5. #-----Get a A4 sized landscape figure
  6. fig=plt.figure(figsize=(11.69,8.27), dpi=100)
  7.  
  8. #----2*3 Subplots-------------
  9. for ii in range(6):
  10. ax=fig.add_subplot(2,3,ii+1)
  11.  
  12. #---Basemap contourf of data
  13. baseIsofill(var[ii],ax,'local')
  14. ax.set_title('(a)',loc='left')
  15.  
  16.  
  17. #plt.tight_layout()
  18. plt.tight_layout(pad=2.0,h_pad=6.5,w_pad=4.5)
  19. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement