Alignment

During this step Cordinate Reference System and No Data value of all input rasters are aligned.

Alignment step

Usage

With command line utility

marare align \
    -i input_directory \
    -o output_directory \
    -c 'EPSG:4326' \
    -n -9999 \
    --exclude subdir1 subdir2

As python library (for more information please refer to API page):

from marare import alignment
alignment(
    input_dir,
    output_dir,
    excluded,
    concurrent_processes,
    crs,
    no_value,
)