Changeset 61
- Timestamp:
- 30/09/13 18:57:22 (7 years ago)
- Location:
- CCCC/trunk
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
CCCC/trunk/README.txt
r60 r61 7 7 python c4.py -D <directory> ## check all files in directory tree 8 8 python c4.py -d <directory> ## check all files in directory 9 python c4.py -f <file> ## check a sin le file.9 python c4.py -f <file> ## check a single file. 10 10 11 11 Optional arguments: … … 24 24 -- summary log, 3 records per file; 25 25 -- "Rec.txt" -- single record for each file, as above 26 27 VOCABULARIES 28 ------------ 29 30 Vocabulary lists GCMModelName.txt and RCMModelName.txt are held on the DMI CORDEX site: 31 http://cordex.dmi.dk/joomla/images/CORDEX/GCMModelName.txt 32 http://cordex.dmi.dk/joomla/images/CORDEX/RCMModelName.txt 33 34 35 36 -
CCCC/trunk/config_c4.py
r60 r61 18 18 19 19 20 ii = open( ' GCMModelName.txt' ).readlines()20 ii = open( 'cordex_vocabs/GCMModelName.txt' ).readlines() 21 21 validGcmNames = [] 22 22 for l in ii: … … 24 24 validGcmNames.append( string.split(l)[0] ) 25 25 26 ii = open( ' RCMModelName.txt' ).readlines()26 ii = open( 'cordex_vocabs/RCMModelName.txt' ).readlines() 27 27 validRcmNames = [] 28 28 validInstNames = [] … … 47 47 heightValues[v] = 10 48 48 49 ii = open( 'cordex_ domains.csv' ).readlines()49 ii = open( 'cordex_vocabs/cordex_domains.csv' ).readlines() 50 50 keys = ['name','tag','res','grid_np_lon','grid_np_lat','nlon','nlat','w','e','s','n'] 51 51 rotatedPoleGrids = {} -
CCCC/trunk/utils_c4.py
r60 r61 548 548 def __init__(self): 549 549 ms = mipTableScan() 550 dir = ' /home/martin/2013/mipML/FCC2/trunk/work/cordex_vocabs/mip/'550 dir = 'cordex_vocabs/mip/' 551 551 self.varInfo = {} 552 552 self.varcons = {}
Note: See TracChangeset
for help on using the changeset viewer.