MPAS-JEDI
plot_obs_loc.py
Go to the documentation of this file.
1 import config as conf
2 import os
3 import sys
4 import numpy as np
5 from copy import deepcopy
6 import fnmatch
7 import basic_plot_functions
8 import var_utils as vu
9 import h5py as h5
10 
11 '''
12 Directory structure and file names for ctest (or cycling experiments):
13 test/
14  ├── Data/
15  │   ├── sondes_obs_2018041500_m.nc4 (or sondes_obs_2018041500.h5)
16  │   ├── satwind_obs_2018041500_m.nc4 (or satwind_obs_2018041500.h5)
17  │   ├── ...
18  ├── graphics/
19  │   ├── plot_obs_loc.py
20  │   ├── ...
21 How to run it:
22 python plot_obs_loc.py cycling 2018041500
23 python plot_obs_loc.py ctest 2018041500
24 '''
25 test = str(sys.argv[1])
26 Date = str(sys.argv[2])
27 
28 def readdata():
29  '''
30  Observation file name used in ctest: | Observation file name used in cycling:
31  aircraft_obs_2018041500_m.nc4 | aircraft_obs_2018041500.h5
32  amsua_n19_obs_2018041500_m.nc4 | amsua_n19_obs_2018041500.h5
33  satwind_obs_2018041500_m.nc4 | satwind_obs_2018041500.h5
34  sondes_obs_2018041500_m.nc4 | sondes_obs_2018041500.h5
35  gnssro_obs_2018041500_s.nc4 | gnssro_obs_2018041500.h5
36  '''
37  obsfiles = []
38  if (test == 'ctest'):
39  suffix = '_m'
40  string = '_obs_'+Date+suffix+'.nc4'
41  nChar1 = -21 # remove "_obs_2018041500_m.nc4" to get obstype string
42  nChar2 = -4 # remove '.nc4' to get output string
43  elif (test == 'cycling'):
44  suffix = ''
45  string = '_obs_'+Date+suffix+'.h5'
46  nChar1 = -18 # remove "_obs_2018041500.h5" to get obstype string
47  nChar2 = -3 # remove '.h5' to get output string
48 
49  PreQCMaxvalueConv = 3
50  PreQCMinvalueConv = -90
51  PreQCMaxvalueAmsua = 0
52 
53  #search all obs files and get obs types from Data dir:
54  allobstypes = []
55  for files in os.listdir('../Data/'):
56  if fnmatch.fnmatch(files, '*'+string):
57  allobstypes.append(files[:nChar1])
58 
59  #get obs types with 'process': True from dictionary conf.DiagSpaceConfig
60  ObsSpaceDict = {}
61  obsfiles_prefix = []
62  for (key,baseval) in conf.DiagSpaceConfig.items():
63  if baseval['process'] and baseval['DiagSpaceGrp'] != conf.model_s:
64  ObsSpaceDict = deepcopy(baseval)
65  obsfiles_prefix.append(key)
66 
67  #get the file name we want to plot:
68  match = set(allobstypes) & set(obsfiles_prefix)
69  print('match=', match)
70  obsfiles = [x + string for x in match]
71 
72  if (test == 'ctest'):
73  obsfiles = [f.replace('gnssro_obs_2018041500_m.nc4', 'gnssro_obs_2018041500_s.nc4') for f in obsfiles]
74  print(obsfiles)
75 
76  for file_name in obsfiles:
77  nc = h5.File("../Data/"+file_name, 'r')
78  print('Plotting:', file_name)
79  varlist = []
80  for node in nc:
81  if type(nc[node]) is h5._hl.group.Group:
82  for var in nc[node]:
83  varlist += [node+'/'+var]
84 
85  if 'MetaData/station_id' in varlist:
86  stationidnc = nc['MetaData/station_id']
87  #for gnss:
88  elif 'MetaData/occulting_sat_id' in varlist:
89  stationidnc = nc['MetaData/occulting_sat_id']
90  if (test == 'cycling'):
91  recordNum = nc['MetaData/record_number']
92  #for radiances:
93  else:
94  nstation = 0
95 
96  obstype = file_name[:nChar1]
97  latnc = nc['MetaData/latitude']
98  lonnc = nc['MetaData/longitude']
99 
100  ObsSpaceInfo = conf.DiagSpaceConfig.get(obstype,conf.nullDiagSpaceInfo)
101  channels = ObsSpaceInfo.get('channels',[vu.miss_i])
102  #select variables with the suffix 'ObsValue'
103  obslist = [obs for obs in varlist if (obs[:8] == 'ObsValue')]
104  #print('obslist=',obslist)
105 
106  obs_type = file_name[:nChar1]
107  out_name = file_name[:nChar2]
108 
109  for var in obslist:
110  var_name = var[9:] # e.g. remove 'ObsValue/' from 'ObsValue/air_temperature'
111  PreQC = 'PreQC/'+var_name
112 
113  if var_name == 'refractivity':
114  var_unit = 'N-unit'
115  elif var_name == 'bending_angle':
116  var_unit = 'Radians'
117  else:
118  var_unit = vu.varDictObs[var_name][0]
119 
120  levbin='all'
121 
122  if channels[0] == vu.miss_i:
123  obsnc = nc[var]
124  obsnc = np.asarray(obsnc)
125  stationidnc_array = []
126  recordnc_array = []
127  if (obstype == 'gnssro'):
128  obsnc[np.less(obsnc, -999)] = np.NaN
129  stationidnc_array=np.asarray(stationidnc).astype(str)
130  if (test == 'cycling'):
131  recordnc_array=np.asarray(recordNum).astype(str)
132  recordnc_array[np.isnan(obsnc)]= np.NaN
133  nrecord = len(set(recordnc_array)) -1
134  else:
135  PreQCnc = nc[PreQC]
136  obsnc[np.greater(PreQCnc, PreQCMaxvalueConv)] = np.NaN
137  obsnc[np.less(PreQCnc,PreQCMinvalueConv)] = np.NaN
138  stationidnc_array=np.asarray(stationidnc)
139  stationidnc_array[np.isnan(obsnc)]= np.NaN
140  nstation = len(set(stationidnc_array)) -1 # -1: 'nan' is also included, so remove it
141  if (obstype == 'satwind'):
142  nstation = 0
143  if (obstype == 'gnssro' and test == 'cycling'):
144  basic_plot_functions.plotDistri(latnc,lonnc,obsnc,obs_type,var_name,var_unit,out_name,nrecord,levbin)
145  else:
146  basic_plot_functions.plotDistri(latnc,lonnc,obsnc,obs_type,var_name,var_unit,out_name,nstation,levbin)
147  else:
148  for channel in channels:
149  obsnc = nc[var][:,channel-1]
150  PreQCnc = nc[PreQC][:,channel-1]
151  obsnc = np.asarray(obsnc)
152  obsnc[np.greater(PreQCnc, PreQCMaxvalueAmsua)] = np.NaN
153  var_name = var_name +'_ch'+ str(channel)
154  nstation = 0
155  basic_plot_functions.plotDistri(latnc,lonnc,obsnc,obs_type,var_name,var_unit,out_name,nstation,levbin)
156  var_name = var[9:]
157 def main():
158  readdata()
159 
160 if __name__ == '__main__': main()
def plotDistri(lats, lons, values, ObsType, VarName, var_unit, out_name, nstation, levbin, dmin=None, dmax=None, dotsize=6, color="rainbow")
def readdata()
Definition: plot_obs_loc.py:28