Hi all,
I am working with a SRI (Surface Rainfall Intensity). The product comes in dBZ from an Iris radar which seems to work with Z in mm**6/mm**3. In their doc they write
dBZ = 10 log(Z); with Z in mm**6/mm**3,
so I get Z in mm**6/m**3 to convert it to Marshall-Palmer with
data = (1e6)*10**(data/10)
Since it seems that my data has clutters, I apply the Gabella filter now:
data = wrl.clutter.filter_gabella(data, wsize=5, thrsnorain=0., tr1=6., n_p=8, tr2=1.3)
And now I finally obtain the rainfall intensity with the Marshall-Palmer:
data = wrl.zr.z_to_r(data, a=200.0, b=1.6)
My questions are:
1) is this order of operations correct? Should I perhaps apply the filter even before the conversion to m**3?
Thx.