-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvol.py
303 lines (245 loc) · 9.81 KB
/
vol.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# -*- encoding: utf8
# Autores: Banchero, Santiago; Bellini Saibene Yanina
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
# Este script es parte de la Tesis:
# “Estimación de ocurrencia de granizo en superficie y daño en cultivos
# mediante datos del radar meteorológico utilizando técnicas de data mining”.
#
# correspondiente a la maestría en DM&KD de la Universidad Austral
# Aspirante: Yanina Noemí Bellini Saibene
#
import struct
import sys
from math import log10
try:
from PyQt4 import QtCore
except ImportError:
raise ImportError,"Se requiere el modulo PyQt4. Se puede descargar de http://www.riverbankcomputing.co.uk/software/pyqt/download"
try:
from lxml import etree
except ImportError:
raise ImportError,"Se requiere el modulo lxml. Se puede descargar de http://www.lfd.uci.edu/~gohlke/pythonlibs/"
try:
from numpy import array,nan,isfinite,zeros,float,sin,cos,pi,mgrid
except ImportError:
raise ImportError,"Se requiere el modulo numpy. Se puede descargar de http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy"
# Todo: Estos valores son los correspondientes a Anguil, en los .vol esta información está en radarinfo.
# se podría ver de tomar los datos directamente desde alli y asi hacerlo genérico para cualquier radar
# Todo: These values are from Anguil radar. Inside .vol we can find this information, we will take this data from there.
lon = -63.990067
lat= -36.539683
#Todo: estos datos corresponden para el rango de 240 km, deberiamos generalizarlo para el de 120 y 480.
# These data correspond to the range of 240 km, we should generalize to the 120 and 480.
azimth = 360
bins = 480
rango=240
binres=0.5
R=12742/2; # Radio medio de la Tierra
m=2*pi*R/360
tipoArchivo=''
#Función que devuelve el encabezado del volumen
#Return the volume head
def get_header_vol(fh=None):
try:
linea = fh.next()
xml = ''
while linea:
if linea.startswith('</volume>'):
xml += linea
break
xml += linea
linea = fh.next()
return xml
except StopIteration:
raise StopIteration,"El archivo que se intenta abrir no contiene datos"
#Función que devuelve los Blobs con los datos del volumen
# Returns the Blobs with the actual radar data
def get_blobs(fh=None):
linea = fh.next()
blobs = []
bindata = ''
while linea:
#Si la linea empieza con <blob
if linea.startswith('<BLOB blobi'):
linea = fh.next()
while linea:
if linea.startswith('</BLOB>'):
blobs.append(bindata)
bindata = ''
break
bindata += linea
try:
linea = fh.next()
except StopIteration,e:
linea = None
try:
linea = fh.next()
except StopIteration,e:
linea = None
return blobs
#Función que imprime la información del RADAR, extraido de la informacion contenida en el volumen.
#Print the RADAR information in the volume scan
def print_radarinfo(ri):
name,wavelen,beamwidth = ri.getchildren()
print """NOMBRE: %s
WAVELEN: %s
BEAMWIDTH: %s""" %(name.text,wavelen.text,beamwidth.text)
def print_slice(lst_slice):
for sl in lst_slice:
slice = sl.getchildren()
for ele in slice:
if ele.tag == 'slicedata':
rayinfo,rawdata = ele.getchildren()
print """Rays: %s Min: %s Max: %s BlobID: %s Depth: %s Type: %s Bins: %s """ %(rawdata.attrib['rays'],rawdata.attrib['min'],rawdata.attrib['max'],rawdata.attrib['blobid'],rawdata.attrib['depth'],rawdata.attrib['type'],rawdata.attrib['bins'])
return rawdata.attrib['type']
#Función que realiza el cálculo del valor real de cada variable.
#Function that calculates the actual value of each variable.
def get_depth(depth, variable):
if variable=='ZDR':
db_min = -8.0
db_max = 12.0
dmi = 1.0
dma = 255.0
parametro=3
if variable=='dBZ':
db_min = -31.5
db_max = 95.5
dmi = 1.0
dma = 255.0
parametro= 1
if variable=='PhiDP':
db_min = 0.0
db_max = 360.0
dmi = 1.0 #digital number
dma = 65535.0 #digital number
parametro=3
if variable=='KDP':
db_min = -20.0
db_max = 20.0
dmi = 1.0 #digital number
dma = 65535.0 #digital number
parametro=3
if variable=='RhoHV':
db_min = 0.0
db_max = 1.0
dmi = 1.0 #digital number
dma = 255.0 #digital number
parametro= 3
return round(((float(depth) - dmi)/(dma - dmi))*(db_max - (db_min)) + db_min,parametro)
#Función que obtiene la matriz de datos reales del volumen procesado
#Get the matrix of real data processed volume
def get_matriz_vol(d,tipoArchivo):
inicio = 0
blob = zeros((azimth,bins),dtype=float)
for az in range(azimth):
un_bin = d.data()[inicio:inicio + bins]
inicio += bins
#recorro un_bin obviando el primer byte que es el separador
for i,b in enumerate(un_bin):
ndepth = struct.unpack_from('B',b)
if ndepth[0] == 0:
blob[az][i] = -99.0
elif ndepth[0] > 0:
blob[az][i] = get_depth(ndepth[0], tipoArchivo)
return blob #[::-1,:]
def get_matriz_vol_16b(d, tipoArchivo):
inicio = 0
bytes = 2 # resolucion de la imagen 16 bits = 2 bytes
blob = zeros((azimth,bins),dtype=float)
for az in range(azimth):
un_bin = d.data()[inicio:inicio + bins*bytes]
#genero una lista de los 2 bytes y reverseados...jejeje
un_bin = [un_bin[i:i+bytes][::-1] for i in range(0, len(un_bin), bytes)]
inicio += bins*bytes
#recorro un_bin obviando el primer byte que es el separador
for i,b in enumerate(un_bin):
ndepth = struct.unpack_from('H',b)
if ndepth[0] == 0:
blob[az][i] = -99.0
elif ndepth[0] > 0:
blob[az][i] = get_depth(ndepth[0], tipoArchivo)
return blob #--[::-1,:]
def get_angulos(d):
inicio = 0
bytes = 2
db_min = 0.0
db_max = 359.995
dmi = 0.0
dma = 65535.0
grados = []
startangle = None
for az in range(len(d)):
un_bin = d.data()[inicio:inicio + bytes][::-1]
inicio += bytes
if len(un_bin) == 2:
angulo = struct.unpack_from('H',un_bin)
if len(grados) == 0:
startangle = round(((float(angulo[0]) - dmi)/(dma - dmi))*(db_max - (db_min)) + db_min,3)
grados.append(round(((float(angulo[0]) - dmi)/(dma - dmi))*(db_max - (db_min)) + db_min,3))
print round(((float(angulo[0]) - dmi)/(dma - dmi))*(db_max - (db_min)) + db_min,3)
return startangle,grados
# Cuerpo principal del Script
if __name__ == '__main__':
#Se recibe como argumento el nombre del archivo .vol a procesar
#Receives as argument the name of the file .vol to be processed
f_name = sys.argv[1]
f = open(f_name,'rb')
xml_header = get_header_vol(f)
blobs = get_blobs(f)
vol = etree.fromstring(xml_header)
root = vol.getroottree().getroot()
#Algunos volumenes vienen con mas información, agregan el nodo history, para eso hacemos el control de errores.
try:
scan, radarinfo = root.getchildren()
except ValueError:
scan, radarinfo, history = root.getchildren()
print_radarinfo(radarinfo)
slice = scan.findall('slice')
tipoArchivo= print_slice(slice)
print 'Tipo Archivo:'+tipoArchivo
print 'BLOBS: %i' % len(blobs)
bandas = []
grados = []
for i,bl in enumerate(blobs):
up=QtCore.qUncompress(bl)
if i % 2 == 0:
print 'Blob',i,len(up) - bins,azimth*bins,len(up) - bins==azimth*bins
startangle, grados = get_angulos(up)
if i % 2 <> 0:
print 'Blob',i,len(up) - bins,azimth*bins,len(up) - bins==azimth*bins
if tipoArchivo in ['KDP','PhiDP']:
blobs_img = get_matriz_vol_16b(up, tipoArchivo)
else:
blobs_img = get_matriz_vol(up, tipoArchivo)
#TODO: de acuerdo a lo indicado por el usuario convertir a geográficas y guardar
#o dejar el polares y guardar.
fo = open(sys.argv[1]+'_%i.txt'%i,'wb')
fo.write('lon lat dbz\n')
aux_a = blobs_img[:round(360 - startangle)]
aux_b = blobs_img[round(360 - startangle):]
blobs_img = array(list(aux_b)+list(aux_a))
points = []
values = []
for ray in grados:
for bi in range(bins):
y = lat + ((bi*0.5)/m) * cos((ray)*pi/180)
x = lon + ((bi*0.5)/m) * sin((ray)*pi/180)/cos( y * pi/180)
points.append([x,y])
fo.write("%f %f %f\n" %(x,y,blobs_img[ray][bi]))
values.append(blobs_img[ray][bi])
fo.close()