@@ -40,7 +40,7 @@ def plot_rp_intensity(
4040 self ,
4141 return_periods = (25 , 50 , 100 , 250 ),
4242 axis = None ,
43- mask_distance = 0.01 ,
43+ mask_distance = 0.03 ,
4444 kwargs_local_exceedance_intensity = None ,
4545 ** kwargs ,
4646 ):
@@ -60,8 +60,8 @@ def plot_rp_intensity(
6060 mask_distance: float, optional
6161 Only regions are plotted that are closer to any of the data points than this distance,
6262 relative to overall plot size. For instance, to only plot values
63- at the centroids, use mask_distance=0.01 . If None, the plot is not masked.
64- Default is 0.01 .
63+ at the centroids, use mask_distance=0.03 . If None, the plot is not masked.
64+ Default is 0.03 .
6565 kwargs: optional
6666 arguments for pcolormesh matplotlib function used in event plots
6767
@@ -111,7 +111,7 @@ def plot_intensity(
111111 smooth = True ,
112112 axis = None ,
113113 adapt_fontsize = True ,
114- mask_distance = 0.01 ,
114+ mask_distance = 0.03 ,
115115 ** kwargs ,
116116 ):
117117 """Plot intensity values for a selected event or centroid.
@@ -138,8 +138,8 @@ def plot_intensity(
138138 mask_distance: float, optional
139139 Only regions are plotted that are closer to any of the data points than this distance,
140140 relative to overall plot size. For instance, to only plot values
141- at the centroids, use mask_distance=0.01 . If None, the plot is not masked.
142- Default is 0.01 .
141+ at the centroids, use mask_distance=0.03 . If None, the plot is not masked.
142+ Default is 0.03 .
143143 kwargs: optional
144144 arguments for pcolormesh matplotlib function
145145 used in event plots or for plot function used in centroids plots
@@ -181,7 +181,7 @@ def plot_fraction(
181181 centr = None ,
182182 smooth = True ,
183183 axis = None ,
184- mask_distance = 0.01 ,
184+ mask_distance = 0.03 ,
185185 ** kwargs ,
186186 ):
187187 """Plot fraction values for a selected event or centroid.
@@ -208,8 +208,8 @@ def plot_fraction(
208208 mask_distance: float, optional
209209 Relative distance (with respect to maximal map extent in longitude or latitude) to data
210210 points above which plot should not display values. For instance, to only plot values
211- at the centroids, use mask_distance=0.01 . If None, the plot is not masked.
212- Default is None .
211+ at the centroids, use mask_distance=0.03 . If None, the plot is not masked.
212+ Default is 0.03 .
213213 kwargs: optional
214214 arguments for pcolormesh matplotlib function
215215 used in event plots or for plot function used in centroids plots
@@ -252,7 +252,7 @@ def _event_plot(
252252 axis = None ,
253253 figsize = (9 , 13 ),
254254 adapt_fontsize = True ,
255- mask_distance = 0.01 ,
255+ mask_distance = 0.03 ,
256256 ** kwargs ,
257257 ):
258258 """Plot an event of the input matrix.
@@ -277,8 +277,8 @@ def _event_plot(
277277 mask_distance: float, optional
278278 Only regions are plotted that are closer to any of the data points than this distance,
279279 relative to overall plot size. For instance, to only plot values
280- at the centroids, use mask_distance=0.01 . If None, the plot is not masked.
281- Default is None .
280+ at the centroids, use mask_distance=0.03 . If None, the plot is not masked.
281+ Default is 0.03 .
282282 kwargs: optional
283283 arguments for pcolormesh matplotlib function
284284
0 commit comments