We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc02f62 commit 8e809f5Copy full SHA for 8e809f5
src/spatialdata_plot/pl/render.py
@@ -138,10 +138,8 @@ def _render_shapes(
138
139
shapes = gpd.GeoDataFrame(shapes, geometry="geometry")
140
141
- # Determine which method to use for rendering. Default is matplotlib for under 100 shapes and datashader for more
142
- # User can also specify the method to use
+ # Determine which method to use for rendering
143
method = render_params.method
144
-
145
if method is None:
146
method = "datashader" if len(shapes) > 100 else "matplotlib"
147
elif method not in ["matplotlib", "datashader"]:
0 commit comments