source: lmdz_wrf/trunk/tools/config_get_stations.NNRP.py @ 1699

Last change on this file since 1699 was 1697, checked in by lfita, 8 years ago

Adding configuration for 'NCEP_NNRP' re-analysis for get_stations.py

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