Kyle Barron
Kyle Barron
The inverse of #1502. I think it should be possible to store all the kernel responses for inclusion in a Jupyter notebook file export.
### Prerequisites * [x] Have you checked the solutions in our [troubleshooting guide](https://nteract.gitbooks.io/hydrogen/docs/Troubleshooting.html) for common problems ? * [x] Have you checked that your issue [isn't already filed](https://github.com/nteract/hydrogen/issues) ? ###...
The link to "Table of Contents" points to a [forked version](https://github.com/ian-r-rose/jupyterlab-toc). It should point to the [official repo](https://github.com/jupyterlab/jupyterlab-toc) in the `jupyterlab` org.
Making a new issue to come back to what the Cython API should look like for best performance. I added a couple commits to show how the vectorized functions could...
I'd like to propose that h3 4.0 deprecate support for Python 2.7. h3 `3.x` will remain for users who need it, but 2.7 has been [EOL for over 2 years](https://endoflife.date/python)...
### Changes - Make this `_API_FUNCTIONS` class inherit from `Generic` to support its use as a [generic class](https://mypy.readthedocs.io/en/stable/generics.html#defining-generic-classes). This solves the typing problem without needing to keep track of type...
As I learned in #213 , h3 currently uses `flake8` for linting, requiring a max line length of 88 chars, but does not use an auto-formatting solution. This means that...
Occasionally it can be helpful to subclass the built-in `dict`. The [`geojson`](https://pypi.org/project/geojson/) package, for example, has a `Polygon` class that subclasses `dict` and provides helpers like validating that the contained...
[This file](https://github.com/bjornharrtell/flatgeobuf/blob/master/test/data/countries.fgb) has the following WKT CRS string: ``` > ogrinfo countries.fgb countries -so Layer SRS WKT: GEOGCRS["WGS 84", DATUM["World Geodetic System 1984", ELLIPSOID["WGS 84",6378137,298.257223563, LENGTHUNIT["metre",1]]], PRIMEM["Greenwich",0, ANGLEUNIT["degree",0.0174532925199433]], CS[ellipsoidal,2], AXIS["geodetic...
The Shapefile Loader's `parseInBatches` function currently emits batches that don't include metadata about progress. It looks like a `bytesUsed` key is necessary on each batch. The main impediment to this...