Applied Cartography and Introduction to GIS GEOG 2017 EL

42
Applied Cartography and Introduction to GIS GEOG 2017 EL Lecture-2 Chapters 3 and 4

description

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-2 Chapters 3 and 4. Vector Data Modeling. To prepare spatial data for computer processing: Use x , y coordinates to represent spatial features as points, lines, and areas. - PowerPoint PPT Presentation

Transcript of Applied Cartography and Introduction to GIS GEOG 2017 EL

Page 1: Applied Cartography and Introduction to GIS GEOG 2017 EL

Applied Cartography and Introduction to GIS

GEOG 2017 EL

Lecture-2Chapters 3 and 4

Page 2: Applied Cartography and Introduction to GIS GEOG 2017 EL

Vector Data Modeling

• To prepare spatial data for computer processing:– Use x,y coordinates to represent spatial

features as points, lines, and areas.

– Organize geometric objects and their spatial relationships into digital data files that the computer can access, interpret, and process.

Page 3: Applied Cartography and Introduction to GIS GEOG 2017 EL

A subway map of Taipei, Taiwan.

Page 4: Applied Cartography and Introduction to GIS GEOG 2017 EL

Topology

• We use topology to study arrangement of geometric objects and relationship between them.

• Topology can therefore be used for geocoding and referencing.

• TIGER: Topologically Integrated Geographic Encoding and Referencing.– An early application of Topology

Page 5: Applied Cartography and Introduction to GIS GEOG 2017 EL

Digraph

Page 6: Applied Cartography and Introduction to GIS GEOG 2017 EL

Georelational Data Model

• Topology can be used to develop georelational data models.

• In such a model:– geometries are stored in graphic files and– Attributes are stored in a relational database

Page 7: Applied Cartography and Introduction to GIS GEOG 2017 EL

Georelational Data in ArcInfo

An ArcInfo coverage has two components: graphic files for spatial data and INFO files for attribute data. The label connects the two components.

Page 8: Applied Cartography and Introduction to GIS GEOG 2017 EL

The Coverage

The coverage supports three basic topological relationships.

• Connectivity: Arcs connect to each other at nodes.

• Area definition: An area is defined by a series of connected arcs.

• Contiguity: Arcs have directions and left and right polygons.

Page 9: Applied Cartography and Introduction to GIS GEOG 2017 EL

Point Coverage

Page 10: Applied Cartography and Introduction to GIS GEOG 2017 EL

Line Coverage

Page 11: Applied Cartography and Introduction to GIS GEOG 2017 EL

Polygon Coverage

Page 12: Applied Cartography and Introduction to GIS GEOG 2017 EL

Shapefile• The shapefile is a standard, non-topological data

format used in ESRI products.

• Although the shapefile treats a point as a pair of x-, y-coordinates, a line as a series of points, and a polygon as a series of line segments, no files describe the spatial relationships between these geometric objects.

• Shapefiles can be read by other GIS software as well, such as MapInfo.

• In general, a non-topological format is faster for the computer to process and display.

Page 13: Applied Cartography and Introduction to GIS GEOG 2017 EL

Object-Based Data Model

• The object-based data model treats spatial data as objects. It differs from the georelational data model in two important aspects. – The object-based data model stores both the

spatial and attribute data of spatial features in a single system.

– The object-based data model allows a spatial feature (object) to be associated with a set of properties and methods.

Page 14: Applied Cartography and Introduction to GIS GEOG 2017 EL

Object-Based Model

Page 15: Applied Cartography and Introduction to GIS GEOG 2017 EL

Geodatabase

• The geodatabase is part of ArcObjects, a collection of thousands of objects, properties, and methods that provides the foundation for ArcGIS Desktop.

• The geodatabase organizes vector data sets into feature classes and feature datasets

• A feature class stores spatial data of the same geometry type.

• A feature dataset stores feature classes that share the same coordinate system and area extent.

Page 16: Applied Cartography and Introduction to GIS GEOG 2017 EL

Geodatabase Structure

Page 17: Applied Cartography and Introduction to GIS GEOG 2017 EL

Advantages of Geodatabase• The hierarchical structure of a geodatabase is useful for data

organization and management.

• The geodatabase, which is part of ArcObjects, can take advantage of object-oriented technology.

• The geodatabase offers on-the-fly topology, applicable to features within a feature class or between two or more participating feature classes.

• Thousands of objects, properties, and methods in ArcObjects are available for GIS users to develop customized applications.

• ArcObjects provides a template for custom objects to be developed for different industries and applications.

Page 18: Applied Cartography and Introduction to GIS GEOG 2017 EL

Topology Rules

• The geodatabase defines topology as relationship rules and lets the user choose the rules, if any, to be implemented in a feature dataset.

• The geodatabase offers 25 topology rules by feature type.

Page 19: Applied Cartography and Introduction to GIS GEOG 2017 EL

Topology Rules

Feature Type

Rule

Polygon must not overlap, must not have gaps, must not overlap with, must be covered by feature class of, must cover each other, must be covered by, boundary must be covered by, area boundary must be covered by boundary of, and contains point

Line must not overlap, must not intersect, must not have dangles, must not have pseudo-nodes, must not intersect or touch interior, must not overlap with, must be covered by feature class of, must be covered by boundary of, endpoint must be covered by, must not self overlap, must not self intersect, and must be single part

Point must be covered by boundary of, must be properly inside polygons, must be covered by endpoint of, and must be covered by line

Page 20: Applied Cartography and Introduction to GIS GEOG 2017 EL

Composite Features

• Composite features refer to those spatial features that are better represented as composites of points, lines, and polygons.

• Composite features include TINs (triangulated irregular networks), regions, and routes.

Page 21: Applied Cartography and Introduction to GIS GEOG 2017 EL

TINA TIN approximates the terrain with a set of non-overlapping triangles.

Page 22: Applied Cartography and Introduction to GIS GEOG 2017 EL

TIN Data Structure

Page 23: Applied Cartography and Introduction to GIS GEOG 2017 EL

Regions

• A region is a geographic area with similar characteristics.

• A data model for regions must be able to handle two spatial characteristics: A region may have spatially joint or disjoint areas, and regions can overlap or cover the same area.

Page 24: Applied Cartography and Introduction to GIS GEOG 2017 EL

Regions - Overlapping

Page 25: Applied Cartography and Introduction to GIS GEOG 2017 EL

Region – Data Structure

Page 26: Applied Cartography and Introduction to GIS GEOG 2017 EL

Routes

A route is a linear feature such as a highway, a bike path, or a stream but, unlike other linear features, a route has a measurement system that allows linear measures to be used on a projected coordinate system.

Page 27: Applied Cartography and Introduction to GIS GEOG 2017 EL

Route – Data Structure

Page 28: Applied Cartography and Introduction to GIS GEOG 2017 EL

Raster Data Model

• A raster represents a continuous surface, but for data storage and analysis, a raster is divided into rows, columns, and cells.

• Raster data represent points by single cells, lines by sequences of neighboring cells, and areas by collections of contiguous cells.

Page 29: Applied Cartography and Introduction to GIS GEOG 2017 EL

Raster and Vector

Page 30: Applied Cartography and Introduction to GIS GEOG 2017 EL

Elements of Raster Data Model1. Cell value. Each cell in a raster carries a value, which represents

the characteristic of a spatial phenomenon at the location denoted by its row and column. The cell value can be integer or floating-point.

2. Cell size. The cell size determines the resolution of the raster data model.

3. Raster bands. A raster may have a single band or multiple bands.

4. Spatial reference. Raster data must have the spatial reference information so that they can align spatially with other data sets in a GIS.

Page 31: Applied Cartography and Introduction to GIS GEOG 2017 EL

Digital Elevation Model

Page 32: Applied Cartography and Introduction to GIS GEOG 2017 EL

Types of Raster Data

1.Satellite Imagery2.Digital Elevation Models (DEMs)3.Digital Orthophotos (DOQ)4.Land Cover Data5.Bi-Level Scanned Files6.Digital Raster Graphics (DRGs)7.Graphic Files8.GIS Software-Specific Raster Data

Page 33: Applied Cartography and Introduction to GIS GEOG 2017 EL

Satellite Imagery

Page 34: Applied Cartography and Introduction to GIS GEOG 2017 EL

Scanned Image

Page 35: Applied Cartography and Introduction to GIS GEOG 2017 EL

Digital Raster Graphics

Page 36: Applied Cartography and Introduction to GIS GEOG 2017 EL

Raster Data Encoding

1.Cell-by-Cell Encoding2.Run Length Encoding3.Quad Tree

Page 37: Applied Cartography and Introduction to GIS GEOG 2017 EL

Cell-by-Cell Data Structure

Page 38: Applied Cartography and Introduction to GIS GEOG 2017 EL

Run-Length Encoding

Row 1: 5,6Row 2: 4,6Row 3: 3,7Row 4: 3,7Row 5: 3,7Row 6: 2,7Row 7: 2,7

Page 39: Applied Cartography and Introduction to GIS GEOG 2017 EL

Quad-Tree Method

Page 40: Applied Cartography and Introduction to GIS GEOG 2017 EL

Data Compression

• Data compression refers to the reduction of data volume.

• A variety of techniques are available for image compression. Compression techniques can be lossless or lossy.

• The wavelet transform, the latest technology for image compression, treats an image as a wave and progressively decomposes the wave into simpler wavelets.

Page 41: Applied Cartography and Introduction to GIS GEOG 2017 EL

Data Conversion

The conversion of vector data to raster data is called rasterization, and the conversion of raster data to vector data is called vectorization.

Page 42: Applied Cartography and Introduction to GIS GEOG 2017 EL

Rasterization and Vectorization