| 1 | # Configuration for 'get_stations.py' |
|---|
| 2 | # Too much options to be ingested and parsed ?! |
|---|
| 3 | |
|---|
| 4 | #sfcstatfile='ubicacion_datos_sup.csv' |
|---|
| 5 | sfcstatfile='ubicacion_sfc_test.csv' |
|---|
| 6 | |
|---|
| 7 | # Surface stations columns for data |
|---|
| 8 | sfclatcol=0 |
|---|
| 9 | sfcloncol=1 |
|---|
| 10 | sfclabcol=3 |
|---|
| 11 | sfchgtcol=2 |
|---|
| 12 | |
|---|
| 13 | sndstatfile='ubicacion_sondeos.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 = '/home/lluis/PY/wrfout_d01_1995-01-01_00:00:00' |
|---|
| 32 | |
|---|
| 33 | # dimension CFequivalences |
|---|
| 34 | CFdims = {'lon': 'west_east', 'lat': 'south_north', 'plev': 'bottom_top', \ |
|---|
| 35 | 'time': 'Time'} |
|---|
| 36 | |
|---|
| 37 | # axes dimensions |
|---|
| 38 | axesdims = {'X': ['west_east', 'west_east_stag'], \ |
|---|
| 39 | 'Y': ['south_north', 'south_north_stag'], 'Z': ['bottom_top', 'bottom_top_stag'], \ |
|---|
| 40 | 'T': ['Time']} |
|---|
| 41 | |
|---|
| 42 | # axes variables |
|---|
| 43 | axesvars = {'X': ['XLONG', 'XLONG_U'], 'Y': ['XLAT', 'XLAT_V'], 'Z': ['ZNU', 'ZNW'], \ |
|---|
| 44 | 'T': ['WRFtime']} |
|---|
| 45 | |
|---|
| 46 | # dim Variables |
|---|
| 47 | dimvariables = {'west_east': 'XLONG', 'south_north': 'XLAT', 'bottom_top': 'ZNU', \ |
|---|
| 48 | 'Time': 'WRFtime', 'west_east_stag': 'XLONG_U', 'south_north_stag': 'XLAT_U', \ |
|---|
| 49 | 'bottom_top_stag': 'ZNW'} |
|---|
| 50 | |
|---|
| 51 | # SFC Variables |
|---|
| 52 | sfcvariables = {'tas':'T2', 'uas':'WRFuas', 'vas':'WRFvas', 'huss':'Q2', 'ps':'PSFC',\ |
|---|
| 53 | 'zhgt':'HGT'} |
|---|
| 54 | sfcrefvar = 'tas' |
|---|
| 55 | |
|---|
| 56 | # Vertical Variables |
|---|
| 57 | sndvariables= {'ta':'WRFta', 'ua':'WRFua', 'va':'WRFva', 'hus':'QVAPOR', \ |
|---|
| 58 | 'zg':'WRFzg', 'plev':'WRFp', 'tda': 'WRFtd'} |
|---|
| 59 | sndrefvar = 'ta' |
|---|
| 60 | |
|---|
| 61 | # Variable pressure |
|---|
| 62 | UnitsPress = 'Pa' |
|---|
| 63 | Pressdimref = 'bottom_top' |
|---|
| 64 | |
|---|
| 65 | # Does pressure variable change with time? |
|---|
| 66 | presstime = True |
|---|
| 67 | |
|---|
| 68 | # Map range |
|---|
| 69 | #nlon = -80. |
|---|
| 70 | #xlon = -50. |
|---|
| 71 | #nlat = -60. |
|---|
| 72 | #xlat = -20. |
|---|
| 73 | |
|---|
| 74 | # Map range RELAMPAGO |
|---|
| 75 | nlon = -70. |
|---|
| 76 | xlon = -57. |
|---|
| 77 | nlat = -37. |
|---|
| 78 | xlat = -27. |
|---|
| 79 | |
|---|
| 80 | # CF Temporal values |
|---|
| 81 | ReferenceDate = '19491201000000' |
|---|
| 82 | UnitsTime = 'minutes' |
|---|
| 83 | |
|---|