mapchete
mapchete copied to clipboard
Tile-based geodata processing using rasterio & Fiona
When specified in `metadata.json` the blockxsize is a string and in **Line 467** in `gtiff.py` it needs integer...so just add `int(profileblockxsize)` and be done with it > Traceback (most recent...
Updates the requirements on [rasterio](https://github.com/rasterio/rasterio) to permit the latest version. Release notes Sourced from rasterio's releases. 1.3.0 Rasterio 1.3.0 has new features, deprecations, and many bug fixes. It supports Python...
``` mapchete/test/test_formats_geobuf.py:2: in import geobuf as gb /usr/local/lib/python3.8/site-packages/geobuf/__init__.py:1: in from .encode import Encoder /usr/local/lib/python3.8/site-packages/geobuf/encode.py:9: in from . import geobuf_pb2 /usr/local/lib/python3.8/site-packages/geobuf/geobuf_pb2.py:33: in _descriptor.EnumValueDescriptor( /usr/local/lib/python3.8/site-packages/google/protobuf/descriptor.py:755: in __new__ _message.Message._CheckCalledFromGeneratedFile() E TypeError: Descriptors cannot...
Updates the requirements on [shapely](https://github.com/shapely/shapely) to permit the latest version. Changelog Sourced from shapely's changelog. 1.8.1.post1 (2022-02-17) This post-release addresses a defect in the 1.8.1 source distribution. No .c files...
e.g. in cases where for one test a different metatiling setting is desired thatn for another test. Now, this can only be achieved by duplicating the .mapchete file in the...
Hi, @ungarj , I'd like to report a vulnerability issue in **mapchete_2022.4.0**. ### Issue Description I noticed that **mapchete_2022.4.0** directly depends on **rasterio_1.2.10**. However, **rasterio_1.2.10** sufferes from the vulnerabilites which...
related to #199 and #213 use case: output is a single GTiff with exactly the same pixel size and extent than a defined input raster.
collect multiple tasks into larger tasks in order not to overwhelm the scheduler: * [ ] tile batches, no overviews (`concurrent.futures`, `dask`) no dependencies * [ ] tile batches, with...
When running `mapchete execute foo.mapchete --vrt` will always trigger global index creation. It should use the same bounding box which was used during process execution.