[1697] | 1 | # Configuration for 'get_stations.py' |
---|
| 2 | # Too much options to be ingested and parsed ?! |
---|
| 3 | |
---|
| 4 | #sfcstatfile='ubicacion_datos_sup.csv' |
---|
| 5 | sfcstatfile='None' |
---|
| 6 | |
---|
| 7 | # Surface stations columns for data |
---|
| 8 | sfclatcol=0 |
---|
| 9 | sfcloncol=1 |
---|
| 10 | sfclabcol=3 |
---|
| 11 | sfchgtcol=2 |
---|
| 12 | |
---|
| 13 | sndstatfile='sounding_stattions.csv' |
---|
| 14 | |
---|
| 15 | # Sounding stations columns for data |
---|
| 16 | sndlatcol=1 |
---|
| 17 | sndloncol=2 |
---|
| 18 | sndlabcol=0 |
---|
| 19 | sndhgtcol=3 |
---|
| 20 | |
---|
| 21 | # comment char |
---|
| 22 | comchar = '#' |
---|
| 23 | |
---|
| 24 | # separation char |
---|
| 25 | sepchar = ',' |
---|
| 26 | |
---|
| 27 | # missing value |
---|
| 28 | missvalS = ['0', 'NaN'] |
---|
| 29 | |
---|
| 30 | # simulation file |
---|
| 31 | simfilen = '/datos/lluis.fita/studies/NNRP/nnrp_1976.nc' |
---|
| 32 | |
---|
| 33 | # dimension CFequivalences |
---|
| 34 | CFdims = {'lon': 'lon', 'lat': 'lat', 'plev': 'level', 'time': 'time'} |
---|
| 35 | |
---|
| 36 | # axes dimensions |
---|
| 37 | axesdims = {'X': ['lon'], 'Y': ['lat'], 'Z': ['level', 'level_2'], 'T': ['time']} |
---|
| 38 | |
---|
| 39 | # axes variables |
---|
| 40 | axesvars = {'X': ['lon'], 'Y': ['lat'], 'Z': ['level', 'levels_2'], 'T': ['time']} |
---|
| 41 | |
---|
| 42 | # dim Variables ('H' to determine station height from file, 'None' for no variable available) |
---|
| 43 | dimvariables = {'lon': 'lon', 'lat': 'lat', 'level': 'level', 'time':'time', \ |
---|
| 44 | 'level_2': 'level_2', 'H': 'None'} |
---|
| 45 | |
---|
| 46 | # SFC Variables |
---|
| 47 | sfcvariables = {'tas':'T2', 'uas':'WRFuas', 'vas':'WRFvas', 'huss':'Q2', 'ps':'PSFC',\ |
---|
| 48 | 'zhgt':'HGT'} |
---|
[1703] | 49 | # Surface reference variable (it must be one variable from file which has |
---|
| 50 | # the right right shape (e.g. un-staggered) and rang as 3D dimensions [T,Y,X]) |
---|
| 51 | sfcrefvar = 'T2' |
---|
[1697] | 52 | |
---|
| 53 | # Vertical Variables |
---|
| 54 | sndvariables= {'ta':'air', 'ua':'uwnd', 'va':'vwnd', 'hus':'shum', \ |
---|
| 55 | 'zg':'hgt', 'plev':'level', 'tda': 'C_td', 'wd': 'C_wd', 'ws': 'C_ws'} |
---|
[1703] | 56 | # Sounding reference variable (it must be one variable from file which has |
---|
| 57 | # the right right shape (e.g. un-staggered) and rang as 4D dimensions [T,Z,Y,X]) |
---|
[1697] | 58 | sndrefvar = 'air' |
---|
| 59 | |
---|
| 60 | # Variable pressure |
---|
| 61 | UnitsPress = 'Pa' |
---|
| 62 | Pressdimref = 'level' |
---|
| 63 | |
---|
| 64 | # Does pressure variable change with time? |
---|
| 65 | presstime = False |
---|
| 66 | |
---|
| 67 | # Map range |
---|
| 68 | #nlon = -80. |
---|
| 69 | #xlon = -50. |
---|
| 70 | #nlat = -60. |
---|
| 71 | #xlat = -20. |
---|
| 72 | |
---|
| 73 | # Map range RELAMPAGO |
---|
| 74 | nlon = 70. |
---|
| 75 | xlon = 180. |
---|
| 76 | nlat = -67. |
---|
| 77 | xlat = -5. |
---|
| 78 | |
---|
| 79 | # CF Temporal values |
---|
| 80 | ReferenceDate = '19491201000000' |
---|
| 81 | UnitsTime = 'minutes' |
---|
| 82 | |
---|