Radar Mosaic: How Py-ART interpolate two radars? #1365
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Could you please provide an example of the code you are using to grid the radars, along with a couple of sample files? This will help diagnose the issue here. |
Beta Was this translation helpful? Give feedback.
-
Taking a look at this @MarceloTSilveira , I think the issue is with the missing values + radius of influence. Here are the results from gridding from a single radar (the one that is farther away, that does not have missing values from the convective cell you highlighted) One thing to note here is that the ROI is quite high, ~3 to 4 km When you add in the other radar, we see the ROI decreases, and it pulls from the closer radar that has missing values, and the valid values are too far away to be considered "valid" using the Barnes scheme One way around this is to set your own radius of influence, so you can pull from the radar you have data for in that region, as shown below with the gridding parameters grid = pyart.map.grid_from_radars(radar_list, grid_shape=grid_shape, grid_limits=grid_limits,
fields=radar_fields, gridding_algo="map_gates_to_grid", constant_roi=3000, gatefilters=gf) One caveat with this approach is that there is more smoothing that might be desired, but it does deal with that gap in the data (a constant pro/con when looking at different gridding approaches). I hope this helps! |
Beta Was this translation helpful? Give feedback.
Taking a look at this @MarceloTSilveira , I think the issue is with the missing values + radius of influence.
Here are the results from gridding from a single radar (the one that is farther away, that does not have missing values from the convective cell you highlighted)
One thing to note here is that the ROI is quite high, ~3 to 4 km
When you add in the other radar, we see the ROI decreases, and it pulls from the closer radar that has missing values, and the valid values are too far away to be considered "valid" using the Barnes scheme
One way around this is to set your own radius of influence, so you can pull from the radar you have data for in that region, as shown below with the gri…