Kirill Kouzoubov

Results 215 comments of Kirill Kouzoubov

but that's the point, it won't be aligned with the original data. It's simply not possible in the general case when there are more than one dataset, or more than...

also you should remove "storage" section from you product spec.

> For storage, why should I remove it? Just in this case since I'll use like=GeoBox or in general? @clausmichele In general, this definition is incomplete, it's missing `tile_size`, so...

@clausmichele for a coordinate of a pixel EDGE `x`, resolution `r` and alignment argument `a`, we have the following - `0

@karina-marques thanks for the report. Real issue here is that `test_3d.py` does not include import guards even though it relies on optional dependency, also dev setup documentation is lacking. Sample...

Hm, actually guards are present in `test_3d.py`, so some of the imports in `test_utils_dask.py` have optional dependency requirement that is not being checked. Ideally we should run tests on some...

@karina-marques can you please try adding the following dependencies to your environment: ``` mamba install -n odc_env -c conda-forge pytest pytest-httpserver pytest-timeout pytest-cov moto ``` Also can you point me...

@lucapaganotti conda based environments assume that postgres is using `/tmp/` folder for `unix:` file connections to the database. On ubuntu postgres is using `/var/run/postgres/` folder instead, when installing from `pip`...

> What does a nodata value on a floating point variable even mean? same as for an `int`: bit pattern reserved to mean absence of valid observation, just cause `float32`...

The real value is probably: `-340282346638528859811704183484516925440` which is `numpy.finfo(numpy.float32).min`, but it lost precision when converting to string via scientific notation. > Our validator is correctly failing the product --- should...