sgrieve / concavity

Workflow to process SRTM data into chunks for LSDTopoTools
MIT License
2 stars 3 forks source link

Parameter choices #12

Closed sgrieve closed 6 years ago

sgrieve commented 7 years ago
  1. What threshold area do we use for the channel extraction?
  2. Below what threshold area do we want to exclude climate zones from analysis?
  3. Do we only want the longest river in each basin?
  4. Do we want to exclude rivers that cross boundaries?
sgrieve commented 7 years ago

Answers:

  1. Range of between 100-300 pixels has been suggested (the larger the number the faster the code will run)
  2. Still undecided, will depend on analysis of sliver polygon areas
  3. Yes, but may preserve the other data for future analysis.
  4. Yes, exclude rivers that cross climate zones. This is equivalent to excluding rivers which are within truncated basins.
sgrieve commented 7 years ago

Starting to think about the removal of small areas. There are a lot of small islands on the koppen dataset as well as some very small areas inland.

In order to get big rivers and sensible results, we need to remove small patches so that we don't try to extract a river where there is not enough data. As we will be setting an area threshold of ~300 pixels (an area of ~0.3 km^2) we will need our minimum area to be significantly larger than this, so that we can capture several first order drainages per climate zone sub polygon. As a first pass at this threshold I have selected an area of 1000 Km^2, which corresponds to a square area of 1000x1000 pixels, which is generally a reasonable size of DEM to load into LSD and get sane results out.

sgrieve commented 7 years ago

For question 4, there is a parameter in the driver file test_drainage_boundaries which should remove basins that intersect edges.

sgrieve commented 6 years ago

The final 2 parameters which need to be finalised are the minimum basin area and threshold contributing area. Both are reported in pixels. The key is to balance minimum basin size with spatial abundance of measurements, particularly for areas with fragmented climate sub zones.

I will send an email to collaborators soon to finalise their values.

sgrieve commented 6 years ago

Email sent to discuss parameter choices.

sgrieve commented 6 years ago

Final parameters chosen:

threshold_contributing_pixels: 25000
minimum_basin_size_pixels: 50000