Juan Luis Cano Rodríguez
Juan Luis Cano Rodríguez
As part of the SciPy US 2020 sprints, after not touching [our asv benchmarks](https://github.com/poliastro/benchmarks/pull/18) for a while, @samtx [tried to update them](https://github.com/poliastro/benchmarks/pull/18) and found that the discovery step tries to...
When @ericholscher and @humitos discussed this privately in April 2020, this was @humitos opinion: > it does not enable `:ref:` by default because I think it's too aggresive However, after...
The first polygon does not cross the antimeridian, the second does:  This might be an intrinsic limitation of the projection, but anyway we can do better than...
The Matrix ⇄ Slack bridge is suboptimal: - edits not being reflected on Slack - deleted messages not being deleted on Slack - Slack usernames appearing as IDs on Matrix...
At the moment, default plotting is using a simple Folium map which has bad performance, and more complex `.plot` using ipyleaflet is still limiting the maximum number of features: https://github.com/satellogic/telluric/blob/master/telluric/collections.py#L179-L183...
``` $ pytest -k polygonize_line_square_cap_style ========================================================= test session starts ========================================================== platform linux -- Python 3.7.5, pytest-5.3.4, py-1.8.1, pluggy-0.13.1 -- /home/juanlu/.pyenv/versions/3.7.5/envs/telluric37/bin/python3.7 cachedir: .pytest_cache rootdir: /home/juanlu/Development/telluric/telluric, inifile: setup.cfg plugins: cov-2.8.1 collected 1219...
This code: ``` import telluric as tl rs2 = tl.GeoRaster2.open("../tests/data/raster/overlap2.tif", lazy_load=False) rs2.get_tile(4377, 3038, 13) ``` produces this image in the notebook:  This is what @guydou said about it...
When one displays a point in telluric, the zoom level is maximum and the tiles are not shown. We should choose a sensible zoom value.
### Expected behavior and actual behavior When doing `GeoVector.buffer` the user would expect for proper geodesic buffering to happen, as described in this article: https://www.esri.com/news/arcuser/0111/geodesic.html  Instead, the wrong result...