Exercise: A spatial model of a catchment

From OSGeo
Revision as of 10:10, 28 May 2006 by Wiki-Ajolma (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note 1: this exercise is designed to be used with libral and Gtk2::Ex::Geo tools. Note 2: the tools have to be currently the CVS versions

Required data: a land cover raster and a DEM

["http://map.hut.fi/PerlForGeoinformatics/", More information about the tools]

Steps of the exercise:

  1. open land cover raster
  1. zoom to probable catchment area (rather too large than too small!)
  1. clip a piece of the land cover, name it "lc" (*)
  1. make a 'lakes' raster by saying $lakes = $lc == 43 (or whatever the land cover code for water is) [TODO: add instructions for removing streams from the lakes raster]
  1. give unique id's for all lakes: $lakes->number_areas
  1. open a DEM raster
  1. clip a similar piece(***) of the dem, name it 'dem'
  1. compute pitless flow direction grid: say(**) $fdg = $dem->filldepressions (*4)
  1. fix the FDG so that each lake has one and only one outlet, say: $fdg->kill_extra_outlets($lakes)
  1. compute upslope area grid, say: $uag = $fdg->uag
  1. search for the catchment (lake) outlet cell and compute a catchment raster: $c = $fdg->catchment(<coordinates>)
  1. compute a streams raster from the $uag: $s = $uag > x
  1. remove very short streams: $s->prune($fdg, $lakes, <coordinates>, $l)
  1. give unique id's for each stream segment: $s->number_streams($fdg, <coordinates>);
  1. compute a subcatchments raster and topology information: ($sc, $topo) = $s->subcatchments($fdg, $lakes, <coordinates>)
  1. save the subcatchment structure as an OGR vector layer: $sc->save_catchment_structure($topo, $s, $lakes, $ogr_datasource, $layer)

footnotes:

(*) the clipped piece is automatically a plain libral raster, it may (and should) be saved by saying(**) $lc-save('lc'); later the saved raster may be opened in the usual way, but it needs to be "librated" by clipping to <self>

(**) "say", means write to the combo box, i.e. the command line interface

(***) in the clip dialog, select a raster to make a raster that is overlayable to it

(*4) this can be checked by saying: p($self,$fdg->contents), which computes the contents (number of cells having different values) and prints it