Ryan Grout
Ryan Grout
@sgillies If a bounding box is always ordered as two pairs of coordinate points, describing the lower left and upper right corners, is that "lower left" in the Cartesian plane...
Are bounding boxes supposed to accommodate rotations? What is stopping rasterio from making bounding box semantics unambiguous?
> @groutr I prefer the second approach. A simple sorting should be fine. > > Instead of sorting inside sample_gen, what would you think about making a separate sorter? Then...
@sgillies Checking `isinstance(x, Iterable)` is equivalent to checking for `__iter__` (https://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable) In this PR, if scalar arguments are passed, I wrap them in an iterable container before applying the transformation....
In-memory merge method (master) (15s):  Tiled merge (48s):  While the runtime of the tiled merge does seem to be significantly slower, a quick glance at a profile reveals...
TODO: handle resolution changes. The code as it stands now, only works if everything is at the same resolution.
@sgillies Can I get your feedback? Is this the proper direction to expand merge? There are two things happening here: 1. Tiled merge functionality. Some preliminary testing shows that by...
@sgillies I was experimenting with some more ideas last night. I'm also not a huge fan of the analogous functions (mostly there for easy benchmarking against the existing functions). I...
I'll work on creating numpy based transform functions to coexist with the existing functions.
Any news on this feature?