This tool can be used rasterize an input vector stream network (streams
) using on Lindsay (2016) method. The user inputs an existing raster (base_raster
), from which the output raster's grid resolution is determined.
Lindsay JB. 2016. The practice of DEM stream burning revisited. Earth Surface Processes and Landforms, 41(5): 658–668. DOI: 10.1002/esp.3888
def rasterize_streams(self, streams: Vector, base_raster: Raster = None, zero_background: bool = False, use_feature_id: bool = False) -> Raster: ...