Re: rasterio.windows.transform seems to not scale my windows correctly, am I using it wrong?
Sean Gillies
Hi Ryan, I've been on vacation, just now getting the time to answer questions. Answers below. On Wed, Aug 21, 2019 at 3:13 PM Ryan Avery <ravery@...> wrote: I have a landsat band that I have windowed so that I now have about 200 512x512 windows in a list called chip_list_full. I have plotted these on top of my aoi to confirm that the windowing worked and found that it did not work as expected following this stack overflow example code where I computed a transform for each window using the original dataset transform. the result is that windows are spatially, diagonally offset from the upper left corner of the original image window_bbox = coords.BoundingBox(*windows.bounds(chip[0], custom_window_transform)) The second argument of the windows.bounds function (see https://rasterio.readthedocs.io/en/latest/api/rasterio.windows.html#rasterio.windows.bounds) must be the affine transformation for the "dataset" on which we're applying the given window, not any other affine transformation. I really must explain this better in the docs, sorry about that. -- Sean Gillies
|
|