forked from jywarren/grassroots-mapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.log
1439 lines (1166 loc) · 51 KB
/
thesis.log
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
This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) (format=pdflatex 2010.6.8) 17 AUG 2010 12:03
entering extended mode
%&-line parsing enabled.
**thesis.tex
(./thesis.tex
LaTeX2e <2005/12/01>
Babel <v3.8h> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, arabic, basque, bulgarian, coptic, welsh, czech, slovak, german, ng
erman, danish, esperanto, spanish, catalan, galician, estonian, farsi, finnish,
french, greek, monogreek, ancientgreek, croatian, hungarian, interlingua, ibyc
us, indonesian, icelandic, italian, latin, mongolian, dutch, norsk, polish, por
tuguese, pinyin, romanian, russian, slovenian, uppersorbian, serbian, swedish,
turkish, ukenglish, ukrainian, loaded.
(/usr/share/texmf/tex/latex/base/report.cls
Document Class: report 2005/09/16 v1.4f Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size11.clo
File: size11.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
)
\c@part=\count79
\c@chapter=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/share/texmf/tex/latex/geometry/geometry.sty
Package: geometry 2002/07/08 v3.2 Page Geometry
(/usr/share/texmf/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
\Gm@cnth=\count88
\Gm@cntv=\count89
\c@Gm@tempcnt=\count90
\Gm@bindingoffset=\dimen103
\Gm@wd@mp=\dimen104
\Gm@odd@mp=\dimen105
\Gm@even@mp=\dimen106
\Gm@dimlist=\toks15
)
(/usr/share/texmf/tex/latex/hyperref/hyperref.sty
Package: hyperref 2007/02/07 v6.75r Hypertext links for LaTeX
\@linkdim=\dimen107
\Hy@linkcounter=\count91
\Hy@pagecounter=\count92
(/usr/share/texmf/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2007/02/07 v6.75r Hyperref: PDFDocEncoding definition (HO)
)
(/usr/share/texmf/tex/latex/config/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
(/usr/share/texmf/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2006/08/22 v2.4 Connects package keyval with LaTeX options (
HO)
)
Package hyperref Info: Hyper figures OFF on input line 2288.
Package hyperref Info: Link nesting OFF on input line 2293.
Package hyperref Info: Hyper index ON on input line 2296.
Package hyperref Info: Plain pages OFF on input line 2303.
Package hyperref Info: Backreferencing OFF on input line 2308.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 2444.
(/usr/share/texmf/tex/latex/html/url.sty
Package: url 1999/03/02 ver 1.4 Verb mode for urls, email addresses, and file
names
)
LaTeX Info: Redefining \url on input line 2599.
\Fld@menulength=\count93
\Field@Width=\dimen108
\Fld@charsize=\dimen109
\Choice@toks=\toks16
\Field@toks=\toks17
Package hyperref Info: Hyper figures OFF on input line 3102.
Package hyperref Info: Link nesting OFF on input line 3107.
Package hyperref Info: Hyper index ON on input line 3110.
Package hyperref Info: backreferencing OFF on input line 3117.
Package hyperref Info: Link coloring OFF on input line 3122.
\Hy@abspage=\count94
\c@Item=\count95
\c@Hfootnote=\count96
)
*hyperref using driver hpdftex*
(/usr/share/texmf/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2007/02/07 v6.75r Hyperref driver for pdfTeX
\Fld@listcount=\count97
)
(/usr/share/texmf/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texmf/tex/latex/graphics/graphics.sty
Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texmf/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/share/texmf/tex/latex/config/graphics.cfg
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 90.
(/usr/share/texmf/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2007/01/08 v0.04d Graphics/color for pdfTeX
\Gread@gobject=\count98
))
\Gin@req@height=\dimen110
\Gin@req@width=\dimen111
)
(/usr/share/texmf/tex/latex/wrapfig/wrapfig.sty
\wrapoverhang=\dimen112
\WF@size=\dimen113
\c@WF@wrappedlines=\count99
\WF@box=\box26
\WF@everypar=\toks18
Package: wrapfig 2003/01/31 v 3.6
)
(/usr/share/texmf/tex/latex/graphics/color.sty
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
(/usr/share/texmf/tex/latex/config/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 130.
) (./pdfcomment.sty
Package: pdfcomment 2009/11/10 pdfcomment.sty v1.5b - Josef Kleber (C) 2008-200
9
(/usr/share/texmf/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2006/11/18 v2.5f package option processing (HA)
(/usr/share/texmf/tex/latex/xkeyval/xkeyval.tex
\XKV@toks=\toks19
\XKV@depth=\count100
File: xkeyval.tex 2006/11/18 v2.5f key=value parser (HA)
))
\c@pc@annot@lines=\count101
\pc@dima=\skip43
\pc@dimb=\skip44
\pc@dimc=\skip45
\pc@dimd=\skip46
\pc@dime=\skip47
\pc@Sposx=\skip48
\pc@Sposy=\skip49
\pc@Eposx=\skip50
\pc@Eposy=\skip51
\pc@box@height=\skip52
\pc@box@depth=\skip53
(/usr/share/texmf/tex/latex/oberdiek/zref-savepos.sty
Package: zref-savepos 2007/01/23 v1.4 Module savepos for zref (HO)
(/usr/share/texmf/tex/latex/oberdiek/zref-base.sty
Package: zref-base 2007/01/23 Module base for zref (HO)
(/usr/share/texmf/tex/latex/oberdiek/auxhook.sty
Package: auxhook 2006/05/31 v1.0 Hooks for auxiliary files (HO)
)
Package zref Info: New property list: main on input line 346.
Package zref Info: New property: default on input line 347.
Package zref Info: New property: page on input line 348.
)
(/usr/share/texmf/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2006/02/20 v1.4 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in pdf mode detected.
)
Package zref Info: New property list: savepos on input line 60.
Package zref Info: New property: posx on input line 61.
Package zref Info: New property: posy on input line 62.
)
LaTeX Warning: You have requested, on input line 2662, version
`2007/04/22' of package zref-savepos,
but only version
`2007/01/23 v1.4 Module savepos for zref (HO)'
is available.
\c@zref@unique=\count102
(/usr/share/texmf/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/share/texmf/tex/latex/tools/calc.sty
Package: calc 2005/08/06 v4.2 Infix arithmetic (KKT,FJ)
\calc@Acount=\count103
\calc@Bcount=\count104
\calc@Adimen=\dimen114
\calc@Bdimen=\dimen115
\calc@Askip=\skip54
\calc@Bskip=\skip55
LaTeX Info: Redefining \setlength on input line 75.
LaTeX Info: Redefining \addtolength on input line 76.
\calc@Ccount=\count105
\calc@Cskip=\skip56
)
(/usr/share/texmf/tex/latex/marginnote/marginnote.sty
Package: marginnote 2006/10/26 v1.1 non floating margin notes for LaTeX
\c@mn@abspage=\count106
)
Package hyperref Warning: Option `pdftex' has already been used,
(hyperref) setting the option has no effect on input line 2677.
) (/usr/share/texmf/tex/latex/booktabs/booktabs.sty
Package: booktabs 2005/03/16 v1.6180 publication quality tables
\heavyrulewidth=\dimen116
\lightrulewidth=\dimen117
\cmidrulewidth=\dimen118
\belowrulesep=\dimen119
\belowbottomsep=\dimen120
\aboverulesep=\dimen121
\abovetopsep=\dimen122
\cmidrulesep=\dimen123
\cmidrulekern=\dimen124
\defaultaddspace=\dimen125
\@cmidla=\count107
\@cmidlb=\count108
\@aboverulesep=\dimen126
\@belowrulesep=\dimen127
\@thisruleclass=\count109
\@lastruleclass=\count110
\@thisrulewidth=\dimen128
)
(/usr/share/texmf/tex/latex/ctable/ctable.sty
Package: ctable 2006/10/12 v1.8 ctable package
(/usr/share/texmf/tex/latex/tools/xspace.sty
Package: xspace 2006/05/08 v1.12 Space after command names (DPC,MH)
)
(/usr/share/texmf/tex/latex/tools/array.sty
Package: array 2005/08/23 v2.4b Tabular extension package (FMi)
\col@sep=\dimen129
\extrarowheight=\dimen130
\NC@list=\toks20
\extratabsurround=\skip57
\backup@length=\skip58
)
(/usr/share/texmf/tex/latex/tools/tabularx.sty
Package: tabularx 1999/01/07 v2.07 `tabularx' package (DPC)
\TX@col@width=\dimen131
\TX@old@table=\dimen132
\TX@old@col=\dimen133
\TX@target=\dimen134
\TX@delta=\dimen135
\TX@cols=\count111
\TX@ftn=\toks21
)
(/usr/share/texmf/tex/latex/rotating/rotating.sty
Package: rotating 1997/09/26, v2.13 Rotation package
\c@r@tfl@t=\count112
\rot@float@box=\box27
)
\@ctblframesep=\dimen136
\@ctblframerule=\dimen137
\@ctblwidth=\dimen138
\@ctblcaptionskip=\dimen139
\@ctblmaxwidth=\dimen140
\@ctblmincapwidth=\dimen141
\@ctblw=\dimen142
\@ctblww=\dimen143
\@ctbloldsep=\dimen144
\@ctbloldrule=\dimen145
\ctbl@tabelx=\box28
\ctbl@tabel=\box29
\ctbl@t=\box30
)
(/usr/share/texmf/tex/latex/base/textcomp.sty
Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
(/usr/share/texmf/tex/latex/base/ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
)
LaTeX Info: Redefining \oldstylenums on input line 266.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296.
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297.
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298.
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299.
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300.
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301.
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302.
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303.
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304.
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305.
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306.
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307.
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308.
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309.
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 311.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 312.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 313.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 314.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 315.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 316.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 317.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 318.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 319.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 320.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 321.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 322.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 323.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 324.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 325.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 326.
)
(/usr/share/texmf/tex/latex/acronym/acronym.sty
Package: acronym 2006/06/26 v1.26 Support for acronyms (Tobias Oetiker)
(/usr/share/texmf/tex/latex/bigfoot/suffix.sty
Package: suffix 2006/07/15 1.5 Variant command support
)
\clearlist=\toks22
)
(/usr/share/texmf/tex/latex/ltxmisc/threeparttable.sty
Package: threeparttable 2003/06/13 v 3.0
\@tempboxb=\box31
)
(/usr/share/texmf/tex/latex/pdfpages/pdfpages.sty
Package: pdfpages 2006/08/12 v0.4a Insert pages of external PDF documents (AM)
(/usr/share/texmf/tex/latex/eso-pic/eso-pic.sty
Package: eso-pic 2006/07/14 v1.1d eso-pic (RN)
(/usr/share/texmf/tex/latex/everyshi/everyshi.sty
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
(/usr/share/texmf/tex/latex/pdfpages/pppdftex.def
File: pppdftex.def 2006/08/12 v0.4a Pdfpages driver for pdfTeX (AM)
)
\AM@pagebox=\box32
\AM@toc@title=\toks23
\c@AM@survey=\count113
)
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
(/usr/share/texmf/tex/latex/config/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
(/usr/share/texmf/tex/latex/colortbl/colortbl.sty
Package: colortbl 2001/02/13 v0.1j Color table columns (DPC)
\everycr=\toks24
\minrowclearance=\skip59
)
LaTeX Info: Redefining \color on input line 702.
\rownum=\count114
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
Package xcolor Info: Model `RGB' extended on input line 1353.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
)
(/usr/share/texmf/tex/latex/caption/caption.sty
Package: caption 2007/01/07 v3.0k Customising captions (AR)
(/usr/share/texmf/tex/latex/caption/caption3.sty
Package: caption3 2007/01/07 v3.0k caption3 kernel (AR)
\captionmargin=\dimen146
\captionmarginx=\dimen147
\captionwidth=\dimen148
\captionindent=\dimen149
\captionparindent=\dimen150
\captionhangindent=\dimen151
)
Package caption Info: hyperref package v6.74m (or newer) detected on input line
304.
Package caption Info: rotating package v2.0 (or newer) detected on input line 3
82.
)
(/usr/share/texmf/tex/latex/footmisc/footmisc.sty
Package: footmisc 2005/03/17 v5.3d a miscellany of footnote facilities
\FN@temptoken=\toks25
\footnotemargin=\dimen152
LaTeX Warning: Command \@footnotetext has changed.
Check if current package is valid.
\c@pp@next@reset=\count115
Package footmisc Info: Declaring symbol style bringhurst on input line 817.
Package footmisc Info: Declaring symbol style chicago on input line 818.
Package footmisc Info: Declaring symbol style wiley on input line 819.
Package footmisc Info: Declaring symbol style lamport-robust on input line 823.
Package footmisc Info: Declaring symbol style lamport* on input line 831.
Package footmisc Info: Declaring symbol style lamport*-robust on input line 840
.
)
Package hyperref Info: Option `colorlinks' set `true' on input line 20.
(./thesis.aux)
\openout1 = `thesis.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 34.
LaTeX Font Info: ... okay on input line 34.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 34.
LaTeX Font Info: ... okay on input line 34.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 34.
LaTeX Font Info: ... okay on input line 34.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 34.
LaTeX Font Info: ... okay on input line 34.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 34.
LaTeX Font Info: ... okay on input line 34.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 34.
LaTeX Font Info: ... okay on input line 34.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 34.
LaTeX Font Info: ... okay on input line 34.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 34.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 34.
(/usr/share/texmf/tex/latex/base/ts1cmr.fd
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 34.
-------------------- Geometry parameters
paper: class default
landscape: --
twocolumn: --
twoside: --
asymmetric: --
h-parts: 72.26999pt, 469.75502pt, 72.26999pt
v-parts: 72.26999pt, 650.43001pt, 72.26999pt
hmarginratio: --
vmarginratio: --
lines: --
heightrounded: --
bindingoffset: 0.0pt
truedimen: --
includehead: --
includefoot: --
includemp: --
driver: pdftex
-------------------- Page layout dimensions and switches
\paperwidth 614.295pt
\paperheight 794.96999pt
\textwidth 469.75502pt
\textheight 650.43001pt
\oddsidemargin 0.0pt
\evensidemargin 0.0pt
\topmargin -37.0pt
\headheight 12.0pt
\headsep 25.0pt
\footskip 30.0pt
\marginparwidth 59.0pt
\marginparsep 10.0pt
\columnsep 10.0pt
\skip\footins 10.0pt plus 4.0pt minus 2.0pt
\hoffset 0.0pt
\voffset 0.0pt
\mag 1000
(1in=72.27pt, 1cm=28.45pt)
-----------------------
Package hyperref Info: Link coloring ON on input line 34.
(/usr/share/texmf/tex/latex/hyperref/nameref.sty
Package: nameref 2006/12/27 v2.28 Cross-referencing by name of section
(/usr/share/texmf/tex/latex/oberdiek/refcount.sty
Package: refcount 2006/02/20 v3.0 Data extraction from references (HO)
)
\c@section@level=\count116
)
LaTeX Info: Redefining \ref on input line 34.
LaTeX Info: Redefining \pageref on input line 34.
(./thesis.out)
(./thesis.out)
\@outlinefile=\write3
\openout3 = `thesis.out'.
Package marginnote Info: \pdfoutput not 0 and \pdflastxpos available.
(marginnote) Extended possition detection mode activated.
ABD: EveryShipout initializing macros
(/usr/share/texmf/tex/latex/ragged2e/ragged2e.sty
Package: ragged2e 2003/03/25 v2.04 ragged2e Package (MS)
(/usr/share/texmf/tex/latex/everysel/everysel.sty
Package: everysel 1999/06/08 v1.03 EverySelectfont Package (MS)
LaTeX Info: Redefining \selectfont on input line 125.
)
\CenteringLeftskip=\skip60
\RaggedLeftLeftskip=\skip61
\RaggedRightLeftskip=\skip62
\CenteringRightskip=\skip63
\RaggedLeftRightskip=\skip64
\RaggedRightRightskip=\skip65
\CenteringParfillskip=\skip66
\RaggedLeftParfillskip=\skip67
\RaggedRightParfillskip=\skip68
\JustifyingParfillskip=\skip69
\CenteringParindent=\skip70
\RaggedLeftParindent=\skip71
\RaggedRightParindent=\skip72
\JustifyingParindent=\skip73
)
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <12> on input line 80.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <8> on input line 80.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 80.
[1
{/usr/share/texmf/fonts/map/pdftex/updmap/pdftex.map}]
Underfull \hbox (badness 10000) in paragraph at lines 105--110
[]
[2]
Underfull \hbox (badness 10000) in paragraph at lines 113--117
[]
[3]
Underfull \hbox (badness 10000) in paragraph at lines 127--131
[]
[4] [5] (./thesis.toc
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <10.95> on input line 2.
[6
] [7] [8])
\tf@toc=\write4
\openout4 = `thesis.toc'.
[9]
Chapter 1.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7> on input line 182.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 182.
[10
] <images/samtredia.jpg, id=534, 1027.84pt x 770.88pt>
File: images/samtredia.jpg Graphic file (type jpg)
<use images/samtredia.jpg>
Underfull \hbox (badness 10000) in paragraph at lines 199--199
\OT1/cmr/m/n/10 roots Map-ping work-shop in
[]
Package wrapfig Warning: Stationary wrapfigure forced to float on input line 20
3.
[11 <./images/samtredia.jpg>] (/usr/share/texmf/tex/latex/base/omlcmr.fd)
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <9> on input line 226.
[12] [13]
Chapter 2.
[14
] <images/newsflow.png, id=576, 1278.7775pt x 685.56125pt>
File: images/newsflow.png Graphic file (type png)
<use images/newsflow.png> [15 <./images/newsflow.png (PNG copy)>] [16]
Missing character: There is no â in font cmr10!
Missing character: There is no in font cmr10!
Missing character: There is no in font cmr10!
[17]
[18] [19]
Chapter 3.
<images/kutaisi.png, id=663, 521.95pt x 382.42876pt>
File: images/kutaisi.png Graphic file (type png)
<use images/kutaisi.png>
Package wrapfig Warning: Stationary wrapfigure forced to float on input line 32
4.
[20
<./images/kutaisi.png (PNG copy)>]
<images/osm-missing-parts.png, id=670, 1024.82875pt x 576.1525pt>
File: images/osm-missing-parts.png Graphic file (type png)
<use images/osm-missing-parts.png>
Underfull \hbox (badness 10000) in paragraph at lines 333--333
[] []|[]\OT1/cmr/m/n/10 A map de-pict-ing all `in-
[]
Underfull \hbox (badness 10000) in paragraph at lines 333--333
\OT1/cmr/m/n/10 com-plete' ar-eas of Open-
[]
Underfull \hbox (badness 10000) in paragraph at lines 333--333
\OT1/cmr/m/n/10 StreetMap in the UK.
[]
Underfull \hbox (badness 10000) in paragraph at lines 333--333
\OT1/cmr/m/n/10 ([][]$\OT1/cmtt/m/n/10 http : / / www . reedhome . org .
[]
Underfull \hbox (badness 10000) in paragraph at lines 333--333
\OT1/cmtt/m/n/10 uk / Documents / osmembed . html ?
[]
[21 <./images/osm-missing-parts.png (PNG copy)>] [22]
<images/levinger-groundtruth.png, id=696, 751.80875pt x 568.1225pt>
File: images/levinger-groundtruth.png Graphic file (type png)
<use images/levinger-groundtruth.png>
Underfull \hbox (badness 7631) in paragraph at lines 365--365
\OT1/cmr/m/n/10 ments, and check-points near
[]
Underfull \hbox (badness 6876) in paragraph at lines 365--365
\OT1/cmr/m/n/10 Jerusalem and Ra-mal-lah, on
[]
Underfull \hbox (badness 10000) in paragraph at lines 365--365
\OT1/cmr/m/n/10 Josh Levinger's GroundTruth
[]
Underfull \hbox (badness 10000) in paragraph at lines 365--365
\OT1/cmr/m/n/10 in-ter-ac-tive map. ([][]$\OT1/cmtt/m/n/10 http :
[]
Underfull \hbox (badness 2644) in paragraph at lines 372--373
[]\OT1/cmr/m/n/10.95 ...it's frankly the same se-cu-rity
[]
[23 <./images/levinger-groundtruth.png (PNG copy)>]
Missing character: There is no â in font cmr10!
Missing character: There is no in font cmr10!
Missing character: There is no in font cmr10!
Missing character: There is no â in font cmr10!
Missing character: There is no in font cmr10!
Missing character: There is no in font cmr10!
[24]
<images/iraq-image-16.jpg, id=742, 602.25pt x 451.6875pt>
File: images/iraq-image-16.jpg Graphic file (type jpg)
<use images/iraq-image-16.jpg>
Underfull \hbox (badness 1565) in paragraph at lines 405--405
[] []|[]\OT1/cmr/m/n/10 `Image 16: Chem-i-cal weapons
[]
[25 <./images/iraq-image-16.jpg>]
<images/iraq-image-13.jpg, id=756, 602.25pt x 451.6875pt>
File: images/iraq-image-13.jpg Graphic file (type jpg)
<use images/iraq-image-13.jpg> [26 <./images/iraq-image-13.jpg>] [27]
Chapter 4.
<images/two-worlds-mapping.png, id=774, 901.9296pt x 360.8682pt>
File: images/two-worlds-mapping.png Graphic file (type png)
<use images/two-worlds-mapping.png> [28
<./images/two-worlds-mapping.png>]
[29] [30] [31] [32]
Chapter 5.
[33
] [34] <images/osm-composition.png, id=877, 526.96875pt x 427.5975pt>
File: images/osm-composition.png Graphic file (type png)
<use images/osm-composition.png> [35 <./images/osm-composition.png (PNG copy)>]
<images/osm-diagram.png, id=894, 803.0pt x 493.845pt>
File: images/osm-diagram.png Graphic file (type png)
<use images/osm-diagram.png>
LaTeX Warning: `h' float specifier changed to `ht'.
[36] [37 <./images/osm-diagram.png (PNG copy)>]
<images/kibera-gpx.png, id=919, 946.53625pt x 472.76625pt>
File: images/kibera-gpx.png Graphic file (type png)
<use images/kibera-gpx.png>
Missing character: There is no â in font cmr10!
Missing character: There is no in font cmr10!
Missing character: There is no ¦ in font cmr10!
[38 <./images/kibera-gpx.png (PNG copy)>] [39]
<images/maron-spy-satellite.jpg, id=954, 2601.72pt x 1951.29pt>
File: images/maron-spy-satellite.jpg Graphic file (type jpg)
<use images/maron-spy-satellite.jpg> [40 <./images/maron-spy-satellite.jpg>]
[41]
Chapter 6.
<images/100-dollar-satellite-poster.jpg, id=998, 1480.0896pt x 987.2082pt>
File: images/100-dollar-satellite-poster.jpg Graphic file (type jpg)
<use images/100-dollar-satellite-poster.jpg> [42
<./images/100-dollar-satellite-poster.jpg>] [43]
<images/trash-bag-ballooning.jpg, id=1010, 1027.84pt x 687.56876pt>
File: images/trash-bag-ballooning.jpg Graphic file (type jpg)
<use images/trash-bag-ballooning.jpg>
Underfull \hbox (badness 1205) in paragraph at lines 722--722
\OT1/cmr/m/n/10 the De-part-ment of Play work-
[]
[44 <./images/trash-bag-ballooning.jpg>]
<images/kite-cesar.jpg, id=1020, 1027.84pt x 770.88pt>
File: images/kite-cesar.jpg Graphic file (type jpg)
<use images/kite-cesar.jpg>
Package wrapfig Warning: Stationary wrapfigure forced to float on input line 79
9.
[45 <./images/kite-cesar.jpg>] [46]
<images/soda-bottle-overview.jpg, id=1044, 966.61125pt x 1724.4425pt>
File: images/soda-bottle-overview.jpg Graphic file (type jpg)
<use images/soda-bottle-overview.jpg> [47 <./images/soda-bottle-overview.jpg>]
<images/cartagen-in-action-rustavi.png, id=1058, 1027.84pt x 602.25pt>
File: images/cartagen-in-action-rustavi.png Graphic file (type png)
<use images/cartagen-in-action-rustavi.png> [48 <./images/cartagen-in-action-ru
stavi.png (PNG copy)>]
<images/knitter-wileys.png, id=1072, 932.48375pt x 694.595pt>
File: images/knitter-wileys.png Graphic file (type png)
<use images/knitter-wileys.png>
Package wrapfig Warning: Stationary wrapfigure forced to float on input line 86
0.
[49] [50 <./images/knitter-wileys.png (PNG copy)>]
<images/gss.pdf, id=1088, 598.235pt x 845.55902pt>
File: images/gss.pdf Graphic file (type pdf)
<use images/gss.pdf>
Underfull \hbox (badness 10000) in paragraph at lines 873--873
[] []|[]\OT1/cmr/m/n/10 An ex-am-ple [][]GSS[][][][] stylesheet,
[]
Underfull \hbox (badness 2460) in paragraph at lines 879--879
[]\OT1/cmr/bx/n/10.95 Cartographic de-sign with Ge-o-graphic
[]
<images/knitter-josm.png, id=1093, 1027.84pt x 556.0775pt>
File: images/knitter-josm.png Graphic file (type png)
<use images/knitter-josm.png>
LaTeX Warning: `h' float specifier changed to `ht'.
[51 <./images/gss.pdf
pdfTeX warning: pdflatex (file ./images/gss.pdf): PDF inclusion: Page Group det
ected which pdfTeX can't handle. Ignoring it.
>]
Missing character: There is no â in font cmr10!
Missing character: There is no in font cmr10!
Missing character: There is no in font cmr10!
[52 <./images/knitter-josm.png (PNG copy)>]
<images/pat-coyle-video.png, id=1122, 856.19875pt x 481.8pt>
File: images/pat-coyle-video.png Graphic file (type png)
<use images/pat-coyle-video.png>
Underfull \hbox (badness 4819) in paragraph at lines 903--903
[] []|[]\OT1/cmr/m/n/10 Still frame from Pat Coyle's
[]
<images/lippincott-workshop.png, id=1125, 638.385pt x 359.3425pt>
File: images/lippincott-workshop.png Graphic file (type png)
<use images/lippincott-workshop.png>
Underfull \hbox (badness 1178) in paragraph at lines 912--912
\OT1/cmr/m/n/10 shop en-ti-tled `Grass-roots Map-
[]
Underfull \hbox (badness 3312) in paragraph at lines 912--912
\OT1/cmr/m/n/10 ping PDX' where par-tic-i-pants
[]
[53 <./images/pat-coyle-video.png (PNG copy)> <./images/lippincott-workshop.png
(PNG copy)>]
Chapter 7.
<images/kids-canta-gallo.jpg, id=1133, 1027.84pt x 770.88pt>
File: images/kids-canta-gallo.jpg Graphic file (type jpg)
<use images/kids-canta-gallo.jpg> [54
<./images/kids-canta-gallo.jpg>]
Missing character: There is no à in font cmr9!
Missing character: There is no ³ in font cmr9!
Missing character: There is no à in font cmr9!
Missing character: There is no in font cmr9!
[55]
<images/juan-pablo-measuring.jpg, id=1154, 1027.84pt x 770.88pt>
File: images/juan-pablo-measuring.jpg Graphic file (type jpg)
<use images/juan-pablo-measuring.jpg> [56 <./images/juan-pablo-measuring.jpg>]
<images/juan-pablo-first-flight.jpg, id=1166, 1027.84pt x 770.88pt>
File: images/juan-pablo-first-flight.jpg Graphic file (type jpg)
<use images/juan-pablo-first-flight.jpg>
Underfull \hbox (badness 2426) in paragraph at lines 971--971
[] []|[]\OT1/cmr/m/n/10 Initial bal-loon flights in Juan
[]
<images/juan-pablo-final.jpg, id=1167, 370.0224pt x 290.5254pt>
File: images/juan-pablo-final.jpg Graphic file (type jpg)
<use images/juan-pablo-final.jpg>
LaTeX Warning: `h' float specifier changed to `ht'.
[57 <./images/juan-pablo-first-flight.jpg>] [58 <./images/juan-pablo-final.jpg>
] <images/juan-pablo-frank.jpg, id=1180, 770.88pt x 1027.84pt>
File: images/juan-pablo-frank.jpg Graphic file (type jpg)
<use images/juan-pablo-frank.jpg>
Underfull \hbox (badness 1194) in paragraph at lines 995--995
\OT1/cmr/m/n/10 in-fras-truc-tural im-prove-ments to
[]
<images/juan-pablo-maqueta.jpg, id=1181, 1027.84pt x 770.88pt>
File: images/juan-pablo-maqueta.jpg Graphic file (type jpg)
<use images/juan-pablo-maqueta.jpg>
LaTeX Warning: `h' float specifier changed to `ht'.
Underfull \hbox (badness 1137) in paragraph at lines 1008--1009
\OT1/cmr/m/n/10.95 Map-ping or Ground Map-ping tra-di-tions of
[]
[59 <./images/juan-pablo-frank.jpg>]
<images/map-warper-hack.png, id=1190, 967.615pt x 475.7775pt>
File: images/map-warper-hack.png Graphic file (type png)
<use images/map-warper-hack.png> [60 <./images/juan-pablo-maqueta.jpg>]
<images/juan-pablo-rubbersheeting.jpg, id=1202, 1027.84pt x 770.88pt>
File: images/juan-pablo-rubbersheeting.jpg Graphic file (type jpg)
<use images/juan-pablo-rubbersheeting.jpg> [61 <./images/map-warper-hack.png (P
NG copy)> <./images/juan-pablo-rubbersheeting.jpg>]
<images/san-ignacio-loyola-map.jpg, id=1211, 411.136pt x 308.352pt>
File: images/san-ignacio-loyola-map.jpg Graphic file (type jpg)
<use images/san-ignacio-loyola-map.jpg> [62 <./images/san-ignacio-loyola-map.jp
g>] <images/canta-gallo-setame.jpg, id=1218, 1027.84pt x 770.88pt>
File: images/canta-gallo-setame.jpg Graphic file (type jpg)
<use images/canta-gallo-setame.jpg> [63 <./images/canta-gallo-setame.jpg>]
<images/canta-gallo-drawn-map.jpg, id=1229, 1027.84pt x 770.88pt>
File: images/canta-gallo-drawn-map.jpg Graphic file (type jpg)
<use images/canta-gallo-drawn-map.jpg>
Underfull \hbox (badness 10000) in paragraph at lines 1068--1068
[] []|[]\OT1/cmr/m/n/10 Paper map-mak-ing ac-tiv-i-ties
[]
<images/cantagallo-initial.jpg, id=1230, 370.0224pt x 218.2554pt>
File: images/cantagallo-initial.jpg Graphic file (type jpg)
<use images/cantagallo-initial.jpg>
LaTeX Warning: `h' float specifier changed to `ht'.
<images/cantagallo-combined.jpg, id=1232, 1027.84pt x 533.995pt>
File: images/cantagallo-combined.jpg Graphic file (type jpg)
<use images/cantagallo-combined.jpg>
LaTeX Warning: `h' float specifier changed to `ht'.
[64 <./images/canta-gallo-drawn-map.jpg>] [65 <./images/cantagallo-initial.jpg>
] <diagrams/san-ignacio-scale.jpg, id=1247, 843.15pt x 320.19624pt>
File: diagrams/san-ignacio-scale.jpg Graphic file (type jpg)
<use diagrams/san-ignacio-scale.jpg>
LaTeX Warning: `h' float specifier changed to `ht'.
[66 <./images/cantagallo-combined.jpg>] [67] [68 <./diagrams/san-ignacio-scale.
jpg>]
Chapter 8.
<images/labb-planning.jpg, id=1268, 1027.84pt x 770.88pt>
File: images/labb-planning.jpg Graphic file (type jpg)
<use images/labb-planning.jpg>
Underfull \hbox (badness 10000) in paragraph at lines 1145--1145
[] []|[]\OT1/cmr/m/n/10 Volunteers at the Louisiana
[]
Underfull \hbox (badness 10000) in paragraph at lines 1142--1147
\OT1/cmr/m/n/10.95 re-cent aerial map-ping projects.
[]
[69
<./images/labb-planning.jpg>]
<images/nasa-modis-small.jpg, id=1286, 672.5125pt x 336.25626pt>
File: images/nasa-modis-small.jpg Graphic file (type jpg)
<use images/nasa-modis-small.jpg> [70 <./images/nasa-modis-small.jpg>]
<images/birds-chandeleur.png, id=1303, 553.06625pt x 473.77pt>
File: images/birds-chandeleur.png Graphic file (type png)
<use images/birds-chandeleur.png>
Package wrapfig Warning: Stationary wrapfigure forced to float on input line 11
71.
<images/grand-isle-terre.jpg, id=1307, 677.53125pt x 1027.84pt>
File: images/grand-isle-terre.jpg Graphic file (type jpg)
<use images/grand-isle-terre.jpg>
<images/chandeleur-island.jpg, id=1308, 862.22125pt x 1027.84pt>
File: images/chandeleur-island.jpg Graphic file (type jpg)
<use images/chandeleur-island.jpg>
<diagrams/mapping-trips.pdf, id=1309, 327.7869pt x 240.53915pt>
File: diagrams/mapping-trips.pdf Graphic file (type pdf)
<use diagrams/mapping-trips.pdf>
Underfull \hbox (badness 2050) in paragraph at lines 1205--1205
[] []|[]\OT1/cmr/m/n/10 Number of map-ping trips per
[]
[71 <./images/birds-chandeleur.png (PNG copy)>] [72 <./images/grand-isle-terre.
jpg>] [73 <./images/chandeleur-island.jpg>]
Package wrapfig Warning: Stationary wrapfigure forced to float on input line 12
09.
<diagrams/gulf-trip-success.pdf, id=1331, 315.22066pt x 191.04282pt>
File: diagrams/gulf-trip-success.pdf Graphic file (type pdf)
<use diagrams/gulf-trip-success.pdf>
Package wrapfig Warning: Collision between wrapping environments on input line
1226.
<diagrams/mappers-histogram.pdf, id=1332, 300.65234pt x 240.89769pt>
File: diagrams/mappers-histogram.pdf Graphic file (type pdf)
<use diagrams/mappers-histogram.pdf>
Underfull \hbox (badness 2050) in paragraph at lines 1230--1230
[] []|[]\OT1/cmr/m/n/10 Number of map-ping trips per
[]
Package wrapfig Warning: Stationary wrapfigure forced to float on input line 12
34.
[74 <./diagrams/mapping-trips.pdf> <./diagrams/gulf-trip-success.pdf>]
<images/mapmill.png, id=1390, 979.66pt x 1308.89pt>
File: images/mapmill.png Graphic file (type png)
<use images/mapmill.png>
Underfull \hbox (badness 3240) in paragraph at lines 1248--1248
\OT1/cmr/m/n/10 site de-vel-oped in re-sponse to