-
GDAL offers building of [virtual raster datasets](https://gdal.org/programs/gdalbuildvrt.html), so does [rasterio](https://rasterio.readthedocs.io/en/latest/api/rasterio.vrt.html) and this gives us th…
-
In their current implementation, [unpack](https://github.com/dlr-eoc/ukis-pysat/blob/96196d955f28b96249b9b00e56c24321963f0a79/ukis_pysat/file.py#L21) and [pack](https://github.com/dlr-eoc/ukis-pysat/b…
-
[__update_dataset()](https://github.com/dlr-eoc/ukis-pysat/blob/b249ee8210ce43034889ef0452062d117513cc92/ukis_pysat/raster.py#L153) does not update dtype. The following is a simple example that shows …
-
We don't enforce closing of the dataset, and we're not even very clear about that you should do this in the documentation (even though we offer the possibility), nor do we close `img` when we're testi…
-
It appears that the manifest is missing at least one file necessary to build
from the sdist for version 0.2.0. You're in good company, about 5% of other
projects updated in the last year are also miss…
-
When trying to warp an image using Image().warp() I get the following error message:
```Traceback (most recent call last):
File "run_procs.py", line 119, in
num_threads=settings.general["num…
-
**Is your feature request related to a problem? Please describe.**
To use UKIS-pysat we always require GDAL and other heavy dependencies to be installed. That's not very handy for lightweight and sma…
-
It would be great to have an option to limit warping to a subset of the image in order to speed up computation. Currently, warping is always performed on the whole Image. An simple solution could be t…
-
It is possible to initialize an Image() object from an existing rasterio.dataset and an array as follows:
```python
img = Image(dataset=ds, array=arr, dimorder="first")
```
To work correctly this …
-
Currently [write_to_file() ](https://github.com/dlr-eoc/ukis-pysat/blob/9da685ab9d4644ddb0b7a7fc0c864fd96f642d98/ukis_pysat/raster.py#L360) takes width and height from the Image array but its band num…