-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNBrenner.html
1527 lines (1506 loc) · 59.3 KB
/
NBrenner.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<script src="https://platform.twitter.com/widgets.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<style>
.links line {
stroke: black;
stroke-width: 0.75px;
}
.nodes circle {
stroke: white;
fill: black;
stroke-width: 2px;
}
#graph {
width: 99vw;
height: 99vh;
}
</style>
<svg id="graph"></svg>
<script>
var width = $(window).width();
var height = $(window).height();
var svg = d3.select("svg")
.attr("height", height)
.attr("width", width);
var color = d3.scaleOrdinal(d3.schemeCategory20c);
var simulation = d3.forceSimulation()
.velocityDecay(0.6)
.force("link", d3.forceLink().id(function(d) { return d.id; }))
.force("charge", d3.forceManyBody())
.force("center", d3.forceCenter(width / 2, height / 2));
var graph = {
"nodes": [
{
"label": "Social research",
"id": "249745634973033989",
"url": "https://books.google.com/books?hl=en&lr=&id=WgpFBgAAQBAJ&oi=fnd&pg=PP1&ots=e-CPcmMFHh&sig=dfb5c8kd3xQkcECjWJ145Vlavjk",
"title": "Social research",
"authors": "T May",
"year": "2011",
"cited_by": 5189,
"cited_by_url": "https://scholar.google.com/scholar?cites=249745634973033989&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "New state spaces: Urban governance and the rescaling of statehood",
"id": "12367224520278194207",
"url": "https://www.gsd.harvard.edu/person/neil-brenner/",
"title": "New state spaces: Urban governance and the rescaling of statehood"
},
{
"label": "Research methodology: Methods and techniques",
"id": "1653985761729053979",
"url": "https://books.google.com/books?hl=en&lr=&id=hZ9wSHysQDYC&oi=fnd&pg=PA2&ots=1s_eoBh4D8&sig=oUnMZPuqArEv7OE1JROtssSPIuM",
"title": "Research methodology: Methods and techniques",
"authors": "CR Kothari",
"year": "2004",
"cited_by": 20771,
"cited_by_url": "https://scholar.google.com/scholar?cites=1653985761729053979&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Doing Your Research Project: A guide for first-time researchers",
"id": "11870585791287568051",
"url": "https://books.google.com/books?hl=en&lr=&id=Uo9FBgAAQBAJ&oi=fnd&pg=PR1&ots=i-cDYTazBH&sig=ryRTLO7cdDbF8cD9cEMZROCHPDA",
"title": "Doing Your Research Project: A guide for first-time researchers",
"authors": "J Bell",
"year": "2014",
"cited_by": 8235,
"cited_by_url": "https://scholar.google.com/scholar?cites=11870585791287568051&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "[CITATION][C]",
"id": "10864961555577522246",
"title": "[CITATION][C]",
"authors": "R Kumar",
"year": "2019",
"cited_by": 8763,
"cited_by_url": "https://scholar.google.com/scholar?cites=10864961555577522246&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "How to research",
"id": "4634608015422665720",
"url": "https://books.google.com/books?hl=en&lr=&id=-fVEBgAAQBAJ&oi=fnd&pg=PP1&ots=cnU9Pt6_Fb&sig=MJ9eW7YfYIHmpJxq8P_tJ3uayHc",
"title": "How to research",
"authors": "L Blaxter",
"year": "2010",
"cited_by": 3347,
"cited_by_url": "https://scholar.google.com/scholar?cites=4634608015422665720&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Reflexive ethnography: A guide to researching selves and others",
"id": "582109847621598285",
"url": "https://content.taylorfrancis.com/books/download?dac=C2009-0-08152-8&isbn=9781136763502&format=googlePreviewPdf",
"title": "Reflexive ethnography: A guide to researching selves and others",
"authors": "CA Davies",
"year": "2012",
"cited_by": 2994,
"cited_by_url": "https://scholar.google.com/scholar?cites=582109847621598285&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Interviewing for social scientists: An introductory resource with examples",
"id": "5213930592989577727",
"url": "https://books.google.com/books?hl=en&lr=&id=sqckq71cBs0C&oi=fnd&pg=PP9&ots=JNfi8BnQU0&sig=VJD_5LnvJ6WtVIoulOqkrTwOCvs",
"title": "Interviewing for social scientists: An introductory resource with examples",
"authors": "H Arksey, PT Knight",
"year": "1999",
"cited_by": 2891,
"cited_by_url": "https://scholar.google.com/scholar?cites=5213930592989577727&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Political analysis: a critical introduction",
"id": "5853830710228648928",
"url": "https://books.google.com/books?hl=en&lr=&id=P2cHCwAAQBAJ&oi=fnd&pg=PR10&ots=AOiyP30TU6&sig=xZ0cHZ-LWKikQv-Sp1Wqlb5w0Q0",
"title": "Political analysis: a critical introduction",
"authors": "C Hay",
"year": "2002",
"cited_by": 2243,
"cited_by_url": "https://scholar.google.com/scholar?cites=5853830710228648928&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Enacting the social",
"id": "17655352372331291727",
"url": "https://www.tandfonline.com/doi/abs/10.1080/0308514042000225716",
"title": "Enacting the social",
"authors": "J Law, J Urry",
"year": "2004",
"cited_by": 1666,
"cited_by_url": "https://scholar.google.com/scholar?cites=17655352372331291727&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Ethnographic methods",
"id": "13800893423076925445",
"url": "https://www.taylorfrancis.com/books/9780203320068",
"title": "Ethnographic methods",
"authors": "K O'reilly",
"year": "2004",
"cited_by": 1544,
"cited_by_url": "https://scholar.google.com/scholar?cites=13800893423076925445&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Qualitative research practice",
"id": "15378694732136748675",
"url": "https://books.google.com/books?hl=en&lr=&id=aP57yvIjmIAC&oi=fnd&pg=PP1&ots=9OrmZjzlfZ&sig=OkjFRfy0TgP6eI9u20XPDSyq4L4",
"title": "Qualitative research practice",
"authors": "C Seale, G Gobo, JF Gubrium, D Silverman",
"year": "2004",
"cited_by": 1302,
"cited_by_url": "https://scholar.google.com/scholar?cites=15378694732136748675&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "World city network: a global urban analysis",
"id": "5813750197845728778",
"url": "https://www.taylorfrancis.com/books/9781315730950",
"title": "World city network: a global urban analysis",
"authors": "PJ Taylor, B Derudder",
"year": "2015",
"cited_by": 2560,
"cited_by_url": "https://scholar.google.com/scholar?cites=5813750197845728778&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Globalization in question",
"id": "10741453737225943588",
"url": "https://books.google.com/books?hl=en&lr=&id=5Bh0BgAAQBAJ&oi=fnd&pg=PT8&ots=JsX3DDbb9t&sig=zwEDQrjpdaD1g_iD7pTKqrBYOkQ",
"title": "Globalization in question",
"authors": "P Hirst, G Thompson, S Bromley",
"year": "2015",
"cited_by": 8326,
"cited_by_url": "https://scholar.google.com/scholar?cites=10741453737225943588&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Cities in a world economy",
"id": "16527193102077770936",
"url": "https://books.google.com/books?hl=en&lr=&id=dhlcDwAAQBAJ&oi=fnd&pg=PP1&ots=NlR2G06sJs&sig=lDMO4XpFrdzfnf36kK_Nfrzedqw",
"title": "Cities in a world economy",
"authors": "S Sassen",
"year": "2018",
"cited_by": 6006,
"cited_by_url": "https://scholar.google.com/scholar?cites=16527193102077770936&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Turkey: A modern history",
"id": "5752131965679160463",
"url": "https://books.google.com/books?hl=en&lr=&id=P7qKDwAAQBAJ&oi=fnd&pg=PP1&ots=H_XjHF675Q&sig=_g-TwzkvPmx53iKGYDoQU1idDrc",
"title": "Turkey: A modern history",
"authors": "EJ Z\u00fcrcher",
"year": "2017",
"cited_by": 2390,
"cited_by_url": "https://scholar.google.com/scholar?cites=5752131965679160463&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Ordinary cities: between modernity and development",
"id": "16109084315140887089",
"url": "https://content.taylorfrancis.com/books/download?dac=C2010-0-43647-7&isbn=9781134406951&format=googlePreviewPdf",
"title": "Ordinary cities: between modernity and development",
"authors": "J Robinson",
"year": "2013",
"cited_by": 1979,
"cited_by_url": "https://scholar.google.com/scholar?cites=16109084315140887089&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "[CITATION][C]",
"id": "17167678873093858173",
"title": "[CITATION][C]",
"authors": "C Flint, PJ Taylor",
"year": "2007",
"cited_by": 1798,
"cited_by_url": "https://scholar.google.com/scholar?cites=17167678873093858173&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Urban social geography: an introduction",
"id": "5505585330351309541",
"url": "https://content.taylorfrancis.com/books/download?dac=C2013-0-22751-3&isbn=9781317903260&format=googlePreviewPdf",
"title": "Urban social geography: an introduction",
"authors": "P Knox, S Pinch",
"year": "2014",
"cited_by": 1688,
"cited_by_url": "https://scholar.google.com/scholar?cites=5505585330351309541&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Urban complexity and spatial strategies: Towards a relational planning for our times",
"id": "1688474123460397654",
"url": "https://www.taylorfrancis.com/books/9780203099414",
"title": "Urban complexity and spatial strategies: Towards a relational planning for our times",
"authors": "P Healey",
"year": "2006",
"cited_by": 1551,
"cited_by_url": "https://scholar.google.com/scholar?cites=1688474123460397654&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Theorizing sociospatial relations",
"id": "10281394260153356650",
"url": "https://journals.sagepub.com/doi/abs/10.1068/d9107",
"title": "Theorizing sociospatial relations",
"authors": "B Jessop, N Brenner, M Jones",
"year": "2008",
"cited_by": 1198,
"cited_by_url": "https://scholar.google.com/scholar?cites=10281394260153356650&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Urban geography",
"id": "17076522016604505294",
"url": "https://www.taylorfrancis.com/books/9781315652597",
"title": "Urban geography",
"authors": "T Hall, H Barrett",
"year": "2018",
"cited_by": 788,
"cited_by_url": "https://scholar.google.com/scholar?cites=17076522016604505294&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Out of the pits: Traders and technology from Chicago to London",
"id": "14926199014133482306",
"url": "https://books.google.com/books?hl=en&lr=&id=sWNf0gcaFlIC&oi=fnd&pg=PR5&ots=q4FoPe7Wwk&sig=TdsRtiC9aWZjasGic5CuB0e1_TI",
"title": "Out of the pits: Traders and technology from Chicago to London",
"authors": "C Zaloom",
"year": "2006",
"cited_by": 790,
"cited_by_url": "https://scholar.google.com/scholar?cites=14926199014133482306&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Globalizing education policy",
"id": "991374878313562099",
"url": "https://www.taylorfrancis.com/books/9780203867396",
"title": "Globalizing education policy",
"authors": "F Rizvi, B Lingard",
"year": "2009",
"cited_by": 2440,
"cited_by_url": "https://scholar.google.com/scholar?cites=991374878313562099&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Global Education Inc.: New policy networks and the neoliberal imaginary",
"id": "16510977920022064931",
"url": "https://content.taylorfrancis.com/books/download?dac=C2011-0-04004-9&isbn=9781136632846&format=googlePreviewPdf",
"title": "Global Education Inc.: New policy networks and the neoliberal imaginary",
"authors": "SJ Ball",
"year": "2012",
"cited_by": 1872,
"cited_by_url": "https://scholar.google.com/scholar?cites=16510977920022064931&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "How schools do policy: Policy enactments in secondary schools",
"id": "14856949248956325427",
"url": "https://content.taylorfrancis.com/books/download?dac=C2010-0-48761-6&isbn=9780203153185&format=googlePreviewPdf",
"title": "How schools do policy: Policy enactments in secondary schools",
"authors": "SJ Ball, M Maguire, A Braun",
"year": "2012",
"cited_by": 1367,
"cited_by_url": "https://scholar.google.com/scholar?cites=14856949248956325427&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The new political economy of urban education: Neoliberalism, race, and the right to the city",
"id": "7120198498721624827",
"url": "https://books.google.com/books?hl=en&lr=&id=3gqcq_oji2sC&oi=fnd&pg=PR5&ots=cm6wyWHGgd&sig=iZijf5uU2BjyPo4v63I5FGOUumY",
"title": "The new political economy of urban education: Neoliberalism, race, and the right to the city",
"authors": "P Lipman",
"year": "2013",
"cited_by": 1204,
"cited_by_url": "https://scholar.google.com/scholar?cites=7120198498721624827&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Actor-network theory in education",
"id": "10856648228882487684",
"url": "https://content.taylorfrancis.com/books/download?dac=C2009-0-23692-5&isbn=9781136952883&format=googlePreviewPdf",
"title": "Actor-network theory in education",
"authors": "T Fenwick, R Edwards",
"year": "2010",
"cited_by": 857,
"cited_by_url": "https://scholar.google.com/scholar?cites=10856648228882487684&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The irregular school: Exclusion, schooling and inclusive education",
"id": "4542183886397362870",
"url": "https://www.taylorfrancis.com/books/9780203831564",
"title": "The irregular school: Exclusion, schooling and inclusive education",
"authors": "R Slee",
"year": "2011",
"cited_by": 772,
"cited_by_url": "https://scholar.google.com/scholar?cites=4542183886397362870&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Policy borrowing, policy learning: Testing times in Australian schooling",
"id": "10161054654596543647",
"url": "https://www.tandfonline.com/doi/abs/10.1080/17508481003731026",
"title": "Policy borrowing, policy learning: Testing times in Australian schooling",
"authors": "B Lingard",
"year": "2010",
"cited_by": 594,
"cited_by_url": "https://scholar.google.com/scholar?cites=10161054654596543647&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Student mobilities, migration and the internationalization of higher education",
"id": "18442968157419089039",
"url": "https://books.google.com/books?hl=en&lr=&id=oLWADAAAQBAJ&oi=fnd&pg=PP1&ots=OqbUTvcTqH&sig=A1Hbzrop9h21t5kBQZhEgEElr4A",
"title": "Student mobilities, migration and the internationalization of higher education",
"authors": "R Brooks, J Waters",
"year": "2011",
"cited_by": 578,
"cited_by_url": "https://scholar.google.com/scholar?cites=18442968157419089039&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Higher education and public good",
"id": "17724448402395695788",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1468-2273.2011.00496.x",
"title": "Higher education and public good",
"authors": "S Marginson",
"year": "2011",
"cited_by": 396,
"cited_by_url": "https://scholar.google.com/scholar?cites=17724448402395695788&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Defining globalization and assessing its implications for knowledge and education, revisited",
"id": "11900217275609348088",
"url": "https://books.google.com/books?hl=en&lr=&id=GvU3AwAAQBAJ&oi=fnd&pg=PA1&ots=PAuUnfs9XQ&sig=yDgjjKojT8iK7Nm_VXOui5y5Ehg",
"title": "Defining globalization and assessing its implications for knowledge and education, revisited",
"authors": "NP Stromquist, K Monkman",
"year": "2014",
"cited_by": 334,
"cited_by_url": "https://scholar.google.com/scholar?cites=11900217275609348088&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Policy as numbers: Ac/counting for educational research",
"id": "4074096117264162189",
"url": "https://www.taylorfrancis.com/books/e/9780203765708/chapters/10.4324/9780203765708-8",
"title": "Policy as numbers: Ac/counting for educational research",
"authors": "B Lingard",
"year": "2013",
"cited_by": 285,
"cited_by_url": "https://scholar.google.com/scholar?cites=4074096117264162189&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Mobilities, immobilities and moorings",
"id": "2686208224199682797",
"url": "https://rsa.tandfonline.com/doi/full/10.1080/17450100500489189",
"title": "Mobilities, immobilities and moorings",
"authors": "K Hannam, M Sheller, J Urry",
"year": "2006",
"cited_by": 2068,
"cited_by_url": "https://scholar.google.com/scholar?cites=2686208224199682797&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Towards a politics of mobility",
"id": "6254896180609512286",
"url": "https://www.taylorfrancis.com/books/e/9781315243887/chapters/10.4324/9781315243887-23",
"title": "Towards a politics of mobility",
"authors": "T Cresswell",
"year": "2016",
"cited_by": 1676,
"cited_by_url": "https://scholar.google.com/scholar?cites=6254896180609512286&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Mobile lives",
"id": "8200147580586026362",
"url": "https://www.taylorfrancis.com/books/9780203887042",
"title": "Mobile lives",
"authors": "A Elliott, J Urry",
"year": "2010",
"cited_by": 1082,
"cited_by_url": "https://scholar.google.com/scholar?cites=8200147580586026362&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Mobility",
"id": "1651985629605797085",
"url": "https://content.taylorfrancis.com/books/download?dac=C2015-0-58973-4&isbn=9781317363682&format=googlePreviewPdf",
"title": "Mobility",
"authors": "P Adey",
"year": "2017",
"cited_by": 916,
"cited_by_url": "https://scholar.google.com/scholar?cites=1651985629605797085&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Urban policy mobilities and global circuits of knowledge: Toward a research agenda",
"id": "11433377535323409332",
"url": "https://www.tandfonline.com/doi/abs/10.1080/00045608.2010.520219",
"title": "Urban policy mobilities and global circuits of knowledge: Toward a research agenda",
"authors": "E McCann",
"year": "2011",
"cited_by": 770,
"cited_by_url": "https://scholar.google.com/scholar?cites=11433377535323409332&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Tourism and development in the developing world",
"id": "11837766888580910877",
"url": "https://www.taylorfrancis.com/books/9780203938041",
"title": "Tourism and development in the developing world",
"authors": "DJ Telfer, R Sharpley",
"year": "2007",
"cited_by": 805,
"cited_by_url": "https://scholar.google.com/scholar?cites=11837766888580910877&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Emerging approaches to educational research: Tracing the socio-material",
"id": "3972444716337837552",
"url": "https://www.taylorfrancis.com/books/9780203817582",
"title": "Emerging approaches to educational research: Tracing the socio-material",
"authors": "T Fenwick, R Edwards, P Sawchuk",
"year": "2015",
"cited_by": 707,
"cited_by_url": "https://scholar.google.com/scholar?cites=3972444716337837552&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Regimes of mobility across the globe",
"id": "1498816162226183083",
"url": "https://www.tandfonline.com/doi/abs/10.1080/1369183X.2013.723253",
"title": "Regimes of mobility across the globe",
"authors": "N Glick Schiller, NB Salazar",
"year": "2013",
"cited_by": 710,
"cited_by_url": "https://scholar.google.com/scholar?cites=1498816162226183083&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Mobilities I: catching up",
"id": "777699393722238433",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0309132510383348",
"title": "Mobilities I: catching up",
"authors": "T Cresswell",
"year": "2011",
"cited_by": 530,
"cited_by_url": "https://scholar.google.com/scholar?cites=777699393722238433&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Current sociological theories and issues in tourism",
"id": "7791711769180725213",
"url": "https://www.sciencedirect.com/science/article/pii/S0160738312001090",
"title": "Current sociological theories and issues in tourism",
"authors": "E Cohen, SA Cohen",
"year": "2012",
"cited_by": 428,
"cited_by_url": "https://scholar.google.com/scholar?cites=7791711769180725213&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Globalization/anti-globalization: Beyond the great divide",
"id": "9335806169519710955",
"url": "https://books.google.com/books?hl=en&lr=&id=vskz1poDuvoC&oi=fnd&pg=PR7&ots=8Q0NK5dXWS&sig=5EiHCeUgb1kPq5E-HjwYR2e3tNc",
"title": "Globalization/anti-globalization: Beyond the great divide",
"authors": "D Held, A McGrew",
"year": "2007",
"cited_by": 1843,
"cited_by_url": "https://scholar.google.com/scholar?cites=9335806169519710955&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The communist manifesto",
"id": "13990517224208973018",
"url": "https://books.google.com/books?hl=en&lr=&id=CY3b0mcDF9QC&oi=fnd&pg=PA3&ots=q2F90cKBs2&sig=3oKNnyFbhKB6EdN4VUaj-Lj7EGM",
"title": "The communist manifesto",
"authors": "K Marx, F Engels",
"year": "2002",
"cited_by": 10744,
"cited_by_url": "https://scholar.google.com/scholar?cites=13990517224208973018&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Models of democracy",
"id": "3729515265203840977",
"url": "https://books.google.com/books?hl=en&lr=&id=QYVZ3TjL0-UC&oi=fnd&pg=PP14&ots=rmkkCbZkEs&sig=hhoUFQR37PVFbP9dhuVaDcnzPpk",
"title": "Models of democracy",
"authors": "D Held",
"year": "2006",
"cited_by": 8165,
"cited_by_url": "https://scholar.google.com/scholar?cites=3729515265203840977&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Environmental governance",
"id": "17025851805734779949",
"url": "https://www.annualreviews.org/doi/abs/10.1146/annurev.energy.31.042605.135621",
"title": "Environmental governance",
"authors": "MC Lemos, A Agrawal",
"year": "2006",
"cited_by": 1585,
"cited_by_url": "https://scholar.google.com/scholar?cites=17025851805734779949&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Understanding English as a Lingua Franca-Oxford Applied Linguistics",
"id": "3939753042568716185",
"url": "https://books.google.com/books?hl=en&lr=&id=ufSdBgAAQBAJ&oi=fnd&pg=PT25&ots=Om2gwIdLCw&sig=Z9S0kd4VApftSSUwf42zGcobjEM",
"title": "Understanding English as a Lingua Franca-Oxford Applied Linguistics",
"authors": "B Seidlhofer",
"year": "2013",
"cited_by": 1768,
"cited_by_url": "https://scholar.google.com/scholar?cites=3939753042568716185&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Globalization and culture: Global m\u00e9lange",
"id": "11637297185155786395",
"url": "https://books.google.com/books?hl=en&lr=&id=QfCYDwAAQBAJ&oi=fnd&pg=PR1&ots=AgHCWEKKJk&sig=RXkL5snDK71ZaDDPrQB0OePCyIs",
"title": "Globalization and culture: Global m\u00e9lange",
"authors": "JN Pieterse",
"year": "2019",
"cited_by": 1266,
"cited_by_url": "https://scholar.google.com/scholar?cites=11637297185155786395&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Globalization and the nation state",
"id": "16755493655678164775",
"url": "https://books.google.com/books?hl=en&lr=&id=YyFLDwAAQBAJ&oi=fnd&pg=PR9&ots=jMQL5gblGw&sig=IZmjEmg22WzrY3uF6ISquZhKSvg",
"title": "Globalization and the nation state",
"authors": "RJ Holton",
"year": "2011",
"cited_by": 956,
"cited_by_url": "https://scholar.google.com/scholar?cites=16755493655678164775&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The sociology of work: introduction",
"id": "1573496538030902444",
"url": "https://books.google.com/books?hl=en&lr=&id=KenoerlBqrgC&oi=fnd&pg=PR5&ots=gHb8rML0th&sig=uDgfp0F3Fzm1rW0ZXEEASRKgLQc",
"title": "The sociology of work: introduction",
"authors": "K Grint",
"year": "2005",
"cited_by": 911,
"cited_by_url": "https://scholar.google.com/scholar?cites=1573496538030902444&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Democracy across borders: from D\u00eamos to D\u00eamoi",
"id": "11877752162178613853",
"url": "https://books.google.com/books?hl=en&lr=&id=kDbOqEXUIRoC&oi=fnd&pg=PR7&ots=DWo7wp6MIu&sig=x4Kkdg_ZW-49qj2ZknQrAOtjmuY",
"title": "Democracy across borders: from D\u00eamos to D\u00eamoi",
"authors": "J Bohman",
"year": "2010",
"cited_by": 808,
"cited_by_url": "https://scholar.google.com/scholar?cites=11877752162178613853&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Cosmopolitanism: Ideals and realities",
"id": "3416823076373075133",
"url": "https://books.google.com/books?hl=en&lr=&id=63dSg56GrgkC&oi=fnd&pg=PR3&ots=UPuqnSg552&sig=n99sPz4gRiPY5jbKT0aYh5oD_iw",
"title": "Cosmopolitanism: Ideals and realities",
"authors": "D Held",
"year": "2010",
"cited_by": 736,
"cited_by_url": "https://scholar.google.com/scholar?cites=3416823076373075133&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Constructions of neoliberal reason",
"id": "15658870393754573755",
"url": "https://books.google.com/books?hl=en&lr=&id=2CQUDAAAQBAJ&oi=fnd&pg=PR7&ots=HNUYfqyHy5&sig=9MWOGUuvnqzhPPBPygmoqoMX9L4",
"title": "Constructions of neoliberal reason",
"authors": "J Peck",
"year": "2010",
"cited_by": 1849,
"cited_by_url": "https://scholar.google.com/scholar?cites=15658870393754573755&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Policing the crisis: Mugging, the state and law and order",
"id": "16134060271562009690",
"url": "https://books.google.com/books?hl=en&lr=&id=bd8cBQAAQBAJ&oi=fnd&pg=PP1&ots=Mj8_5x1YqP&sig=nUCPl80DkDIqAWJMjLK5IdF1AjU",
"title": "Policing the crisis: Mugging, the state and law and order",
"authors": "S Hall, C Critcher, T Jefferson, J Clarke, B Roberts",
"year": "2013",
"cited_by": 8234,
"cited_by_url": "https://scholar.google.com/scholar?cites=16134060271562009690&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Planning theory",
"id": "10064994335464499543",
"url": "https://books.google.com/books?hl=en&lr=&id=XQAoDwAAQBAJ&oi=fnd&pg=PR1&ots=dQndjZzlyX&sig=ke67oQKiEZpmQ9_h-rNkCCQqwQQ",
"title": "Planning theory",
"authors": "P Allmendinger",
"year": "2017",
"cited_by": 917,
"cited_by_url": "https://scholar.google.com/scholar?cites=10064994335464499543&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Democratization: a critical introduction",
"id": "15298516891917440873",
"url": "https://books.google.com/books?hl=en&lr=&id=m1EdBQAAQBAJ&oi=fnd&pg=PP1&ots=VUGEHMRBZ6&sig=WT4CXt4VlS2AToTKeuyqD7_L2wQ",
"title": "Democratization: a critical introduction",
"authors": "J Grugel, ML Bishop",
"year": "2013",
"cited_by": 714,
"cited_by_url": "https://scholar.google.com/scholar?cites=15298516891917440873&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Austerity urbanism: American cities under extreme economy",
"id": "1306585792440050065",
"url": "https://rsa.tandfonline.com/doi/abs/10.1080/13604813.2012.734071",
"title": "Austerity urbanism: American cities under extreme economy",
"authors": "J Peck",
"year": "2012",
"cited_by": 728,
"cited_by_url": "https://scholar.google.com/scholar?cites=1306585792440050065&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The limits of neoliberalism: Authority, sovereignty and the logic of competition",
"id": "15987402213242346696",
"url": "https://books.google.com/books?hl=en&lr=&id=SEaVDQAAQBAJ&oi=fnd&pg=PP1&ots=WqqI74YoD_&sig=Xy93x53aOUpoGms5JFYKQsTOT9I",
"title": "The limits of neoliberalism: Authority, sovereignty and the logic of competition",
"authors": "W Davies",
"year": "2016",
"cited_by": 747,
"cited_by_url": "https://scholar.google.com/scholar?cites=15987402213242346696&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "After neoliberalization?",
"id": "11362242514450040071",
"url": "https://www.tandfonline.com/doi/abs/10.1080/14747731003669669",
"title": "After neoliberalization?",
"authors": "N Brenner, J Peck, N Theodore",
"year": "2010",
"cited_by": 678,
"cited_by_url": "https://scholar.google.com/scholar?cites=11362242514450040071&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Three steps to a historical anthropology of actually existing neoliberalism",
"id": "8690891326986678490",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1469-8676.2011.00189.x",
"title": "Three steps to a historical anthropology of actually existing neoliberalism",
"authors": "L Wacquant",
"year": "2012",
"cited_by": 665,
"cited_by_url": "https://scholar.google.com/scholar?cites=8690891326986678490&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "From resilience to resourcefulness: A critique of resilience policy and activism",
"id": "13428693881391580471",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0309132512454775",
"title": "From resilience to resourcefulness: A critique of resilience policy and activism",
"authors": "D MacKinnon, KD Derickson",
"year": "2013",
"cited_by": 653,
"cited_by_url": "https://scholar.google.com/scholar?cites=13428693881391580471&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Inventing the future: Postcapitalism and a world without work",
"id": "5532694060562684748",
"url": "https://books.google.com/books?hl=en&lr=&id=0w7UBwAAQBAJ&oi=fnd&pg=PT6&ots=UgENSmJT_B&sig=-1_kM968WPbCaHvqMiUhGgWCqZE",
"title": "Inventing the future: Postcapitalism and a world without work",
"authors": "N Srnicek, A Williams",
"year": "2015",
"cited_by": 730,
"cited_by_url": "https://scholar.google.com/scholar?cites=5532694060562684748&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Geographies of policy: From transfer-diffusion to mobility-mutation",
"id": "16708526138197502422",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0309132510394010",
"title": "Geographies of policy: From transfer-diffusion to mobility-mutation",
"authors": "J Peck",
"year": "2011",
"cited_by": 546,
"cited_by_url": "https://scholar.google.com/scholar?cites=16708526138197502422&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Human geography without scale",
"id": "18017898377241862766",
"url": "https://rgs-ibg.onlinelibrary.wiley.com/doi/abs/10.1111/j.1475-5661.2005.00180.x",
"title": "Human geography without scale",
"authors": "SA Marston, JP Jones III\u2026",
"year": "2005",
"cited_by": 1737,
"cited_by_url": "https://scholar.google.com/scholar?cites=18017898377241862766&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Seeking spatial justice",
"id": "9283389686706894373",
"url": "https://books.google.com/books?hl=en&lr=&id=NkfEeomy-IUC&oi=fnd&pg=PR5&ots=hZ45ke1mia&sig=MQ8f1ixT0bzL08_kJvG7FanDvG4",
"title": "Seeking spatial justice",
"authors": "EW Soja",
"year": "2013",
"cited_by": 2122,
"cited_by_url": "https://scholar.google.com/scholar?cites=9283389686706894373&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Territories of difference: place, movements, life, redes",
"id": "2218987919267491657",
"url": "https://books.google.com/books?hl=en&lr=&id=v2ttzsWSEpEC&oi=fnd&pg=PP6&ots=Kqv73aNOVh&sig=5xbhY0IUAHxZoQbuMlGNogpcxH8",
"title": "Territories of difference: place, movements, life, redes",
"authors": "A Escobar",
"year": "2008",
"cited_by": 1197,
"cited_by_url": "https://scholar.google.com/scholar?cites=2218987919267491657&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Understanding and representing 'place'in health research: a relational approach",
"id": "6193684272262360695",
"url": "https://www.sciencedirect.com/science/article/pii/S0277953607003061",
"title": "Understanding and representing 'place'in health research: a relational approach",
"authors": "S Cummins, S Curtis, AV Diez-Roux\u2026",
"year": "2007",
"cited_by": 1137,
"cited_by_url": "https://scholar.google.com/scholar?cites=6193684272262360695&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Participatory action research approaches and methods: Connecting people, participation and place",
"id": "8341736667074204812",
"url": "https://books.google.com/books?hl=en&lr=&id=daKkkt0NiPQC&oi=fnd&pg=PP1&ots=LfEB9SrFuP&sig=mj9jD8KpRvgzkjJY-bXqu93QNzs",
"title": "Participatory action research approaches and methods: Connecting people, participation and place",
"authors": "S Kindon, R Pain, M Kesby",
"year": "2007",
"cited_by": 1006,
"cited_by_url": "https://scholar.google.com/scholar?cites=8341736667074204812&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Alternative food networks: Knowledge, practice, and politics",
"id": "14559825184495157929",
"url": "https://www.taylorfrancis.com/books/9780203804520",
"title": "Alternative food networks: Knowledge, practice, and politics",
"authors": "D Goodman, EM DuPuis, MK Goodman",
"year": "2012",
"cited_by": 847,
"cited_by_url": "https://scholar.google.com/scholar?cites=14559825184495157929&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Introduction Space, knowledge and power: Foucault and geography",
"id": "6654002334866220307",
"url": "https://www.taylorfrancis.com/books/e/9781315610146/chapters/10.4324/9781315610146-5",
"title": "Introduction Space, knowledge and power: Foucault and geography",
"authors": "S Elden, JW Crampton",
"year": "2016",
"cited_by": 738,
"cited_by_url": "https://scholar.google.com/scholar?cites=6654002334866220307&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Comparative and international research in education: Globalisation, context and difference",
"id": "18047236471476600831",
"url": "https://www.taylorfrancis.com/books/9780203452745",
"title": "Comparative and international research in education: Globalisation, context and difference",
"authors": "M Crossley, K Watson",
"year": "2003",
"cited_by": 699,
"cited_by_url": "https://scholar.google.com/scholar?cites=18047236471476600831&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Beyond the territorial fix: regional assemblages, politics and power",
"id": "10921020109727736279",
"url": "https://www.tandfonline.com/doi/abs/10.1080/00343400701543348",
"title": "Beyond the territorial fix: regional assemblages, politics and power",
"authors": "J Allen, A Cochrane",
"year": "2007",
"cited_by": 649,
"cited_by_url": "https://scholar.google.com/scholar?cites=10921020109727736279&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Governance innovation and the citizen: The Janus face of governance-beyond-the-state",
"id": "694742561381363967",
"url": "https://journals.sagepub.com/doi/abs/10.1080/00420980500279869",
"title": "Governance innovation and the citizen: The Janus face of governance-beyond-the-state",
"authors": "E Swyngedouw",
"year": "2005",
"cited_by": 1692,
"cited_by_url": "https://scholar.google.com/scholar?cites=694742561381363967&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The politics of belonging: Intersectional contestations",
"id": "18020292819842407421",
"url": "https://books.google.com/books?hl=en&lr=&id=oXREAgAAQBAJ&oi=fnd&pg=PP2&ots=M8LWcsRc1w&sig=q7eAUJpcr-tJLKGW43BgDJPGyEA",
"title": "The politics of belonging: Intersectional contestations",
"authors": "N Yuval-Davis",
"year": "2011",
"cited_by": 1181,
"cited_by_url": "https://scholar.google.com/scholar?cites=18020292819842407421&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The antinomies of the postpolitical city: in search of a democratic politics of environmental production",
"id": "11730549119520892498",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1468-2427.2009.00859.x",
"title": "The antinomies of the postpolitical city: in search of a democratic politics of environmental production",
"authors": "E Swyngedouw",
"year": "2009",
"cited_by": 867,
"cited_by_url": "https://scholar.google.com/scholar?cites=11730549119520892498&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Revolting subjects: Social abjection and resistance in neoliberal Britain",
"id": "2883137828187680541",
"url": "https://books.google.com/books?hl=en&lr=&id=URljDgAAQBAJ&oi=fnd&pg=PT27&ots=gkr97WfTt7&sig=9Z5ivgEgZ1VPz_3SniWlYqEpxaE",
"title": "Revolting subjects: Social abjection and resistance in neoliberal Britain",
"authors": "DI Tyler",
"year": "2013",
"cited_by": 881,
"cited_by_url": "https://scholar.google.com/scholar?cites=2883137828187680541&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Impossible sustainability and the post-political condition",
"id": "3566087228188514874",
"url": "https://link.springer.com/chapter/10.1007/978-90-481-3106-8_11",
"title": "Impossible sustainability and the post-political condition",
"authors": "E Swyngedouw",
"year": "2010",
"cited_by": 778,
"cited_by_url": "https://scholar.google.com/scholar?cites=3566087228188514874&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Public policy in the community",
"id": "17597979981858588817",
"url": "https://books.google.com/books?hl=en&lr=&id=uaIcBQAAQBAJ&oi=fnd&pg=PP1&ots=Q3rdDFQVr6&sig=X43i5nZobbeKc0s0RJTfuym9JZU",
"title": "Public policy in the community",
"authors": "M Taylor",
"year": "2011",
"cited_by": 725,
"cited_by_url": "https://scholar.google.com/scholar?cites=17597979981858588817&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Interrogating post-democratization: Reclaiming egalitarian political spaces",
"id": "12048101700564678755",
"url": "https://www.sciencedirect.com/science/article/pii/S0962629811001119",
"title": "Interrogating post-democratization: Reclaiming egalitarian political spaces",
"authors": "E Swyngedouw",
"year": "2011",
"cited_by": 492,
"cited_by_url": "https://scholar.google.com/scholar?cites=12048101700564678755&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Community participation in the real world: opportunities and pitfalls in new governance spaces",
"id": "12357777165609031578",
"url": "https://journals.sagepub.com/doi/abs/10.1080/00420980601074987",
"title": "Community participation in the real world: opportunities and pitfalls in new governance spaces",
"authors": "M Taylor",
"year": "2007",
"cited_by": 481,
"cited_by_url": "https://scholar.google.com/scholar?cites=12357777165609031578&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "'The planned city sweeps the poor away\u2026': Urban planning and 21st century urbanisation",
"id": "8281124383089505123",
"url": "https://www.sciencedirect.com/science/article/pii/S030590060900052X",
"title": "'The planned city sweeps the poor away\u2026': Urban planning and 21st century urbanisation",
"authors": "V Watson",
"year": "2009",
"cited_by": 494,
"cited_by_url": "https://scholar.google.com/scholar?cites=8281124383089505123&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Transforming governance: Challenges of institutional adaptation and a new politics of space",
"id": "17339363157783006790",
"url": "https://www.tandfonline.com/doi/abs/10.1080/09654310500420792",
"title": "Transforming governance: Challenges of institutional adaptation and a new politics of space",
"authors": "P Healey",
"year": "2006",
"cited_by": 421,
"cited_by_url": "https://scholar.google.com/scholar?cites=17339363157783006790&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Variegated neoliberalization: geographies, modalities, pathways",
"id": "12871006371345816093",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1471-0374.2009.00277.x",
"title": "Variegated neoliberalization: geographies, modalities, pathways",
"authors": "N Brenner, J Peck, N Theodore",
"year": "2010",
"cited_by": 1703,
"cited_by_url": "https://scholar.google.com/scholar?cites=12871006371345816093&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Mobilizing policy: Models, methods, and mutations",
"id": "16551600086958372669",
"url": "https://www.sciencedirect.com/science/article/pii/S0016718510000047",
"title": "Mobilizing policy: Models, methods, and mutations",
"authors": "J Peck, N Theodore",
"year": "2010",
"cited_by": 849,
"cited_by_url": "https://scholar.google.com/scholar?cites=16551600086958372669&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Postneoliberalism and its malcontents",
"id": "6575919852332503792",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1467-8330.2009.00718.x",
"title": "Postneoliberalism and its malcontents",
"authors": "J Peck, N Theodore, N Brenner",
"year": "2010",
"cited_by": 732,
"cited_by_url": "https://scholar.google.com/scholar?cites=6575919852332503792&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Towards a new epistemology of the urban?",
"id": "15248085975466281593",
"url": "https://rsa.tandfonline.com/doi/abs/10.1080/13604813.2015.1014712",
"title": "Towards a new epistemology of the urban?",
"authors": "N Brenner, C Schmid",
"year": "2015",
"cited_by": 676,
"cited_by_url": "https://scholar.google.com/scholar?cites=15248085975466281593&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Neoliberal urbanism: Models, moments, mutations",
"id": "13871522173008224529",
"url": "https://muse.jhu.edu/article/269245/summary",
"title": "Neoliberal urbanism: Models, moments, mutations",
"authors": "J Peck, N Theodore, N Brenner",
"year": "2009",
"cited_by": 617,
"cited_by_url": "https://scholar.google.com/scholar?cites=13871522173008224529&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Geography and geographers: Anglo-American human geography since 1945",
"id": "16972362439774091019",
"url": "https://content.taylorfrancis.com/books/download?dac=C2012-0-11100-0&isbn=9781134065875&format=googlePreviewPdf",
"title": "Geography and geographers: Anglo-American human geography since 1945",
"authors": "R Johnston, JD Sidaway",
"year": "2015",
"cited_by": 1364,
"cited_by_url": "https://scholar.google.com/scholar?cites=16972362439774091019&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The geography of tourism and recreation: Environment, place and space",
"id": "17751030601041305233",
"url": "https://content.taylorfrancis.com/books/download?dac=C2014-0-37763-1&isbn=9781135041571&format=googlePreviewPdf",
"title": "The geography of tourism and recreation: Environment, place and space",
"authors": "SJ Page, CM Hall",
"year": "2014",
"cited_by": 2023,
"cited_by_url": "https://scholar.google.com/scholar?cites=17751030601041305233&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Toward a theory of gentrification a back to the city movement by capital, not people",
"id": "13842855046175701847",
"url": "https://www.tandfonline.com/doi/abs/10.1080/01944367908977002",
"title": "Toward a theory of gentrification a back to the city movement by capital, not people",
"authors": "N Smith",
"year": "1979",
"cited_by": 1924,
"cited_by_url": "https://scholar.google.com/scholar?cites=13842855046175701847&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Place and experience: A philosophical topography",
"id": "15707579094642507995",
"url": "https://content.taylorfrancis.com/books/download?dac=C2016-0-30464-8&isbn=9781351967198&format=googlePreviewPdf",
"title": "Place and experience: A philosophical topography",
"authors": "J Malpas",
"year": "2018",
"cited_by": 1439,
"cited_by_url": "https://scholar.google.com/scholar?cites=15707579094642507995&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Conducting research in human geography: theory, methodology and practice",
"id": "6993846425230599725",
"url": "https://www.taylorfrancis.com/books/9781315841458",
"title": "Conducting research in human geography: theory, methodology and practice",
"authors": "R Kitchin, N Tate",
"year": "2013",
"cited_by": 1314,
"cited_by_url": "https://scholar.google.com/scholar?cites=6993846425230599725&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Urban tourism.",
"id": "12896857982640686255",
"url": "https://www.cabdirect.org/cabdirect/abstract/19951801985",
"title": "Urban tourism.",
"authors": "SJ Page",
"year": "1995",
"cited_by": 1123,
"cited_by_url": "https://scholar.google.com/scholar?cites=12896857982640686255&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "The roots of modern environmentalism",
"id": "14320419184022812199",
"url": "https://books.google.com/books?hl=en&lr=&id=3ELBDwAAQBAJ&oi=fnd&pg=PT12&ots=_-USKRIZi_&sig=umRaPQHBAqUadFW__E4AYY_SzfE",
"title": "The roots of modern environmentalism",
"authors": "D Pepper",
"year": "2019",
"cited_by": 865,
"cited_by_url": "https://scholar.google.com/scholar?cites=14320419184022812199&as_sdt=40000005&sciodt=40000005&hl=en"
},
{
"label": "Exploring the frontier of livelihoods research",