-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMostafavi.html
1608 lines (1587 loc) · 66.5 KB
/
MMostafavi.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": "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=1,22&hl=en"
},
{
"label": "Ecological urbanism",
"id": "11132682526259813349",
"url": "https://www.gsd.harvard.edu/person/mohsen-mostafavi/",
"title": "Ecological urbanism"
},
{
"label": "City",
"id": "9393216841091090970",
"url": "https://content.taylorfrancis.com/books/download?dac=C2016-0-95429-7&isbn=9781315471242&format=googlePreviewPdf",
"title": "City",
"authors": "P Hubbard",
"year": "2017",
"cited_by": 342,
"cited_by_url": "https://scholar.google.com/scholar?cites=9393216841091090970&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Planetary gentrification",
"id": "12175331196130190689",
"url": "https://books.google.com/books?hl=en&lr=&id=ZPpNDwAAQBAJ&oi=fnd&pg=PP2&ots=f9w-SxPRDS&sig=H9q3JBgLNNAvxiXOPe1SR85FT1E",
"title": "Planetary gentrification",
"authors": "L Lees, HB Shin, E L\u00f3pez-Morales",
"year": "2016",
"cited_by": 301,
"cited_by_url": "https://scholar.google.com/scholar?cites=12175331196130190689&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Urban Studies",
"id": "9203151039559571556",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1002/9781118568446.eurs0434",
"title": "Urban Studies",
"authors": "R Paddison",
"year": "1964",
"cited_by": 209,
"cited_by_url": "https://scholar.google.com/scholar?cites=9203151039559571556&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Thinking cities through elsewhere: Comparative tactics for a more global urban studies",
"id": "15269024599092448573",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0309132515598025",
"title": "Thinking cities through elsewhere: Comparative tactics for a more global urban studies",
"authors": "J Robinson",
"year": "2016",
"cited_by": 200,
"cited_by_url": "https://scholar.google.com/scholar?cites=15269024599092448573&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The experimental city",
"id": "11854056785568650092",
"url": "https://books.google.com/books?hl=en&lr=&id=eQszDAAAQBAJ&oi=fnd&pg=PP1&ots=Wljj6bbRTm&sig=uAcVWMEGMJvD7RmJ3qOyC2EDIho",
"title": "The experimental city",
"authors": "J Evans, A Karvonen, R Raven",
"year": "2016",
"cited_by": 190,
"cited_by_url": "https://scholar.google.com/scholar?cites=11854056785568650092&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Current debates in urban theory: A critical assessment",
"id": "3750253995949373278",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0042098016634002",
"title": "Current debates in urban theory: A critical assessment",
"authors": "M Storper, AJ Scott",
"year": "2016",
"cited_by": 162,
"cited_by_url": "https://scholar.google.com/scholar?cites=3750253995949373278&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Mobilizing the new mobilities paradigm",
"id": "247548950092685827",
"url": "https://www.tandfonline.com/doi/abs/10.1080/23800127.2016.1151216",
"title": "Mobilizing the new mobilities paradigm",
"authors": "M Sheller, J Urry",
"year": "2016",
"cited_by": 153,
"cited_by_url": "https://scholar.google.com/scholar?cites=247548950092685827&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Cities in global capitalism",
"id": "4914928547164758485",
"url": "https://books.google.com/books?hl=en&lr=&id=-2ZNDwAAQBAJ&oi=fnd&pg=PP2&ots=-TuctmWhA7&sig=YNYktTLY2gHT_uUeo3dTZIe-0xM",
"title": "Cities in global capitalism",
"authors": "U Rossi",
"year": "2017",
"cited_by": 88,
"cited_by_url": "https://scholar.google.com/scholar?cites=4914928547164758485&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "With, against and beyond Lefebvre: Planetary urbanization and epistemic plurality",
"id": "3827278498169397705",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0263775816628872",
"title": "With, against and beyond Lefebvre: Planetary urbanization and epistemic plurality",
"authors": "M Buckley, K Strauss",
"year": "2016",
"cited_by": 70,
"cited_by_url": "https://scholar.google.com/scholar?cites=3827278498169397705&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Relational comparison revisited: Marxist postcolonial geographies in practice",
"id": "3284487949802010675",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0309132516681388",
"title": "Relational comparison revisited: Marxist postcolonial geographies in practice",
"authors": "G Hart",
"year": "2018",
"cited_by": 73,
"cited_by_url": "https://scholar.google.com/scholar?cites=3284487949802010675&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The historic urban landscape: managing heritage in an urban century",
"id": "8182730501286725286",
"url": "https://books.google.com/books?hl=en&lr=&id=g3ceRmPa4Q4C&oi=fnd&pg=PR7&ots=SFCWfdyB4v&sig=-dH6MGrS9tq1aq86ti9GhPMKlC8",
"title": "The historic urban landscape: managing heritage in an urban century",
"authors": "F Bandarin, R Van Oers",
"year": "2012",
"cited_by": 430,
"cited_by_url": "https://scholar.google.com/scholar?cites=8182730501286725286&as_sdt=40000005&sciodt=1,22&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=1,22&hl=en"
},
{
"label": "Toward a smart sustainable development of port cities/areas: The role of the \u201cHistoric Urban Landscape\u201d approach",
"id": "12476721543512902140",
"url": "https://www.mdpi.com/2071-1050/5/10/4329",
"title": "Toward a smart sustainable development of port cities/areas: The role of the \u201cHistoric Urban Landscape\u201d approach",
"authors": "L Fusco Girard",
"year": "2013",
"cited_by": 111,
"cited_by_url": "https://scholar.google.com/scholar?cites=12476721543512902140&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Cultural heritage and urban tourism: Historic city centres under pressure",
"id": "7221996979523017311",
"url": "https://www.mdpi.com/2071-1050/9/8/1346",
"title": "Cultural heritage and urban tourism: Historic city centres under pressure",
"authors": "M Garc\u00eda-Hern\u00e1ndez, M de la Calle-Vaquero\u2026",
"year": "2017",
"cited_by": 75,
"cited_by_url": "https://scholar.google.com/scholar?cites=7221996979523017311&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Measuring links between cultural heritage management and sustainable urban development: An overview of global monitoring tools",
"id": "13521397749074237159",
"url": "https://www.sciencedirect.com/science/article/pii/S026427511630539X",
"title": "Measuring links between cultural heritage management and sustainable urban development: An overview of global monitoring tools",
"authors": "PC Guzm\u00e1n, ARP Roders, BJF Colenbrander",
"year": "2017",
"cited_by": 52,
"cited_by_url": "https://scholar.google.com/scholar?cites=13521397749074237159&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Historic cities as model of sustainability",
"id": "7578376755055161534",
"url": "https://www.emerald.com/insight/content/doi/10.1108/20441261211223298/full/html",
"title": "Historic cities as model of sustainability",
"authors": "R van Oers, AP Roders",
"year": "2012",
"cited_by": 41,
"cited_by_url": "https://scholar.google.com/scholar?cites=7578376755055161534&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Conserving cultural landscapes: Challenges and new directions",
"id": "4960418382169367388",
"url": "https://books.google.com/books?hl=en&lr=&id=vqOQBAAAQBAJ&oi=fnd&pg=PP1&ots=SsvxnWSKb_&sig=IUT2xryhrMwmyTBNtb75pHcIv4U",
"title": "Conserving cultural landscapes: Challenges and new directions",
"authors": "K Taylor, AS Clair, NJ Mitchell",
"year": "2014",
"cited_by": 33,
"cited_by_url": "https://scholar.google.com/scholar?cites=4960418382169367388&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Approaches to urban heritage, development and sustainability",
"id": "8887225879190667902",
"url": "https://www.taylorfrancis.com/books/e/9781315728018/chapters/10.4324/9781315728018-1",
"title": "Approaches to urban heritage, development and sustainability",
"authors": "S Labadi, W Logan",
"year": "2015",
"cited_by": 42,
"cited_by_url": "https://scholar.google.com/scholar?cites=8887225879190667902&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Authenticity as a challenge in the transformation of Beijing's urban heritage: The commercial gentrification of the Guozijian historic area",
"id": "14177437122191547057",
"url": "https://www.sciencedirect.com/science/article/pii/S0264275116301743",
"title": "Authenticity as a challenge in the transformation of Beijing's urban heritage: The commercial gentrification of the Guozijian historic area",
"authors": "PG Mart\u00ednez",
"year": "2016",
"cited_by": 36,
"cited_by_url": "https://scholar.google.com/scholar?cites=14177437122191547057&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The Historic Urban Landscape paradigm and cities as cultural landscapes. Challenging orthodoxy in urban conservation",
"id": "4939167051592444867",
"url": "https://www.tandfonline.com/doi/abs/10.1080/01426397.2016.1156066",
"title": "The Historic Urban Landscape paradigm and cities as cultural landscapes. Challenging orthodoxy in urban conservation",
"authors": "K Taylor",
"year": "2016",
"cited_by": 34,
"cited_by_url": "https://scholar.google.com/scholar?cites=4939167051592444867&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Informal settlements and urban heritage landscapes in South Africa",
"id": "15832509987739296983",
"url": "https://journals.sagepub.com/doi/abs/10.1177/1469605313519023",
"title": "Informal settlements and urban heritage landscapes in South Africa",
"authors": "LM Weiss",
"year": "2014",
"cited_by": 23,
"cited_by_url": "https://scholar.google.com/scholar?cites=15832509987739296983&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Urban ecology: science of cities",
"id": "1007009009474478407",
"url": "https://books.google.com/books?hl=en&lr=&id=gQSuAgAAQBAJ&oi=fnd&pg=PR9&ots=uhBdwwhuLp&sig=ptqOUsIJTQVeOMNoEoLv8ikOstk",
"title": "Urban ecology: science of cities",
"authors": "RTT Forman",
"year": "2014",
"cited_by": 320,
"cited_by_url": "https://scholar.google.com/scholar?cites=1007009009474478407&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Landscape ecology in theory and practice",
"id": "13301258832987257770",
"url": "https://link.springer.com/content/pdf/10.1007/978-1-4939-2794-4.pdf",
"title": "Landscape ecology in theory and practice",
"authors": "MG Turner, RH Gardner, RV O'neill, RV O'Neill",
"year": "2001",
"cited_by": 3463,
"cited_by_url": "https://scholar.google.com/scholar?cites=13301258832987257770&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The ecology, distribution, conservation and management of large old trees",
"id": "7837937024864097434",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/brv.12290",
"title": "The ecology, distribution, conservation and management of large old trees",
"authors": "DB Lindenmayer, WF Laurance",
"year": "2017",
"cited_by": 96,
"cited_by_url": "https://scholar.google.com/scholar?cites=7837937024864097434&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Ecological connectivity research in urban areas",
"id": "12697899094345006124",
"url": "https://besjournals.onlinelibrary.wiley.com/doi/abs/10.1111/1365-2435.12489",
"title": "Ecological connectivity research in urban areas",
"authors": "S LaPoint, N Balkenhol, J Hale, J Sadler\u2026",
"year": "2015",
"cited_by": 78,
"cited_by_url": "https://scholar.google.com/scholar?cites=12697899094345006124&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Urban versus conventional agriculture, taxonomy of resource profiles: a review",
"id": "6769281474671754362",
"url": "https://link.springer.com/article/10.1007/s13593-015-0348-4",
"title": "Urban versus conventional agriculture, taxonomy of resource profiles: a review",
"authors": "B Goldstein, M Hauschild, J Fernandez\u2026",
"year": "2016",
"cited_by": 48,
"cited_by_url": "https://scholar.google.com/scholar?cites=6769281474671754362&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Where to put the next billion people",
"id": "8672331792207638924",
"url": "https://www.nature.com/articles/537608a",
"title": "Where to put the next billion people",
"authors": "RTT Forman, J Wu",
"year": "2016",
"cited_by": 52,
"cited_by_url": "https://scholar.google.com/scholar?cites=8672331792207638924&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Effects of habitat structure, human disturbance, and habitat connectivity on urban forest bird communities",
"id": "13754247676335686648",
"url": "https://link.springer.com/article/10.1007/s11252-014-0433-5",
"title": "Effects of habitat structure, human disturbance, and habitat connectivity on urban forest bird communities",
"authors": "W Kang, ES Minor, CR Park, D Lee",
"year": "2015",
"cited_by": 42,
"cited_by_url": "https://scholar.google.com/scholar?cites=13754247676335686648&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Environmental degradation in the urban areas of China: Evidence from multi-source remote sensing data",
"id": "17600319403693657030",
"url": "https://www.sciencedirect.com/science/article/pii/S003442571730086X",
"title": "Environmental degradation in the urban areas of China: Evidence from multi-source remote sensing data",
"authors": "C He, B Gao, Q Huang, Q Ma, Y Dou",
"year": "2017",
"cited_by": 44,
"cited_by_url": "https://scholar.google.com/scholar?cites=17600319403693657030&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Cities that think like planets: complexity, resilience, and innovation in hybrid ecosystems",
"id": "9866209659192637771",
"url": "https://books.google.com/books?hl=en&lr=&id=e_BWDAAAQBAJ&oi=fnd&pg=PP1&ots=lrS35HwUXH&sig=L2_v6SYcJ608QQG85QmT2bbja4E",
"title": "Cities that think like planets: complexity, resilience, and innovation in hybrid ecosystems",
"authors": "M Alberti",
"year": "2016",
"cited_by": 37,
"cited_by_url": "https://scholar.google.com/scholar?cites=9866209659192637771&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Spatial assessment of climate change vulnerability at city scale: A study in Bangalore, India",
"id": "14857298856006428324",
"url": "https://www.sciencedirect.com/science/article/pii/S0264837716301363",
"title": "Spatial assessment of climate change vulnerability at city scale: A study in Bangalore, India",
"authors": "P Kumar, D Geneletti, H Nagendra",
"year": "2016",
"cited_by": 36,
"cited_by_url": "https://scholar.google.com/scholar?cites=14857298856006428324&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Dragonflies and damselflies (Odonata) in urban ecosystems: a review",
"id": "2647835613900766414",
"url": "http://eprints.whiterose.ac.uk/95215/",
"title": "Dragonflies and damselflies (Odonata) in urban ecosystems: a review",
"authors": "G Villalobos-Jimenez, A Dunn\u2026",
"year": "2016",
"cited_by": 40,
"cited_by_url": "https://scholar.google.com/scholar?cites=2647835613900766414&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Climate change and the imagination",
"id": "14860971577680586330",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1002/wcc.117",
"title": "Climate change and the imagination",
"authors": "K Yusoff, J Gabrys",
"year": "2011",
"cited_by": 165,
"cited_by_url": "https://scholar.google.com/scholar?cites=14860971577680586330&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Geo\u2010politics and the disaster of the A nthropocene",
"id": "15033534481035263906",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/1467-954x.12122",
"title": "Geo\u2010politics and the disaster of the A nthropocene",
"authors": "N Clark",
"year": "2014",
"cited_by": 173,
"cited_by_url": "https://scholar.google.com/scholar?cites=15033534481035263906&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Remaking participation: Science, environment and emergent publics",
"id": "15544239283286130408",
"url": "https://books.google.com/books?hl=en&lr=&id=uLDMCgAAQBAJ&oi=fnd&pg=PP1&ots=uhS7VYAZnc&sig=b4BvS3V8Qsd1ifHLHeMjgRFbqXc",
"title": "Remaking participation: Science, environment and emergent publics",
"authors": "J Chilvers, M Kearnes",
"year": "2015",
"cited_by": 182,
"cited_by_url": "https://scholar.google.com/scholar?cites=15544239283286130408&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Climate change and visual imagery",
"id": "10561802640658317022",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1002/wcc.249",
"title": "Climate change and visual imagery",
"authors": "SJ O'Neill, N Smith",
"year": "2014",
"cited_by": 141,
"cited_by_url": "https://scholar.google.com/scholar?cites=10561802640658317022&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Reflections on climate change communication research and practice in the second decade of the 21st century: what more is there to say?",
"id": "11622151309103941514",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1002/wcc.403",
"title": "Reflections on climate change communication research and practice in the second decade of the 21st century: what more is there to say?",
"authors": "SC Moser",
"year": "2016",
"cited_by": 144,
"cited_by_url": "https://scholar.google.com/scholar?cites=11622151309103941514&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Climate change, capitalism, and corporations",
"id": "9429224839265050436",
"url": "https://books.google.com/books?hl=en&lr=&id=XtyCCgAAQBAJ&oi=fnd&pg=PR10&ots=y2foNPEiMM&sig=vx0iiDkTFrtURy7u9czxu-yw7JA",
"title": "Climate change, capitalism, and corporations",
"authors": "C Wright, D Nyberg",
"year": "2015",
"cited_by": 116,
"cited_by_url": "https://scholar.google.com/scholar?cites=9429224839265050436&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Four problems, four directions for environmental humanities: Toward critical posthumanities for the Anthropocene",
"id": "13770408535346068898",
"url": "https://www.jstor.org/stable/10.2979/ethicsenviro.20.1.67",
"title": "Four problems, four directions for environmental humanities: Toward critical posthumanities for the Anthropocene",
"authors": "A Neimanis, C \u00c5sberg, J Hedr\u00e9n",
"year": "2015",
"cited_by": 98,
"cited_by_url": "https://scholar.google.com/scholar?cites=13770408535346068898&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Future imaginings: organizing in response to climate change",
"id": "8206085941642308518",
"url": "https://journals.sagepub.com/doi/abs/10.1177/1350508413489821",
"title": "Future imaginings: organizing in response to climate change",
"authors": "C Wright, D Nyberg, C De Cock, G Whiteman",
"year": "2013",
"cited_by": 78,
"cited_by_url": "https://scholar.google.com/scholar?cites=8206085941642308518&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Exploring climate change through science and in society: an anthology of Mike Hulme's essays, interviews and speeches",
"id": "8865618971399014379",
"url": "https://content.taylorfrancis.com/books/download?dac=C2012-0-06908-X&isbn=9781135089832&format=googlePreviewPdf",
"title": "Exploring climate change through science and in society: an anthology of Mike Hulme's essays, interviews and speeches",
"authors": "M Hulme",
"year": "2013",
"cited_by": 67,
"cited_by_url": "https://scholar.google.com/scholar?cites=8865618971399014379&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Opening and closing the future: climate change, adaptation, and scenario planning",
"id": "3132257843869687349",
"url": "https://journals.sagepub.com/doi/abs/10.1068/c3204ed",
"title": "Opening and closing the future: climate change, adaptation, and scenario planning",
"authors": "L Rickards, R Ison, H F\u00fcnfgeld\u2026",
"year": "2014",
"cited_by": 50,
"cited_by_url": "https://scholar.google.com/scholar?cites=3132257843869687349&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Public risk perceptions, understandings and responses to climate change and natural disasters in Australia, 2010 and 2011",
"id": "752466800728420803",
"url": "https://core.ac.uk/download/pdf/143882514.pdf",
"title": "Public risk perceptions, understandings and responses to climate change and natural disasters in Australia, 2010 and 2011",
"authors": "JP Reser, GL Bradley, AI Glendon, MC Ellul\u2026",
"year": "2012",
"cited_by": 41,
"cited_by_url": "https://scholar.google.com/scholar?cites=752466800728420803&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Landscape ecological urbanism: Origins and trajectories",
"id": "5794798026442665797",
"url": "https://www.sciencedirect.com/science/article/pii/S0169204611000570",
"title": "Landscape ecological urbanism: Origins and trajectories",
"authors": "F Steiner",
"year": "2011",
"cited_by": 148,
"cited_by_url": "https://scholar.google.com/scholar?cites=5794798026442665797&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The concept of ecosystem services in adaptive urban planning and design: A framework for supporting innovation",
"id": "1455786615815912760",
"url": "https://www.sciencedirect.com/science/article/pii/S0169204614000346",
"title": "The concept of ecosystem services in adaptive urban planning and design: A framework for supporting innovation",
"authors": "J Ahern, S Cilliers, J Niemel\u00e4",
"year": "2014",
"cited_by": 236,
"cited_by_url": "https://scholar.google.com/scholar?cites=1455786615815912760&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Roadmap towards justice in urban climate adaptation research",
"id": "3735946595850121370",
"url": "https://www.nature.com/articles/nclimate2841",
"title": "Roadmap towards justice in urban climate adaptation research",
"authors": "L Shi, E Chu, I Anguelovski, A Aylett, J Debats\u2026",
"year": "2016",
"cited_by": 165,
"cited_by_url": "https://scholar.google.com/scholar?cites=3735946595850121370&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Sustainable urban greening strategies for compact cities in developing and developed economies",
"id": "16394555051502701048",
"url": "https://link.springer.com/article/10.1007/s11252-012-0268-x",
"title": "Sustainable urban greening strategies for compact cities in developing and developed economies",
"authors": "CY Jim",
"year": "2013",
"cited_by": 111,
"cited_by_url": "https://scholar.google.com/scholar?cites=16394555051502701048&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Ecological approaches in planning for sustainable cities: A review of the literature",
"id": "1420798108889997015",
"url": "http://eprints.qut.edu.au/79514/",
"title": "Ecological approaches in planning for sustainable cities: A review of the literature",
"authors": "T Yigitcanlar, D Dizdaroglu",
"year": "2014",
"cited_by": 70,
"cited_by_url": "https://scholar.google.com/scholar?cites=1420798108889997015&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Landscape approaches: a state-of-the-art review",
"id": "10147384859692518880",
"url": "https://www.annualreviews.org/doi/abs/10.1146/annurev-environ-102016-060932",
"title": "Landscape approaches: a state-of-the-art review",
"authors": "B Arts, M Buizer, L Horlings, V Ingram\u2026",
"year": "2017",
"cited_by": 45,
"cited_by_url": "https://scholar.google.com/scholar?cites=10147384859692518880&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "[CITATION][C]",
"id": "13122049682781050597",
"title": "[CITATION][C]",
"authors": "S Parham",
"year": "2015",
"cited_by": 53,
"cited_by_url": "https://scholar.google.com/scholar?cites=13122049682781050597&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Investigation of weed phenology in an establishing semi-extensive green roof",
"id": "9145094518205595108",
"url": "https://www.sciencedirect.com/science/article/pii/S0925857413002085",
"title": "Investigation of weed phenology in an establishing semi-extensive green roof",
"authors": "A Nagase, N Dunnett, MS Choi",
"year": "2013",
"cited_by": 43,
"cited_by_url": "https://scholar.google.com/scholar?cites=9145094518205595108&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Optimal selection and placement of green infrastructure to reduce impacts of land use change and climate change on hydrology and water quality: An application to\u00a0\u2026",
"id": "17803782390110314174",
"url": "https://www.sciencedirect.com/science/article/pii/S0048969716303266",
"title": "Optimal selection and placement of green infrastructure to reduce impacts of land use change and climate change on hydrology and water quality: An application to\u00a0\u2026",
"authors": "Y Liu, LO Theller, BC Pijanowski, BA Engel",
"year": "2016",
"cited_by": 43,
"cited_by_url": "https://scholar.google.com/scholar?cites=17803782390110314174&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Light rail transit and land use in Qatar: An integrated planning strategy for Al-Qassar's TOD",
"id": "16222054231750422643",
"url": "http://qspace.qu.edu.qa/handle/10576/5733",
"title": "Light rail transit and land use in Qatar: An integrated planning strategy for Al-Qassar's TOD",
"authors": "R Furlan, M AlMohannadi",
"year": "2016",
"cited_by": 35,
"cited_by_url": "https://scholar.google.com/scholar?cites=16222054231750422643&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Analyzing the pattern and connectivity of urban green spaces: A case study of Izmir, Turkey",
"id": "12166701129875856567",
"url": "https://link.springer.com/article/10.1007/s11252-012-0271-2",
"title": "Analyzing the pattern and connectivity of urban green spaces: A case study of Izmir, Turkey",
"authors": "\u015e Hepcan",
"year": "2013",
"cited_by": 28,
"cited_by_url": "https://scholar.google.com/scholar?cites=12166701129875856567&as_sdt=40000005&sciodt=1,22&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=1,22&hl=en"
},
{
"label": "Promoting novelty, rigor, and style in energy social science: towards codes of practice for appropriate methods and research design",
"id": "819705190847465544",
"url": "https://www.sciencedirect.com/science/article/pii/S2214629618307230",
"title": "Promoting novelty, rigor, and style in energy social science: towards codes of practice for appropriate methods and research design",
"authors": "BK Sovacool, J Axsen, S Sorrell",
"year": "2018",
"cited_by": 96,
"cited_by_url": "https://scholar.google.com/scholar?cites=819705190847465544&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "From spatial turn to mobilities turn",
"id": "14435385874347333570",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0011392117697463",
"title": "From spatial turn to mobilities turn",
"authors": "M Sheller",
"year": "2017",
"cited_by": 49,
"cited_by_url": "https://scholar.google.com/scholar?cites=14435385874347333570&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Synthesizing building physics with social psychology: An interdisciplinary framework for context and occupant behavior in office buildings",
"id": "2884383011648335567",
"url": "https://www.sciencedirect.com/science/article/pii/S2214629617302414",
"title": "Synthesizing building physics with social psychology: An interdisciplinary framework for context and occupant behavior in office buildings",
"authors": "S D'Oca, CF Chen, T Hong, Z Belafi",
"year": "2017",
"cited_by": 39,
"cited_by_url": "https://scholar.google.com/scholar?cites=2884383011648335567&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Beyond residential segregation: Introduction",
"id": "11752356435310496584",
"url": "https://www.sciencedirect.com/science/article/pii/S0264275116304541",
"title": "Beyond residential segregation: Introduction",
"authors": "B Wissink, T Schwanen, R van Kempen",
"year": "2016",
"cited_by": 27,
"cited_by_url": "https://scholar.google.com/scholar?cites=11752356435310496584&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Mobility intersections: social research, social futures",
"id": "4629658919028633065",
"url": "https://rsa.tandfonline.com/doi/abs/10.1080/17450101.2016.1211818",
"title": "Mobility intersections: social research, social futures",
"authors": "M B\u00fcscher, M Sheller, D Tyfield",
"year": "2016",
"cited_by": 25,
"cited_by_url": "https://scholar.google.com/scholar?cites=4629658919028633065&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Immotility as resilience? A key consideration for transport policy and research",
"id": "7257135201997900200",
"url": "https://rsa.tandfonline.com/doi/abs/10.1080/23800127.2017.1283121",
"title": "Immotility as resilience? A key consideration for transport policy and research",
"authors": "A Ferreira, L Bertolini, P N\u00e6ss",
"year": "2017",
"cited_by": 12,
"cited_by_url": "https://scholar.google.com/scholar?cites=7257135201997900200&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The Curse of the Smart Machine? Digitalisation and the children of the mainframe",
"id": "1866151734184840153",
"url": "http://eprints.lse.ac.uk/68996/",
"title": "The Curse of the Smart Machine? Digitalisation and the children of the mainframe",
"authors": "C S\u00f8rensen",
"year": "2016",
"cited_by": 16,
"cited_by_url": "https://scholar.google.com/scholar?cites=1866151734184840153&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Mega-events as economies of the imagination: Creating atmospheres for Rio 2016 and Tokyo 2020",
"id": "3396637070773515305",
"url": "https://www.taylorfrancis.com/books/9781315136158",
"title": "Mega-events as economies of the imagination: Creating atmospheres for Rio 2016 and Tokyo 2020",
"authors": "R Tzanelli",
"year": "2017",
"cited_by": 13,
"cited_by_url": "https://scholar.google.com/scholar?cites=3396637070773515305&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Moving with John Urry",
"id": "8441315047472374051",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0263276416661038",
"title": "Moving with John Urry",
"authors": "M Sheller",
"year": "2016",
"cited_by": 11,
"cited_by_url": "https://scholar.google.com/scholar?cites=8441315047472374051&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "An ecology for cities: A transformational nexus of design and ecology to advance climate change resilience and urban sustainability",
"id": "8316573036289645343",
"url": "https://www.mdpi.com/2071-1050/7/4/3774",
"title": "An ecology for cities: A transformational nexus of design and ecology to advance climate change resilience and urban sustainability",
"authors": "D Childers, M Cadenasso, J Grove, V Marshall\u2026",
"year": "2015",
"cited_by": 129,
"cited_by_url": "https://scholar.google.com/scholar?cites=8316573036289645343&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Advancing urban ecology toward a science of cities",
"id": "7386962530902442899",
"url": "https://academic.oup.com/bioscience/article-abstract/66/3/198/2470145",
"title": "Advancing urban ecology toward a science of cities",
"authors": "T McPhearson, STA Pickett, NB Grimm, J Niemel\u00e4\u2026",
"year": "2016",
"cited_by": 200,
"cited_by_url": "https://scholar.google.com/scholar?cites=7386962530902442899&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Evolution and future of urban ecological science: ecology in, of, and for the city",
"id": "1598154734846413770",
"url": "https://www.tandfonline.com/doi/abs/10.1002/ehs2.1229",
"title": "Evolution and future of urban ecological science: ecology in, of, and for the city",
"authors": "STA Pickett, ML Cadenasso, DL Childers\u2026",
"year": "2016",
"cited_by": 80,
"cited_by_url": "https://scholar.google.com/scholar?cites=1598154734846413770&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Varieties of experimentalism",
"id": "7411085359595249239",
"url": "https://www.sciencedirect.com/science/article/pii/S0921800916305924",
"title": "Varieties of experimentalism",
"authors": "CK Ansell, M Bartenberger",
"year": "2016",
"cited_by": 54,
"cited_by_url": "https://scholar.google.com/scholar?cites=7411085359595249239&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "A global perspective on the sustainable performance of urbanization",
"id": "1489136142003954331",
"url": "https://www.mdpi.com/2071-1050/8/8/783",
"title": "A global perspective on the sustainable performance of urbanization",
"authors": "L Shen, C Shuai, L Jiao, Y Tan, X Song",
"year": "2016",
"cited_by": 45,
"cited_by_url": "https://scholar.google.com/scholar?cites=1489136142003954331&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Cities, systems and sustainability: Status and perspectives of research on urban transformations",
"id": "8821496957140219531",
"url": "https://www.sciencedirect.com/science/article/pii/S1877343517300246",
"title": "Cities, systems and sustainability: Status and perspectives of research on urban transformations",
"authors": "M Wolfram, N Frantzeskaki, S Maschmeyer",
"year": "2016",
"cited_by": 37,
"cited_by_url": "https://scholar.google.com/scholar?cites=8821496957140219531&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The new global urban realm: complex, connected, diffuse, and diverse social-ecological systems",
"id": "15260530855672752342",
"url": "https://www.mdpi.com/2071-1050/7/5/5211",
"title": "The new global urban realm: complex, connected, diffuse, and diverse social-ecological systems",
"authors": "M McHale, S Pickett, O Barbosa, D Bunn\u2026",
"year": "2015",
"cited_by": 40,
"cited_by_url": "https://scholar.google.com/scholar?cites=15260530855672752342&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Linking urbanization and the environment: conceptual and empirical advances",
"id": "15158982081733475773",
"url": "https://www.annualreviews.org/doi/abs/10.1146/annurev-environ-102016-061128",
"title": "Linking urbanization and the environment: conceptual and empirical advances",
"authors": "X Bai, T McPhearson, H Cleugh\u2026",
"year": "2017",
"cited_by": 29,
"cited_by_url": "https://scholar.google.com/scholar?cites=15158982081733475773&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Sustainable urban systems: Co-design and framing for transformation",
"id": "16908035742689992922",
"url": "https://link.springer.com/article/10.1007/s13280-017-0934-6",
"title": "Sustainable urban systems: Co-design and framing for transformation",
"authors": "R Webb, X Bai, MS Smith, R Costanza, D Griggs\u2026",
"year": "2018",
"cited_by": 43,
"cited_by_url": "https://scholar.google.com/scholar?cites=16908035742689992922&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Classification of the heterogeneous structure of urban landscapes (STURLA) as an indicator of landscape function applied to surface temperature in New York City",
"id": "3584173653671478819",
"url": "https://www.sciencedirect.com/science/article/pii/S1470160X1500549X",
"title": "Classification of the heterogeneous structure of urban landscapes (STURLA) as an indicator of landscape function applied to surface temperature in New York City",
"authors": "ZA Hamstead, P Kremer, N Larondelle\u2026",
"year": "2016",
"cited_by": 26,
"cited_by_url": "https://scholar.google.com/scholar?cites=3584173653671478819&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Ecology for the shrinking city",
"id": "15189892494604231275",
"url": "https://academic.oup.com/bioscience/article-abstract/66/11/965/2754227",
"title": "Ecology for the shrinking city",
"authors": "DL Herrmann, K Schwarz, WD Shuster, A Berland\u2026",
"year": "2016",
"cited_by": 21,
"cited_by_url": "https://scholar.google.com/scholar?cites=15189892494604231275&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Ecosystem services as technology of globalization: On articulating values in urban nature",
"id": "8589878116959075850",
"url": "https://www.sciencedirect.com/science/article/pii/S0921800912003746",
"title": "Ecosystem services as technology of globalization: On articulating values in urban nature",
"authors": "H Ernstson, S S\u00f6rlin",
"year": "2013",
"cited_by": 115,
"cited_by_url": "https://scholar.google.com/scholar?cites=8589878116959075850&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The social production of ecosystem services: A framework for studying environmental justice and ecological complexity in urbanized landscapes",
"id": "10312335524915011117",
"url": "https://www.sciencedirect.com/science/article/pii/S0169204612002861",
"title": "The social production of ecosystem services: A framework for studying environmental justice and ecological complexity in urbanized landscapes",
"authors": "H Ernstson",
"year": "2013",
"cited_by": 287,
"cited_by_url": "https://scholar.google.com/scholar?cites=10312335524915011117&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Provincializing urban political ecology: Towards a situated UPE through African urbanism",
"id": "7421946588434464434",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/anti.12051",
"title": "Provincializing urban political ecology: Towards a situated UPE through African urbanism",
"authors": "M Lawhon, H Ernstson, J Silver",
"year": "2014",
"cited_by": 210,
"cited_by_url": "https://scholar.google.com/scholar?cites=7421946588434464434&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Ecosystem disservices research: a review of the state of the art with a focus on cities",
"id": "9577165168879513405",
"url": "https://www.sciencedirect.com/science/article/pii/S1470160X14006037",
"title": "Ecosystem disservices research: a review of the state of the art with a focus on cities",
"authors": "P von D\u00f6hren, D Haase",
"year": "2015",
"cited_by": 179,
"cited_by_url": "https://scholar.google.com/scholar?cites=9577165168879513405&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "The political ecology of ecosystem services",
"id": "6787995639754614611",
"url": "https://www.sciencedirect.com/science/article/pii/S0016718515000688",
"title": "The political ecology of ecosystem services",
"authors": "CA Kull, XA de Sartre, M Castro-Larra\u00f1aga",
"year": "2015",
"cited_by": 145,
"cited_by_url": "https://scholar.google.com/scholar?cites=6787995639754614611&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Urban green commons: Insights on urban common property systems",
"id": "342906859864592404",
"url": "https://www.sciencedirect.com/science/article/pii/S0959378013000800",
"title": "Urban green commons: Insights on urban common property systems",
"authors": "J Colding, S Barthel, P Bendt, R Snep\u2026",
"year": "2013",
"cited_by": 108,
"cited_by_url": "https://scholar.google.com/scholar?cites=342906859864592404&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Green infrastructure and planning policy: a critical assessment",
"id": "5506680937455728023",
"url": "https://www.tandfonline.com/doi/abs/10.1080/13549839.2014.880411",
"title": "Green infrastructure and planning policy: a critical assessment",
"authors": "M Lennon",
"year": "2015",
"cited_by": 96,
"cited_by_url": "https://scholar.google.com/scholar?cites=5506680937455728023&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Reconceptualizing ecosystem services: Possibilities for cultivating and valuing the ethics and practices of care",
"id": "659945433488853313",
"url": "https://journals.sagepub.com/doi/abs/10.1177/0309132514540016",
"title": "Reconceptualizing ecosystem services: Possibilities for cultivating and valuing the ethics and practices of care",
"authors": "S Jackson, LR Palmer",
"year": "2015",
"cited_by": 90,
"cited_by_url": "https://scholar.google.com/scholar?cites=659945433488853313&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Framing global biodiversity: IPBES between mother earth and ecosystem services",
"id": "3855897284158042042",
"url": "https://www.sciencedirect.com/science/article/pii/S1462901115001069",
"title": "Framing global biodiversity: IPBES between mother earth and ecosystem services",
"authors": "M Borie, M Hulme",
"year": "2015",
"cited_by": 85,
"cited_by_url": "https://scholar.google.com/scholar?cites=3855897284158042042&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "How can residents' experiences inform planning of urban green infrastructure? Case Finland",
"id": "16114540659955775241",
"url": "https://www.sciencedirect.com/science/article/pii/S0169204614001753",
"title": "How can residents' experiences inform planning of urban green infrastructure? Case Finland",
"authors": "M Faehnle, P B\u00e4cklund, L Tyrv\u00e4inen, J Niemel\u00e4\u2026",
"year": "2014",
"cited_by": 56,
"cited_by_url": "https://scholar.google.com/scholar?cites=16114540659955775241&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Water politics and spiritual ecology: Custom, environmental governance and development",
"id": "2885248974086731730",
"url": "https://www.taylorfrancis.com/books/9781315883250",
"title": "Water politics and spiritual ecology: Custom, environmental governance and development",
"authors": "L Palmer",
"year": "2015",
"cited_by": 40,
"cited_by_url": "https://scholar.google.com/scholar?cites=2885248974086731730&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Ecological resilience and resilient cities",
"id": "1847149663204953428",
"url": "https://www.tandfonline.com/doi/abs/10.1080/09613218.2014.850600",
"title": "Ecological resilience and resilient cities",
"authors": "STA Pickett, B McGrath, ML Cadenasso\u2026",
"year": "2014",
"cited_by": 96,
"cited_by_url": "https://scholar.google.com/scholar?cites=1847149663204953428&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Resilience and complexity: A bibliometric review and prospects for industrial ecology",
"id": "6026817285673473254",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/jiec.12252",
"title": "Resilience and complexity: A bibliometric review and prospects for industrial ecology",
"authors": "S Meerow, JP Newell",
"year": "2015",
"cited_by": 76,
"cited_by_url": "https://scholar.google.com/scholar?cites=6026817285673473254&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Embedding built environments in social\u2013ecological systems: resilience-based design principles",
"id": "5640231772883642735",
"url": "https://www.tandfonline.com/doi/abs/10.1080/09613218.2013.857455",
"title": "Embedding built environments in social\u2013ecological systems: resilience-based design principles",
"authors": "JM Anderies",
"year": "2014",
"cited_by": 71,
"cited_by_url": "https://scholar.google.com/scholar?cites=5640231772883642735&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "A new approach to urban water management: Safe and sure",
"id": "12305324071870122152",
"url": "https://www.sciencedirect.com/science/article/pii/S1877705814023133",
"title": "A new approach to urban water management: Safe and sure",
"authors": "D Butler, R Farmani, G Fu, S Ward, K Diao\u2026",
"year": "2014",
"cited_by": 69,
"cited_by_url": "https://scholar.google.com/scholar?cites=12305324071870122152&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Reliable, resilient and sustainable water management: the Safe & SuRe approach",
"id": "10879352329153742853",
"url": "https://onlinelibrary.wiley.com/doi/abs/10.1002/gch2.1010",
"title": "Reliable, resilient and sustainable water management: the Safe & SuRe approach",
"authors": "D Butler, S Ward, C Sweetapple\u2026",
"year": "2017",
"cited_by": 71,
"cited_by_url": "https://scholar.google.com/scholar?cites=10879352329153742853&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Sustainability on the urban scale: Proposal of a structure of indicators for the Spanish context",
"id": "1977683807630726902",
"url": "https://www.sciencedirect.com/science/article/pii/S0195925515000311",
"title": "Sustainability on the urban scale: Proposal of a structure of indicators for the Spanish context",
"authors": "M Braulio-Gonzalo, MD Bovea, MJ Ru\u00e1",
"year": "2015",
"cited_by": 65,
"cited_by_url": "https://scholar.google.com/scholar?cites=1977683807630726902&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Global resilience analysis of water distribution systems",
"id": "3253208137483386865",
"url": "https://www.sciencedirect.com/science/article/pii/S0043135416307473",
"title": "Global resilience analysis of water distribution systems",
"authors": "K Diao, C Sweetapple, R Farmani, G Fu, S Ward\u2026",
"year": "2016",
"cited_by": 60,
"cited_by_url": "https://scholar.google.com/scholar?cites=3253208137483386865&as_sdt=40000005&sciodt=1,22&hl=en"
},
{
"label": "Resilience as a framework for urbanism and recovery",
"id": "15811437489037777756",
"url": "https://www.tandfonline.com/doi/abs/10.1080/18626033.2011.9723453",
"title": "Resilience as a framework for urbanism and recovery",
"authors": "P Allan, M Bryant",
"year": "2011",
"cited_by": 102,
"cited_by_url": "https://scholar.google.com/scholar?cites=15811437489037777756&as_sdt=40000005&sciodt=1,22&hl=en"
},
{