David Brochart

Results 463 comments of David Brochart

Thanks @djhoese, I'll checkout pyresample.

Nice! You think we can steal that code? :smile:

Yes, but I guess it's a question of definition of the bounding box. In `pad_box`, do we expect a box that is relative to the "pixel boundaries" or the pixel...

I don't know, but it has to be consistent with `clip_box`. It looks like `clip_box` expects a box relative to the "pixel centers" (it extends it with a half-pixel to...

I'm not sure, it would be kind of a hack. I think the current behavior is OK, we might just have to document it a bit more.

I was trying to do something similar, with the polygons of all cities in the world, and I would expect to get a count of cities in each cell, but...

Fixed by passing `all_touched=True`: ```py rasterize_function=partial(rasterize_image, merge_alg=MergeAlg.add, all_touched=True) ```

It might be solved at the kernel level. For instance, [akernel](https://github.com/davidbrochart/akernel) is an asynchronous kernel that allows to process messages from the shell channel while a cell is running, provided...

> The usecase here is to explore the data while it is being processed. One of the solutions proposed in the issue above is to move the `process_array` in a...

For the observer pattern, could something like https://github.com/davidbrochart/pyceptive work?