-
Notifications
You must be signed in to change notification settings - Fork 2
/
thesis.tex
1635 lines (1165 loc) · 229 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[11pt,oneside,notitlepage]{report}
%\usepackage{fullpage}
\usepackage[margin=1in]{geometry}
\usepackage[pdftex,
pdfauthor={Jeffrey Yoo Warren},
pdftitle={Grassroots Mapping: a toolkit for participatory and activist cartography},
pdfsubject={Participatory Cartography},
pdfkeywords={Cartography},
pdfproducer={Latex with hyperref},
pdfcreator={pdflatex,colorlinks}]{hyperref}
\usepackage{graphicx,wrapfig,color,pdfcomment,booktabs,ctable,textcomp,tabularx,array,acronym,threeparttable,pdfpages}
\usepackage[table]{xcolor}
\usepackage[hang,small,bf,margin=0.5cm,tableposition=top]{caption}
\usepackage[ragged]{footmisc}
\newcommand{\otoprule}{\midrule[\heavyrulewidth]}
\definecolor{linkblue}{rgb}{0.2,0.2,1}
\hypersetup{colorlinks=true,
urlcolor=linkblue,
citecolor=linkblue,
linkcolor=linkblue}
\newcolumntype{Y}{>{\raggedright\arraybackslash}X}
\newcolumntype{W}{>{\raggedleft\arraybackslash}X}
\definecolor{tableShade}{HTML}{EEEEEE}
%% Define a new 'jeff' style for the package that will use a smaller font.
\makeatletter
\def\url@jeffstyle{%
\@ifundefined{selectfont}{\def\UrlFont{\sf}}{\def\UrlFont{\small\ttfamily}}}
\makeatother
%% Now actually use the newly defined style.
\urlstyle{jeff}
\begin{document}
\hfuzz2pt % don't report overfull if within 2 pt
\title{\begin{flushleft}\vspace{-40px}
Grassroots Mapping: tools for participatory and activist cartography\\ \vspace{10px}
\emph{by Jeffrey Yoo Warren}\\ \vspace{10px}
\large{B.A. Yale University 2006}\\ \vspace{30px}
\large{Submitted to the Program in Media Arts and Sciences,\\
School of Architecture and Planning,\\
in partial fulfilment of the requirements for the degree of\\
Master of Science\\
at the {\sc MASSACHUSETTS INSTITUTE OF TECHNOLOGY}\\
September 2010\\
\copyright 2010 Massachusetts Institute of Technology. All rights reserved.}\\
\vspace{30px}
\large{\emph{author: }}\\ \vspace{2px}
\hrule \vspace{10px}
\begin{flushright}
Program in Media Arts and Sciences
September 2010
\end{flushright}
\vspace{10px}
\large{\emph{certified by: }}\\
\hrule \vspace{10px}
\begin{flushright}
Dr. David Small\\
Associate Professor\\
Program in Media Arts and Sciences\\
Thesis supervisor
\end{flushright}
\vspace{10px}
\large{\emph{accepted by: }}\\
\hrule \vspace{10px}
\begin{flushright}
Prof. Pattie Maes\\
Associate Academic Head\\
Program in Media Arts and Sciences\\
\end{flushright}
\end{flushleft}}
\date{}
\author{
%Jeffrey Warren
}
\maketitle
\setlength{\parindent}{0pt}
\setlength{\parskip}{0.8em}
\pagebreak
\Large{Grassroots Mapping: tools for participatory and activist cartography \vspace{10px} \\
\emph{by Jeffrey Warren}\vspace{10px} \\
B.A. Yale University 2006} \vspace{20px} \\
\large{Submitted to the Program in Media Arts and Sciences,\\
School of Architecture and Planning,\\
in partial fulfilment of the requirements for the degree of\\
Master of Science\\
at the {\sc MASSACHUSETTS INSTITUTE OF TECHNOLOGY}\\
September 2010\\
\copyright Massachusetts Institute of Technology 2010. All rights reserved.}\\ \vspace{20px}
\normalsize{
\section*{Abstract}
Geospatial tools and information play an important role in urban planning and policymaking, and maps have diverse uses in legal, environmental, political, land rights, and social arenas. Widespread participation in mapmaking and access to its benefits is limited by obscure and expensive tools and techniques. This has resulted in poor or nonexistent maps for much of the world's population, especially in areas of urban poverty. In particular, public access to recent and high-resolution satellite imagery is largely controlled by government and large industry. This thesis proposes balloon and kite aerial photography as a low-cost and easy to learn means to collect aerial imagery for mapping, and introduces a novel open-source online tool for orthorectifying and compositing images into maps.
A series of case studies where such tools and techniques were used by communities and activists in Lima, Peru and during the 2010 BP oil spill highlight the empowering role broader participation in cartography can play in advocacy, and the potential for increased cartographic literacy to level the playing field in territorial self-determination for small communities. Compared to other efforts to democratize mapmaking, which focus primarily on the presentation and interpretation of existing map data, this project emphasizes participation in the creation of new data at its source --- direct imaging of the earth's surface. Accompanying educational materials and workshops with adults and youth, as well as an active online community of participants, have ensured wide adoption of Grassroots Mapping practices.
}
\vspace{20px}
\large{
Thesis supervisor:\\
Dr. David Small\\
\emph{Associate Professor}\\
Program in Media Arts and Sciences\\
}
\pagebreak
\vspace{100px}
\Large{Grassroots Mapping: tools for participatory and activist cartography \vspace{10px} \\
\emph{by Jeffrey Warren}\vspace{400px} \\
\vspace{10px}\\
\large{\emph{Thesis reader: }}\\
\hrule \vspace{10px}
\begin{flushright}
Chris Csikszentmihalyi\\
Research Scientist\\
Director, Center for Future Civic Media and Computing Culture Group\\
MIT Media Lab\\
\end{flushright}
\pagebreak
\vspace{100px}
\Large{Grassroots Mapping: tools for participatory and activist cartography \vspace{10px} \\
\emph{by Jeffrey Warren}\vspace{400px} \\
\vspace{10px}\\
\large{\emph{Thesis reader: }}\\
\hrule \vspace{10px}
\begin{flushright}
Dr. Mitchel Resnick\\
Professor\\
Program in Media Arts and Sciences
\end{flushright}
\pagebreak
\normalsize{
\section*{Acknowledgements}
}
I am immensely grateful for the help I've received from my colleagues and collaborators in this project. I want to thank both the Design and Information Ecology groups for their humor, criticism and patience. Thanks also to my readers, and especially to Chris Csikszentmihalyi for his support and guidance. Thanks also to the many mappers around the world with whom I have worked, both on coding projects and in reeling in miles of string. These include Carla del Carpio and Manzanita `A', CEDRO, Escuelab, Shannon Dosemagen, Kris Ansin and others from the Louisiana Bucket Brigade. My thanks go to Stewart Long and Oliver Yeh for pushing the envelope with me, Josh Levinger for asking me if I've done any math, JB Labrune for keeping me critical, and everyone from OpenMapsCaucasus and Coal River Mountain Watch for their willingness to try crazy things. Thanks to Natalie Jeremijenko for her constant energy, criticism, support, and dissatisfaction with the status quo. I am grateful as well for the generosity of members of the Grassroots Mapping mailing list in times of large and small crises, and to everyone who has put in time and effort to make this project possible. Finally, special thanks go to Nadya Peek, my family and my friends for being there for me.
\vspace{10px}
\subsection*{Contributors}
\label{sec:donors}
The following organizations offered generous support of the citizen mapping effort in the Gulf of Mexico following the 2010 BP oil spill, in the form of time, money, transportation, and other means. My thanks go out to them on behalf of everyone involved in the oil spill mapping project.
\begin{itemize}
\setlength{\itemsep}{0.7pt}
\item{Louisiana Bucket Brigade}
\item{GonzoEarth}
\item{1337arts.com}
\item{MIT's Center for Future Civic Media}
\item{The Knight Foundation}
\item{Kris Ansin}
\item{John Norwood}
\item{Adam Boult}
\item{The Lafourche Parish Port Commission}
\item{DevelopmentSeed}
\item{The Washington Post}
\item{TungstenMonkey Productions/Kristian Hansen}
\item{WebMadeMovies/Brett Gaylor}
\item{Jeff Johnson}
\item{Liz Barry}
\item{The Blue Seals}
\item{Uptown Angler}
\item{All the project's backers on Kickstarter}
\end{itemize}
\begingroup
\hypersetup{linkcolor=black}
\tableofcontents
\endgroup
\chapter{Introduction}
\section{Defining Grassroots Mapping: tools, practices, or community?}
Exactly what makes up the Grassroots Mapping project? Is it a body of code, available under an open-source MIT license at \url{http://github.com/jywarren/cartagen}? Is it a set of mapping practices, or tools, which have been employed in Lima, Peru, or Rio de Janiero? Or is it a community of practitioners and the web site, wiki, and mailing list which tie them together?
Fundamentally this project attempts to make mapping easier for lay users, in order to broaden participation in cartography. Throughout much of the world, maps can be seen as a tool of the state and of industry to express control over world we live in. By simplifying the means to create maps, from the data gathering through the editing and publication of digital and print maps, the tools and techiques I have created are designed to further democratize cartography. In turn, it is hoped that the ability of a wider public to make maps at a reasonable cost will empower bottom-up cartographic activism and circumvent the current power structure of mapmaking.
The core of the Grassroots Mapping project is the \emph{application} of a novel combination of technologies to specific communities. These technologies consist of low-cost aerial imaging techniques using balloons and kites, and a novel online tool for stitching the resulting imagery into maps. The success of these tools is due to the effort and faith of the organizations and individuals who were willing to adopt these new and unfamiliar tools, and who saw their potential for use in their communities in Lima, Peru, and the oil spill crisis on the coast of the Gulf of Mexico. This includes Carla del Carpio of Manzanita `A' and Ernesto Fernandez of \ac{CEDRO}, both in Lima, Peru, and Daniel Miracle and others from Escuelab, also in Lima. It includes Kris Ansin, Shannon Dosemagen, and Anne Rolfes of the Louisiana Bucket Brigade in New Orleans. It also includes the dozens of participants who tirelessly flew kites and balloons, and untangled and wound miles of string day after day. Perhaps most importantly, the tools grew and evolved in response to sustained use by participants, and with the input and collaboration of those who used them.
\subsection{Uses of aerial imagery}
Participants in the project have made maps for diverse purposes, including environmental monitoring, tenure rights, journalism, and commercial use. Many maps were created in youth workshops emphasizing hands-on learning and community planning, and the tools' unique ability to produce on-demand maps was explored in crisis situations and areas of conflict. Due to their low cost, the techniques have potential for even broader use in asset mapping in low-income or developing areas, and local-level urban planning. The ability to see one's home from a new perspective can initiate thought and discussion about community, environment, and social issues. By engaging with and teaching local communities to use the tools, mapping has taken on more personal relevance than efforts which charactarize themselves as remote sensing --- efforts which treat people as data and gloss over the human side of cartography.
\subsection{Grassroots Mapping as pedagogy}
To facilitate widespread adoption, the project evolved to include a variety of teaching materials, printed guides, online videos, and workshops, both by myself and by the diverse collaborators who took ownership of the tools. These materials addressed a broad range of audiences, from 10-15 year olds in Lima, Peru to environmental activists in West Virginia and Kentucky. This documentation evolved as I collaborated with and instructed participants in dozens of workshops over the past year, and include a project wiki, a blog on which participants document their work, videos, and a mailing list where new ideas and projects are discussed and critiqued.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/samtredia.jpg}
\caption{Student participants in a Grassroots Mapping workshop in Samtredia, Georgia}
\end{flushright}
\end{wrapfigure}
\subsection{Grassroots Mapping as a community}
Ultimately, even the digital tools, including the Cartagen map rendering framework and the Cartagen Knitter, a tool for orthorectifying aerial imagery, were built with assistance and support of colleagues and contributors in the broader mapping community. That this has become the norm in technology projects does not detract from the fact that much of this work would have been impossible without such contributions, and that one of the greatest strengths of this project has been its development in collaboration with communities which have specific needs.
Building tools is unlike developing more abstract technologies in that to be successful, a series of compromises and pragmatic decisions must guide the design process, as well as continuous communication with an audience of users. The Grassroots Mapping project has evolved in response to these needs and should be examined in the context of the specific uses it has attempted to address, rather as an isolated or purely academic work.
\section{Tools, technologies, and audience}
The tools developed as part of the Grassroots Mapping project address the needs of both committed enthusiasts who need powerful and efficient mapping technology, as well as those who have little experience and expertise but need simple and direct tools to make maps. Therefore, some of the tools, while being simple to use, are intended for `power users' or those technically fluent in writing and editing code. The Cartagen framework falls under this category. Other tools, such as the balloon and kite platforms for capturing aerial imagery, are intended for a wider audience, as is the Cartagen Knitter, a specific application of the Cartagen framework. A description of the various tools follows.
The Grassroots Mapping Kit can be used to capture original aerial imagery, process and stitch the results, and publish digital and print maps. This section focuses on the framing, intent, and audience of the necessary tools. A technical discussion of the tools can be found in Chapter \ref{chap:toolchain}.
\begin{table}[tp]
\caption{Grassroots Mapping workflow}
\centering %
\renewcommand{\arraystretch}{1.4}
\begin{tabularx}{\textwidth}{YYY}
\toprule
Capture&Orthorectification&Publication\\\otoprule
2-3 people can map several square km in 1 day&Sorting photos can take \textgreater1 hour, stitching up to 1 day&Export from Cartagen Knitter generates a TMS or printable GeoTiff; only web access is needed.\\\bottomrule
\end{tabularx}
\end{table}
Briefly, map-makers visit the site they intend to map, bringing with them a kite, a balloon, a helium tank, a digital camera, and a minimum of 200 meters of string, along with an assortment of other materials. Attaching the camera to the tethered balloon or kite, they capture imagery by setting up the camera to automatically take pictures on a 1-10 second cycle and raising it to between 200 and 2000 meters in altitude, in accordance with local regulations. The map-makers reel in the tether to recover the camera and, using a web-enabled computer, upload the best imagery to the Cartagen Knitter web site.\footnote{\url{http://cartagen.org/maps/}} There they create a new online map, and using either OpenStreetMap vector data or a tiled map base layer for reference, each imagery can be orthorectified and ultimately composited into a map. The results can be embedded in another website for online viewing, exported as a \ac{TMS} service, or printed from a \ac{GeoTIFF}, depending on the intended use.
The Grassroots Mapping Kit and associated techniques are thoroughly documented at the project wiki, at \url{http://wiki.grassrootsmapping.org}, and additional support and discussion is available at the project mailing list and blog, which can be found at \url{http://grassrootsmapping.org} along with extensive documentation of past and in-progress mapping efforts around the world. Printed documentation is also available in the form of available in the form of a 5-page illustrated guide and several checklists designed to accompany each kit.\footnote{See \ref{sec:guide}, and view the guides in Appendix \ref{app:illustrated}}
\chapter{Movements towards a participatory and activist cartography}
A brief description of three distinct groups of practitioners is worthwhile, as each embodies a distinct conception of mapmaking and its purposes. These three cartographic movements have positioned themselves as challengers to previous forms of cartography, and as such, the following will help to situate the Grassroots Mapping project (in addition to the Cartagen framework) as a similar attempt to broaden participation and reconceptualize the practice.
\section{Experimental geography and radical cartography}
A growing movement toward a cartographically literate art practice has emerged which seeks to use cartographic tools and attitudes in a critical and activist manner. Some groups, such as Proboscis, take explicit inspiration from Guy Debord's psychogeographic movement of the 1950s. Others such as the Center for Urban Pedagogy, use mapmaking as a means to explore social and environmental injustice in a participatory manner, often with youth. What these practitioners have in common is that they have begun to appropriate tools and techniques from the \ac{GIS} industry, applying them towards new socially and politically relevant goals.
Artists like Bill Rankin use the thin-lined mechanical aesthetics of \ac{GIS} to comment upon the normally cartographically invisible American Indian reservations, emphasizing the incompatiblity between conventional, formalized modes of representation and the more complex geographies which exist in the real world. His map, `The United States?' offers two separate attempts, but Rankin points out some of the difficulties in such an adaptation:
\begin{quote}
At stake here is the European definition of nation-state sovereignty, which implies a close (and, ideally, consensual) relation between an area on a map and the governance of its inhabitants. It is not simply that a European-style map has a hard time representing the sovereignty rights (or claims) of indigenous peoples; rather, such relations are a priori impossible to depict on a typical map. \cite{rankin2003reservations}
\end{quote}
The collective Hackitectura inverts a map of the Gibralter area with Morocco and Western Sahara on top and Spain and Portugal below, while highlighting the complex landscape of legal and illegal immigration. Graphs, diagrams of security systems, and satellites dot the map depicting `the multitude versus the Empire', along with marks for immigrant detainment and the Spanish tomato farms whose need for cheap labor feeds much of the migration. The mapmakers' willingness to abandon the guise of objectivity in favor of such a clear geopolitical agenda is typical of many members of this wider cartographic movement.
\begin{figure}[h]
\begin{center}
\includegraphics[width=1\textwidth]{images/newsflow.png}
\caption{A selection of articles published by the BBC, linked to the BBC headquarters in my project NEWSFLOW, 2009}
\end{center}
\end{figure}
Proboscis in particular has produced a number of cartographic works with urban communities with the goal of creating an `anthropology of ourselves' and `become co-creators and not just consumers of information' --- the latter of which parallels the neogeographers' interest in making participants of their audience (See Section \ref{sec:neogeography}). Their projects take the form of mapmaking workshops and activities, using basic materials like paper and watercolor, as well as high-tech tools such as GPS-enabled mobile phones. They focus on recording the historical narratives of participants while relating the stories to geographic positions and routes in a kind of city-wide game.
Proboscis uses the term `bodystorming' to describe their emphasis on experiencing the world on both a physical and conceptual level, facilitating `the transformation of abstract ideas and concepts into physical experiences, a tactile approach allowing us to investigate different qualities that ideas may have when applied to physical settings --- part of a dynamic and continuous process of trial and error.' \cite{proboscis2003bodystorming}
By contrast, my own project ARMSFLOW (\url{http://armsflow.org}, 2007) describes in a purely online map the sale of conventional arms between governments worldwide from 1950-2006, using data culled from \ac{SIPRI}. Red lines of varying thickness (representing an abstract metric called TIV, or trend-indicator value) link buyers to sellers, and users may explore the data by country or by year. A followup project, NEWSFLOW (\url{http://newsflow.cartagen.org}, 2009), displays in a similar format connections between news organizations and the locations of stories they publish, as scraped from Google News. In these works, my interest in cartographic activism and data transparency focused mainly on the interpretation and exploration of data, rather than its production or origins. Though visually compelling and information-rich, these two maps are emblematic of the shortcomings of the `data visualization' movement. Natalie Jeremijenko addresses the crux of the matter when she questions the sources of such works:
\begin{quote}
...the designers of these types of projects use extant data sets from the EPA, from the Toxic Relief Inventory, federal databases, and do so without criticism, without asking how the data is generated, who collected it and under what conditions. That is, what does the data actually represent? \cite{jeremijenko2008situated}
\end{quote}
This criticism was revelatory to me, and led to my increased interest in engaging participants not only in interpreting information, but in \emph{creating} information. By augmenting the literacy and ability of individuals to capture, author, and frame new data, we engage a broader public in the role of researcher and of investigator. Rather than playing solely the interpretive role of the designer or editor, I have attempted to insert participants further upstream --- closer to the source --- with the intent of gaining greater leverage in the construction of geography.
%\href{http://www.sciencedirect.com/science?_ob=ArticleURL&_udi=B6VG2-4XHJX4B-1&_user=10&_coverDate=08/31/2009&_rdoc=1&_fmt=high&_orig=search&_sort=d&_docanchor=&view=c&_searchStrId=1186930669&_rerunOrigin=google&_acct=C000050221&_version=1&_urlVersion=0&_userid=10&md5=a9327ffa62e089e863f892a4551c1717}{Intervention: Mapping is critical!} - This intervention targets the much heralded demise of the map in geography and the recently proposed “rethinking” of maps. It comprises contributions from two political geographers, a military geographer, a political scientist, and two activist cartographers and argues that there is not so much a need to “rethink” maps, but to “re-engage” with the material practices of mapping, and above all to “re-make” maps.
\section{\ac{GIS} practitioners}
\label{sec:gis}
Professional map makers have used \ac{GIS} since the 1960s, which in recent decades has increasingly centered on the ArcGIS suite by ESRI. More recently, \ac{GIS} methodologies have met with some criticism amongst newer generations of digital map-makers for its widespread use of expensive proprietary tools such as ArcGIS, both for their cost and because, due to their complex interfaces, these tools present a high barrier to non-expert participation. However, it is easy to forget that \ac{GIS} was originally conceived of as a movement towards a more participatory and interactive cartography, by reducing the costs and increasing the abilities of users to manipulate and publish geographic data.
Another movement known as \emph{critical GIS} but encompassing several groups such as Qualitative GIS, Feminist GIS, Participatory GIS and Public Participation GIS evolved starting in the 1990s with roots in human geography as well as amongst GIS practitioners themselves. Proponents of critical GIS have challenged traditional GIS practice from a humanist perspective for its failure to incorporate non-quantitative sources, and for its `potential for exclusion and disempowerment' \cite{elwood2009qualitative}. Other proponents of a Qualitative GIS such as Marianna Pavlovskaya have challenged the quantitative basis for GIS, arguing that it often relies on spatial imagination and intuition, as in many techniques based on visual examination. She notes that most GIS software ships with only basic spatial analysis capabilities, and suggests that the high reliance on human reasoning in typical usage has been obscured by poorly-designed user interfaces. Most importantly, Pavlovskaya draws attention to the fact that the most common output of GIS use is data visualization, designed for `visual impact', which preference heuristic interpretation over quantitative analysis. \cite{pavlovskaya2009nonquantitative}
Proponents of critical GIS argue that \ac{GIS} should be seen primarily as a power relation, due to its association with `authoritative' quantitative analysis and the `fascination of Western science and geography with vision, seeing, and looking as a primary and supposedly objective way of knowing, which is in fact partial, embodied, and masculinist.' \cite{pavlovskaya2009nonquantitative}\footnote{See Section \ref{sec:truth}.} The resulting image of `GIS as a powerful juncture of science, technology, and authority' \cite{pavlovskaya2009nonquantitative} leads to an exclusivity that places the benefits of geospatial information and technology beyond the reach of the public and in the hands of those already in power. Pavlovskaya and her colleagues advocate a broader and more inclusive practice of cartography which incorporates a more anthropological and `mixed methods' approach --- one which is championed by the \ac{PGIS} community, which has employed community-produced paper maps and `3D model mapping' where participants construct multimedia scale models of their communities in a discursive and process-focused activity.
Other techniques include ground mapping, performed in an outdoor area using stones or flags to create scaled maps, and relief model mapping using three dimensional cardboard contour maps annotated with pins and labels.\footnote{A discussion of the challenges the \ac{PGIS} movement has faced can be found in Section \ref{subsec:pgisshortcomings}.} As Robert Chambers remarks, \ac{PGIS} techniques have met with widespread adoption and success across the world, due to their `power and versatility... the relative ease with which it can be facilitated, the fun, fulfilment and pride which people derive from it, and its multiple uses by so many stakeholders'. \cite{chambers2006whose}
\subsection{Cartographic ethics}
\label{sec:ethics}
In light of the reassessment of the political and social roles of maps and their production, some from the \ac{PGIS} community have called for a code of ethics in participatory mapping projects. This seems especially prudent given that the production of maps can have dramatic effects on the residents of the mapped area. Giacomo Rambaldi, Robert Chambers, Mike McCall, and Jefferson Fox proposed in 2006 a set of 33 guidelines entitled `Practical ethics for \ac{PGIS} practitioners, facilitators, technology intermediaries and researchers'. The following is a sampling:
\begin{quote}\begin{itemize}
\item Do your best to recognise that you are working with socially differentiated communities and that your presence will not be politically neutral
\item Consider using spatial information technologies that can be mastered by local people (or local technology intermediaries) after being provided sufficient training
\item Be considerate in taking peoples' time
\item Stimulate spatial learning and information generation rather than mere data extraction for outsider’s analysis and interpretation
\item Ensure that the outputs of the mapping process are understood by all those concerned
\end{itemize}
\cite{rambaldi2006practical}
\end{quote}
These guidelines demonstrate a belief that maps should be produced \emph{in collaboration with} local communities, and with respect for their needs and interests. Even in the context of an openly activist agenda, they have proved invaluable to me in formalizing and understanding interactions with mapping participants. In particular, they address the core concern of who owns the maps and for whom they are made; there is often the implicit assumption by enthusiasts of open geodata that simply dumping map data into OpenStreetMap is the end goal. It is important to be aware that most people (and especially those in communities in geographic conflict) are unaware of the existence of OpenStreetMap, and would likely be unreceptive to its benefits.
Robert Chambers in particular warns \ac{PGIS} practitioners against raising expectations of concrete results, noting that `Any process of analysis facilitated by an outsider is liable to raise expectations of some benefit, even when the outsider goes to pains to explain that they have nothing to offer and nothing will follow from their visit. Disappointment, and reinforced disillusion with visitors and organisations outside the community then follow.' \cite{chambers2006whose}
While this is a highly pragmatic concern, it is concerning and frustrating that many participatory mapping efforts do \textbf{not} effect change, or yield benefits for communities in need. It is my belief that by engaging in mapmaking practice which generates truly new information --- information which may act as a means of expression and communication with the outside world --- there is a strong potential for local communities to gain leverage and derive benefits, including greater inclusion in municipal planning, environmental policy, and legal status. Rather than patronize such participants with a form of mapping which is essentially symbolic and introspective, we must challenge ourselves to invent new rhetorical and tactical mapping tools which can address the needs of the disadvantaged.
Despite sharing many of the same goals of inclusive, participatory techniques, an emphasis on making the audience into producers of information, and inexpensive tools designed for non-experts, neither the critical GIS movement nor the experimental geography movement widely collaborated with or even communicated with the next group, which from a technological perspective has perhaps the greatest potential to innovate new tools and techniques.
\section{Neogeography}
\label{sec:neogeography}
With the rise of web-based data and display systems came a group composed primarily of entrepreneurs, programmers and web designers, who have adopted the name \emph{neogeographers}. This group positions itself in contrast to traditional approaches such as GIS, and favors open data sharing, standards-based data formats. Neogeographers advocate a kind of `people's GIS', and have worked to develop free and open source software tools to replace proprietary solutions. The neogeographic movement, though it may have found its roots in the opening of the Google Maps \ac{API} (see Section \ref{sec:webmapping}), focuses today on largely web-based open source software such as OpenLayers, Mapnik, and GeoDjango. Some desktop map viewing and editing packages such as QGIS or \ac{JOSM} are also available, though even these are often used to produce data for online publication. The availability of a relatively complete open-source toolchain for authoring and publishing maps is a result of the gradual shift away from easy-to-use commercial \ac{API}s. \cite{rana2009neogeography} However, some services such as Google's geocoding \ac{API}, Yahoo's Placemaker \ac{API}, and a variety of commercial satellite imagery sources, are still relied upon --- generally because they outperform open-source alternatives. In some cases, equivalent open alternatives are nonexistent or not widely known.
One identifying theme in the neogeography movement is the shift of users from consumers to producers of maps, though primarily in the online world. \cite{oconnor2008maps} The ability to create and publish map data using simple and free tools has dramatically broadened participation in map making, and Rana and Joliveau suggest that neogeography rejects the `prescribed role/interaction between the four main components, namely the audience, the information, the presenter and the subject...'. \cite{rana2009neogeography} Neogeographers prefer `crowdsourced' data, contributed by collaboration and volunteerism, to proprietary data, which they have come to distrust due to copyright, access, and format and quality limitations. Data produced by the public and liberally licensed for public use may be translated, republished, remixed, and repurposed without parasitic dependence upon large and often uninterested organizations and governments.
Another important aspect of the movement is that the creators of neogeographic software tools typically do not have a formal or academic background in geography or GIS, but come from a programming and software engineering background. This has some technical benefits, in that the solutions they promote and develop are often conceived of from a novel perspective, sometimes resulting in higher performance, broader applications, and reconcetualizations of both for what and for whom maps are made. It has also resulted in an `outsider' attitude amongst neogeographers, and even some resentment from traditional GIS practitioners; this has played an important role in how the movement presents itself to the rest of the world, and what choices it makes in the development of tools. For example, the OpenStreetMap project, discussed at length in Section \ref{sec:openstreetmap}, was developed in response to the restrictive crown copyright of the British Ordnance Survey national map. \cite{chilton-crowdsourcing}, and was eventually instrumental in Ordnance Survey's decision to provide a free dataset. \cite{arthur2010ord}
While neogeography shares many of the goals of the \ac{PGIS} movement, relatively little communication exists between these two factions due to their different origins and mutually isolated venues for publication.\footnote{An exception is Mikel Maron's efforts in Kibera, among other places, which makes explicit reference to \ac{PGIS} practices.} Rana et all describe neogeography as an `outcome of the increasingly close integration of our lives with geocomputational and World Wide Web technology.' That statement may be more accurate if `our lives' refers to the lives of neogeographers, or at most refers to that thin slice of the global population which knows what an \ac{API} is, or owns an iPhone. As discussed in Chapter \ref{chap:need}, most of the world has little or no access to digital geospatial services and information, and this may account for the mounting interest in such tools' application in areas of crisis or humanitarian need. In the last few years, we see an increasing number of neogeographers engaging in socially or politically engaged work --- groups such as the Humanitarian OpenStreetMap Team, DevelopmentSeed, NiJeL, Ushahidi, and many more. Many of these have formed partnerships with larger and more traditional organizations such as the World Bank and the United Nations. A more in-depth examination of such works and the relevant technologies was published in 2008 by Sean O'Connor and the Tactical Technology Collective under the name `Maps for Advocacy'. \cite{oconnor2008maps} Neogeography and the open technologies it has brought set the stage for an even more inclusive cartography which stands to benefit those beyond the reach of iPhones, GPS devices, and \ac{API}s.
\chapter{Subjectivity in Mapping}
\label{chap:subjectivity}
The need for a more participatory cartography is predicated on the exclusion of many from the practice of mapmaking as it stands today. Even more importantly, it depends on the point of view that mapping is an inherently non-neutral practice, and that for maps to serve wider and more democratic interests, it must accommodate diverse viewpoints. Maps serve interests, and understanding their role not as documentation of what makes up the world, but as rhetorical, tactical, and \emph{subjective} tools is an important prerequisite to what this document argues.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/kutaisi.png}
\caption{Kutaisi, the second largest city in Georgia. Google Maps, July 2010}
\end{flushright}
\end{wrapfigure}
\section{The mythical `complete map'}
One common sentiment often heard in contemporary map literature is that the earth is more or less completely mapped. The availability of satellite imagery in tools like Google Earth, and the ability to zoom shockingly far into a dizzying array of places, from power plants in North Korea to the top of Macchu Pichu, gives the casual user the impression that we have indeed created a complete map of the world. However, if one attempts to find imagery of places with lower global economic relevance, it becomes clear that while there may not be many \emph{blank} spots on the map, there are an abundace of \emph{blurry} spots.
This of course sidesteps the fact that an aerial image does not a map make --- that is to say, in order to take advantage of the many applications of geographic data, vector maps which geometrically and semantically describe features must exist, including labels, tags, metadata, and even relations, which may be parsed into driving routes. These are almost entirely absent from many areas of the world (see Chapter \ref{chap:need}). Amongst cartographers, the idea that maps accurately, or even completely depict a location is not entertained in a literal sense, yet there persists a sense that complete maps are possible. Within certain realms, communities such as OpenStreetMap have declared completion, as in an email by Etienne Cherdlu to the project's developer mailing list in 2006, entitled `UK Motorways 100\% Complete': \begin{quote}I'm pleased to announce that the main carriageways of all mainland UK motorways have been completed. Over 3,000 km of roadway.\end{quote}
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/osm-missing-parts.png}
\caption{A map depicting all `incomplete' areas of OpenStreetMap in the UK. (\url{http://www.reedhome.org.uk/Documents/osmembed.html?kml=KML/osmcategory.kml})}
\end{flushright}
\end{wrapfigure}
Still, OpenStreetMap's tagline describes the project as an 'editable map of the whole world', and the scope of the project is growing. The inclusion of increasingly subjective data has transformed the project, from road conditions (`surface=unacceptable') to contested political boundaries such as the borders of Palestine or the existence of Western Sahara as a sovereign nation, to the possibilities of including indoor features such as rooms and hallways. Yet the premise of mapping the entire planet should remain an obvious fantasy; in fact, the fiction of such a complete map has been explored by several authors, most notably in a short story by Jorge Luis Borges and Adolfo Bioy Casares, entitled `On Exactitude in Science':
\begin{quote}
...In that Empire, the craft of Cartography attained such Perfection that the Map of a Single province covered the space of an entire City, and the Map of the Empire itself an entire Province. In the course of Time, these Extensive maps were found somehow wanting, and so the College of Cartographers evolved a Map of the Empire that was of the same Scale as the Empire and that coincided with it point for point. Less attentive to the Study of Cartography, succeeding Generations came to judge a map of such Magnitude cumbersome, and, not without Irreverence, they abandoned it to the Rigours of sun and Rain. In the western Deserts, tattered Fragments of the Map are still to be found, Sheltering an occasional Beast or beggar; in the whole Nation, no other relic is left of the Discipline of Geography.
\cite{borges1946exactitude} \footnote{The idea of a 1:1 map of a whole country was originally mentioned in Lewis Carroll's novel \textbf{Sylvie and Bruno Concluded}.}
\end{quote}
Beyond the technical impossibility of \emph{total mapping} lies the trend towards increasingly individualistic, subjective, and divergent models of the world, which inevitably occur as maps become more ubiquitous and more detailed. Rather than pursuing the goal of a single canonical representation of the planet and attempting to encompass conflicting interpretations, participatory mapmaking should embrace diversity, and allow for separate but related means of describing the world. \footnote{My belief in the value of a divergent paradigm for digital mapmaking was also the impetus for my development of the Cartagen web mapping framework, which shifts the interpretation and rendering of map feature data to the client side (rather than generating a single canonical server-side rendering), allowing for endless variety of representation.}
\section{A `ground truth' policy for collaborative mapmaking}
\label{sec:groundtruth}
OpenStreetMap has in fact begun to encounter a number of challenges due to the inherently subjective nature of mapmaking --- especially as the project has grown to encompass dozens of countries, cultures, and socio-political perspectives. Due to the project's open and wiki-like architecture, occasional disagreements occur between users, and a convention has been established to resolve such disputes. OpenStreetMap can accommodate an unlimited number of language translations for the label of a map feature, but the \textbf{default} label is what is displayed on the web map at OpenStreetMap.org. The `on the ground' policy, as it is known, places any editorial decision in the hands of `the people on the ground at that location'. The policy, whose definition was led by Mikel Maron, was originally proposed in response to an `edit war' in 2007 between Turkish-speaking mappers from northern Cyprus and Greek-speaking mappers from southern Cyprus. \cite{osm2007disputes} While such a policy has in general served the project well, its necessity is an indication that as mapmaking becomes a more widespread and inclusive practice, the increasing diversity of viewpoints will make a single canonical map less feasible.
\section{Privacy and mapping, privacy and open geodata}
Privacy is of course yet another reason to shy away from total mapping. Indeed, for any publicly available map to include such details as the positioning of my coffee table or wifi router \footnote{A discussion of Google's collection of personal WiFi data can be found here: \url{http://bits.blogs.nytimes.com/2010/05/14/google-admits-to-snooping-on-personal-data/}} offers a more clear view into my personal space than I care to allow. The further Google Street View and similar services invade that space, the more the public will feel uncomfortable with such overreaching cartographic enthusiasm. Appropriating these technologies in support of bottom-up efforts can invert these issues, and the ability to make maps \emph{for oneself} as analytic tools, or to publish selective geographic information to a specific audience for tactical or advocacy reasons, can recast such technologies as empowering and enriching.
One of the most difficult aspects of participatory mapmaking, is that I am often asked questions such as, `Why would a community allow you to come take aerial pictures of their homes?' This is a fair question, but one which thoroughly misconstrues what I am advocating. My work is intended to teach and assist communities and individuals to map themselves, for themselves. This includes building literacy and proficiency in geographic tools and information, and making good choices about how to publish their maps --- if at all. The maps which I have published here are only those for which I have requested specific permission to reproduce for purposes of education and research. The decision of a community to publish their work is one which I am very cautious to encourage, as another question I am asked is, `Isn't mapping just a means for the state to exert influence and control over geography?' If communities and individuals are not in control of their own geodata, the answer may be `yes'!
\section{Mapping: a tool of empowerment or control?}
\label{subsec:empowerment}
The idea that mapmaking is a kind of cartographic harvesting of the most vulnerable places and people on the planet is a justifiable fear, however it is based on a relatively one-sided reading of history, and especially of contemporary mapping practice. Maps can just as effectively be used to defend as to conquer, as a wide variety of cartographic activists have demonstrated. B'Tselem, a progressive Israeli human rights group based in Jerusalem, has used maps of Israeli settlements in the West Bank to support their the critique of those settlements as the illegal annexation of traditionally Palestinian land. Jai Sen, a political organizer in Calcutta in the 1980's, used maps of urban slums as a form of testimony, effectively proving that people lived on the land before authorities bulldozed it and claimed that it was uninhabited from the start.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/levinger-groundtruth.png}
\caption{The Green Line, Israeli settlements, and checkpoints near Jerusalem and Ramallah, on Josh Levinger's GroundTruth interactive map. (\url{http://groundtruth.media.mit.edu})}
\end{flushright}
\end{wrapfigure}
VirtualGaza, a project by Josh Levinger, published narratives by victims of the 2008 war in Gaza, linking the cartographic representation (one reason for the conflict) with the human stories and images of the destruction it caused. The OpenLayers-based map, available at \url{http://virtualgaza.media.mit.edu}, protected participants' locations by purposely categorizing them by region instead of displaying more precise coordinates. Levinger's second project in the area, GroundTruth, demonstrated a routing algorithm which could, given a user's legal status, create a travel plan which would avoid IDF checkpoints, actively seeking to disrupt the balance of power in the region with the tactical use of cartographic information.\footnote{The routing system was disabled when it became clear that up-to-date checkpoint information was unavailable, and that users might be presented with obsolete data.} Other cartographers have during the same conflict in Gaza, Mikel Maron defended his work towards the participatory creation of a free and open map of Gaza:
\begin{quote}
...it's frankly the same security through obscurity argument peddled for centuries... a strategy on the verge of finally dissolving in a world of openness and transparency. The IDF have access to much better intelligence and imagery than we'd ever have, they fly drones over Gaza, there's a 2m resolution commercial limit in all satellite imagery over Israel --- guess who gets to see the sub-meter imagery? Gazans have nothing to gain by trying keep secrets, the asymmetry of that game is overwhelmingly not in their favor. \cite{maron2009misconceptions}
\end{quote}
Maron later refined his position to except certain highly vulnerable groups \footnote{See Section \ref{sec:ethics} for a discussion of \ac{PGIS} ethics}:
\begin{quote}
In general, I view these edge cases as a question of power. Hiding information protects those already in power, but not those that are already marginalized. Legitimate cases [for obscuring data include] only information that puts dis-empowered people at risk, such as refugee routes along the Burmese-Indian border. \cite{maron2010freedom}
\end{quote}
However the gist of his argument is sound --- that cartography is necessarily a losing game only for those who are unable to participate in its creation. Those who are unable to communicate in the relevant cartographic language of power -- be it GeoJSON, \ac{TMS} or just paper -- never even know they are being mapped, or what that might mean for their well being or safety.\footnote{A common criticism by \ac{PGIS} practitioners of so-called `remote sensing'. See Section \ref{subsec:pgis}} In some ways, this is a subset of the debate championed by Evgeny Morozov, Clay Shirky, and Patrick Meier\footnote{See \url{http://www.prospectmagazine.co.uk/2009/11/how-dictators-watch-us-on-the-web/} for the Morozov/Shirky debate, and \url{http://irevolution.wordpress.com/2010/01/07/morozov-vs-shirky/} for Patrick Meier's analysis.} over whether new media is a force for democracy, or at least whether it supports `popular resistance against repressive rule' as Meier puts it. \cite{meier2010popular} Morozov even specifically mentions mapping, for example when he ridicules the sappiest anecdotes of the technological `freedom fighters':
\begin{quote}
...Burmese monks defying an evil junta with digital cameras; Filipino teenagers using SMS to create a “textual revolution;” Egyptian activists using encryption to hide from the all-seeing-eye of the Mukhabarat; even Brazilian ecologists using Google maps to show deforestation in the Amazon delta. \cite{morozov2009dictators}
\end{quote}
In Morozov's opinion, the belief that such technologies can disrupt power relations `...requires certainty that only pro-western and pro-democracy forces will participate.' His examples, though anecdotal, are sobering: `In Russia, the internet has given a boost to extreme right-wing groups like the Movement Against Illegal Immigration, which has been using Google Maps to visualise the location of ethnic minorities in Russian cities and encouraging its members to hound them out.'
(rev. see following quote)
The problem with this debate is that it is too abstract. We cannot say universally that mapmaking (or any other technology) will support local needs over those in power, but by working closely with local participants in a sensitive manner, we can invert the flow of information and affect power relations on a local scale. Balloon and kite mapping is not a scalable technology --- it would be impractical for Google or governments to use these techniques to map entire countries. However it is ideal for small-scale use, and has important advantages in cost, repeatability, resolution, and speed in that context. My attempts to apply these tools and techniques have focused on these benefits, and in the specific settings in which I have worked, they have allowed local groups to produce better maps than anyone else, albeit for a limited but \emph{highly relevant} area. In a time when many in the crisis community were struggling to get large organizations such as Google, the United Nations, etc. to release satellite imagery\footnote{See Section \ref{subsec:satelliterelease}}, the Louisiana Bucket Brigade actually licensed map data to Google --- data gathered using Grassroots Mapping tools and techniques.\footnote{See Chapter \ref{chap:gulf}}
Ultimately, the ability of mapmaking tools to empower local interests has more to do with the degree of adoption and appropriation of those tools by participants than it does with any overarching technical aspect of the project. For this reason, I have focused on improving collaboration and building trust with the communities I work with, in addition to an aggressive program of workshops, demonstrations, and user-friendly guides to build a strong pedagogical platform. This approach builds upon the rejection of technological determinism in political processes advocated by Philip Agre, who argues:
\begin{quote}
Research on the Internet's role in politics has struggled to transcend technological determinism --- the assumption, often inadvertent, that the technology simply imprints its own logic on social relationships. An alternative approach traces the ways, often numerous, in which an institution's participants appropriate the technology in the service of goals, strategies, and relationships that the institution has already organized. \cite{agre2002realtime}
\end{quote}
\section{Maps as truth}
\label{sec:truth}
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/iraq-image-16.jpg}
\caption{`Image 16: Chemical weapons leaving Al-Musayyib' \cite{gwu2003eyes}}
\end{flushright}
\end{wrapfigure}
Maps carry a sense of authority that few other forms of evidence share. This is in part due to an understanding of satellite or aerial maps as a kind of `window into the world', depicting the planet `the way it really looks'. In photography, by contrast, the editorial and subjective role of the author is accepted, despite the damage which `photoshopping' has inflicted on the perceived truth or objectivity of the photographic image. Maps, however, continue to be understood as direct representations of reality, desipte the inherent subjectivity of image selection, color, brightness, and contrast processing, not to mention the editorial eye necessary in reading and interpreting such imagery.
The best example of this attitude is of course the use of satellite imagery by Colin Powell at the UN Security Council in February 2003, which he presented as evidence to support the existence of weapons of mass destruction in Iraq, and to justify the invasion of the country. While the subsequent complete absence of weapons did little to diminish the public's faith in such imagery as objective evidence, Powell mentions in his testimony how difficult it is to interpret satellite imagery:
% citation http://www.un.org/apps/news/storyAr.asp?NewsID=6079&Cr=iraq&Cr1=inspect
\begin{quote}
Let me say a word about satellite images before I show a couple. The photos that I am about to show you are sometimes hard for the average person to interpret, hard for me. The painstaking work of photo analysis takes experts with years and years of experience, poring for hours and hours over light tables. But as I show you these images, I will try to capture and explain what they mean, what they indicate to our imagery specialists.
\cite{guardian2003powell}
\end{quote}
Later, after showing a purported chemical weapons site, he explains:
\begin{quote}
How do I know that? How can I say that? Let me give you a closer look. Look at the image on the left. On the left is a close-up of one of the four chemical bunkers. The two arrows indicate the presence of sure signs that the bunkers are storing chemical munitions. The arrow at the top that says security points to a facility that is the signature item for this kind of bunker. Inside that facility are special guards and special equipment to monitor any leakage that might come out of the bunker.
The truck you also see is a signature item. It's a decontamination vehicle in case something goes wrong.
\cite{guardian2003powell}
\end{quote}
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/iraq-image-13.jpg}
\caption{`Image 13: Sanitization of Ammunition Dump at Tajii' \cite{gwu2003eyes}}
\end{flushright}
\end{wrapfigure}
Despite the `years and years of experience' he claimed, an earlier analysis of the imagery to which Powell had access classified the claims as `weak' and points out that the so-called contamination vehicles are in fact simply water trucks. Though they acknowledge that these \textbf{could} have been used for chemical weapon decontamination, the doubt they express stands in contrast to the assertion of `facts' that Powell presented to the UN:
\begin{quote}
`--- 10-11.***/WEAK. We support much of this discussion, but we note that decontamination vehicles--cited several times in the text--are water trucks that can have legitimate uses. A safer characterization is, `a vehicle used for chemical weapon decontamination.`
--- 11.***/WEAK. We agree there has been suspicious activity [redacted], including presence of a decontamination vehicle. We caution, however, that Iraq has given UNMOVIC what may be a plausible account for this activity--that this was an exercise involving the movement of conventional explosives; presence of a fire safety truck (water truck, which could also be used as a decontamination vehicle) is common in such an event.'
October, 2002, classified National Intelligence Estimate (NIE) `Iraq's Continuing Programs for Weapons of Mass Destruction' \cite{senate2004report}
\end{quote}
What is most alarming about this kind of rhetorical use of map imagery is that it represents a means for those in a position of power to assert or manipulate truths about places they have never been, without the involvement of human testimony from those who have. The public perception of maps as an objective, quantitative standard of evidence is likely due to the difficulty and expense of producing map imagery, and the traditional monopoly of the government and high-tech industry in the production of such imagery. Still, as we see in Powell's testimony, even the highest levels of government are complicit in the construction of maps as a supposedly authoritative and objective form of information.
\section{Maps: rhetorical, even tactical}
This use of mapping as a form of political persuasion is nothing new, from a historical perspective, but the increased obfuscation of such information in technical terminology and the use of precise measures --- referring to maps by their `centimeter accuracy', for example --- has made maps more difficult for lay persons to critique. As Dennis Wood points out in his classic `The Power of Maps', such metrics give the `false impression of ``scientific accuracy'' and completeness', serving to purposely exclude the public from cartographic discourse. \cite{wood1992power}
\subsection{Activist cartography}
A new generation of mappers, including many from the experimental geography movement and increasingly amongst neogeographers, has turned this authoritative dimension of mapping on its head by employing many of the same techniques to advance alternative agendas. The increasing democratization of mapmaking technology, and the rapid advances of open-source and inclusive techniques have enabled individuals to leapfrog traditional mapmaking regimes.
It is precisely the rhetorical qualities of mapping which the Institute for Applied Autonomy explores in `Tactical cartographies' --- but as that name suggests, the Institute goes beyond rhetoric to incite action. Defining tactical cartography as `the creation, distribution, and use of spatial data to intervene in systems of control affecting spatial meaning and practice', they are not only fighting a war of words (or pictures) in highlighting issues of concern. Their maps act as tools in the direct intervention in problematic situations, transitioning from the (still important) discursive products of maps-as-information to their use as informational weapons in a direct engagement in `politics and power'. \cite{institute2008tactical} In this vein, the Institute authored a pocket map in 2002 depicting all surveillance cameras in Manhattan, so that users might not only learn about the increasing prevalence of a surveillance society, but actively avoid zones under surveillance in their daily life. This movement beyond a symbolic role for mapping --- to legal, activist, and primarily action-based outcomes, is what I have attempted to achieve in the Grassroots Mapping project.
\chapter{The Need for Geospatial Data}
\label{chap:need}
\section{Two worlds of mapping}
\label{sec:twoworlds}
Present-day users of web-based mapping products such as Google Maps are presented with an extremely rich cartographic landscape when they view maps of first-world urban centers such as New York and San Francisco. Real-time traffic data may be overlaid in lines of shifting red and green, and many buildings appear in orthographic `3D'. Well-known restaurants are interspersed with subway stops whose schedules may be called up with a few clicks. Routing algorithms offer turn-by-turn directions, optimized for pedestrians, bicyclists, and motorists.
\begin{figure}[h]
\begin{center}
\includegraphics[width=1\textwidth]{images/two-worlds-mapping.png}
\caption{Views of Manhattan, left, and a settlement in Lima, Peru, right, as seen in Google Maps \url{http://maps.google.com}}
\end{center}
\end{figure}
Many are surprised when they use Google Maps to `visit' places such as Lima, Peru, a metropolis of 11 million people, only to find that not far from the city center are vast areas of indistinct and unlabelled buildings. While some of these are recognized and official parts of the Municipality of Lima, many are informal settlements, whose inhabitants lack title to their lots of land, and whose streets and buildings do not appear on any city map. Many of these settlements, or `invasions' as they are known to Peruvians, are governed by leaders who are either elected by the several hundred inhabitants, or who maintain control through intimidation --- employing thugs to collect taxes and enforce rules.
This state of extralegal urban sprawl exists in many parts of the world; according to UN-HABITAT, more than a sixth of the world's population lives in urban slums, and that number is likely to double by 2030. \cite{unhabitat2003challenge} A legal process may exist to establish official land ownership in these settlements, and to issue deeds to their inhabitants (as it does in Peru), but in many cases the state lacks the resources to quantify or map these areas. UN-HABITAT data indicate that `many local governments do not have mechanisms to monitor urban growth in a systematic manner, even less to monitor informal urban growth' and that `80 cities out of 120 recognize that they do not possess monitoring systems to track changes in the spatial dimension of the city' \cite{unhabitat2008slum}
While accessible and participatory mapmaking is by no means a solution to this problem, many of the negotiations occurring in such areas are taking place in the language of cartography --- whether intentional or not, cartographic invisibility is often the first step to settlements' exclusion from planning processes:
\begin{quote}
...slums --- all variety of precarious settlements --- represent the `invisible' city, often omitted from official maps and documents and frequently physically hidden by local authorities by colorful walls and fences.
--- UN-HABITAT \cite{unhabitat2003slums}
\end{quote}
\section{Mapping for social change}
Activists have used maps to defend vulnerable areas for decades; Jai Sen's work defending Calcutta slums, discussed in Section \ref{subsec:empowerment}, is a good example. More recent efforts by Rio de Janiero-based Rede Jovem seek to promote the culture of the city's favelas using maps, in part to protect them from the imminent relocation due to the upcoming 2016 Olympics. At the Maps for Making Change project by Bangalore-based Center for Internet and Society and Tactical Technology Collective, participants advocate mapping the `greyed-out zones' and using `geographical mapping techniques to support struggles for social justice in India'. \cite{sen2010maps}
\ac{PGIS} researchers have also established a strong case for the diverse needs which participatory mapping can address. Robert Chambers lists several, ranging from benefits to outside aid organizations to direct benefits to the local community:
\begin{quote}
\begin{itemize}
\item{`Social mapping, identifying people 5, livestock, children who do and do not go to school, people in different livelihood and other social categories, wealth and wellbeing groups...}
\item{`Health mapping, for people with health problems, disabilities, special knowledge etc in communities. In the UK participatory mapping by women has shown the location and concentrations of breast cancer (Lynn et al n.d.)}
\item{`Farm mapping, combined with mapping of nutrient flows within the farm and over the farm boundaries (as undertaken by many organic farmers in Karatina, Nyeri District, Kenya in 1996)'}
\end{itemize}
\cite{chambers2006whose}
\end{quote}
\section{Environmental assessment}
As Chambers notes, beyond issues of land rights and ownership, there are many other potential uses for inexpensive map data; the ability to produce photographic, or raster maps of sensitive environmental sites may empower small organizations which are unable to acquire timely or high resoultion satellite images of sites of interest. Aerial imaging is a form of mapmaking particularly suited to environmental monitoring due to its ability to not only delineate regions of social and political interest, but raster data which can be used to compare plant growth, erosion, and even animal life. One case study we will examine is that of a group of environmental activists known as Coal River Mountain Watch. The West Virginia-based group have sought to gather meaningful and quantitative evidence of the environmental damage and health hazards of mountaintop removal mining across the Appalachia region of the United States. Besides the prohibitive cost of traditional satellite imagery and high level of expertise required by traditional GIS tools, they and other environmental activists strive for data which will make a visceral and emotional impact on policymakers and regulators, as well as the general public.
Currently, activists in Appalachia make widespread use of water conductivity tests to determine the degree of contamination in waterways due to runoff and blackwater releases. Conductivity is a secondary measure, and, though highly standardized, cannot convey the same sense of urgency as photography of, for example, a blackwater release, or the devastation that persists even in supposedly replanted reclamation sites. Aerial imaging, or specifically mapping, is an ideal blend of direct measurement and visual impact, and its main detractor is its price; overflights cost hundreds or thousands of dollars each and image processing is labor- and skills-intensive. A collaborative project examining the applicability of Grassroots Mapping tools to this problem was performed in May 2010 and is discussed in Section \ref{sec:ongoinguses}.
\subsection{Asset allocation mapping}
A subset of environmental monitoring is asset allocation mapping. Asserting a voice in the management of natural resources is dependent on quantitative information on the extent and valuation of the land, which is often carried out using GIS, a language of power from which local communities are often completely excluded. Peter Poole's article `Is there Life after Tenure Mapping?' and report `Information: the First Conservation Asset' examine in detail a number of case studies where participatory mapping was used by indigenous communities to support the `stewardship of biodiversity' \cite{poole2007belize}. Citing examples of his and others' work from Venezuela, Suriname, Belize, and elsewhere, Poole shows how cartographic techniques helped not only to monitor the activities of industrial development and extraction industries, but in some cases to take legal action against such initiatives.
Poole distinguishes between asset-based strategies and rights-based strategies, where the former uses \ac{GIS} tools to assert local control over territory in specific actions against asset extraction industries, rather than the rights-based approach of seeking broad legal recognition of territorial claims at the state level. \cite{poole2006there} While some of the examples he cites make use of GPS track collection or sketch mapping, the emphasis on environmental assets often necessitates raster imagery instead of coordinate data, and as such, Poole's project in Belize has made use of light aircraft photography, as well as kite and balloon photography, in collecting and presenting evidence to support claims. \cite{poole2007belize} The successes of this strategy present an exciting opportunity for such dramatically lower cost aerial photography techniques as offered by the Grassroots Mapping project, and I am excited by the prospect for future collaboration.
\section{Open geodata and crisis mapping}
\subsection{Crisis mapping and Ushahidi}
The ability of participatory mapping to provide accurate on-demand maps of changing situations has obvious applications in disaster response and management. A variety of different crowdsourced or grassroots mapping strategies have evolved in recent years with the intent to respond to, document, analyze, and report on the real-time occurrence of disasters and crises. From environmental crises such as the April 2010 BP Oil Spill in the Gulf of Mexico to the humanitarian crisis in the aftermath of the January 2010 Haitian earthquake, a clear need has evolved for low-cost, decentralized situational awareness and documentation tools with geospatial features. Here I discuss some of the challenges of fulfilling such diverse needs under unpredictable conditions.
\subsubsection{Ushahidi}
The Ushahidi platform has emerged as a common and easy-to-install system for crowdsourced crisis reporting. Developed in collaboration with Kenyan programmers to help voters report election violence in Kenya in 2008, it allows citizens with mobile phones to send 140-character text messages to a publicized telephone number. \cite{okolloh2009ushahidi} These messages are read by a group of editors, who attempt to identify where the messages were sent from, and are published on a web site as red markers at their best-guess location. That users self-report their locations, and may do so inaccurately, is tolerated because it may represent a means of privacy for some users, though Patrick Meier also suggests that in the aggregate it is quite difficult to `fake' an event. \cite{meier2010wag} In many cases no verification of reports is possible, yet in emergency response situations this has proven not to impede the use of Ushahidi data by agencies such as (in the Haitian earthquake of January 2010) the Coast Guard, the US Marine Corps, and FEMA. \cite{meier2010crowdsorcerors}\cite{meier2010ushahidi}
% interview LABB folks about how reports are verified
Ushahidi works in many cases because it is superficially simple to understand: visitors to an Ushahidi web site see a series of dots with messages such as `I'm stuck under rubble' and imagine a person sending such a message from their cell phone. It makes use of existing communications infrastructure --- namely that most people have cell phones --- and relies on both on the ability to send text messages and a willingness to send reports to a site which is not immediately viewable. However, Ushahidi is not a means to `make' a map per se, but rather to collect data on events occurring at specific times, and correlating them with an existing map.
Ushahidi has been successfully used to gather and publish extremely up-to-date information about unfolding crises, for example in the instance created by the New Orleans-based environmental group \ac{LABB} in response to the BP oil spill in April 2010. The kind of information it provides, however, is difficult to verify or to quantify, and is more useful in the context of emergency response than in evidence-gathering. \cite{meier2010verification} Locations must often be approximated to the nearest town or city, and most reports are often just a few words with no name or photographic evidence. While geotagged photographs can be uploaded to Ushahidi, EXIF data can be falsified, and in many cases there is an additional need for quantitative data. Map imagery provides more comprehensive information in that every pixel of a map has a corresponding location in the real world, allowing it to be correlated against other maps.
A combined strategy involving the use of an Ushahidi-like platform with aerial imaging can result in clusters of crowdsourced reports providing target sites for followup mapmaking sessions. This process was employed in the BP oil spill in the Gulf of Mexico between the \ac{LABB} Ushahidi instance and \ac{LABB}-led Grassroots Mapping trips.\footnote{See Chapter \ref{chap:gulf}} Maps of oil-affected areas were then posted back to the Ushahidi site as \ac{TMS} layers.
%\subsubsection{Photographs and maps as testimony}
\subsubsection{Satellite imagery}
\label{subsec:satelliterelease}
Public access to up-to-date imagery of crisis areas has become somewhat of a hot-button issue in crisis mapping circles, as those companies and agencies in control of the imagery do not always elect to release it, or to license it freely for any use. Whether due to an unwillingness to offer expensive imagery for unrestricted use, or due to the administrative burden of actually publishing such data for download under a permissive license, access to satellite imagery has become a frequent bottleneck for aid organizations.
Specifically in the bottom-up response to the Haitian earthquake and subsequent humanitarian crisis of January 2010, access became more difficult within weeks of the crisis. While GeoEye and other vendors generously offered open access to satellite imagery in the initial weeks of the crisis, most did not elect to do so on an ongoing basis, or for subsequent crises such as the February 2010 earthquake in Chile. This has caused a great deal of frustration for those outside the largest and wealthiest organizations. Specifically, Google and GeoEye's decision to revert to their standard license (severely limiting reuse) for new satellite imagery of Port au Prince after January 2010 elicited questions from the broader crisis response community, as voiced by Mikel Maron on the Crisis Mappers mailing list in late April 2010:
\begin{quote}
Maybe you can explain why Google has not continued the extremely helpful position it had in January?
Is the community of CrisisMappers doomed to lose that culture of sharing? Can't we do better?
\end{quote}
In the February 2010 earthquake in Chile, a similar plea for imagery was sent to the same list, prompting a reply from a UN-SPIDER representative. UN-SPIDER or the United Nations Platform for Space-based Information for Disaster Management and Emergency Response, is an organization whose self-described aim is in `providing universal access to all types of space-based information and services relevant to disaster management' which it fulfills by `serving as a bridge to connect the disaster management and space communities...' \cite{unspider2010aims}. However, the organization has been slow to adopt truly open data sharing policies, and to date makes relatively few data sets available to the public; most are reserved for so-called \emph{Authorized Users} --- typically government agencies and large disaster response organizations. \cite{charter2010brochure}
Ultimately, citizen-led mapping efforts present an opportunity to bypass this bottleneck by providing high-resolution, timely aerial imagery at low cost. Such an effort occurred during and after the 2010 BP oil spill in the Gulf of Mexico and is discussed at length in Chapter \ref{chap:gulf}.
\chapter{State of the Art}
\section{Participatory GIS for Development}
\label{subsec:pgis}
As discussed in Chapter \ref{chap:need}, \ac{PGIS} researchers have used geospatial technology since the 1990's to support communities in developing contexts for purposes such as making tenure claims, environmental defense against petroleum and other extraction industries, as well as for community planning purposes. This focus on underpriviledged and excluded communities is a natural extension of the \ac{PGIS} belief that, as Giacomo Rambaldi put it, `GIS, spatial data, and maps produce and negotiate politics and power relations', and their potential to `foster participatory decision making processes.' \cite{rambaldi2006participatory}\cite{osha2006participatory} Perhaps most importantly, such efforts promise to look beyond traditional technologies and systems of knowledge. This echoes Sarah Elwood's hope that alternative GIS movements `could incorporate diverse forms of spatial knowledge and promote multiple epistomologies'. \cite{elwood2009representations}
\label{subsec:pgisshortcomings}
Examples of adoption of geospatial practices amongst vulnerable communities are widespread, incorporating a variety of techniques including the use of handheld GPS devices to delineate ancestral boundaries, traditional pen-and-paper drawing on terrain maps, and even aerial photos from flyovers in lightweight aircraft. However, critics of \ac{PGIS} practice point out that despite the emphasis on inclusion in the mapmaking process, final map processing is often outsourced to `real' GIS experts, subverting the intent to involve participants directly in the production of their own maps, and building dependence on outside entities. While in some cases, local mapmakers have been successfully trained to use traditional digital GIS tools, obscure interfaces and basic internet access and literacy issues often present substantial challenges to this approach. \cite{poole2006there}
Also concerning is the persistence of a detached anthropologic attitude, where researchers distance themselves from the data they are `capturing'. In many \ac{PGIS} publications there is a definite note of surprise that `indigenous' communities, whether in sub-Saharan Africa or simply in communities without a high degree of technical fluency, could author good maps or manage geospatial data. The excitement over the moment of cartographic understanding which the following narration by Robert Chambers recounts is tempered by the condescension it implies:
\begin{quote}
It was also in 1988 in an AKRSP (India) RRA training... that a headman, asked to present to the villagers the map the outsiders had draw, had difficulty until he turned it ``upside down", which was the way he and the villagers saw their village . . . . We were teetering on the brink of learning that ``They can do it".
\cite{chambers2006participatory}
\end{quote}
\ac{PGIS} researchers have not been insensitive to these issues; Chambers himself points argues that `Many ethical issues present troubling dilemmas, and lead to overarching questions about empowerment and ownership. Questions to be asked, again and again, are: Who is empowered and who disempowered? And, who gains and who loses?' \cite{chambers2006whose}
In practice, there is a question of formats: while for many communities a paper map would be the ideal end product, many cartographers feeel the need to produce digital maps in a variety of formats, such as shapefile, \ac{KML}, \ac{WMS}, etc. This raises the question of who the intended audience is --- the funding agency, perhaps, or the \ac{PGIS} academic community, or even the blogosphere. These are valid considerations; if the mapmaking is intended to help a community to communicate with official entities, i.e. to influence a cartographic power relation, a digital end product may help to `translate' local knowledge into the relevant language of power.
To be fair, outsourcing of final map processing may seem like the only way to produce a completed map without the challenging prospect of training local participants in the use of GIS software. It may also be a means to build a better and more integrated relationship between the local community and those governmental entities they are attempting to communicate with. However, such benefits are speculative at best, and Peter Poole argues that such an advantage `has yet to be widely demonstrated', citing examples in Suriname and Venezuela. \cite{poole2006there}
Such difficulties suggest that a broader reconceptualization of GIS tools and practices --- which adapt geospatial interfaces and tools in order to lower barriers to entry --- may allow vulnerable communities more direct control over their geodata, its publication and use. The Grassroots Mapping project proposes an alternative geospatial workflow which echews expensive handheld GPS devices and complex software, in favor of direct photographic imaging. Design decisions have promoted intuitive and user-friendly interfaces (see the discussion of `rubbersheeting' in Section \ref{subsec:rubbersheeting}) over automated `black box' approaches. While the workflow I propose does depend upon internet access, it does so with the awareness that the ability to produce digital output is an important part of participation in broader geospatial discourse. Many governmental and aid organizations, and of course members of extraction industries, rely upon and communicate with GIS tools and formats, and in order to participate in decisionmaking with such entities, digital mapping is often a prerequisite.
\section{Web mapping}
\label{sec:webmapping}
With these challenges in mind, it is especially exciting that recent advances in web-based digital mapping tools have dramatically broadened access to geospatial technologies. Some degree of mapmaking ability has become commonplace to the internet-connected public since the advent of highly user-friendly `slippy map' interfaces such as Google Maps. The release of the Google Maps \ac{API} in the summer of 2004 was an important milestone to would-be cartographers, allowing users to modify and repurpose Google's web map services for new purposes. Among early applications of the \ac{API} was the GMaps Pedometer, which would output the length of a path you walked, along with how many calories you burnt. \cite{gibson2006google} From the frivolous to the essential, this means of mapmaking has become widespread and relatively easy. However, many would argue that this is not mapmaking at all; most of the users of Google Maps do not edit the underlying map data, but overlay points, lines, and polygons \textbf{on top of} Google's proprietary data --- an obscure but important fact which has direct bearing upon a broader participatory cartography.
\subsection{Google Maps and proprietary data}
In fact, not only Google Maps, but the vast majority of the online maps are based on the relatively static base maps made available by larger organizations. Google and other providers of map data publish these maps as collections of small image `tiles'; JPG or PNG images of 256 by 256 pixels, which are rendered ahead of time and cached. These are served using Apache or another conventional web server. The main benefit of this technique is that it serves map data as a set of regular image files; a standard and highly optimized means of distribution. These are re-assembled in the browser into an apparently continuous map, and as the user pans or `slips' around, new tiles are transferred to maintain the illusion of continuity.
A second reason for the use of map tiles is that it is quite difficult to reconstruct the original discrete vector data set from map tiles; in this respect they are similar to compiled code. Google and other commercial map vendors do not share their point, line, and polygon data, nor do they make metadata such as labels or land use markers available. Distributing tiles gives them a degree of control over what source data they choose to release.
Distributing the underlying data used to generate these tiles conflicts with these companies' business models: such data is valuable intellectual property. The tile-based rendering system strips the map of its metadata, making a local, or personal, critical, or revisionist interpretation quite difficult. Tiles are immutable --- they contain no information about authorship, no hyperlinks, and in order not to crowd a given tile, each one displays only a selection of available data for that corresponding area of the world. Though originally motivated by technical limitations, the near-universal use of tiled maps has become a form of exclusion, allowing large organizations to control maps in spite of the common rhetoric that the Google Maps API has enabled a more open, participatory cartography.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushleft}
\includegraphics[width=0.45\textwidth]{images/osm-composition.png}
\end{flushleft}
\end{wrapfigure}
Open data projects such as OpenStreetMap, the `wiki map of the world', do just the opposite --- like the open source software projects they took inspiration from, they publish the entire dataset as coordinates, semantic tags, polygons, and most importantly, time and authorship data. Though most maps using OpenStreetMap data are tile-based, the underlying data is freely available from the project's website --- anyone with enough disk space can download the entire planet's worth of data (over 200 gigabytes when loaded into a database) and create their own maps. In that dataset in particular, authorship data actually outweighs its geometric counterpart. Perhaps even more tellingly, historical data --- for areas of the map which have been overwritten --- occupy more storage space than current data. This suggests that authors have challenged each other's data more than they have added new data to unmapped areas. \cite{warren2009composition}
\subsection{OpenStreetMap}
\label{sec:openstreetmap}
OpenStreetMap.org, taken as an open-source software project, a database of open geodata, and a community of volunteer mappers, represents one of the best examples in recent years of the \emph{neogeographic} response to \ac{PGIS}. That is, without explicit ties to the \ac{PGIS} movement, or reference to the movement's two decades of literature and research, OpenStreetMap (or OSM, as it has become known in neogeographic circles) has attempted to meet many of the same goals since its founding in 2004. OSM encourages volunteers around the world to contribute to a single, shared digital map and corresponding map database. \cite{chilton-crowdsourcing}
In many ways it has met with wild success, and the size and detail of the OSM map database is formidable. In July 2010, the project included over 700 million points, making up some 56 million polygons, all contributed by more than 280,000 users. \cite{osm2010stats} However, participants are overwhelmingly European and American, and tend to be wealthy due to the emphasis on internet connectivity and the use of GPS devices to produce new map data.
In fact, the OSM data collection strategy relies most heavily upon three sources. First, existing municipal and public domain databases make up an enormous part of the available data; the TIGER database produced by the US Census increased the size of OSM by a factor of twenty. \cite{willis2007osm} Second, tracing of satellite data with the Potlatch, \ac{JOSM}, and other tools to extract vector data from rasters plays a large role, especially in areas with few local participants. This technique was used in the OSM Gaza project to map all of Gaza using a satellite dataset purchased for \$5,000 from DigitalGlobe using donations during the Gaza war in late 2008. \cite{maron2010openstreetmap}\cite{chilton-crowdsourcing} While convenient in that it does not require mappers to actually travel to the places they are mapping, it does not actively involve residents of an area in the mapping process, and sufferes from many of the shortcomings which inspired the \ac{PGIS} movement.
Finally, much of the OSM database was created by individuals carrying GPS devices to record GPX tracks, or collections of latitude/longitude coordinates. These are later uploaded, annotated and merged into the main OSM database using tools such as \ac{JOSM}. This is the preferred means of collecting data because of its high accuracy, its emphasis on firsthand mapping, the clear legal ownership of the data, and because of the implicit belief among many OSM participants that better maps are made `on the ground'. This belief is supported by the `on the ground' policy stated explicitly in the OpenStreetMap wiki, as is discussed in Section \ref{sec:groundtruth}.
\begin{figure}[h]
\begin{center}
\includegraphics[scale=0.45]{images/osm-diagram.png}
\caption{A system diagram of the OpenStreetMap, courtesy Iv\'{a}n S\'{a}nchez Ortega. The red box which I have added to the upper left represents how the Grassroots Mapping project may integrate with this system.}
\end{center}
\end{figure}
\subsection{The modern open-source geostack}
Another interesting aspect of OpenStreetMap is that it represents a deployed and working combination of many of the premier open-source mapping tools available today. It makes use of OpenLayers, a web browser-based framework for displaying raster map tiles using JavaScript. Tiles are produced using Mapnik, the popular open-source tile renderer. An array of other open-source utilities are used to create, edit, translate, import, and export the data. The Grassroots Mapping project, and especially the Cartagen Knitter, can be seen as an opportunity to augment this geostack with an equally open means of capturing source imagery and integrating such data into the open-source workflow.
\subsection{Humanitarian OSM Team}
An offshoot of the OpenStreetMap project known as \ac{HOT} was started in late 2009 by Mikel Maron, a map programmer and board member of OpenStreetMap. Positioned in direct response to the need for maps in areas of humanitarian crisis, Maron has organized members from the technology community to visit crisis zones such as Port-au-Prince as well as a long-term presence in Kibera, the largest slum in Nairobi, Kenya. \ac{HOT} uses the same tools as the wider OpenStreetMap community, and either runs a separate instance of the OpenStreetMap server and database, or directly uploads the data to the main OpenStreetMap.org service. \cite{osm2010hot}
\subsubsection{OSM Gaza}
\ac{HOT}'s first project, a volunteer effort to map the Gaza Strip during the 2008-2009 war between Israel and Gaza, relied on Yahoo Maps and Digital Globe satellite imagery. Over seven days, OpenStreetMap volunteers traced the satellite imagery in order to produce a more accurate, more up-to-date map, and with assistance from JumpStart International, the map was available online and for download with no copyright restrictions. \cite{chilton-crowdsourcing} This emphasis on placing map data (not just rendered maps!) in the public domain was intended to enable the widest possible uses of the information, on both a technical and legal basis. In order to preserve this legal status, the OSM Gaza dataset was published separately from the main OpenStreetMap database, though in accordance with its liberal licensing, a copy was uploaded to OSM as well. Building on the success of the OSM Gaza project, \ac{HOT} went on to collaborate with a variety of organizations in countries like India, Kenya, and Georgia, all using the OpenStreetMap toolset (see Section \ref{subsec:georgia}).
\begin{figure}[h]
\begin{center}
\includegraphics[width=1\textwidth]{images/kibera-gpx.png}
\caption{GPX traces collected from GPS units over three weeks of mapping in Kibera. \url{http://www.flickr.com/photos/mikel_maron/4143021346/}}
\end{center}
\end{figure}
Two projects by \ac{HOT} stand out as their most ambitious and influential. The first, called simply Map Kibera (\url{http://mapkibera.org}), produced a map of the famous Kibera slum in Nairobi, Kenya, in collaboration with several local organizations. This project differed from earlier \ac{HOT} projects in that it relied primarily upon local participants using hand-held GPS units to produce the map, as well as with paper-based map annotations using the Walking Papers system developed by Michal Migurski of Stamen Design. With a specific mission to engage in the sociopolitical aspects of cartography, Map Kibera is much more explicit than OSM Gaza in its agenda and the needs it addressed. It also represented a shift away from remote mapping by means of tracing, towards a model which relied more heavily on local expertise and familiarity with the site. In this sense it has much more in common with the Grassroots Mapping project; both attempt to empower local communities by buildling local capacity and ceding control over the mapping process to local individuals and organizations.
The second project of note is the mapmaking work done in the aftermath of the January 2010 earthquake in Haiti. While the full extent of crisis mapping work in Haiti is beyond the scope of this document, it is important to note that much of the work of aid organizations in the disaster was supported by OpenStreetMap data --- data which was traced from satellite imagery. Mikel Maron writes:
\begin{quote}The have been at least 400 OpenStreetMap editing sessions in Haiti since the quake hit. Mostly tracing Yahoo imagery, and gleaning information from old CIA maps. We also just received permission to use GeoEye imagery acquired post-event … that will allow us to tag collapsed buildings.\end{quote} \cite{maron2010haiti}
This dataset has proved essential, not only to the open geodata community, but to larger traditional organizations who were unable to find better maps, prompting some to refer to the Haiti disaster as a `sea change' in the widespread acceptance of crowdsourced geodata. Alan Glennon points out that `all the United Nations agencies acting on the ground in Haiti used OpenStreetMap for their print maps' \cite{glennon2010grassrootscrisis}
This reliance on satellite imagery for crisis mapping demonstrates its ability to rapidly produce maps, but neglects the importance of building local mapmaking capacity and infrastructure. The initial Haiti maps were made entirely without the participation of local residents, due to the urgency of the situation, not to mention internet access issues and the overwhelming willingness of foreign volunteers to help produce maps. As discussed in Section \ref{subsec:satelliterelease}, in the weeks and months following the initial disaster, access to satellite data would prove to be a bottleneck not only for local control of mapmaking efforts, but for everyone involved in the crisis mapping response. Open licensing of new imagery would allow for damage assessment and monitoring of the humanitarian crisis that has unfolded in the wake of the disaster.
\section{Orthorectification}
\label{sec:existingtechniques}
These difficulties highlight the need for an alternative and more inclusive means for sourcing aerial imagery, not only for local communities and activists, but for broader efforts like the crisis mapping and open geodata movements. With this in mind, this section will focus on existing approaches for capturing and processing aerial imagery. While there are a diverse range of approaches to participatory mapping, several prior works have focused, as I have, on building free or widely available tools for orthorectifying aerial imagery as a means to produce and publish mapping data. Their uses range from stitching aerial imagery captured from hobby-levelremote control aircraft to rectifying historical printed maps in order to digitize their contents.
\subsection{Map Warper}
\label{subsec:mapwarper}
Perhaps the most ambitious project of this type is the Map Warper software written by Tim Waters, Schuyler Erle, and Shekhar Krishnan, as part of their effort to `crowdsource' the digitization of the New York Public Library map archive. \cite{waters2009warper} The tool invites volunteers to orthorectify maps by matching Ground Control Points, or GCPs, between a source image and a reference map, and using an automated affine warp (based on the \ac{GDAL} open source tool) to produce a composite map.
While designed for warping archival maps onto a vector dataset, namely OpenStreetMap, the tool can be used to warp aerial imagery onto satellite data. This is achieved by inserting a new layer into the reference map pane, which is implemented in OpenLayers. The resulting warped image can be downloaded as a \ac{GeoTIFF} or accessed as a standards-compliant WMS layer. A more complete discussion of this tool and its applicability toward grassroots aerial mapping can be found in Section \ref{subsec:stitchingjp2}.
\subsection{GonzoEarth and manual stitching with Adobe Photoshop}
\label{subsec:gonzoearth}
One of the leading practitioners of low-cost mapmaking today is Stewart Long and his one-man company GonzoEarth, which provides `applied neogeographical techniques for on-demand mapping' \cite{long2010process}. Long is responsible for such impressive maps as the 2009 map of Burning Man, published at a 2 cm resolution\footnote{View the map online at GigaPan.org: \url{http://gigapan.org/gigapans/46290/}}. This map was warped onto a lower resolution base map, blended, and output as a BigTiff image, surprisingly using Adobe Photoshop CS4. The image was then reprojected and saved as a \ac{GeoTIFF} using the open source \ac{GDAL} package. Long's use of Photoshop extends to all his mapping work, due to its ability to `make dynamic selections, transformations, and stitching' including layer merging and flattening. \cite{long2010process} While observing his process, I noted that he would repeatedly return to earlier images in order to adjust them iteratively. GonzoEarth maps are among the best available in that they are seamless and consistent, and Long has both patience and a unique intuitive grasp of the process. Careful observations of his work have played a major role in the design of the Cartagen Knitter, described in Section \ref{subsubsec:knitter}.
The imagery for the Burning Man map was taken from a helium balloon by Jack Alderson, but Long also captures imagery by using a lightweight and relatively inexpensive remote control airplane called the Easystar, sold by the German company Multiplex. A small Canon camera is inserted into the cockpit and a hole is cut in the belly of the plane through which the pictures are taken. Long can fly the plane at up to a half-mile away, steering manually with a 2.4 Ghz transmitter and can capture imagery at hundreds of feet in the air. The plane can remain in the air for up to an hour.
\section{Aerial imaging with low-cost tools}
\label{sec:aeriallowcost}
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/maron-spy-satellite.jpg}
\caption{Maron jokingly referred to this experiment in \ac{KAP} as the `first Palestinian spy satellite'. \cite{maron2008former}}
\end{flushright}
\end{wrapfigure}
Due to the need for cheap and up-to-date imagery, a major part of the Grassroots Mapping project has been the design and use of low-cost platforms for capturing images of the ground from above. The use of kites and balloons to raise consumer-level `point-and-shoot' cameras has allowed participants to capture images of sites of interest at minimal cost. A Grassroots Mapping Kit can be assemnbled for less than \$150. This would not have been possible without building upon the long tradition of \ac{BAP} and especially the research and careful documentation by more recent innovators in the field. While balloons have been used as a platform for photography since Gaspard Felix Tournachon's first attempts in 1858 \cite{vierling2006short}, publications throughout the mid-1990s and into recent years by researchers such as Lee Vierling, A. Buerkert, Michiru Miyamoto, and many others, have established a diverse set of techniques and use cases for such imagery. Similar examinations of \ac{KAP} techniques by James and Susan Aber and others, have led to the coining of the term \textbf{Kiteography} --- defined by Vierling as the use of \ac{KAP} for `making large-scale topographic maps, based on photogrammetric principles.' \cite{vierling2006short} In general, the existing research has emphasized the low cost and high resolution of resulting data, and most researchers have focused on its applicability to environmental assessment. \cite{aber1999kite}\cite{aber2002unmanned}\cite{miyamoto2004use}\cite{boike2003mapping}
Of particular interest is Eric Wolf's thesis on the use of \ac{BAP} for `necrogeography', or the mapping of cemeteries, where he examined the accuracy and precision of various approaches to orthorectification.\footnote{See Section \ref{subsubsec:knitter} and Section \ref{subsec:precision}} as well as in comparison to high resolution readings from a differential GPS. Wolf has been generous in contributing advice and even equipment to the Grassroots Mapping project. Also of note are Mikel Maron's attempts to use kites to produce maps in Palestine \cite{maron2008former} with \ac{KAP} techniques. However, few of these prior works have addressed the challenges in facilitating the adoption of such tools by non-technical participants, or in their potential to provide high quality map data to those without proficiency in GIS technologies.
\subsection{DIYDrones.com and the T3 competition}
One notable use of autonomously piloted model aircraft which holds much promise for the future of low-cost mapping is the 2009 DIY Drones Trust Time Trial (T3) event, where enthusiasts of autonomously piloted model aircraft were put through a series of successively more difficult tasks such as flying a complex route. The competition's Round 4 event, entitled `Map a quarter-kilometer!' challenged participants to photograph a 500 meter square from their aircraft, and to submit a \ac{KML} of the route as well as a stitched map of the target area. Seven entrants from five countries completed the round, using a variety of autopilot systems and airframes. \cite{anderson2010winners} The complete costs of such kits ranges from approximately \$1,000 upwards, but as the cost of this type of equipment drops, this may be an increasingly viable means of capturing aerial imagery. At the same time, it is important to remember that these are essentially adaptations of military technology, and local context must be taken into account --- in many places, such as the West Bank, remote controlled aircraft may be unwelcome or perceived as threatening both by local communities and regional military or law-enforcement agencies.
The techniques I have refined in my own work have built primarily upon precedents in balloon and kite photography. I have striven to further simplify the assembly of a working kit, and attempted to devise methodologies for effective teaching of the techniques. In addition, I have worked with others to push the limits of balloon and kite mapping in terms of altitude, resolution, speed of capture, and ease of image processing and map publication. These improvements will be discussed in the following chapter.
\chapter{The Grassroots Mapping tool chain}
\label{chap:toolchain}
\section{Balloon and Kite Aerial Mapping}
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/100-dollar-satellite-poster.jpg}
\end{flushright}
\end{wrapfigure}
As discussed in Section \ref{sec:aeriallowcost}, prior works in kite and balloon mapping make it redundant to discuss the advantages of such techniques beyond to say that they are easier and less expensive than aircraft or satellite-based imagery sources. However, the particulars of the equipment desiged for Grassroots Mapping projects have emphasized yet lower cost, ease of use, and ease of reproduction than many existing designs, and a discussion of these decisions is relevant.
\begin{table}[tp]
\caption{Comparison of balloon and kite mapping techniques. Despite the challenges and higher costs of balloon mapping, typical extents of a balloon map are far greater due to the higher altitude of flight, and due to a balloon's tendency to fly vertically in low winds, it is much easier to image the correct area. In the largest Grassroots Mapping project in the Gulf of Mexico, more than 60\% of maps to datewere made with balloons, and kite flights have typically had a much lower success rate.}
\label{aggiungi}\centering %
\rowcolors{1}{tableShade}{white}
\renewcommand{\arraystretch}{1.4}
\begin{tabularx}{\textwidth}{>{\bfseries}rYY}
\toprule\hiderowcolors
Type&Kite&Balloon\\\otoprule\showrowcolors
Altitude&300m&1400m\\
Extent&several hundred meters&\textgreater1km is common\\
Control&hard to target imagery - difficult in winds \textless45kph or \textless10kph&very fine control on windless days - difficult in winds \textgreater10kph\\
Payload&\textless2 kg&\textless300g\\
Time constraints&best winds in early afternoon&lowest winds at dawn\\
Portability&foil kites pack down to 1 liter size&helium tank and fragility of balloon limit portability, access\\
Tether angle&poor, camera altitude as low as 1/5 of tether length&in windless conditions, flies vertically; very sensitive to wind\\
Durability&excellent, no consumables&very poor; balloons pop regularly\\
Cost per flight&none&\$15-35 per flight dependent on helium costs\\
Initial total cost of kit&\$100-400 depending on kite and tether material&\$150-500 depending on choice of balloon and tether material\\\bottomrule
\end{tabularx}
\end{table}
Due to the distinct compromises of each technique, I recommend that those attempting to capture aerial imagery equip themselves to use both balloons and kites. Luckily, the techniques share much of the same equipment, and it is possible in many places in the world to assemble a basic but complete kit for under \$150. I have done so in surprisingly unlikely locales, such as the West Bank in Palestine, Lima, Peru, and Kutaisi, Georgia.
\subsection{Balloon mapping}
Helium is a limited and non-renewable resource, and obtaining it in the quantities necessary for aerial photography can prove challenging in the more remote parts of the world. 250 cubic foot tanks are most common, but are too heavy to carry without a wheeled dolly, and do not easily fit into cars or buses. They are also excessive, providing enough helium for between six and ten flights with a typical payload. If available, 80 or 120 cubic foot tanks are preferable, typically sold in the United States for \$45 and \$60, respectively. Those constructed from aluminum are especially convenient, being far lighter and easier to transport. Costs vary, depending on the distance from major helium sources such as the United States and Russia, but I have found large, 250 cubic foot tanks available for rental at approximately \$250 each in Bethlehem, in the West Bank, and for approximately \$300 in Lima, Peru, both at party stores. Gas supply vendors may offer somewhat lower prices, but sometimes require a permanent customer account, and can be reluctant to rent to non-industrial customers.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/trash-bag-ballooning.jpg}
\caption{Testing trash bag balloons with the Department of Play working group on the MIT campus in Cambridge, Massachusetts.}
\end{flushright}
\end{wrapfigure}
To further reduce costs, it is possible to use large high density polyethelene trash bags, of the kind typical worldwide. Two extra-large ninety-nine gallon bags suffice to lift a small camera and string to thousands of feet. Bags may be sealed shut with tape and filled without modification, or cut open and reassembled into tetrahedral shapes to minimize the surface area to volume ratio and provide greater lift. In addition, trash bags may be left inflated for several days without stretching or damaging the plastic, unlike latex balloons. However, helium leaks slowly through the plastic, and even relatively thick 2.7 mil plastic bags will lose most of their lifting power after a day or two. Trash bags are available for less than a dollar anywhere in the world, as is the clear plastic packing tape which may be used to seal them closed.
\begin{table}[tp]
\begin{threeparttable}[b]
\caption{Comparison of balloon type options}
\centering %
\rowcolors{1}{tableShade}{white}
\renewcommand{\arraystretch}{1.4}
\begin{tabularx}{\textwidth}{>{\bfseries}WYYY}
\toprule\hiderowcolors
Type&Cost&Typical \# of uses&Permeability\\\otoprule\showrowcolors
5-foot polyurethane advertising balloon\tnote{1}&\$140&hundreds?&Deflates 1-3\% per day\\
8-foot\tnote{2} latex weather balloon&\$25&up to 10 if careful&remains inflated for several hours; this weakens the balloon\\
Trash bags&~\$2&2-3&1-2 days if thicker (3 mil) plastic is used\\\bottomrule
\end{tabularx}
\begin{tablenotes}
\item [1] Available from Southern Balloon Works, \url{southernballoonworks.com}
\item [2] `8-foot' denotes burst diameter, actual filled diameter during use is approximately 4 feet
\end{tablenotes}
\end{threeparttable}
\end{table}
\subsection{Kite mapping}
Kites present an opportunity to loft cameras at near-zero cost --- materials for making kites can be found for less than a dollar, or recycled from waste. However kites can be particularly challenging to fly stably and difficult wind conditions often make for a frustrating and exhausting day of attempted mapmaking. With this in mind, I have looked to the experience of \ac{KAP} enthusiasts in choosing a respected standard in highly portable, reliable, and flexible flight: the Sutton Flowform. This `sled kite' has no rigid spars and even its 16 square foot model can be packed down to fit in a small sack. Flowforms can be flown at a wide range of wind speeds and the Flowform 16 can lift tens of kilograms in ideal conditions. However, its ~\$100 cost makes it somewhat beyond the means of many map makers. Therefore, whenever possible I have encouraged my collaborators to apply local traditional kite designs, often with great success. In Lima, Peru and Ramallah, Palestine, local designs were cheap and effective, the only issue being that they had to be scaled up to a size which could lift the approximately 300 gram payload. Kite building makes for an engaging and fun activity while reyling on local means of production for an aerial platform.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/kite-cesar.jpg}
\caption{C\'{e}sar, a \ac{CEDRO} student, completes a kite of his own design in Juan Pablo II.}
\end{flushright}
\end{wrapfigure}
\begin{table}[p]
\caption{Balloon mapping kit pricing}
\centering %
\rowcolors{1}{tableShade}{white}
\renewcommand{\arraystretch}{1.4}
\begin{tabularx}{\textwidth}{WYWY}
\toprule\hiderowcolors
\textbf{Mid-range estimate}&&\textbf{Minimum estimate}&\\\otoprule\showrowcolors
8 ft diameter weather balloon&\$30&2x100 gallon trash bags&\$3\\
2000 ft. nylon string&\$50&2000 ft. nylon string&\$24\\
cotton string, duct tape, packing tape, rubber bands&\$20&cotton string, duct tape, packing tape, rubber bands&\$10\\
Soda bottle, cardboard&\$2&Soda bottle, cardboard&\$0\\
Scissors&\$8&Scissors&\$2\\
Camera&\$80&Camera&\$50\\
Clips etc.&\$5&Helium&\$55\\
Helium&\$55&&\\\hline\hiderowcolors
Total&\$250&Total&\$144\\\bottomrule
\end{tabularx}
\end{table}
\begin{table}[p]
\caption{Kite mapping kit pricing}
\centering %
\rowcolors{1}{tableShade}{white}
\renewcommand{\arraystretch}{1.4}
\begin{tabularx}{\textwidth}{WYWY}
\toprule\hiderowcolors
\textbf{Mid-range estimate}&&\textbf{Minimum estimate}&\\\otoprule\showrowcolors
Sutton Flowform 16&\$110&Trash bags \& sticks&\$3\\
1000 ft 200 lb dacron or spectra string&\$50&1000 ft nylon string&\$20\\
Kite reel&\$20&Soda bottle, cardboard&\$2\\
Soda bottle, cardboard&\$2&Scissors&\$2\\
Scissors&\$8&Camera&\$50\\
Camera&\$80&Clips etc.&\$5\\
Clips etc.&\$5&&\\\hline\hiderowcolors
Total&\$275&Total&\$99\\\bottomrule
\end{tabularx}
\end{table}
\subsection{Camera and intervalometer}
Throughout the design of the Grassroots Mapping Kit I have emphasized low cost; therefore, taking a note from the page of low-cost aerial photographers like Oliver Yeh of \href{http://1337arts.com}{1337arts.com}, I recommend an inexpensive `point-and-shoot' camera, ideally of Canon's A or SD lines (the SD series is sold under the brand IXUS in Europe). While these tend to be in the 7-12 megapixel range, they are typically only 200-300 grams and are durable and compact. Such cameras can be found second-hand on \href{http://ebay.com}{eBay.com} for as low as \$50. Despite resolution, lens choice and stabilization advantages of more expensive models, consumer-grade compact cameras of this sort are widely available, and their image quality is sufficiently high that they make a good balance of weight, image quality, and cost --- the latter being of especially high importance since we have occasionally lost entire kits due to accidents such as improperly tied knots or sudden immersion in water.
Consumer-grade Canon cameras also benefit from the active open-source hacking community's efforts to provide an alternative firmware with advanced features such as scripting. The \ac{CHDK}, which is stored on the camera's SD memory card, makes possible a script which I have adapted to trigger image capture every 5-10 seconds. The script, referred to as an intervalometer, is available for download at \url{http://wiki.grassrootsmapping.org/show/BalloonAerialPhotography}. Alternatively, many participants have found it easier to set their camera to `continuous mode' and hold down the trigger button with a rubber band. This captures an image must faster; typically once per second, filling up the memory card and using more battery power. However, it has the benefit of simplicity, and of working with almost any brand of camera.
\subsection{Enclosures and suspensions}
\label{subsec:cameraenclosures}
In order to attach the camera to the balloon or kite, \ac{KAP} enthusiasts typically make use of a `Picavet suspension', an arrangement of one continuous string on a series of rings or pulleys. This has the exceptional ability to keep the camera level and relatively stable even in turbulent conditions. However, experience in Peru\footnote{See Chapter \ref{chap:peru}} showed that constructing a working Picavet and maintaining it without tangles can be difficult, especially under adverse conditions such as long crowded bus rides, limited construction materials, and excited young participants. In the light of these challenges I have developed a more basic but still serviceable alternative called the `Soda Bottle Rig' which as an added feature protects the camera from light impacts. The basic design can be seen in Figure \ref{fig:soda}, and includes a pair of `wings' placed approximately 30 degrees apart, which serve to stabilize the enclosure against the wind, reducing radial blurring in the aerial images.
\begin{wrapfigure}{r}{0.4\textwidth}
\label{fig:soda}
\begin{flushright}
\includegraphics[width=0.35\textwidth]{images/soda-bottle-overview.jpg}
\caption{The Soda Bottle Rig}
\end{flushright}
\end{wrapfigure}
The soda bottle rig is convenient to carry, and makes immediate visual sense to observers, unlike the confusing array of crossed strings in the Picavet. The additional swaying of the Soda Bottle Rig in fact results in greater extent in the resulting maps, though resolution drops dramatically as photographs become more oblique. This does allow map-makers to decide whether to sacrifice consistent resolution in favor of a larger extent, however. In addition, while it works well for the typically horizontal tether of a kite, the Picavet suspension is rendered largely useless on a vertical tether, as the two mounting points are placed inline, one above the other. The Soda Bottle Rig has been used through the BP oil spill mapping project described in Chapter \ref{chap:gulf}. Still, experienced aerial photographers may achieve better results with the Picavet suspension in kite photography.
\section{Map processing and publication}
Once aerial imagery is captured, software must be used to distort or `warp' the photos and combine them to fit a projection. This essentially maps every pixel of the source imagery to a corresponding position on the earth's surface, allowing for correlation to other maps and sources of geodata. As no existing tool has so far met all of the design requirements I had compiled from the pilot project in Lima, Peru --- such as cost, ease of use, low barrier to entry, and performance (see Section \ref{sec:existingtechniques}) --- I developed a unique tool and associated mapping framework with the goal of making DIY cartography simpler, cheaper, and more inclusive.
\subsection{Web-based orthorectification and warping}
The collaborative mapmaking process conducted in Lima in January 2010 demonstrated that the primary barrier to producing map imagery was the orthorectification process. While in Lima, participants made use of Adobe Photoshop CS4 as well as the Map Warper software discussed in Subsection \ref{subsec:mapwarper}. Attempts were made to instruct residents in the use of these tools, but were met with limited success due to the limited availability of computers powerful enough to run Photoshop, latency in internet access, and most of all, the obscure interfaces which users were required to learn.\footnote{See further discussion in Section \ref{subsec:stitchingjp2}}
\subsection{Cartagen Knitter}
\label{subsubsec:knitter}
The Cartagen Knitter software, developed in the months following the project in Lima, makes this possible. Using the Cartagen framework along with an HTML 5 distortion technique prototyped by Steven Wittens of \href{acko.net}{http://acko.net} \cite{wittens2008projective}, I created an interface for users to upload images as overlays on an existing base map, typically OpenStreetMap vector data or a source of existing satellite imagery. Users then manually distort an image by dragging the corners with the cursor. Tools for rotating, scaling, and adjusting the transparency of images were added, and the tool was tested and refined in a variety of workshops and mapping projects over several months.
\begin{figure}[h]
\begin{center}
\includegraphics[width=1\textwidth]{images/cartagen-in-action-rustavi.png}
\caption{Warping aerial imagery over a base layer from Google Maps. The imagery was captured with students and OpenMapsCaucasus staff in Rustavi, Georgia, using kites. Note that imagery orthorectified against Google satellite data may be considered a derivative work; a base layer available under an open license is preferable.}
\end{center}
\end{figure}
Cartagen Knitter makes several unique choices about how users orthorectify imagery. The first is that it emphasises orthorectification of individual images against a base map, rather than initial stitching of images into a larger composite image and subsequent orthorectification and warping of that larger image. This decision was based on the relatively high computing resource requirements of manipulating a single higher-resolution image, given Knitter's emphasis on low-resource usage. Additionally, Eric Wolf of the US Geological Survey has found experimentally that the composite, or mosaic, technique suffers from a loss of accuracy. His analysis demonstrated a loss of accuracy of `nearly 100\% in both location and orientation'. \cite{wolf2006lowcost}
The second design decision which may seem curious is the emphasis on a completely manual orthorectification interface: no automated interest point finding or matching is used, despite the availability of such software (i.e. Hugin, Photosynth, Vision Workbench, etc.). Even Map Warper automatically warps images using the \textbf{gdalwarp} utility, though it asks users to identify ground control points to determine how to perform the warping. In practice, however, the use of such automated techniques did not result in good mosaic images, nor was the process of stitching, warping, and orthorectifying easy to understand or troubleshoot for non-technical users. Hugin provides for rectilinear warping, which does not assume a fixed camera position, but in order to successfully apply this configuration in the graphical user interface requires a `hack' and existing documentation is either unclear or obsolete. Additionally, desktop programs such as hugin or Photosynth may be difficult to install in an internet cafe, which users in Lima might find necessary.
\subsection{Rubbersheeting}
\label{subsec:rubbersheeting}
The manual orthorectification process is based on an interface paradigm known as `rubbersheeting', due to its similarity to physically stretching rubber sheets over a reference map. The distortion used in Cartagen Knitter is technically known as a projective warp, unlike the polynomial `affine warp' employed by Map Warper, or the simple stretching used by Google Earth. While considerably more computationally intensive than a first-order affine warp, the projective warp results in an exact mapping of four corners of the warped image to latitude/longitude coordinate positions. By contrast, Google Earth can only exaggerate the height and width of an image, while Map Warper attempts to find a best fit, accepting measurable inaccuracies in the placement of each point. While affine warping can compensate for spherical distortions such as lens effects, in practice, it was difficult and frustrating for users to place control points which did not actually bind a position in the warped image to a position in the base image. Many users attempted to compensate by placing deliberately incorrect control points. \cite{bentley2010warping}
Direct placement of the four corners of an aerial photograph on a base map was a much more direct means to orthorectify images. While this does not allow for spherical or nonlinear distortions, future versions could accommodate further subdivision of an image into a triangulated mesh; this would allow for more subtle adjustments of the interior of an image without disturbing the positioning of the outer edges of the image. Additionally, known lens geometry, extrated from \ac{EXIF} data, could be used to reduce lens distortion automatically.
The resulting interface was both easy to explain to users and faster than alternatives. Non-technical uses and even children have used the Cartagen Knitter to produce large maps in just a few hours, and the export feature added recently has enabled finished maps to be saved in the \ac{GeoTIFF} and \ac{TMS} standards, and viewed in common tools such as \ac{JOSM}, facilitating integration into existing workflows.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/knitter-wileys.png}
\caption{A map of Wiley's Last Resort in Kentucky, produced in Cartagen Knitter with imagery captured from a remote controlled aircraft by Stewart Long.}
\end{flushright}
\end{wrapfigure}
\subsection{Cartagen: an alternative architecture for digital maps}
Beyond the ability to orthorectify imagery, Cartagen is a fully-fledged cartographic scripting environment and renderer. It can draw vector data onto a pixel grid at over 10 frames per second on most computers, and follows the conventions of an animation framework rather than the more static assumptions of the typical mapping system. As the user interacts with a Cartagen map, features are updated and drawn continuously. This negates the need to cache or otherwise store raster representations of map data, and sidesteps many of the assumptions and limitations of the modern mapping software stack. This alternative geostack is one of the most unique aspects of the Grassroots Mapping tool chain, and is also what makes possible the rapid feedback loop of the Cartagen Knitter, as there is no `render' or `warp' step --- the effect of the user's orthorectification is visible in real time.
\subsubsection{Dynamic local rendering}
As discussed in Section \ref{sec:webmapping}, most digital maps today employ a server-side caching mechanism providing a tiled image collection. The tiles are assembled seamlessly in the user's browser, and zooming is accomplished by maintaining multiple tilesets --- one for each zoom level. The resulting system scales predictably, as tiles do not vary dramatically in file size, and can be served using a standard web server such as Apache, or even stored locally for offline use. While this works well for a single dataset, it commits the map to a single representation. Multiple tile sets can be stacked, and polygons can be overlaid, but the end user cannot edit the tiles or manipulate the data they contain --- the map is essentially static. Compressing data into tiles strips them of their metadata and authorship information in favor of scalability and consistency, but such a tradeoff may no longer be necessary. For companies such as Google or Yahoo, this represents a form of control over the map data; instead of distributing the source data, their use of tiles protects their intellectual property from re-use or adaptation.
I designed Cartagen to sidestep many of these requirements, and to allow users to participate as first-class citizens in the authoring of maps. Using new techniques made possible by widespread browser support for HTML5 and specifically the Canvas element, Cartagen can create maps which are not pre-rendered, but generated on-the-fly. This frees the map from a single projection or representation, and enables a more dynamic, interactive, and narrative cartographic style. Discrete vector data (made up of points, lines, and areas) is downloaded in JSON format just once, and displayed at any scale and in any style. HTML5 adoption in open-source web browser frameworks such as WebKit, along with recent dramatic increases in JavaScript execution speed makes this local rendering possible, and eliminates the need for browser plugins like Flash or Java. This makes dynamic mapping possible even on mobile devices such as on the iPhone, Android, and Windows Mobile platforms, many of which implement these new standards.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/gss.pdf}
\caption{An example \ac{GSS} stylesheet, demonstrating the simple syntax it uses to specify map styles.}
\end{flushright}
\end{wrapfigure}
As an added advantage, Cartagen performs much of the computation of map rendering and display locally, reducing dependence on high-latency internet connectivity. It also allows users to easily download data and view or edit it offline. These features make it particularly appropriate for use in developing countries or in crisis situations. When multiple users access a map simultaneously, an additional benefit is that any number of users may edit simultaneously --- a feature which has dramatically accelerated the speed of stitching a map in field tests.
\subsubsection{Cartographic design with Geographic Stylesheets}
Though other mapping frameworks such as OpenLayers have made use of the canvas element as well as other alternatives such as \ac{SVG}, Cartagen was among the first to appropriate the `content vs. style' paradigm of HTML/CSS, in order to allow users to style maps using a simple CSS-like syntax, known as \ac{GSS}. This took advantage of Cartagen's live-rendering ability to render features in response to simply defined, tag-based style definitions. Cartagen is one of the most easily customizable map rendering frameworks, and is specifically designed to leverage widespread literacy in HTML/CSS, thereby lowering barriers for those interested in using geospatial design tools.
\begin{figure}[h]
\begin{center}
\includegraphics[width=1\textwidth]{images/knitter-josm.png}
\caption{Viewing output from the Cartagen Knitter in \ac{JOSM} for contribution to the OpenMapCaucasus project in Georgia. Read more in Section \ref{subsec:georgia}}
\end{center}
\end{figure}
\subsection{Architectural advantages of the Cartagen framework}
As a fully scriptable cartographic environment, the Cartagen framework was uniquely suited for building an image orthorectification tool. The Canvas element is essentially a pixel raster, but because Cartagen's primitives are vector objects stored as points and polygons, it there is no need to resample source imagery while performing distortions or transforms. Resampling and compositing occurs only once a map is completed and exported, reducing data degradation due to repeated resampling. While in Photoshop, a powerful computer is required to store, manipulate, and export a map of any considerable size\footnote{Some maps produced during the BP oil spill project were over 50,000 px in each dimension}, Cartagen can be used to stitch maps using a laptop or even a low-power netbook. While editing, users see a lower-resolution preview rendered only at the size of their browser window. The final, high-resolution composite image is exported using ImageMagick on the server side. This lowers the cost of the equipment to process and orthorectify aerial imagery by thousands of dollars.
In a sense, rendering is at the heart of the argument for participatory cartography. If mapping is to be a means to advance an agenda, develop a narrative, or create a communal self-image, it must allow for diverse forms of representation. We have the divergent data and the means to collect, collate, and publish it – what we lack is a way to represent it in layered, interactive, and radical new ways. Cartagen's unique architecture allows it to describe a constantly changing data set with both technical and epistemological consequences. Once maps are rendered in the browser window instead of by Google or Yahoo, users are empowered to design, interpret, manipulate, and publish that data in new and compelling ways.
\section{An iterative and collaborative approach to tool design}
In order to develop tools which respond well to user needs, I employed a collaborative process, testing various tools in a variety of contexts. Combinations of tools were tested with participants from Lima, New Orleans, and Rock Creek, West Virginia. Interviews and notes were used to develop new tools which built on the strengths of existing off-the-shelf systems such as Photoshop, Hugin, and Map Warper. The same is true for the physical tools such as the balloon and kite kits, including the camera housing, reel construction, and auto-triggering setup.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/pat-coyle-video.png}
\caption{Still frame from Pat Coyle's demonstration on YouTube \cite{coyle2010sodabottle}}
\end{flushright}
\end{wrapfigure}
In the case of the camera housing, Grassroots Mapping community members have iterated and improved upon the soda bottle enclosure, discussing and testing alternatives on the mailing list, and even posting videos of tests. Pat Coyle, a mailing list member, published a narrated demonstration of a soda bottle enclosure with improvements such as a window to access the camera controls and a small bungee cable to stabilize the camera against the inside of the bottle. In another example, Mathew Lippincott prototyped solar-powered hot air balloons constructed from painter's plastic sheeting, conducted pigmentation and lift tests to determine suitability for carrying cameras. The tests and builds were held at a public event in Portland, Oregon, and videos and instructions were posted online.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/lippincott-workshop.png}
\caption{Mathew Lippincott leads a workshop entitled `Grassroots Mapping PDX' where participants constructed and tested solar and helium balloons made of plastic sheeting, for use in the Gulf of Mexico.}
\end{flushright}
\end{wrapfigure}
My own regular testing of new tools at the MIT campus, as well as repeated attempts to orthorectify the resulting imagery, grounded the software development in concrete usage and experience, and a workshop at the Google campus in Mountain View in April 2010 included a collaborative hacking session aimed at identifying and resolving bugs and adding new features in direct response to the day's mapping efforts.
As development of the Cartagen Knitter software progressed, mailing list members with a variety of needs chipped in with suggestions, bug reports, and feature requests, including the ability to lock images when finished warping, revert to original image proportions, and use keyboard shortcuts for common commands. Combined with test flights and experimentation by active community members such as Pat Coyle and Mathew Lippincott, the tools have progressed from partially functioning prototypes to relatively mature technologies with understood abilities and limitations. It was the multiple deployments of the tools in the Lima, Peru and BP oil spill case studies, however, which put them to the test in real-world applications, and forced us to push the tools' abilities to their limits.
\chapter{Case Study: Grassroots Mapping in Lima, Peru}
\label{chap:peru}
\section{Introduction}
In the interest of basing tool development and design on real-world applications, and due to an ongoing conversation with Carla del Carpio of Lima-based Manzanita `A', I travelled to Lima, Peru in January 2010 to work with residents of several informal settlements and a number of NGOs on Grassroots Mapping projects. From the start, this was considered an experimental program, where Peruvian collaborators would help to better define needs and to iterate and improve upon the balloon and kite imaging techniques.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/kids-canta-gallo.jpg}
\caption{Children capturing aerial imagery in Canta Gallo, Lima, Peru.}
\end{flushright}
\end{wrapfigure}
The program was also explicitly educational in its goals, and with educators from Lima-based \ac{CEDRO} and Manzanita `A', a curriculum was developed to involve local youth in the mapmaking process. We placed emphasis on examining the cartographic process with students not only in the sense of recording the present layout of students' communities, but with the intent to depict and discuss geography in the context of their history and future. We devised a series of exercises were devised to situate mapping as a way to examine and reflect upon rapid urban growth and participatory urban planning such as occurs in the partner communities.
This alignment of mapmaking with education and youth empowerment was not new to the project, but for the first time it was one of the primary goals. Mappers often ask me why I work with kids; educators, on the other hand, rarely ask why I focus on mapping. To answer the former, one of the main reasons is that kids are good mappers. They represent a wealth of knowledge about the very details of a community which adults are likely to gloss over. They have the attention span, the patience, and the enthusiasm, and are often more open-minded and creative than their adult cartographic colleagues. They bring a unique point of view to mapmaking, taking less for granted about their geography, and stand to learn a great deal from such a combination of the physics of flight, the mathematics of cartography, the history of urban development, and the political implications of their physical world. Roger Hart emphasizes in `Children as Community Researchers' the potential for children to `learn to see themselves as competent and confident members of their community', pointing out that `Children and adolescents appreciate the opportunity to feel that they can play a useful role in community or environmental improvement.' \cite{hart2001children}
Making maps of such quality and utility with school children also highlights the ease with which such maps can be made to skeptical adults, and pragmatically speaking, it can be hard to use balloons and kites in any populated area \emph{without} including kids, as they usually come out of the woodwork, eager to participate. Finally, there is a sense that everyone becomes a child when flying balloons and kites, and certainly the presence of a large group of eager kids tends to ease the inhibitions of curious adults, encouraging them to loosen up and take part in the fun.
The selection of Lima as a site for prototyping and collaboration was also due to its history of informal settlement, and the project was intended to provide easy and inexpensive alternative means for communities to produce maps specifically for tenure claims. My colleagues in Lima and I believed that it would be possible for partner communities to submit such maps to the relevant authorities\footnote{An organization known as \ac{COFOPRI}, whose mission is to `Execute the creation of property rights such that they provide sustainable, judicially secure ownership titles.' (`Ejecutar las acciones de generación de derechos de propiedad predial que otorguen seguridad jurídica permanente y que sean sostenibles en el tiempo.') \cite{cofopri2010mision}} as part of official petitions for land title. However, we felt that this agenda should be secondary to the educational goals we established, and to emphasize the benefits of process over end product. Further discussion cemented our belief that as non-residents --- who would not be affected by the legal outcomes --- it was not our place to aggressively advocate such uses.
\subsection{The Other Path: Lima's history of informal settlement}
Lima's history made it an especially suitable choice for participatory mapping on a cultural level as well, as it has expanded over the last century to include a full third of the population of Peru, in what has become a process of continuous and transformative growth. The result is a city in which large tracts of land have been settled `extralegally', a term borrowed from Hernando de Soto's exhaustive history of the city in `The Other Path'. These settlements are known locally as `invasions' due to their inhabitants' sense of having not only literally seized the land from private landowners or the government, but of having unilaterally constructed a working alternative to the official municipal government, including public works, tax collection, and education. These communities, typically made up of only a few hundred people, are truly independent from the central government, and only through a years-long process are able to gain title to their land along with basic services such as plumbing and electricity.
De Soto paints a picture of a government and bureaucracy entirely overwhelmed by floods of immigrants from rural areas, and entirely unable to accommodate these newcomers in a coherent or efficient legal process. `We appear to be witnessing', he writes, `the most important rebellion against the status quo ever waged in the history of independent Peru.' The numbers are stunning; even at the time of his writing in 1987, he describes in detail how `...through invasions or illegal aquisitions of land, neighborhoods sprang up which today account for 42.6 percent of all housing in Lima and are home to 47 percent of the city's population.' \cite{desoto1987sendero}
This situation, though not unique in the world, is especially appropriate as a place to attempt a mapping project which acts both outside of traditional cartographic means of production, and outside the conventional framework of GIS. In the months that followed the Lima project, I began to refer to the tools and techniques which were prototyped in Lima as a `DIY satellite', and that seems fitting given that in the invasions of Lima, residents are accustomed to Doing Everything Yourself, from constructing roads to building and maintaining their own plumbing. In addition, any means to reduce the barriers to acquiring tenure is of high value; de Soto's research shows that the market value of a plot of land increases ninefold when its owner receives official title. As in many urban slums worldwide, most residents do not have a bank accounts; the home itself represents the primary means of storing wealth. Land title therefore becomes a form of valuation, and makes it possible to sell one's plot, or use it as collateral for a loan. More than anywhere else, cartography is inextricably connected to basic systems of value in the invasions, making them an exciting place to test a more participatory means of making maps.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/juan-pablo-measuring.jpg}
\caption{Measuring homes with a paper measuring tape in Juan Pablo II, Lima, Peru.}
\end{flushright}
\end{wrapfigure}
Additionally, we identified a number of more immediate applications for an up-to-date map. Both \ac{CEDRO} and Manzanita `A' looked forward to using maps for research and planning purposes for their ongoing projects in the settlements. The maps could also be used to support decision making amongst community leaders, for public works projects, land use discussions, and even for promotional purposes. Simply providing another means for community members to gain access to a map would allow them to compare it to the `official' version, or to independently verify that the community was in fact built to their agreed plot divisions. Finally, the process of making the map would build literacy in cartography and give participants more say in how their community is represented to the outside world.
\section{Mapping with Juan Pablo II}
Both Manzanita `A' and \ac{CEDRO} were enthusiastic about the potential of a mapping project from the outset, and Carla del Carpio coordinated with \ac{CEDRO}'s Ernesto Fernandez to set up a 6-day program, or `Projecto Integral' with a group of approximately a dozen students in the Juan Pablo II settlement in Lima's Villa el Salvador district at the south end of the city. Each day of activities, held between January 12 through 28th, lasted from 11am until approximately 3pm. 4-6 \ac{CEDRO} instructors and 2 from Manzanita `A' attended, and the students ranged from 8 to 14 years old. The Juan Pablo II community consists of approximately 6 blocks of homes arranged in a loose grid, though this was not apparent from the Google Maps imagery, which we dated to approximately 2006, or 4 years earlier. The community was 5-6 years old, and many but not all of the students remembered when their families had first come to the site.
We began the workshop with an introduction to map making, by asking students to work together to draw their community. This resulted in a variety of means of representation, though as we continued to discuss maps, they tended toward a birds-eye view. Even then, some experienced difficulty in collaborating on a drawing at a common scale, with some adjustments and redrawings occurring once each student's map intersected their neighbor's. An attempt to show the existing Google Maps imagery and to ask students to identify their homes or even the entire community in a map were not successful; the maps did not seem relevant to participants, as most students seemed not to have a high degree of computer literacy or exposure to the internet. Next, students enthusiastically constructed measuring tapes and we broke into groups to literally measure the homes.
\subsubsection{First flights in Juan Pablo II}
Interested in quickly capturing aerial imagery and moving on to analysis, we begin flying balloons on the 14th of January. Four balloons, each approximately 3 feet in diameter, were attached to a Picavet suspension (see Subsection \ref{subsec:cameraenclosures}) and launched on a 500 foot tether of nylon kite string. Winds of over 10 mph prevented us from capturing many images from high altitude, and frustratingly, this continued to be the case for several subsequent sessions.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/juan-pablo-first-flight.jpg}
\caption{Initial balloon flights in Juan Pablo II.}
\end{flushright}
\end{wrapfigure}
Involving the students as full participants, or actors, in the process was also difficult, as only one or two people could hold the balloon at a time, and it required several minutes of experience before students were confident enough to reel the tether on their own. Juan Pablo II is located on a southward facing hillside, and the kites flew at a very shallow angle --- close to the ground -- as wind blew northward over the ridge. We attempted a variety of kites and launch locations.
On the 26th, after several more attempts with both balloons and kites, we captured several uesable images of the community, and together with Carla del Carpio and Ysabel Luisa of Manzanita `A' I stitched together the images into the best and most up-to-date map yet of Juan Pablo II.
\begin{figure}[h]
\begin{center}
\includegraphics[width=1\textwidth]{images/juan-pablo-final.jpg}
\caption{Completed balloon map of Juan Pablo II, produced with Adobe Photoshop CS4. The map is overlaid on imagery from Google Maps for comparison.}
\end{center}
\end{figure}
\subsubsection{Situating mapping practice}
Establishing a rapid feedback loop with participants is of paramount importance, especially when they are dependent on external aid for part of the mapmaking process. In Juan Pablo II, the lines between `researcher', `cartographer', and `participant' were blurred, as all parties were learning to create maps together in a novel process. Throughout the flights, we made regular prints of the aerial imagery we were able to capture and shared these with the participating students. Many of the most popular were taken from only a few dozen feet above the ground, but showed the students and their immediate environment from a new perspective.
However, while we awaited a major success in capturing imagery (a success which took 14 days to achieve), the students were engaged in other projects. Beyond discussing and drawing maps of Juan Pablo II, students interviewed their parents and presented drawings and short reports on the history of the settlement. This resulted in some cases in very detailed accounts of how homes began as straw `caracoles' or tents, and progressed to wooden, metal, and even brick structures. One student named Frank recounted what year his family received electricity and when they began planting a garden. While these details may be exciting to hear from a historical, anthropological, or aid perspective (I had received specific requests from a cartographer from the World Bank for details on house construction), for myself and my fellow teachers, it served the more important role of contexualizing the current state of the settlement --- for the students --- in a years-long process of construction and reinvention. It also emphasized the time dimension of mapping, so often neglected, which in areas of such rapid change can render mapping efforts obsolete within just a few years. Indeed, the maps we were beginning to produce from aerial imagery showed that those available on Google Maps were so old as to omit entire roads and buildings.
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{flushright}
\includegraphics[width=0.45\textwidth]{images/juan-pablo-frank.jpg}
\caption{Frank, a student from Juan Pablo II, presents a detailed history of infrastructural improvements to his home.}
\end{flushright}
\end{wrapfigure}
We then asked students to produce similar work --- drawings and written reports -- on how they imagined the community might look in the future. We asked in this case for a depiction of the entire settlement, and were surprised when two students brought back a three dimensional model of Juan Pablo II, as it might appear seven years in the future. While the early aerial images and mapping exercises had prompted many students to depict their community in a bird's-eye view, this maquette revealed many details related to wealth and quality of life, and an awareness of family needs. Unlike in present-day Juan Pablo II, the model depicted many two or three-story buildings -- signs of long-term tenure and financial stability, and perhaps rental income. The buildings were largely depicted as brick, and many had stores, such as a hair salon or a flower shop, on their ground floors. An especially interesting feature was a `Wa wa wasi', or day care center, which does not exist in present-day Juan Pablo II, but which allows two parents to work longer hours while their youngest children are cared for. Paved roads, plantings, and a soccer field completed this ambitious plan for the settlement.