cars.data_structures.corresponding_tiles_tools

Contains functions for array reconstructions and crop for multiple tiles

Functions

reconstruct_data(tiles, window, overlap)

Combine list of tiles (window, overlap, xr.Dataset) as

Module Contents

cars.data_structures.corresponding_tiles_tools.reconstruct_data(tiles, window, overlap)[source]

Combine list of tiles (window, overlap, xr.Dataset) as one full dataset

Parameters:
  • tiles (list(tuple)) – list of tiles

  • window (list) – window of base tile [row min, row max, col min col max]

  • overlap (list) – overlap of base tile [row min, row max, col min col max]

Returns:

full dataset, row min of combined, col min of combined

Return type:

xr.Dataset, int, int