Paul FLORENCE
Paul FLORENCE
When `django-geojson` switched the custom field from `jsonfield` to `django.db.models.JSONField` it broke migrations. `jsonfield` used to create a text column for your json data when running 'makemigrations'. However, `django.db.models.JSONField` creates...
Sur certaines distributions, il est nécessaire de passer le drapeau `-fno-stack-protector` à gcc, autrement l'édition des liens échouera : ``` tp0/../kernel/core/print.c:34: undefined reference to `__stack_chk_fail' ``` Plus d'info [sur cette...
Hello ! Do you think that using the [stm32f1](https://github.com/stm32-rs/stm32-rs/tree/master/stm32f1) crate would be a good idea for device access ? It would allow use to use a patched svd file for...
While [following the tutorial](https://django-vectortiles.readthedocs.io/en/latest/usage.html#simple-layer-tile-view), I got the following error when configuring the urls : ``` get_url() missing 1 required positional argument: 'self' ``` While skimming through the code, it seems...
### Zarr version v3.X ### Numcodecs version v0.15.1 ### Python Version 3.12 ### Operating System Linux ### Installation pip into venv ### Description When opening a zarr using s3fs, some...
[`BaseTileJsonVivew.__init__()`](https://github.com/submarcos/django-vectortiles/blob/master/vectortiles/mixins.py#L44) calls `get_min_zoom`, `get_max_zoom`, etc. which in turns calls `BaseVectorView.get_layers` and `BaseVectorView.get_layer_class_kwargs`. If you were to override `BaseVectorView.get_layer_class_kwargs` with an implementation that depends on Django *ergonomics* (`self.request`, `self.args`, `self.kwargs`, etc.),...
When opening an asynchronous S3FileSsytem, it seems that some aiohttp ressources are not cleaned properly. I can provide an example that uses xarray, fsspec, s3fs and zarr to create this...