Dani Arribas-Bel
Dani Arribas-Bel
Perhaps related to https://github.com/geopandas/contextily/issues/95 ? The actual method is at: https://github.com/geopandas/contextily/blob/d821ac782764a0bad436b61eef9f83473fc3df6c/contextily/plotting.py#L259-L298
mmm... hard to tell without the underlying data. Is it possible at all that the `crs` differ between the two? My first instict would be to set `crs=world.crs` to be...
mmm... Would you be comfortable sharing a sample of your data? Or a synthetic version that replicates its characteristics? Happy to take a quick look. My sense is it has...
Depending on your application, something like [`geopandas.GeoDataFrame.explore()`](https://geopandas.org/en/stable/docs/reference/api/geopandas.GeoDataFrame.explore.html) might be a Python solution that provides what you want? Under the hood, it is using Leafmap, which is a javascript framework, but...
Ahhh I see. I'm not sure I have an answer for this, I'm sorry. This is not a use case we had in mind when developing `contextily` so it is...
Maybe we can see what’s required for the constructors and retrofit it either with a makeshift sindex or feeding it upstream. I’m not sure how it’d interplay with the overlapping...
Update, as of #28 `folium` users and those of any other library that takes URLs can use `xyzservices` manually. For example: ```python import folium import xyzservices.providers as xyz tiles =...
Good catch! Yes, I think this would have to be caught and processed on `write_package_intro`: https://github.com/pysal/notebooks/blob/master/lib/build.py#L216 Maybe that method should also include a check for `.png` in the text and,...
Yes, it might be worth sorting out those standards first and then pulling them into the notebooks project?
yeah I could add that script run on the build process. Do you have any pointers on where to find it/how to run it? More generally, shouldn't notebooks be Python-3...