Skip to content

Commit 0aefb2c

Browse files
committed
swap stamen for carto
1 parent a67b45f commit 0aefb2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

geosnap/visualize/mapping.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def plot_timeseries(
154154
the desired size of the matplotlib figure
155155
ctxmap : contextily map provider, optional
156156
contextily basemap. Set to False for no basemap.
157-
Default is Stamen.TonerLite
157+
Default is CartoDB.Positron
158158
alpha : int (optional)
159159
Transparency parameter passed to matplotlib
160160
web_mercator : bool, optional
@@ -176,7 +176,7 @@ def plot_timeseries(
176176
# as it influences all figures when imported at the top of the file
177177

178178
if ctxmap == "default":
179-
ctxmap = ctx.providers.Stamen.TonerLite
179+
ctxmap = ctx.providers.CartoDB.Positron
180180
if categorical: # there's no pooled classification for categorical
181181
pooled = False
182182

@@ -350,7 +350,7 @@ def animate_timeseries(
350350
plot_kwargs = dict()
351351

352352
if ctxmap == "default":
353-
ctxmap = ctx.providers.Stamen.TonerLite
353+
ctxmap = ctx.providers.CartoDB.Positron
354354

355355
if color_col is not None and categorical is True:
356356
raise ValueError("When passing a color column, use `categorical=False`")

0 commit comments

Comments
 (0)