GIS, or the social construction of spatial data — a map is an argument about the world, not the world
Lecture Slides
GIS — or the Social Construction of Spatial Data
LAAR 61400 · Week 05
Part I
A map is an argument
Part II
From globe to grid
Part III
How space becomes data
Part IV
Analysis
“Science manipulates things and gives up living in them. Constructive scientific activities see themselves and represent themselves to be autonomous, and their thinking deliberately reduces itself to a set of data-collecting techniques which it has invented. To think is thus to test out, to operate, to transform—the only restriction being that this activity is regulated by an experimental control that admits only the most "worked-up" phenomena, more likely produced by the apparatus than recorded by it.”
Maurice Merleau-Ponty · Eye and Mind · 1961
Part I
A map is an argument
Part II
From globe to grid
Part III
How space becomes data
Part IV
Analysis
Part I
A map is an argument
Part II
From globe to grid
Part III
How space becomes data
Part IV
Analysis
RASTERvsVECTOR
Vector stores objects with edges — points, lines, polygons. Raster stores a field sampled on a grid of cells. The model you pick pre-decides which questions are easy.
Part I
A map is an argument
Part II
From globe to grid
Part III
How space becomes data
Part IV
Analysis
Elevation (DEM)Elevation → flow directionFlow directionFlow direction → accumulationExtracted stream
# flow direction: for every cell, where does water leave?
DIR = {E:1, SE:2, S:4, SW:8, W:16, NW:32, N:64, NE:128}
for each cell (r, c) in DEM:
center = DEM[r][c]
maxDrop = 0
flow = 0
for each neighbor (nr, nc) around (r, c): # the 3×3 box
drop = (center - DEM[nr][nc]) / dist(nr, nc)
if drop > maxDrop:
maxDrop = drop
flow = DIR[ direction(nr, nc) ]
FLOWDIR[r][c] = flow # one of 8 codes — or 0 if a sink
“…to think is to test out, to operate, to transform.”