geodata.mask.save_raster
========================

.. py:function:: geodata.mask.save_raster(arr: numpy.ndarray, transform: rasterio.Affine, path: str)

   Given an array and an Affine transform, save the raster as tif file to the specified path.
   https://rasterio.readthedocs.io/en/latest/topics/writing.html

   **Note**: Arguments `arr` and `transform` input can be the output
   for `ras.merge.merge` and `ras.mask.mask`.

   :param arr: An array with values of the raster.
   :type arr: ArrayLike
   :param transform: Affine transform information for that layer.
   :type transform: rasterio.Affine
   :param path: the path to where the tif file is saved.
   :type path: str

