smooth_n_point¶
-
metpy.calc.
smooth_n_point
(scalar_grid, n=5, passes=1)[source]¶ Filter with normal distribution of weights.
- Parameters
- Returns
array-like or pint.Quantity – The filtered 2D scalar grid.
Notes
This function is a close replication of the GEMPAK function SM5S and SM9S depending on the choice of the number of points to use for smoothing. This function can be applied multiple times to create a more smoothed field and will only smooth the interior points, leaving the end points with their original values. If a masked value or NaN values exists in the array, it will propagate to any point that uses that particular grid point in the smoothing calculation. Applying the smoothing function multiple times will propogate NaNs further throughout the domain.