##// END OF EJS Templates
update test sophy proc
avaldezp -
r1458:750c4fd6f209
parent child
Show More
@@ -11,8 +11,8 PARAM = {
11 'V': {'name': 'dataPP_DOP', 'zmin': -20, 'zmax': 20, 'colormap': 'seismic', 'label': 'Velocity', 'cb_label': 'm/s'},
11 'V': {'name': 'dataPP_DOP', 'zmin': -20, 'zmax': 20, 'colormap': 'seismic', 'label': 'Velocity', 'cb_label': 'm/s'},
12 'RH': {'name': 'RhoHV_R', 'zmin': 0, 'zmax': 1, 'colormap': 'jet', 'label': 'CoeficienteCorrelacion', 'cb_label': '*'},
12 'RH': {'name': 'RhoHV_R', 'zmin': 0, 'zmax': 1, 'colormap': 'jet', 'label': 'CoeficienteCorrelacion', 'cb_label': '*'},
13 'FD': {'name': 'PhiD_P', 'zmin': -180, 'zmax': 180, 'colormap': 'RdBu_r', 'label': 'Fase Diferencial', 'cb_label': 'º'},
13 'FD': {'name': 'PhiD_P', 'zmin': -180, 'zmax': 180, 'colormap': 'RdBu_r', 'label': 'Fase Diferencial', 'cb_label': 'º'},
14 'ZD': {'name': 'Zdb_D', 'zmin': -20, 'zmax': 60, 'colormap': 'viridis', 'label': 'ReflectividadDiferencial', 'cb_label': 'dB'},
14 'ZD': {'name': 'Zdb_D', 'zmin': -20, 'zmax': 80, 'colormap': 'viridis', 'label': 'ReflectividadDiferencial', 'cb_label': 'dB'},
15 'Z': {'name': 'Zdb', 'zmin': -20, 'zmax': 60, 'colormap': 'viridis', 'label': 'Reflectividad', 'cb_label': 'dB'},
15 'Z': {'name': 'Zdb', 'zmin': 100, 'zmax': 200, 'colormap': 'viridis', 'label': 'Reflectividad', 'cb_label': 'dB'},
16 'W': {'name': 'Sigmav_W', 'zmin': -20, 'zmax': 60, 'colormap': 'viridis', 'label': 'AnchoEspectral', 'cb_label': 'hz'}
16 'W': {'name': 'Sigmav_W', 'zmin': -20, 'zmax': 60, 'colormap': 'viridis', 'label': 'AnchoEspectral', 'cb_label': 'hz'}
17 }
17 }
18 #Z,ZD 'mm^6/m^3'
18 #Z,ZD 'mm^6/m^3'
@@ -91,11 +91,12 def main(args):
91 #-----------------------new--------- variables polarimetricas---------------
91 #-----------------------new--------- variables polarimetricas---------------
92 opObj10 = proc.addOperation(name="WeatherRadar")
92 opObj10 = proc.addOperation(name="WeatherRadar")
93 opObj10.addParameter(name='variableList',value='Reflectividad,ReflectividadDiferencial,CoeficienteCorrelacion,FaseDiferencial,VelocidadRadial,AnchoEspectral')
93 opObj10.addParameter(name='variableList',value='Reflectividad,ReflectividadDiferencial,CoeficienteCorrelacion,FaseDiferencial,VelocidadRadial,AnchoEspectral')
94
94 #---------------------------------------------------------------------------
95 #---------------------------------------------------------------------------
95 op = proc.addOperation(name='PedestalInformation')
96 op = proc.addOperation(name='PedestalInformation')
96 op.addParameter(name='path', value=path_ped, format='str')
97 op.addParameter(name='path', value=path_ped, format='str')
97 op.addParameter(name='interval', value='0.04', format='float')
98 op.addParameter(name='interval', value='0.04', format='float')
98 op.addParameter(name='offset', value=time_offset)
99 op.addParameter(name='time_offset', value=time_offset)
99
100
100 for param in parameters:
101 for param in parameters:
101 op = proc.addOperation(name='Block360_vRF4')
102 op = proc.addOperation(name='Block360_vRF4')
@@ -139,6 +140,7 def main(args):
139 opObj10.addParameter(name='metadataList',value='heightList,data_azi,data_ele')
140 opObj10.addParameter(name='metadataList',value='heightList,data_azi,data_ele')
140 opObj10.addParameter(name='dataList',value='dataPP_POWER,utctime')
141 opObj10.addParameter(name='dataList',value='dataPP_POWER,utctime')
141
142
143
142 project.start()
144 project.start()
143
145
144 if __name__ == '__main__':
146 if __name__ == '__main__':
General Comments 0
You need to be logged in to leave comments. Login now