tianshengs.github.io

Follow me on GitHub

Global Digital Elevation Models

The purpose of the project is to learn how to find and download elevation models for developing countries and how to derive a variety of terrain products from those models using SAGA. SAG is an open-source desktop GIS developed by German physical geographers and contains an excellent suite of raster analysis tools.

The goal is to get the channel network of the Mt. Kilimanjaro in northern Tanzania.

Data Collection

Either data can be used for the lab:

  • ASTER Global Digital Elevation Model, distribute by NASA EOSDIS Land Processes DAAC.
  • NASA Shuttle Radar Topography Mission Global 1 arc second. 2013, distributed by NASA EOSDIS Land Processes DAAC.

I have decided to use the SRTM Global Digital Elevation Model. The data is dowloaded from earth data.

Data Mosaicking and Projection to correct UTM zone

The Mt. Kilimanjaro region covers two tiles named by the lower left coordinates: S03E037 and S04E037.Therefore, we have to mosaic the two tiles and project the grid to the correct UTM zone. The tool used to mosaic the two grids is Mosaicking(Grid->Tools), and the tool used to project the grid to the correct UTM zone is UTM Projection(Grid)(Projection->Proj.4). Mosaic Mosaic_legend

Hillshade

Then we create a hillshade grid of the region by using the Analytical Hillshading Tool(Terrain Analysis->Lighting, Visibility) in SAGA.

hillshadehillshade_legend!

Sink Flow issue

In order to have a correct result, we have to detect sinks and determine flows through them, so that hydrological analysis doesn’t get stuck in either real holes or holes created by data errors. The Sink Drainage Route Detection(Terrain Analysis->Preprocessing) tool results in a grid with data on which direction water should flow when it encounters sinks.

sink_routesink_route_legend

To remove and fill sinks from the DEM, I run the Sink Removal(Terrain Analysis->Preprocessing) tool to get a new elevation model.

mosaic_no_sink mosaic_no_sink_legend

Flow accumulation

Then, I calculate the flow accumulation based on the new DEM file created using the Flow Accumulation(Top_Down)(Terrain Analysis->Hydrology).

flow_accumulationflow_accumulation_legend

Channel Network

Finally, using the tool Channel Network(Terrain Analysis->Channels), I get a raster and vector version of the streams and rivers of Mt. Kilimanjaro.

channel_network channel_network_legend

Final result on the hillshade

final_result final_result_legend

Back to Main Page