How can I plot RHI from weather radar data ?

조회 수: 13 (최근 30일)
ss
ss 2020년 6월 23일
댓글: Xu Zhou 2020년 11월 17일
I have radar reflectivity in (range,azimuth,elevation) coordinates. How can plot range height indiacator (RHI) of reflectivity along an azimuth in matlab?

답변 (1개)

millercommamatt
millercommamatt 2020년 6월 23일
I suggest using PyART.
But, for Matlab:
If you have a cfradial type data file the data are stored in 2-D arrays (gates x rays or range x time). For RHIs you need to parse through this to get the constant azimuth section to find the RHI in your volume. If you're trying to create an RHI from PPI scans, you'll need to match rays with the same elevation. Then you need to turn along beam range into along the ground range. You need to compute the height above the geoid the beam is. etc... It's a non-trivial exercise to do this from scratch and do it right. Hence, PyART.
Anyway, paring down the data you want to view is the hard part. Once you do that you can use surf.
surf(downrange_distance,beam_altitude,reflectivity,'EdgeColor','none');view(2);
  댓글 수: 1
Xu Zhou
Xu Zhou 2020년 11월 17일
which commdand can I use from Pyart if I create a RHI from PP scans?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Clutter에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by