@@ -382,7 +382,7 @@ def plot_skyplot(navdata, receiver_state, save=False, prefix="",
382382 np .atleast_1d (sv_subset ["el_sv_deg" ])[- 1 ] \
383383 + el_offset ,
384384 str (int (sv_name )),
385- backgroundcolor = ( 1. , 1. , 1. , 0.2 ) )
385+ )
386386
387387 # updated axes for skyplot graph specifics
388388 axes .set_theta_zero_location ('N' )
@@ -707,7 +707,6 @@ def _save_figure(figures, titles=None, prefix="", fnames=None): # pragma: no cov
707707 title = titles [fig_idx ]
708708 title = title .replace (" " ,"_" )
709709 title = title .replace ("." ,"" )
710- title = title .replace ("vs" ,"" )
711710
712711 if prefix != "" and not prefix .endswith ('_' ):
713712 prefix += "_"
@@ -894,7 +893,6 @@ def _save_plotly(figures, titles=None, prefix="", fnames=None,
894893 title = titles [fig_idx ]
895894 title = title .replace (" " ,"_" )
896895 title = title .replace ("." ,"" )
897- title = title .replace ("vs" ,"" )
898896
899897 if prefix != "" and not prefix .endswith ('_' ):
900898 prefix += "_"
@@ -911,6 +909,6 @@ def _save_plotly(figures, titles=None, prefix="", fnames=None,
911909 break
912910 except ValueError as error :
913911 figure .layout .mapbox .zoom -= 1
914- if figure .layout .mapbox .zoom <= 1 :
912+ if figure .layout .mapbox .zoom < 1 :
915913 print (error )
916914 break
0 commit comments