-
-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Description
The burn probability spreading approach operates largely on datasets in a geographic projection. The smoothing kernels both operate on arrays and so are both sized according to number of pixels. This behavior shows up in both the wind spreading section
Line 204 in 588a94a
| convolved_mask = cv.filter2D(valid_mask, ddepth=-1, kernel=weights) |
Line 523 in 588a94a
| kwargs={'ksize': (25, 25), 'sigmaX': 0}, |
create_wind_informed_burn_probability which then is used to adjust the Gaussian filter size and passed to apply_wind_directional_convolution to adjust the filters in weights_dict.Another way of thinking about this issue is that we’re using datasets in geographic projections but calling them 30m, e.g.,
wind_direction_distribution_30m_4326. We may want to reevaluate that naming convention and/or the way we operate on these datasets as part of addressing this issue.Reactions are currently unavailable