Massachusetts Institute of Technology
Department of Urban Studies and Planning


11.188: Urban Planning and Social Science Laboratory
11.205: Introduction to Spatial Analysis

Spatial Data Models: Spatial Analysis II (Raster Models)

March 17, 2021

based on materials by Michael Flaxman, Joseph Ferreira, Thomas H. Grayson & Xiongjiu Liao


Administrative Notes

Today


Mapping population density for Massachusetts

incorrect plot of Mass density

select town, count(*) parts, sum(area) total_area,
       10000.0 * min(pop90) / sum(area) density
  from matown00
 group by town;

map of new_density



Raster-based Spatial Analysis

Review Raster vs. Vector Data Models for GIS

Up to now - Vector Data Models (model boundaries of spatial features)


Illustrating basic raster operations in QGIS - brief demo...


Comparing Field and Object Models

Types of Rasters

Technical Formats

Integer

Commonly "8 bit" meaning up to 255 discrete types can be stored

Sometimes 16 bit, so many more discrete values can be stored (~65,000)

Floating Point

Similarly, can be either "single precision" (float)

Double precision (double)

Logical Types

Examples / Common Raster Data Uses

Creating Raster Maps

Two major methods:

Classifying raw imagery

Using Remote Sensing (beyond scope of this class, but important, powerful, semiautomated technique)

"By Hand" such as in Photoshop with Magic Wand Tool (not standard professional method, but gives a good understanding of issues)

Rasterizing Digitized Vector Features from CAD or GIS

Why?

Design with nature.
Do your unified analysis of natural features represented using raster with vector bounds

Examples: which parcels have average slope > 15%
which census blocks are prone to flooding?

Efficiency in large area studies

Example: Calculating stream buffers for every stream in Oregon

In vector Arc/Info, 2+ days of processing time

In raster grid, <1 minute for same stream network



Raster Analyses: Neighbors and 'Map Algebra'

Raster Difficulties

Edge Effects

When NOT to Use Raster Representations

Raster <-> Vector Conversions

General Strategy

Example: Manipulating terrain and land cover in Raster

 

Additional Readings on Raster Models

    Each GIS book in the readings has sections on raster modeling




Created by Joseph Ferreira, Jr., 3 November 1999
Extensively rewritten for Fall 2000 by Thomas H. Grayson
Modified 2004-06 by Joseph Ferreira, Xiongjiu Liao, and Michael Flaxman
Last modified 16 March 2021 by Joseph Ferreira

Back to the 11.188 Home Page.
Back to the CRON Home Page.