Ingest and Tiling
Processing large satellite imagery requires efficient tiling strategies.
Tiling Strategy
We use overlap-tile processing to avoid edge effects.
from ununennium.tiling import SlidingWindowTiler
tiler = SlidingWindowTiler(
tensor_shape=(10000, 10000),
tile_size=512,
overlap=64
)
for window in tiler:
# window is ((row_start, row_end), (col_start, col_end))
patch = read_window(path, window)