Chapter - 2 - Geographic Information and Spatial Data Types
Chapter - 2 - Geographic Information and Spatial Data Types
By
June 2021
Geographic information and spatial data
types
❖ Contents
▪ Geographic phenomena def.
▪ Types of geographic phenomena
▪ Computer representation of geographic information
Introduction
❖ Digitizing
◼ The process of converting the geographic features on an
❖ Not all things come with triplex; e.g. legal document in a cadastral
system.
▪ Its position in space is considered irrelevant.
❖ If the description is missing it is not interesting in GIS.
❖ If time interval is missing it is usually assumed always there (infinite
time interval).
Geographic phenomena…cont.
❖ Continuous field
▪ Elevation of Falset, Spain.
Geographic fields…cont.
❖ Discrete field
▪ Geologic unit
❖Modeling
Raster representation
❖ Regular tessellation
❖ Quadtree
Irregular tessellation…cont.
❖ Vector data model provides for the precise positioning of feature in space.
❖ Vector representations could be done using:
▪Triangulated Irregular Network (TIN),
▪ Point,
▪ Line,
▪ Area.
❖ TIN can be used to represent any continuous field.
▪ TINs use a feature data model to represent surfaces.
▪ TIN is the standard implementation technique for DTM.
▪ TIN is built from a set of locations for which we have a measurement,
for instance an elevation.
▪ The locations can be arbitrarily scattered in space and are usually not
in a regular grid.
▪ Any location together with its elevation value can be viewed as a point
in 3D space.
TIN
❖ Since the nodes can be placed irregularly over the surface, the resolution
can be adjusted according to homogeneity and heterogeneity of the area.
TIN…cont.
❖ Line data are used to represent one dimensional object, such as roads,
railroad, canals, rivers and power lines.
❖ In some software line can be called arc or edge.
❖ The straight parts of a line b/n 2 consecutive vertices or end nodes
are called line segments.
❖ GISs store a line as a simple sequence of coordinates of its end nodes
and vertices (assuming all segments are straight).
❖ Collections of (connected) lines may represent
phenomena that are best viewed as net works.
Area representations
❖ Area objects are stored using a vector approach, the usual technique
is to apply a boundary model.
❖ Each area feature is represented by some arc/node structure that
determines a polygon as the area’s boundary.
❖ Areas are represented by their boundaries and each boundary is a
cyclic sequence of line features.
❖ But this is a huge data and difficult to make analysis.
Area representations…cont.
❖ Spaghetti model is very inefficient for most types of spatial analysis (since any
spatial r/ps must be derived by computation).
Topology
❖ The concept of topology arise from arc, which are a series of points
that start and end at a node.
❖ A node is an intersection point where two or more arcs meet.
❖ Isolated nodes, not connected to arcs, represent points.
❖ A polygon is comprised of a closed chain of arcs that represents the
boundaries of the area.
❖ To relate the map features to real world position, the XY coordinates
are needed and are stored in the arc coordinte Data Table.
❖ Each arc is represented by one or more straight line segments defined
by a series of coordinates.
Topology and spatial relationships…cont.
❖ If we have two region A & B, and if they have meet r/p, then in
mathematics:
❖ There are about 8 spatial r/ps: meets, disjoint, equals, inside, covered
by, contains, covers and overlap.
❖ These r/ps can be used in queries against a spatial database.
Topology of two dimensions…cont.
1. Intersection
2. Are within a distance of
3. Completely contain
4. Are completely within
5. Have their center in
6. Share a line segment with
7. Touch the boundary of
8. Are identical to
9. Are crossed by the outline of
10. Contain
11. Are contained by
Representations of geographic fields