-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbook.bib
More file actions
2627 lines (2286 loc) · 77.5 KB
/
Copy pathbook.bib
File metadata and controls
2627 lines (2286 loc) · 77.5 KB
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
@Article{author_year1,
title = {},
author = {},
journal = {},
year = {},
volume = {},
number = {},
pages = {},
doi = {}}
@techreport{author_year2,
title = {},
author = {},
year = {},
institution = {},
type = {}}
@Book{author_year3,
title = {},
author = {},
publisher = {},
address = {},
year = {},
edition = {}}
@Incollection{author_year4,
author = {},
title = {},
editor = {},
booktitle = {},
publisher = {},
address = {},
year = {},
pages = {},
chapter = {}}
@misc{author_year5,
author = {},
year = {},
title = {},
howpublished = {\url{}},
note = {Accessed: }}
@phdthesis{author_year6,
author = {},
title = {},
school = {},
year = {},
month = {}
}
@misc{Abad_2019,
author = {Lorena Abad and Robin Lovelace and Lucas van der Meer},
year = {2019},
title = {Spatial networks in R with sf and tidygraph},
howpublished = {\url{https://r-spatial.org/r/2019/09/26/spatial-networks.html}},
note = {Accessed: 30-07-2021}}
@inproceedings{Adepeju_2017,
title={Comparative analysis of two variants of the Knox test: Inferences from space-time crime pattern analysis},
author={Adepeju, Monsuru and Evans, Andy},
booktitle={International Conference on Computational Science and Its Applications},
pages={770--778},
year={2017},
organization={Springer}
}
@Article{Adepeju_2020,
title = {Akmedoids R package for generating directionally-homogeneous clusters of longitudinal data sets},
author = {Monsuru Adepeju and Samuel Langton and Jon Bannister},
journal = {The Journal of Open Software},
year = {2020},
volume = {5},
number = {56},
pages = {},
doi = {doi.org/10.21105/joss.02379}}
@Article{Adepeju_2021,
title = {Anchored K-medoids: a Novel Adaptation of K-medoids Further Refined to Measure Long-term Instability in the Exposure to Crime},
author = {Monsuru Adepeju and Samuel Langton and Jon Bannister},
journal = {Journal of Computational Social Science},
year = {2021},
volume = {},
number = {},
pages = {},
doi = {doi.org/10.1007/s42001-021-00103-1}}
@article{Aldstadt_2006,
title={Using AMOEBA to create a spatial weights matrix and identify spatial clusters},
author={Jared Aldstadt and Arthur Getis},
journal={Geographical analysis},
volume={38},
number={4},
pages={327--343},
year={2006},
publisher={Wiley Online Library}
}
@Article{Andresen_2011,
title = {The Ambient Population and
Crime Analysis},
author = {Martin Andresen},
journal = {The Professional Geographer},
year = {2011},
volume = {63},
number = {2},
pages = {193-212}}
@Article{Andresen_2011b,
title = {Testing the Stability of Crime Patterns: Implications for Theory and Policy},
author = {Martin Andresen and Nick Malleson},
journal = {Journal of Research in Crime and Delinquency},
year = {2011},
volume = {48},
number = {1},
pages = {58-82}}
@Article{Andresen_2017,
title = {The Trajectories of Crime at Places: Understanding the Patterns of Disaggregated Crime Types},
author = {Martin Andresen and Andrea Curman and Shannon Linning},
journal = {Journal of Quantitative Criminology},
year = {2017},
volume = {33},
number = {},
pages = {427-449}}
@Article{Andresen_2017b,
title = {Crime at Places and Spatial Concentrations: Exploring the Spatial Stability of Property Crime in Vancouver BC, 2003–2013},
author = {Martin Andresen and Shannon Linning and Nick Malleson},
journal = {Journal of Quantitative Criminology},
year = {2017},
volume = {33},
number = {},
pages = {255-275}}
@Article{Andresen_2020,
title = {Minimum Geocoding Match Rates: an International
Study of the Impact of Data and Areal Unit Sizes},
author = {Martin Andresen and Nick Malleson and Wouter Steenbek and Michael Townsley and Christophe Vandeviver},
journal = {International Journal of Geographical Information
Science},
year = {2020},
volume = {34},
number = {7},
pages = {1306-1322}}
@article{Andresen_2020b,
title={Spatially varying relationships between immigration measures and property crime types in vancouver census tracts, 2016},
author={Martin Andresen and Olivia Ha},
journal={The British Journal of Criminology},
volume={60},
number={5},
pages={1342--1367},
year={2020},
publisher={Oxford University Press UK}
}
@Article{Andresen_2021,
title = {Advances in Place-Based Methods: Editors’ Introduction},
author = {Martin Andresen and Cory Haberman and Shane Johnson and Wouter Steenbeek},
journal = {Journal of Quantitative Criminology},
year = {2021},
volume = {},
number = {},
pages = {doi.org/10.1007/s10940-021-09517-6}}
@Article{Ang_2012,
title = {Geometrically Corrected Second Order Analysis of Events on a Linear Network, with Applications to Ecology and Criminology},
author = {Qi Ang and Adrian Baddeley and Gopalan Nair},
journal = {Scandinavian Journal of Statistics},
year = {2012},
volume = {39},
number = {},
pages = {591-617}}
@Article{Anselin_1995,
title = {Local Indicators of Spatial Association: LISA},
author = {Luc Anselin},
journal = {Geographical Analysis},
year = {1995},
volume = {27},
number = {2},
pages = {93-115}}
@Incollection{Anselin_1996,
author = {Luc Anselin},
title = {The Moran Scatterplot as an ESDA Tool to Assess Local Instability in Spatial Association},
editor = {Manfred Fischer and Henk Scholten and David Unwin},
booktitle = {Spatial Analytical Perspectives on GIS},
publisher = {Routledge},
address = {London},
year = {1996},
pages = {111-125},
chapter = {8}}
@Book{Anselin_2007,
title = {Spatial Regression Analysis in R: A Workbook},
author = {Luc Anselin},
publisher = {Center for Spatially Integrated Social Science},
address = {},
year = {2007},
edition = {}}
@misc{Anselin_2020a,
author = {Luc Anselin},
year = {2020},
title = {Local Spatial Autocorrelation (2): Other Local Spatial Autocorrelation Statistics},
howpublished = {\url{https://geodacenter.github.io/workbook/6b_local_adv/lab6b.html#getis-ord-statistics}},
note = {Accessed: 12-05-2021}}
@Incollection{Anselin_1998,
author = {Luc Anselin and Anil Bera},
title = {Spatial Dependence in Linear Regression Models with an Introduction to Spatial Econometrics},
editor = {A Ullah and D Giles},
booktitle = {Hanbook of Applied Economic Statistics},
publisher = {Marcel Dekker},
address = {New York},
year = {1998},
pages = {237-289},
chapter = {}}
@Book{Anselin_2014,
title = {Modern Spatial Econometrics in Practice},
author = {Luc Anselin and Sergio Rey},
publisher = {GeoDa Press},
address = {Chicago},
year = {2014},
edition = {}}
@misc{Anselin_2021,
author = {Luc Anselin and Grant Morrison and Angela Li and Karina Acosta},
year = {2021},
title = {Tutorials for the Center for Spatial Data Science, The University of Chicago},
howpublished = {\url{https://spatialanalysis.github.io/tutorials/}},
note = {Accessed: 08-08-2021}}
@misc{Anselin_2021a,
author = {Luc Anselin},
year = {2021},
title = {GeoDa Center Playlists},
howpublished = {\url{https://www.youtube.com/user/GeoDaCenter/playlists}},
note = {Accessed: 08-08-2021}}
@Book{Arbia_2014,
title = {A Primer for Spatial Econometrics With Applications in R},
author = {Giuseppe Arbia},
publisher = {Palgrave},
address = {Basingstoke},
year = {2014},
edition = {}}
@Manual{Appelhans_2021,
title = {mapview: Interactive Viewing of Spatial Data in R},
author = {Tim Appelhans and Florian Detsch and Christoph Reudenbach and Stefan Woellauer},
year = {2021},
note = {R package version 2.10.0},
url = {https://CRAN.R-project.org/package=mapview},
}
@misc{ArcGIS_2021,
author = {{ArcGIS Pro}},
year = {2021},
title = {Why hexagons?},
howpublished = {\url{https://pro.arcgis.com/en/pro-app/latest/tool-reference/spatial-statistics/h-whyhexagons.htm}},
note = {Accessed: 04-08-2021}}
@misc{Ashby_2018,
author = {Matthew Ashby},
year = {2018},
title = {Studying crime and place with the Crime Open Database},
doi = {10.31235/osf.io/9y7qz},
howpublished = {SocArXiv pre-print}
}
@article{Ashby_2019,
title={Studying Crime and Place with the Crime Open Database: Social and Behavioural Scienes},
author={Matthew Ashby},
journal={Research Data Journal for the Humanities and Social Sciences},
volume={4},
number={1},
pages={65--80},
year={2019},
publisher={Brill}
}
@misc{Ashby_2020,
author = {Matthew Ashby},
year = {2020},
title = {Why you can't identify changes in crime by comparing this month to last month},
howpublished = {\url{https://the-sra.org.uk/SRA/Blog/whyyoucantidentifychangesincrimebycomparingthismonthtolastmonth.aspx}},
note = {Accessed: 19-05-2021}}
@Article{Baddeley_2005,
title = {{spatstat}: An {R} Package for Analyzing Spatial Point Patterns},
author = {Adrian Baddeley and Rolf Turner},
journal = {Journal of Statistical Software},
year = {2005},
volume = {12},
number = {6},
pages = {1--42},
url = {https://www.jstatsoft.org/v12/i06/},
}
@Book{Baddeley_2016,
title = {Spatial Point Patterns: Methodology and Applications with R},
author = {Adrian Baddeley and Ege Rubak and Rolf Turner},
publisher = {CRC Press},
address = {Boca Raton, FL},
year = {2015},
edition = {}}
@article{Baddeley_2021,
title={Analysing Point Patterns on Networks — A Review},
author={Adrian Baddeley and Gopalan Nair and Suman Rakshit and Greg McSwiggan and Tilman Davies},
journal={Spatial Statistics},
volume={42},
number={},
pages={doi.org/10.1016/j.spasta.2020.100435},
year={2021}
}
@article{Baller_2001,
title={Structural covariates of US county homicide rates: Incorporating spatial effects},
author={Robert Baller and Luc Anselin and Steven Messner and Glenn Deane and Darnell Hawkins},
journal={Criminology},
volume={39},
number={3},
pages={561--588},
year={2001},
publisher={Wiley Online Library}
}
@book{Banerjee_2014,
title={Hierarchical modeling and analysis for spatial data},
author={Sudipto Banerjee and Bradley Carlin and Alan Gelfand},
year={2014},
publisher={CRC Press}
}
@article{Baumer_1996,
title={Crime seasonality and serious scholarship: a comment on Farrell and Pease},
author={Eric Baumer and Richard Wright},
journal={Brit. J. Criminology},
volume={36},
pages={579},
year={1996},
publisher={HeinOnline}
}
@article{Beale_2010,
title={Regression Analysis of Spatial Data},
author={Colin Beale and Jack Lennon and John Yearsley and Mark Brewer and David Elston},
journal={Ecology letters},
volume={13},
number={2},
pages={246--264},
year={2010},
publisher={Wiley Online Library}
}
@Incollection{Bernasco_2010,
author = {Wim Bernasco and Henk Elffers},
title = {Statistical Analysis of Spatial Crime Data},
editor = {Alex Piquero and David Weisburd},
booktitle = {Handbook of Quantitative Criminology},
publisher = {Springer},
address = {New York},
year = {2010},
pages = {699-724},
chapter = {}}
@Book{Blangiardo_2015,
title = {Spatial and Spatio-temporal Bayesian Models with R-INLA},
author = {Marta Blangiardo and Michela Cameletii},
publisher = {John Wiley \& Sons},
address = {Chichester},
year = {2015},
edition = {}}
@Book{Bivand_2013,
title = {Applied Spatial Data Analysis with R},
author = {Roger Bivand and Edzer Pebesma and Virgilio Gómez-Rubio},
publisher = {Springer},
address = {New York},
year = {2013},
edition = {2nd}
}
@Article{Bivand_2018,
title = {Comparing Implementations of Global and Local Indicators
of Spatial Association},
author = {Roger Bivand and David Wong},
journal = {TEST},
year = {2018},
volume = {27},
number = {},
pages = {716-748}}
@misc{Bivand_2019,
author = {Roger Bivand},
year = {2019},
title = {ECS530: (III) Coordinate reference systems},
howpublished = {\url{https://rsbivand.github.io/ECS530_h19/ECS530_III.html}},
note = {Accessed: 02-08-2021}}
@misc{Bivand_2020,
author = {Roger Bivand},
year = {2020},
title = {Migration to PROJ6/GDAL3},
howpublished = {\url{http://rgdal.r-forge.r-project.org/articles/PROJ6_GDAL3.html}},
note = {Accessed: 02-08-2021}}
@Article{Bivand_2021,
title = {A Review of Software for Spatial Econometrics in R},
author = {Roger Bivand and Giovanni Millo and Gianfranco Piras},
journal = {Mathematics},
year = {2021},
volume = {9},
number = {11},
ARTICLE-NUMBER = {1276}}
@techreport{Blumstein_1986,
title = {Criminal Careers and Career Criminals},
author = {Al Blumstein and J. Cohen and J. Roth and C. Visher},
year = {1986},
institution = {National Science Foundation},
type = {Research Report}}
@Book{Boba_2013,
title = {Crime Analysis with Crime Mapping},
author = {Rachel Boba},
publisher = {Sage},
address = {Thousand Oaks, CA},
year = {2013},
edition = {3rd}}
@Book{Bolstad_2019,
title = {GIS Fundamentals: A First Text on Geographic Information Systems},
author = {Paul Bolstad},
publisher = {Eider Press},
address = {White Bear Lake, MN},
year = {2019},
edition = {6th}}
@article{Bowers_2004,
title={Who Commits Near Repeats? A Test of the Boost Explanation.},
author={Kate Bowers and Shane Johnson},
journal={Western Criminology Review},
volume={5},
number={3},
year={2004}
}
@misc{Bowers_2021,
author = {Kate Bowers},
year = {2021},
title = {Risky Places: Crime Absorbers, Crime Radiators as Risky Places},
howpublished = {\url{https://play.kth.se/media/Risky+PlacesA+Crime+absorbers,+crime+radiators+as+risky+places,+Prof+Kate+Bowers,+UCL/0_zya4j354}},
note = {Accessed: 11-05-2021}}
@Article{Braga_2019,
title = {Hot Spots Policing and Crime Reduction: an Update of an Ongoing Systematic Review and Meta-analysis},
author = {Anthony Braga and Brandon Turchan and Andrew Papachristos and David Hureau},
journal = {Journal of Experimental Criminology},
year = {2019},
volume = {15},
number = {},
pages = {289-311}}
@Book{Braga_2010,
title = {Policing Problem Places: Crime Hot Spots and Effective Prevention},
author = {Anthony Braga and David Weisburd},
publisher = {Oxford University Press},
address = {New York},
year = {2010},
edition = {}}
@Article{Braga_2020,
title = {Does Hot Spots Policing Have Meaningful Impacts on Crime? Findings from An Alternative Approach to Estimating Effect Sizes from Place‑Based Program Evaluations},
author = {Anthony Braga and David Weisburd},
journal = {Journal of Quantitative Criminology},
year = {2020},
volume = {},
number = {},
pages = {doi.org/10.1007/s10940-020-09481-7}}
@Article{Brambor_2006,
title = {Understanding Interaction Models: Improving Empirical Analyses},
author = {Thomas Brambor and William Clark and Matt Golder},
journal = {Political Analysis},
year = {2006},
volume = {14},
number = {1},
pages = {63-82}}
@article{Brantingham_1982,
title={Mobility, notoriety and crime: A study of crime patterns in urban nodal points},
author={Patricia Brantingham and Paul Brantingham},
journal={Journal of Environmental Systems},
volume={11},
number={1},
pages={89--99},
year={1982},
publisher={SAGE Publications}
}
@Article{Brantingham_1995,
title = {Criminality of place: crime generators and crime attractors},
author = {Patricia Brantingham and Paul Brantingham},
journal = {European Journal on Criminal Policy and Research},
year = {1995},
volume = {3},
pages = {5-26}}
@article{Brewer_1994,
title={Color use guidelines for mapping},
author={Cynthia Brewer},
journal={Visualization in modern cartography},
volume={1994},
pages={123--148},
year={1994},
publisher={Pergamon, Oxford}
}
@Article{Brewer_2006,
title = {Basic Mapping Principles for Visualizing Cancer Data
Using Geographic Information Systems (GIS)},
author = {Cynthia Brewer},
journal = {American Journal of Preventive Medicine},
year = {2006},
volume = {30},
number = {2S},
pages = {S25-S36}}
@Book{Briggs_2017,
title = {Dead-End Lives: Drugs and Violence in the City Shadows},
author = {Daniel Briggs and Rubén Monge-Gamero},
publisher = {Policy Press},
address = {Bristol, UK},
year = {2017},
edition = {}}
@misc{BrizRedon_2019a,
title={DRHotNet: An R package for detecting differential risk hotspots on a linear network},
author={{\'A}lvaro Briz-Red{\'o}n and Francisco Mart{\'\i}nez-Ruiz and Francisco Montes},
year={2019},
eprint={1911.07827},
archivePrefix={arXiv},
primaryClass={stat.CO}}
@Article{BrizRedon_2019b,
title = {Identification of Differential Risk Hotspots for Collision and Vehicle Type in a Directed Linear Network},
author = {{\'A}lvaro Briz-Red{\'o}n and Francisco Mart{\'\i}nez-Ruiz and Francisco Montes},
journal = {Accident Analysis and Prevention},
year = {2019},
volume = {},
number = {},
pages = {doi.org/10.1016/j.aap.2019.105278}}
@Article{BrizRedon_2019c,
title = {Spatial Analysis of Traffic Accidents Near and Between Road Intersections in a Directed Linear Network},
author = {{\'A}lvaro Briz-Red{\'o}n and Francisco Mart{\'\i}nez-Ruiz and Francisco Montes},
journal = {Accident Analysis and Prevention},
year = {2019},
volume = {132},
number = {},
pages = {doi.org/10.1016/j.aap.2019.07.028}}
@article{BrizRedon_2019d,
author = {{\'A}lvaro Briz-Red{\'o}n},
title = {SpNetPrep: An R package using Shiny to facilitate spatial statistics on road networks},
volume = {5},
number = {},
year = {2019},
doi = {10.3897/rio.5.e33521},
eprint = {https://doi.org/10.3897/rio.5.e33521},
journal = {Research Ideas and Outcomes}
}
@Article{BrizRedon_2020,
title = {Reestimating a Minimum Acceptable Geocoding Hit Rate for Conducting a Spatial Analysis},
author = {{\'A}lvaro Briz-Red{\'o}n and Francisco Mart{\'\i}nez-Ruiz and Francisco Montes},
journal = {International Journal of Geographical Information Science},
year = {2020},
volume = {34},
number = {7},
pages = {1283-1305}}
@Article{BrizRedon_2020b,
title = {Adjusting the Knox Test by Accounting for Spatio-temporal Crime Risk Heterogeneity to Analyse Near-repeats},
author = {{\'A}lvaro Briz-Red{\'o}n and Francisco Mart{\'\i}nez-Ruiz and Francisco Montes},
journal = {European Journal of Criminology},
year = {2020},
volume = {},
number = {},
pages = {doi.org/10.1177/1477370820905106}}
@phdthesis{BrizRedon_2020c,
author = {{\'A}lvaro Briz-Red{\'o}n},
title = {Spatio-temporal Methods for the Analysis of Crime and Traffic Safety Data},
school = {University of Valencia},
year = {2020},
month = {April}
}
@Book{Bruinsma_2018,
title = {The Oxford Handbook of Environmental Criminology},
editor = {Gerben Bruinsma and Shane Johnson},
publisher = {Oxford Univerisity Press},
address = {Oxford, England},
year = {2018}}
@Book{Brunsdon_2015,
title = {R for Spatial Analysis and Mapping},
author = {Chris Brunsdon and Lex Comber},
publisher = {SAGE},
address = {Thousand Oaks, CA},
year = {2015},
edition = {1st}}
@Article{Brunsdon_2020,
title = {Opening Practice: Supporting Reproducibility and Critical Spatial Data Science},
author = {Chris Brunsdon and Alexis Comber},
journal = {Journal of Geographical Systems},
year = {2020},
volume = {},
number = {},
pages = {},
doi = {doi.org/10.1007/s10109-020-00334-2}}
@article{Buil_2019,
title={Worry about crime in Europe: A model-based small area estimation from the European Social Survey},
author={David Buil-Gil and Angelo Moretti and Natalie Shlomo and Juanjo Medina},
journal={European Journal of Criminology},
pages={1477370819845752},
year={2019},
publisher={SAGE Publications Sage UK: London, England}
}
@Article{Buil-Gil_2021,
title = {Measuring the Dark Figure of Crime in Geographic Areas: Small Area Estimation from the Crime Survey for England and Wales},
author = {David Buil-Gil and Juanjo Medina and Natalie Shlomo},
journal = {British Journal of Criminology},
year = {2021},
volume = {61},
number = {2},
pages = {364-388}}
@misc{Bycoffe_2018,
title = {The Atlas Of Redistricting},
author = {Aaron Bycoffe and Ella Koeze and David Wasserman and Julia Wolfe},
year = {2018},
howpublished = {\url{https://projects.fivethirtyeight.com/redistricting-maps/}},
note = {Accessed: 30-07-2021}
}
@article{Cahill_2007,
title={Using geographically weighted regression to explore local crime patterns},
author={Meagan Cahill and Gordon Mulligan},
journal={Social Science Computer Review},
volume={25},
number={2},
pages={174--193},
year={2007},
publisher={Sage Publications Sage CA: Los Angeles, CA}
}
@Book{Cairo_2016,
title = {The Truthful Art: Data, Charts, and Maps for Communication},
author = {Alberto Cairo},
publisher = {New Riders},
address = {},
year = {2016},
edition = {}}
@Book{Camoes_2016,
title = {Data at Work: Best Practices for Creating Effective Charts and Information Graphics in Microsoft Excel},
author = {Jorge Camoes},
publisher = {New Riders},
address = {},
year = {2016},
edition = {}}
@Incollection{Cameron_2005,
author = {James Cameron},
title = {},
editor = {John Eck and Spencer Chainey and James Cameron and Michael Leitner and Ronald Wilson},
booktitle = {Mapping Crime: Understanding Hot Spots},
publisher = {National Institute of Justice},
address = {Washington, DC},
year = {2005},
pages = {35-64},
chapter = {3}}
@Book{Caplan_2016,
title = {Risk Terrain Modeling: Crime Prediction and Risk Reduction},
author = {Joel Caplan and Leslie Kennedy},
publisher = {University of California Press},
address = {},
year = {2016},
edition = {}}
@Book{Carr_2010,
title = {Visualizing Data Patterns with Micromaps},
author = {Daniel Carr and Linda Pickle},
publisher = {CRC Press},
address = {Boca Raton, FL},
year = {2010}}
@Book{Ceccato_2013,
title = {Moving Safely: Crime and Perceived Safety in Stockholm's Subway Stations},
author = {Vania Ceccato},
publisher = {Lexington Books},
address = {Lanham},
year = {2013},
edition = {}}
@Book{Chainey_2005,
title = {GIS and Crime Mapping},
author = {Spencer Chainey and Jerry Ratcliffe},
publisher = {John Wiley \& Sons},
address = {Chichester, England},
year = {2005}}
@Article{Chainey_2008,
title = {The Utility of Hotspot Mapping for Predicting Spatial Patterns of Crime},
author = {Spencer Chainey and Lisa Tompson and Sebastian Uhlig},
journal = {Security Journal},
year = {2013},
volume = {21},
number = {},
pages = {4-28}}
@Article{Chainey_2013a,
title = {Examining the Influence of Cell Size and Bandwidth Size on Kernel Density Estimation Crime Hotspot Maps for Predicting Spatial Patterns of Crime},
author = {Spencer Chainey},
journal = {Bulletin of the Geographical Society of Liege},
year = {2013},
volume = {60},
number = {},
pages = {7-19}}
@Incollection{Chainey_2013b,
author = {Spencer Chainey},
title = {Methods and Techniques for Understanding Crime Hot Spots},
editor = {John Eck and Spencer Chainey and James Cameron and Michael Leitner and Ronald Wilson},
booktitle = {Mapping Crime: Understanding Hot Spots},
publisher = {National Institute of Justice},
address = {Washington DC},
year = {2013},
pages = {15-34},
chapter = {2}}
@phdthesis{Chainey_2014,
title={Examining the extent to which hotspot analysis can support spatial predictions of crime},
author={Spencer Chainey},
year={2014},
school={UCL (University College London)}
}
@article{Chainey_2016,
title={Examining the extent of repeat and near repeat victimisation of domestic burglaries in Belo Horizonte, Brazil},
author={Spencer Chainey and Braulio-Figueiredo Alves-da-Silva},
journal={Crime Science},
volume={5},
number={1},
pages={1--10},
year={2016},
publisher={BioMed Central}
}
@Book{Chainey_2021,
title = {Understanding Crime: Analyzing the Geography of Crime},
author = {Spencer Chainey},
publisher = {ESRI Press},
address = {Redlands, CA},
year = {2021}}
@Book{Chatfield_2019,
title = {The Analysis of Time Series: An Introduction with R},
author = {Chris Chatfield and Haipeng Xing},
publisher = {CRC Press},
address = {Boca Raton, FL},
year = {2019},
edition = {7th}}
@misc{Chan_2020,
author = {Martin Chan},
year = {2020},
title = {RStudio Projects and Working Directories: A Beginner’s Guide},
howpublished = {\url{https://www.r-bloggers.com/2020/01/rstudio-projects-and-working-directories-a-beginners-guide/}},
note = {Accessed: 30-07-2021}}
@article{Cheng_2014,
title={Modifiable Temporal Unit Problem (MTUP) and Its Effect on Space-Time Cluster Detection},
author={Tao Cheng and Monsuru Adepeju},
journal={Plos One},
doi={10.1371/journal.pone.0100465},
year={2014}
}
@Book{Chi_2020,
title = {Spatial Regression Models for the Social Sciences},
author = {Guangqing Chi and Jun Zhu},
publisher = {Sage},
address = {Thousand Oaks, CA},
year = {2020},
edition = {}}
@article{Clayton_1987,
title={Empirical Bayes estimates of age-standardized relative risks for use in disease mapping},
author={David Clayton and John Kaldor},
journal={Biometrics},
pages={671--681},
year={1987},
publisher={JSTOR}
}
@article{Cohen_1979,
title={Social change and crime rate trends: A routine activity approach},
author={Lawrence Cohen and Marcus Felson},
journal={American sociological review},
pages={588--608},
year={1979},
publisher={JSTOR}
}
@Article{Collazos_2020,
title = {Hot Spots Policing in a High-Crime Environment: an Experimental Evaluation in Medellín},
author = {Daniela Collazos and Eduardo García and Daniel Mejía and Daniel Ortega and Santiago Tobón},
journal = {Journal of Experimental Criminology},
year = {2020},
volume = {},
number = {},
pages = {doi.org/10.1007/s11292-019-09390-1}}
@Book{Cornish_1986,
title={The reasoning criminal: Rational choice perspectives on offending},
author={Derek Cornish and Ronald Clarke},
year={1986},
publisher={Transaction Publishers}
}
@Book{Darmofal_2015,
title = {Spatial Analysis for the Social Sciences},
author = {David Darmofal},
publisher = {Cambridge University Press},
address = {New York, NY},
year = {2015},
edition = {}}
@Article{Davies_2017,
title = {Tutorial on Kernel Estimation of Continuous Spatial and
Spatiotemporal Relative Risk with Accompanying Instruction in R},
author = {T Davies and Jonathan Marshall and Martin Hazelton},
year = {2017}}
@Incollection{Davies_2018,
author = {T Davies and Kate Bowers},
title = {Street Networks and Crime},
editor = {Gerben Bruinsma and Shane Johnson},
booktitle = {The Oxford Handbook of Environmental Criminology},
publisher = {Oxford University Press},
address = {New York},
year = {2018},
pages = {545-578}}
@book{DeVeaux_2012,
title={Stats: Data and models with statistical methods for the social sciences},
author={RD De Veaux and PF Velleman and DE Bock},
year={2012},
publisher={Boston, MA: Pearson}
}
@book{DeSmith_2007,
title={Geospatial analysis: a comprehensive guide to principles, techniques and software tools},
author={Michael De Smith and Michael Goodchild and Paul Longley},
year={2007},
publisher={Troubador publishing ltd}
}
@book{Dent_2008,
title={Thematic map design},
author={Borden Dent and J Torguson and T Hodler},
year={2008},
address = {New York, New York, NY},
publisher={McGraw-Hill}}
@phdthesis{Dorling_1991,
title={The visualisation of spatial social structure},
author={Daniel Dorling},
year={1991},
school={University of Newcastle upon Tyne PhD thesis}
}
@Book{Dorling_1996,
title={Area cartograms: Their use and creation, concepts and techniques in modern geography},
author={Daniel Dorling},
year={1996},
publisher={Institute of British Geographers}}
@article{Dougenik_1985,
title={An algorithm to construct continuous area cartograms},
author={James Dougenik and Nicholas Chrisman and Duane Niemeyer},
journal={The Professional Geographer},
volume={37},
number={1},
pages={75--81},
year={1985},
publisher={Wiley Online Library}}
@techreport{Eck_1997,
title = {Problem solving: Problem-oriented policing in Newport News},
author = {John Eck and William Spelman},
year = {1997},
institution = {Police Executive Research Forum},
type = {Research Report}}
@article{Eck_2015,
title={Crime places in crime theory},
author={John Eck and David Weisburd},
journal={Crime and place: Crime prevention studies},
volume={4},
year={2015}
}
@article{Elhorst_2010,
title={Applied Spatial Econometrics: Raising the Bar},
author={Paul Elhorst},
journal={Spatial Economic Analysis},
volume={5},
number = {1},
pages = {9-28},
year={2010}
}
@Book{Elhorst_2014,
title = {Spatial Econometrics: From Cross-Sectional Data to Spatial Panels},
author = {Paul Elhorst},
publisher = {Springer},
address = {Heildeberg},
year = {2014},
edition = {}}
@Manual{Ellis_2018,
title = {ggseas: 'stats' for Seasonal Adjustment on the Fly with 'ggplot2'},
author = {Peter Ellis},
year = {2018},
note = {R package version 0.5.4},
url = {https://CRAN.R-project.org/package=ggseas},
}
@Article{Emch_2010,
title = {Integration of Spatial and Social Network Analysis in Disease Transmission Studies},
author = {Michael Emch and Elisabeth Root and Sophia Giebultowicz and Mohammad Ali and Carolina Perez-Heydrich and Mohammad Yunus},
journal = {CAnnals of the Association of American Geographers},
year = {2010},
volume = {102},
number = {5},
pages = {1004-1015}
}
@Incollection{Farrell_2017,
author = {Graham Farrell and Ken Pease},
title = {Preventing Repeat and Near Repeat Crime Concentrations},
editor = {Nick Tilley and Aiden Sidebottom},
booktitle = {Handbook of Crime Prevention and Community Safety},
publisher = {Routledge},
address = {London},
year = {2017},
pages = {143-156},
chapter = {7}}
@misc{Field_2007,
author = {Kenneth Field},
year = {2007},
title = {Map Evaluation Guidelines},
howpublished = {\url{http://downloads.esri.com/MappingCenter2007/arcGISResources/more/MapEvaluationGuidelines.pdf}},
note = {Accessed: 17-05-2021}}
@article{Field_2012,