Changeset 2462
- Timestamp:
- 04/02/15 12:30:50 (10 years ago)
- Location:
- TOOLS/ConsoGENCMIP6/bin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TOOLS/ConsoGENCMIP6/bin/conso_gencmip6.py
r2460 r2462 80 80 project["machine"] = ligne.split()[5] 81 81 project["nodes"] = ligne.split()[6] 82 83 82 break 84 83 … … 149 148 fmt_str = "{:10s} {:12s} {:11s} {:11s} {:13s} {:13s} {:13s} {:13s}\n" 150 149 151 title_str 150 title_str = fmt_str.format( 152 151 "date", 153 152 "conso(hours)", -
TOOLS/ConsoGENCMIP6/bin/plot_login.py
r2460 r2462 29 29 filein, 30 30 skip_header=1, 31 converters={0: string_to_date, 32 1: str}, 31 converters={ 32 0: string_to_date, 33 1: str, 34 }, 33 35 missing_values="nan", 34 36 ) -
TOOLS/ConsoGENCMIP6/bin/plot_store.py
r2460 r2462 45 45 filein, 46 46 skip_header=1, 47 converters={0: string_to_date, 48 1: str, 49 2: string_to_size_unit, 50 3: str}, 47 converters={ 48 0: string_to_date, 49 1: str, 50 2: string_to_size_unit, 51 3: str, 52 }, 51 53 missing_values="nan", 52 54 )
Note: See TracChangeset
for help on using the changeset viewer.