Modelling the topographic surface - PowerPoint PPT Presentation

1 / 34
About This Presentation
Title:

Modelling the topographic surface

Description:

Digital Terrain Modelling process (Weibel and Heller, 1991) ... Non-honouring of data points due to insufficiently fine grid chosen to reduce computing time ... – PowerPoint PPT presentation

Number of Views:48
Avg rating:3.0/5.0
Slides: 35
Provided by: Preins8
Category:

less

Transcript and Presenter's Notes

Title: Modelling the topographic surface


1
Modelling the topographic surface
2
Digital Terrain Modelling process (Weibel and
Heller, 1991)
  • 1. Generation sampling of original terrain data
    and model construction
  • 2. DTM manipulation modification and refinement
    of DTMs, derivation of intermediate models

3
Process (cont.)
  • 3. interpretation DTM analysis, information
    extraction from DTMs
  • 4. visualization graphical rendering of DTMs and
    derived information
  • 5. application development of appropriate
    application models for specific disciplines

4
Data structures for Digital Terrain Modelling
  • Grids
  • elevation matrix
  • simple data handling of matrices
  • modelling algorithms simple
  • may not reflect terrain complexity

5
TINs (Triangulated Irregular Networks)
  • triangular elements
  • vertices at sample points
  • reflect density of data points
  • topology recorded computed explicitly
  • more complex and difficult to handle

6
The TIN model
7
The TIN landscape
8
TIN model description
  • irregular points (specially selected)
  • points connected by lines form triangles
  • plane within each triangle
  • each triangle fits neighbour
  • continuous surface of triangular facets

9
TINs in Vector GIS
  • 3 vertices with height attributes
  • 3 edges with slope/direction attributes
  • polygons with slope, aspect and area attributes

10
Triangulating a TIN
  • points selected (vertices of triangle network)
  • fat 60 degree triangles preferable
  • all locations within triangle as close to
    vertices as possible

11
Delaunay Triangulation
  • Definition
  • Three points form a Delaunay triangle if, and
    only if, the circle which passes through them
    contains no other point

12
Delaunay Triangles
13
Creating Delaunay triangles
  • assign all locations to nearest vertex
  • boundaries form Thiessen polygons
  • two vertices connected if they share common edge
  • produced preferred fat triangles

14
Thiessen polygons and Delaunay triangles
15
Random to grid based terrain modelling methods
16
Interpolation
  • deriving value of a point with no known value
  • eg. contouring
  • computer based (procedures formalised)
  • additional factors may be added
  • minimise amount of data

17
Rationale
  • Tobler's Law of Geography
  • points close together in space are more likely
    to have similar values than points far apart

18
Extrapolation
  • Interpolation - between data points
  • Extrapolation - outside data points
  • Assumes trend of surface continues beyond limit
    of data values
  • Cannot extrapolate far beyond boundaries
  • Confidence level correlates with spacing of points

19
Interpolation methods
  • 1) Pointwise
  • interpolation of height at grid node from
    neighbouring measured points
  • 2) Global
  • single complex 3D surface through whole data set
  • grid nodes interpolated from surface
  • 3) Patchwise
  • 3D surfaces or patches established

20
1) Pointwise methods
  • Nearest neighbour search
  • Area search - define radius distance
  • Number of neighbours (no control over
    distribution)
  • Quadrant search
  • Octant search

21
Radius distance
22
Nearest neighbours
23
Quadrant search
24
Octant search
25
Comments
  • Sectored searches are rarely used - complicates
    programming
  • Limit extrapolation
  • Encourage practice of additional data points
    outside area to be mapped
  • Straight weighted distance preferred

26
Weighted distance
  • points closer to interpolation point should have
    more influence (Tobler)
  • assumes high degree of autocorrelation
  • if this cannot be assumed - isarithmic mapping is
    inappropriate

27
Variations
  • 1. Inverse of distance
  • 2. Inverse of square of distance (decreases
    weight of points further away)
  • Formula Swizi/Swi
  • Possible values where D is distance

28
Example
  • Interpolating a height point using W 1/D
  • POINT DISTANCE Z VALUE W WZ
  • 1 300 105 1/300 0.3499
  • 2 200 70 1/200 0.35
  • 3 100 55 1/100 0.55
  • Swi 0.0183 Swizi 1.2499
  • Substituting in formula 1.2499 0.0183
  • Z 68.1764 using 1/D
  • Z 62.85 using 1/D2
  • Z 57.96 using 1/D3

29
Comments
  • fast
  • simple to understand and control
  • tendency to produce bulls eye contours around
    data points

30
Inverse distance 1/D
31
Kriging
  • weighted distances applied as a constant
  • kriging enables variable weighting to be applied
  • weighting dependent on variation of height with
    distance
  • variance between points changes over space
  • expressed in a variogram

32
Deriving the variogram
  • divide range of distance into discrete intervals
    (e.g. 10 intervals between 0 and max. distance)
  • for every pair of points compute distance and
    difference in height
  • assign each pair to one of thedistance ranges
  • compute average variance in each distance range
  • plot this value at the midpoint distance of each
    range

33
Computing the estimates
  • variogram used to estimate distance weights
  • estimates are statistically unbiased
  • computationally intensive
  • visually appealing models
  • expresses trends in data
  • preserves high points as ridges rather than
    bulls eyes

34
Kriging
35
2. Global polynomial surface fit
  • fit entire area by polynomial expansion
  • derivative of time series analysis
  • ideally surface should pass through all original
    data points exactly
  • least squares fit used to gain best fit of
    polynomial to data points

36
Polynomial equations
  • a) Linear equation (first order)
  • z a bx cy
  • describe a tilted plane surface
  • b) Quadratic equation (second order)
  • z a bx cy dx2 exy fy2
  • describes a simple hill or valley
  • c) Cubic equation (third order)
  • z a bx cy dx2 exy fy2 gx3 hx2y
    ixy2 jy3

37
Disadvantages
  • 1. simplicity of polynomial surfaces
  • 2. accelerate upward or downward in areas of no
    control (edges of DTM)
  • 3. high order polynomials require high
    computation time on large data sets
  • 4. unpredictable oscillations may produce poor
    interpolation values at grid nodes

38
Application
  • Statistical surfaces
  • Geological applications

39
Patchwise methods
  • Local polynomial surface fit
  • local trend surfaces (patchwise method)
  • equal size patches
  • separate functions calculated for each patch
    (typically polynomial)

40
Advantages
  • low order terms can be used
  • derived points easily calculated

41
Disadvantages
  • needs more organisation of data and processing
  • subdivision needs to be carried out with care
  • poor distribution of data points near patch
    corners - affects computed parameters derived
    node values

42
Projection of surface dips
  • Method
  • Dip of surface at control point found by least
    squares fit of plane to surrounding control
    points
  • Dips are found for all control points
  • Dips are projected from control points to grid
    nodes and average calculated

43
Objections to grid based methods
  • McCullagh (1990)
  • Lack of flexibility responding to local
    variations in data density
  • Non-honouring of data points due to
    insufficiently fine grid chosen to reduce
    computing time
  • Difficulty in representing cliff and breakline
    information adequately on a continuous surface
Write a Comment
User Comments (0)
About PowerShow.com