Changeset 664 in lmdz_wrf for trunk/tools
- Timestamp:
- Jan 13, 2016, 12:28:15 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/drawing.py
r655 r664 1369 1369 drw.check_arguments(fname,5,values,':',expectargs) 1370 1370 1371 mintopo = values.split(':')[0].split(',')[0]1372 maxtopo = values.split(':')[0].split(',')[1]1371 mintopo = np.float(values.split(':')[0].split(',')[0]) 1372 maxtopo = np.float(values.split(':')[0].split(',')[1]) 1373 1373 1374 1374 lonlatLS = values.split(':')[1] … … 1445 1445 quit() 1446 1446 1447 mintopo = values.split(':')[0].split(',')[0]1448 maxtopo = values.split(':')[0].split(',')[1]1447 mintopo = np.float(values.split(':')[0].split(',')[0]) 1448 maxtopo = np.float(values.split(':')[0].split(',')[1]) 1449 1449 1450 1450 lonlatLS = values.split(':')[1]
Note: See TracChangeset
for help on using the changeset viewer.