Go to file
Gael-de-Sailly 67a53e1224 Added option -w to draw rivers as line width 2018-01-13 14:43:52 +01:00
LICENSE Added license 2018-01-08 16:21:49 +01:00
README.md Updated README 2018-01-06 22:27:35 +01:00
rivermapper.py Added option -w to draw rivers as line width 2018-01-13 14:43:52 +01:00

README.md

River Mapper

Python script to transform a Digital Elevation Model (DEM) image into a map of rivers. You need Python 3 with numpy and imageio.

Script execution: rivermapper.py input_image.tif output_image.tif [-l sea_level] [-s random_seed] [-c contrast] [-d output_bit_depth] or: rivermapper.py -i input_image.tif -o output_image.tif [-l sea_level] [-s random_seed] [-c contrast] [-d output_bit_depth]

Used RAM: around 10 Mo per milion pixels (400 Mo for a 6001x6001 SRTM image) Time taken: it can take several minutes. The same SRTM image takes arount 20 minutes. Please be patient.

It should support most of image types (PNG, TIFF, JPG, BMP, ...) and bit depths (8, 16, 32, 64).

Behaviour:

  • It creates river systems from start points (pixels near the sea, or on the edge of the map), by analysing the slope to find in which direction the water will flow, on every pixel. Rivers are the points that receive the water from numerous pixels (usually some thousands, or even millions).
  • It supports basins. There are generally not naturals, but still exist in most of the DEM, because of approximative data. It find the simplest way to get the river escape the basin.
  • It can't determine rivers positions on too flat areas, because we need some slope to know where the water flows. In this case, rivers are set randomly.
  • We obviously can't know how much water comes from outside of the map. So, the rivers that are on the edge of the map may have a smaller value than in the reality. There is not this problem for an island.

An example with the Corsica island:

The original image in zip file: corsica.zip

Enhanced DEM to show the mountains and the valleys: corsica_enhanced Rivers map built with RiverMapper: corsica_rivers