Lecture17 18 Unlocked
Lecture17 18 Unlocked
Lecture17 18 Unlocked
Systems:
Terrain modeling and TIN
Contour lines: lines of equal elevation, drawn at a given interval (e.g. every 6 or 25
feet)
The general term digital terrain model (DTM) may be used to refer to any of the
above surface representations when in digital form.
DEM sometimes used synonymously with DTM—don’t.
Source:Briggs GISC 6382 UT-Dallas
Aster DEM
http://www.madmappers.com/msdetails/AsterDEM.htm
DSM sources
http://www.satimagingcorp.com/galleryimages/ikonos-high-
resolution-dem-eritrea.jpg
LiDAR 10cm– 10m(Mt.St. Helens)
http://www.nasa.gov/centers/goddard/images/content/67409main_dh2.gif
Photogrammetry: Tatras, Slovakia2m
Photogrammetry: Tatras, Slovakia2m
Anaglyph- Malaspina
Application - Flood Risk
1 2 3
4 5 6
7 8 9
Typical Slope Calculation
The values of the center cell and its eight
neighbors determine the horizontal and vertical
deltas. The neighbors are identified as letters
from a to i, with e representing the cell for which
the aspect is being calculated.
Taking the rate of change in both the x and y direction for cell
e, aspect is calculated using:
if aspect < 0
cell = 90.0 - aspect
else if aspect > 90.0
cell = 360.0 - aspect + 90.0
else
cell = 90.0 - aspect
Aspect Calculation: Example
The rate of change in the x direction for the center
cell e is:
Image Source: Chrisman, Nicholas.(2002). 2nd Ed. Exploring Geographic Information Systems. p 198. fig. 8-14 .
Polyhedral terrain models
- They can be used for any type of sampled pointset (regularly and
irregularly distributed)
- They can adapt to the irregularity of terrains
- They represent continuous surfaces
Triangulated Irregular Networks
The most commonly used polyhedral terrain models are
Triangulated Irregular Networks (TINs), where each polygon of the
domain partition is a triangle
TINs
t P
❑ The triangles are as equi-angular as possible, thus reducing potential numerical precision
problems created by long skinny triangles
❑ Ensures that any point on the surface is as close as possible to a node
❑ The triangulation is independent of the order the points are processed
Delaunay Triangulations
TIN
❑ By using triangles we ensure that each piece of the
mosaic surface will fit with its neighboring pieces - the
surface will be continuous - as each triangle's surface
would be defined by the elevations of the three corner
points
❑ But there will be sharp changes of slope at triangle
edges
❑ other possibilities exist, especially useful in finite
element modeling, involving curved surfaces and
quadrilaterals, that ensure no sharp changes of slope
TIN
❑ For vector GISs, TINs can be seen as polygons having
attributes of slope, aspect, and area,
❑ with three vertices having elevation attributes and three
edges with slope and direction attributes
❑ The TIN model is attractive because of its simplicity
and economy
TIN
❑ Certain types of terrain are very
effectively divided into triangles with
plane facets
TIN
❑ Contours are a common source of digital elevation
data. In general all the vertices of the contour lines
are used as mass points for triangulation. In many
cases this will cause the presence of flat triangles in
the surface.
TIN
TIN
TIN
TIN
Break lines
TIN
❑ Creating a TIN model requires many choices:
❑ how to pick sample points
❑ In many cases these must be selected from some
existing, dense DEM or digitized contours
❑ Normally, a TIN of 100 points will do as well as a
DEM of several hundred at representing a surface
TIN
❑ How to connect points into triangles
❑ How to model the surface within each triangle
VIP ALGORITHM
Average the four distances to obtain a measure of
"significance" for the point
Delete points from the DEM in order of increasing
significance, deleting the least significant first
This continues until one of two conditions is met:
The number of points reaches a predetermined
limit
The significance reaches a predetermined limit
VIP ALGORITHM
Triangulation Calculation
Dataset V
Watson: process
RP
P
RP
P
Advantages/disadvantages
DEMs:
accept data direct from digital altitude matrices
must be resampled if irregular data used
may miss complex topographic features
may include redundant data in low relief areas
less complex and CPU intensive
TINs:
accept randomly sampled data without resampling
accept linear features such as contours and breaklines (ridges
and troughs)
accept point features (spot heights and peaks)
vary density of sample points according to terrain complexity
‘Much of the life of the mind consists in applying concepts to things’
(Fodor 1998:24)