geodata.mask.reproject_raster
=============================

.. py:function:: geodata.mask.reproject_raster(src: rasterio.DatasetReader, src_crs: str, dst_crs: str = 'EPSG:4326', trim: bool = False, **kwargs) -> rasterio.DatasetReader

   Convert CRS of TIFF file from one to another. By default, we want to make the destination raster
   in lat/lon coordinate system. However, this can still be changed by specifying the dst_crs.

   :param src: The source raster
   :type src: ras.DatasetReader
   :param src_crs: The source CRS
   :type src_crs: str
   :param dst_crs: By default, we want to make the destination raster in lat/lon coordinate system.
                   However, this can still be changed by specifying the dst_crs.
   :type dst_crs: str
   :param trim: False by default. If True, we will trim the empty border to save space.
   :type trim: bool

   :returns: The reprojected raster.
   :rtype: ras.DatasetReader

