Changeset 478 for trunk/UTIL/PYTHON/pp.py
- Timestamp:
- Dec 18, 2011, 11:50:16 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/pp.py
r475 r478 16 16 from planetoplot import planetoplot 17 17 from myscript import getparseroptions 18 import glob 18 19 import numpy as np 20 19 21 20 22 ############################# … … 36 38 reffile = opt.fref 37 39 zexaxis = [opt.xmin,opt.xmax] ; zeyaxis=[opt.ymin,opt.ymax] 40 41 ############################# 42 ### Catch multiple files 43 if "*" in opt.file[0] or "?" in opt.file[0]: yeah = glob.glob(opt.file[0]) ; yeah.sort() 44 opt.file[0] = yeah[0] 45 for file in yeah: opt.file[0] = opt.file[0] + "," + file 38 46 39 47 #############################
Note: See TracChangeset
for help on using the changeset viewer.