-
Notifications
You must be signed in to change notification settings - Fork 0
/
o2.json
3605 lines (3605 loc) · 358 KB
/
o2.json
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
{"count": 348, "ids": [9], "pos": "vbz", "rank": 0.010450165312274811, "text": "is"}
{"count": 9, "ids": [213, 214], "pos": "np", "rank": 0.007529893034251158, "text": "tundra biome"}
{"count": 1, "ids": [123, 121], "pos": "np", "rank": 0.00728031147558284, "text": "composition change"}
{"count": 76, "ids": [101], "pos": "np", "rank": 0.007238784798103206, "text": "arctic"}
{"count": 6, "ids": [355, 356, 357, 358], "pos": "np", "rank": 0.0068031534027313025, "text": "normalized difference vegetation index"}
{"count": 4, "ids": [207, 208], "pos": "np", "rank": 0.006358293364048182, "text": "shrub abundance"}
{"count": 1, "ids": [139, 249], "pos": "np", "rank": 0.006237897296663299, "text": "increased height"}
{"count": 1, "ids": [77, 78, 79], "pos": "np", "rank": 0.005832870699488751, "text": "terrestrial plant diversity"}
{"count": 1, "ids": [86, 325, 155], "pos": "np", "rank": 0.005436657478218819, "text": "northern alaska has"}
{"count": 2, "ids": [212, 218], "pos": "np", "rank": 0.005432837552962311, "text": "warming climate"}
{"count": 1, "ids": [117, 100, 118], "pos": "np", "rank": 0.00470870525438568, "text": "major ecosystem types"}
{"count": 1, "ids": [240, 241, 242], "pos": "np", "rank": 0.0045118107054765225, "text": "plant-level air temperature"}
{"count": 1, "ids": [166, 167], "pos": "np", "rank": 0.004434977971962479, "text": "sandy soils"}
{"count": 10, "ids": [213, 100], "pos": "np", "rank": 0.003764946517125579, "text": "tundra ecosystems"}
{"count": 1, "ids": [78, 209, 210], "pos": "np", "rank": 0.003737966791827613, "text": "plant community responses"}
{"count": 2, "ids": [220, 121], "pos": "np", "rank": 0.00364015573779142, "text": "environmental changes"}
{"count": 6, "ids": [101, 382], "pos": "np", "rank": 0.003619392399051603, "text": "arctic amplification"}
{"count": 1, "ids": [245, 892, 4], "pos": "np", "rank": 0.0036189052747612155, "text": "rapid land use"}
{"count": 6, "ids": [207, 565], "pos": "np", "rank": 0.0035067957875196455, "text": "shrub growth"}
{"count": 5, "ids": [443, 101, 357, 444], "pos": "np", "rank": 0.0034015767013656512, "text": "circumpolar arctic vegetation map"}
{"count": 8, "ids": [251, 207], "pos": "np", "rank": 0.003179146682024091, "text": "deciduous shrubs"}
{"count": 10, "ids": [211, 212], "pos": "np", "rank": 0.003146213099344921, "text": "experimental warming"}
{"count": 9, "ids": [139], "pos": "np", "rank": 0.0031189486483316495, "text": "increase"}
{"count": 1, "ids": [77, 78, 79, 95], "pos": "np", "rank": 0.0029164353497443756, "text": "terrestrial plant diversity protection"}
{"count": 2, "ids": [250], "pos": "np", "rank": 0.0028748383866445807, "text": "cover"}
{"count": 11, "ids": [39], "pos": "np", "rank": 0.002770927609834021, "text": "study"}
{"count": 5, "ids": [545, 546], "pos": "np", "rank": 0.0027202026847775174, "text": "permafrost thaw"}
{"count": 86, "ids": [155], "pos": "vbp", "rank": 0.0027183287391094094, "text": "have"}
{"count": 1, "ids": [74, 75, 76], "pos": "np", "rank": 0.002718257493558225, "text": "nitrogen deposition effects"}
{"count": 21, "ids": [218], "pos": "np", "rank": 0.0027164187764811554, "text": "climate"}
{"count": 3, "ids": [213, 78], "pos": "np", "rank": 0.002509964344750386, "text": "tundra plants"}
{"count": 13, "ids": [121], "pos": "np", "rank": 0.0024267704918609465, "text": "changes"}
{"count": 5, "ids": [101, 183], "pos": "np", "rank": 0.002412928266034402, "text": "arctic regions"}
{"count": 2, "ids": [81, 276, 277], "pos": "np", "rank": 0.0023898202438158034, "text": "atmospheric carbon dioxide"}
{"count": 1, "ids": [125, 100, 118], "pos": "np", "rank": 0.00235435262719284, "text": "different ecosystem types"}
{"count": 1, "ids": [117, 357, 48], "pos": "np", "rank": 0.002267717800910434, "text": "major vegetation units"}
{"count": 1, "ids": [82, 75, 76], "pos": "np", "rank": 0.0022649610651377912, "text": "n deposition effects"}
{"count": 1, "ids": [389, 241, 242], "pos": "np", "rank": 0.0022559053527382612, "text": "surface air temperature"}
{"count": 1, "ids": [168, 169], "pos": "np", "rank": 0.0022501271505467545, "text": "montane areas"}
{"count": 2, "ids": [167, 74], "pos": "np", "rank": 0.0022174889859812395, "text": "soil nitrogen"}
{"count": 2, "ids": [78, 296], "pos": "np", "rank": 0.0021899480903741445, "text": "plant biomass"}
{"count": 1, "ids": [248, 93], "pos": "np", "rank": 0.0021864271207108783, "text": "warming experiments"}
{"count": 2, "ids": [317], "pos": "np", "rank": 0.0021766486365488915, "text": "model"}
{"count": 1, "ids": [213, 618], "pos": "np", "rank": 0.0021604305026998167, "text": "tundra sites"}
{"count": 6, "ids": [207, 250], "pos": "np", "rank": 0.0021194311213493943, "text": "shrub cover"}
{"count": 1, "ids": [207, 139], "pos": "np", "rank": 0.002079299098887766, "text": "shrub increase"}
{"count": 18, "ids": [55], "pos": "np", "rank": 0.0019901114506222163, "text": "results"}
{"count": 2, "ids": [78, 79], "pos": "np", "rank": 0.001944290233162917, "text": "plant diversity"}
{"count": 1, "ids": [0, 237, 213, 93], "pos": "np", "rank": 0.0018824732585627894, "text": "the international tundra experiment"}
{"count": 5, "ids": [210], "pos": "np", "rank": 0.0018689833959138066, "text": "responses"}
{"count": 1, "ids": [122, 123], "pos": "np", "rank": 0.0018491813065007496, "text": "species composition"}
{"count": 16, "ids": [218, 121], "pos": "np", "rank": 0.00182007786889571, "text": "climate changes"}
{"count": 1, "ids": [69, 218, 103], "pos": "np", "rank": 0.0018109458509874368, "text": "global climate system"}
{"count": 1, "ids": [0, 101, 415], "pos": "np", "rank": 0.0018096961995258014, "text": "the arctic ocean"}
{"count": 56, "ids": [4], "pos": "vbn", "rank": 0.0018094526373806077, "text": "used"}
{"count": 1, "ids": [357, 924, 4, 935], "pos": "np", "rank": 0.0018094526373806077, "text": "vegetation precipitation use efficiency"}
{"count": 1, "ids": [167, 74, 599, 207, 565], "pos": "np", "rank": 0.0017533978937598227, "text": "soil nitrogen favor shrub growth"}
{"count": 1, "ids": [756, 387], "pos": "np", "rank": 0.001726636863858241, "text": "biome-wide trends"}
{"count": 1, "ids": [488, 357], "pos": "np", "rank": 0.0017007883506828256, "text": "zonal vegetation"}
{"count": 1, "ids": [73, 68], "pos": "np", "rank": 0.0016085214606064164, "text": "assessment show"}
{"count": 21, "ids": [601], "pos": "np", "rank": 0.00160653744953907, "text": "summer"}
{"count": 5, "ids": [606], "pos": "np", "rank": 0.00159845787727121, "text": "time"}
{"count": 12, "ids": [207, 324], "pos": "np", "rank": 0.0015895733410120456, "text": "shrub expansion"}
{"count": 1, "ids": [154, 100], "pos": "np", "rank": 0.0015695684181285601, "text": "mediterranean ecosystems"}
{"count": 1, "ids": [553, 139], "pos": "np", "rank": 0.0015594743241658248, "text": "alarge-scale increase"}
{"count": 2, "ids": [101, 477], "pos": "np", "rank": 0.0015397952392251849, "text": "arctic landscape"}
{"count": 1, "ids": [35, 36], "pos": "np", "rank": 0.0015191563432376692, "text": "empirical conditions"}
{"count": 1, "ids": [237, 213, 93], "pos": "np", "rank": 0.0015059786068502316, "text": "international tundra experiment"}
{"count": 1, "ids": [530, 241, 242], "pos": "np", "rank": 0.0015039369018255075, "text": "high-latitude air temperatures"}
{"count": 6, "ids": [86, 325], "pos": "np", "rank": 0.0014997628486063774, "text": "northern alaska"}
{"count": 3, "ids": [167], "pos": "np", "rank": 0.0014783259906541596, "text": "soil"}
{"count": 1, "ids": [616, 262, 121], "pos": "np", "rank": 0.0014560622951165678, "text": "longer term change"}
{"count": 1, "ids": [101, 415], "pos": "np", "rank": 0.0014477569596206411, "text": "arctic ocean"}
{"count": 1, "ids": [399, 381], "pos": "np", "rank": 0.001442726037762893, "text": "key impacts"}
{"count": 1, "ids": [201, 39], "pos": "np", "rank": 0.0013854638049170104, "text": "targeted studies"}
{"count": 1, "ids": [86, 87], "pos": "np", "rank": 0.0013851810204128904, "text": "northern parts"}
{"count": 1, "ids": [156, 357, 444], "pos": "np", "rank": 0.0013606306805462604, "text": "first vegetation map"}
{"count": 1, "ids": [587, 545], "pos": "np", "rank": 0.0013601013423887587, "text": "impermeable permafrost"}
{"count": 2, "ids": [75, 76], "pos": "np", "rank": 0.0013591287467791125, "text": "deposition effects"}
{"count": 1, "ids": [556, 218], "pos": "np", "rank": 0.0013582093882405777, "text": "regional climate"}
{"count": 1, "ids": [102, 103], "pos": "np", "rank": 0.0013342132733742765, "text": "boreal systems"}
{"count": 1, "ids": [180, 181, 182], "pos": "np", "rank": 0.0012999229167677665, "text": "high conservation importance"}
{"count": 1, "ids": [836, 837, 351], "pos": "np", "rank": 0.0012990056724105693, "text": "m diameter plots"}
{"count": 1, "ids": [361, 207], "pos": "np", "rank": 0.0012716586728096365, "text": "smaller shrubs"}
{"count": 4, "ids": [318], "pos": "np", "rank": 0.0012702190879508217, "text": "data"}
{"count": 2, "ids": [429, 574, 267], "pos": "np", "rank": 0.0012578045536560348, "text": "winter biological processes"}
{"count": 1, "ids": [213, 183], "pos": "np", "rank": 0.001254982172375193, "text": "tundra regions"}
{"count": 1, "ids": [112, 69, 77, 282, 283], "pos": "np", "rank": 0.0012483059544752381, "text": "future global terrestrial c sequestration"}
{"count": 2, "ids": [802, 139], "pos": "np", "rank": 0.0012475794593326598, "text": "significant increase"}
{"count": 3, "ids": [100, 210], "pos": "np", "rank": 0.0012459889306092045, "text": "ecosystem responses"}
{"count": 1, "ids": [537, 313, 451], "pos": "np", "rank": 0.0012443570562273559, "text": "4)address potential lines"}
{"count": 1, "ids": [427, 725], "pos": "np", "rank": 0.0012350900623982434, "text": "strong relationship"}
{"count": 3, "ids": [401], "pos": "np", "rank": 0.0012220613892528465, "text": "records"}
{"count": 1, "ids": [203, 204, 169], "pos": "np", "rank": 0.0012160999148436004, "text": "low background areas"}
{"count": 4, "ids": [341, 794], "pos": "np", "rank": 0.0012144935061276264, "text": "west siberia"}
{"count": 2, "ids": [69, 121], "pos": "np", "rank": 0.0012133852459304732, "text": "global change"}
{"count": 1, "ids": [81, 114, 115], "pos": "np", "rank": 0.0012116314171546128, "text": "atmospheric n-deposition rates"}
{"count": 1, "ids": [0, 443, 101], "pos": "np", "rank": 0.001206464133017201, "text": "the circumpolar arctic"}
{"count": 1, "ids": [377, 4], "pos": "np", "rank": 0.0012063017582537386, "text": "human use"}
{"count": 2, "ids": [2, 60], "pos": "np", "rank": 0.0012029239647837905, "text": "spatial patterns"}
{"count": 3, "ids": [92, 93], "pos": "np", "rank": 0.0011949322968468085, "text": "field experiments"}
{"count": 31, "ids": [276], "pos": "nn", "rank": 0.0011949101219079017, "text": "carbon"}
{"count": 1, "ids": [77, 276], "pos": "np", "rank": 0.0011949101219079017, "text": "terrestrial carbon"}
{"count": 6, "ids": [100], "pos": "np", "rank": 0.00117717631359642, "text": "ecosystems"}
{"count": 6, "ids": [91], "pos": "np", "rank": 0.0011750915543367504, "text": "evidence"}
{"count": 1, "ids": [450, 451], "pos": "np", "rank": 0.0011693919493087218, "text": "tree line"}
{"count": 2, "ids": [565, 305], "pos": "np", "rank": 0.0011689319291732152, "text": "growth form"}
{"count": 1, "ids": [81, 74], "pos": "np", "rank": 0.0011491036883928359, "text": "atmospheric nitrogen"}
{"count": 6, "ids": [213, 357], "pos": "np", "rank": 0.001133858900455217, "text": "tundra vegetation"}
{"count": 2, "ids": [81, 82, 75], "pos": "np", "rank": 0.0011324805325688956, "text": "atmospheric n deposition"}
{"count": 1, "ids": [341, 665, 666], "pos": "np", "rank": 0.0011322755774274358, "text": "west atlantic populations"}
{"count": 2, "ids": [45, 46], "pos": "np", "rank": 0.0011292296308664013, "text": "north carolina"}
{"count": 10, "ids": [242], "pos": "np", "rank": 0.0011279526763691306, "text": "temperature"}
{"count": 40, "ids": [169], "pos": "nns", "rank": 0.0011250635752733773, "text": "areas"}
{"count": 1, "ids": [0, 494], "pos": "np", "rank": 0.0011147202813603905, "text": "13% mountain"}
{"count": 1, "ids": [167, 297, 298], "pos": "np", "rank": 0.0011087444929906197, "text": "soil organic matter"}
{"count": 1, "ids": [215, 216], "pos": "np", "rank": 0.0011045732339085399, "text": "recent observations"}
{"count": 42, "ids": [296], "pos": "nn", "rank": 0.0010949740451870723, "text": "biomass"}
{"count": 1, "ids": [595, 296, 311], "pos": "np", "rank": 0.0010949740451870723, "text": "greater biomass production"}
{"count": 1, "ids": [436, 434], "pos": "np", "rank": 0.0010943660669061623, "text": "cool periods"}
{"count": 1, "ids": [248], "pos": "np", "rank": 0.0010932135603554391, "text": "warming"}
{"count": 1, "ids": [776, 387], "pos": "np", "rank": 0.001091986005609063, "text": "greening trend"}
{"count": 2, "ids": [160, 183], "pos": "np", "rank": 0.0010904820815928308, "text": "vulnerable regions"}
{"count": 3, "ids": [218, 317], "pos": "np", "rank": 0.0010883243182744457, "text": "climate models"}
{"count": 1, "ids": [623, 39, 618], "pos": "np", "rank": 0.0010802152513499084, "text": "coldest study sites"}
{"count": 2, "ids": [147], "pos": "np", "rank": 0.0010782551243443414, "text": "disturbances"}
{"count": 1, "ids": [265, 213, 183], "pos": "np", "rank": 0.0010756990048930227, "text": "many tundra regions"}
{"count": 2, "ids": [411, 412, 328], "pos": "np", "rank": 0.0010696495378510345, "text": "sea ice extent"}
{"count": 1, "ids": [69, 11], "pos": "np", "rank": 0.0010651303943091089, "text": "global statistics"}
{"count": 2, "ids": [424, 250], "pos": "np", "rank": 0.001059070766695052, "text": "snow cover"}
{"count": 1, "ids": [127, 128], "pos": "np", "rank": 0.0010519731379058938, "text": "competitive interactions"}
{"count": 1, "ids": [0, 246, 247], "pos": "np", "rank": 0.0010489694693710764, "text": "the growing season"}
{"count": 1, "ids": [235, 212, 93], "pos": "np", "rank": 0.0010487376997816403, "text": "standardized warming experiments"}
{"count": 2, "ids": [730, 121], "pos": "np", "rank": 0.0010400444965118344, "text": "climatic changes"}
{"count": 1, "ids": [215, 139], "pos": "np", "rank": 0.001039649549443883, "text": "recent increases"}
{"count": 1, "ids": [96, 97], "pos": "np", "rank": 0.0010329165966114213, "text": "latitudinal range"}
{"count": 1, "ids": [548, 549], "pos": "np", "rank": 0.0010013217087032767, "text": "anthropogenic activities"}
{"count": 1, "ids": [141, 142], "pos": "np", "rank": 0.0009970473825290645, "text": "ammonia availability"}
{"count": 1, "ids": [314, 211, 55], "pos": "np", "rank": 0.0009950557253111082, "text": "diverse experimental results"}
{"count": 1, "ids": [1737, 1738], "pos": "np", "rank": 0.000990626321348824, "text": "herbivore defecation"}
{"count": 1, "ids": [78, 209, 233], "pos": "np", "rank": 0.0009721451165814585, "text": "plant community measurements"}
{"count": 1, "ids": [357, 536], "pos": "np", "rank": 0.0009718790575330431, "text": "vegetation feedbacks"}
{"count": 1, "ids": [125, 1082, 724], "pos": "np", "rank": 0.0009670186615843397, "text": "different periglacial environments"}
{"count": 1, "ids": [138, 536], "pos": "np", "rank": 0.000965402872369916, "text": "negative feedbacks"}
{"count": 1, "ids": [418, 250], "pos": "np", "rank": 0.0009582794622148602, "text": "cloud cover"}
{"count": 4, "ids": [345, 346], "pos": "np", "rank": 0.0009527600637867913, "text": "dwarf birch"}
{"count": 1, "ids": [177, 100], "pos": "np", "rank": 0.000941741050877136, "text": "sensitive ecosystems"}
{"count": 2, "ids": [213, 169], "pos": "np", "rank": 0.0009412366292813947, "text": "tundra areas"}
{"count": 1, "ids": [563, 210], "pos": "np", "rank": 0.0009344916979569033, "text": "trait-specific responses"}
{"count": 3, "ids": [0, 205, 206, 0, 89], "pos": "np", "rank": 0.0009344151753257197, "text": "the ecological society of america"}
{"count": 2, "ids": [257], "pos": "np", "rank": 0.0009326063892345319, "text": "causes"}
{"count": 1, "ids": [122, 79], "pos": "np", "rank": 0.0009245906532503748, "text": "species diversity"}
{"count": 1, "ids": [22, 211, 39], "pos": "np", "rank": 0.0009236425366113403, "text": "several experimental studies"}
{"count": 26, "ids": [38], "pos": "vbg", "rank": 0.0009213236228566948, "text": "including"}
{"count": 1, "ids": [213, 357, 121], "pos": "np", "rank": 0.000910038934447855, "text": "tundra vegetation change"}
{"count": 2, "ids": [601, 545, 546], "pos": "np", "rank": 0.0009067342282591725, "text": "summer permafrost thaw"}
{"count": 1, "ids": [131, 76], "pos": "np", "rank": 0.000906085831186075, "text": "other effects"}
{"count": 1, "ids": [898, 748], "pos": "np", "rank": 0.0009060197859505759, "text": "crucial link"}
{"count": 1, "ids": [101, 213, 183], "pos": "np", "rank": 0.0009048480997629007, "text": "arctic tundra region"}
{"count": 1, "ids": [74, 4, 935], "pos": "np", "rank": 0.0009047263186903039, "text": "nitrogen use efficiency"}
{"count": 6, "ids": [1], "pos": "np", "rank": 0.0009038848771101706, "text": "analyses"}
{"count": 2, "ids": [242, 564], "pos": "np", "rank": 0.0009023621410953045, "text": "temperature sensitivity"}
{"count": 1, "ids": [453, 454], "pos": "np", "rank": 0.0008986208805403628, "text": "photo-interpretive approach"}
{"count": 2, "ids": [559, 722], "pos": "np", "rank": 0.0008982697130332569, "text": "nutrient cycling"}
{"count": 1, "ids": [781, 1797], "pos": "np", "rank": 0.0008979526138063334, "text": "salix spp"}
{"count": 1, "ids": [792, 132, 565, 139], "pos": "np", "rank": 0.0008958242091749125, "text": "long such growth increases"}
{"count": 1, "ids": [112, 242, 139], "pos": "np", "rank": 0.0008911281852376141, "text": "future temperature increases"}
{"count": 1, "ids": [167, 584], "pos": "np", "rank": 0.0008869955943924958, "text": "soil layer"}
{"count": 1, "ids": [323, 209], "pos": "np", "rank": 0.0008860032905744762, "text": "research community"}
{"count": 1, "ids": [525, 357, 716], "pos": "np", "rank": 0.0008834605007330672, "text": "dynamic vegetation component"}
{"count": 1, "ids": [565, 115], "pos": "np", "rank": 0.0008766989468799114, "text": "growth rate"}
{"count": 4, "ids": [387], "pos": "np", "rank": 0.0008633184319291205, "text": "trends"}
{"count": 1, "ids": [595, 596, 549], "pos": "np", "rank": 0.0008542896847466818, "text": "greater microbial activity"}
{"count": 1, "ids": [226, 461], "pos": "np", "rank": 0.0008526288219113804, "text": "base image"}
{"count": 1, "ids": [572, 357, 536], "pos": "np", "rank": 0.0008503941753414128, "text": "positive vegetation feedbacks"}
{"count": 3, "ids": [108], "pos": "np", "rank": 0.0008413719798347457, "text": "mechanisms"}
{"count": 1, "ids": [192, 87], "pos": "np", "rank": 0.0008370083428215045, "text": "important part"}
{"count": 1, "ids": [124, 78, 209], "pos": "np", "rank": 0.0008332672427841072, "text": "whole plant communities"}
{"count": 3, "ids": [602, 169], "pos": "np", "rank": 0.0008316429598270712, "text": "large areas"}
{"count": 1, "ids": [180, 1104, 1111], "pos": "np", "rank": 0.0008304386112831302, "text": "high \u03b413c values"}
{"count": 11, "ids": [991], "pos": "np", "rank": 0.0008268934561951943, "text": "ndvi"}
{"count": 8, "ids": [45, 89], "pos": "np", "rank": 0.0008224007229638374, "text": "north america"}
{"count": 1, "ids": [104, 105], "pos": "np", "rank": 0.0008203410531713751, "text": "tropical forests"}
{"count": 16, "ids": [658], "pos": "np", "rank": 0.0008093043089824622, "text": "beringia"}
{"count": 1, "ids": [821, 357, 121], "pos": "np", "rank": 0.0008089234972869821, "text": "extensive vegetation changes"}
{"count": 1, "ids": [0, 203, 101], "pos": "np", "rank": 0.0008043094220114673, "text": "the low arctic"}
{"count": 34, "ids": [68], "pos": "vbd", "rank": 0.0008042607303032082, "text": "showed"}
{"count": 1, "ids": [1687, 1688, 68, 631], "pos": "np", "rank": 0.0008042607303032082, "text": "time-period block show variations"}
{"count": 1, "ids": [621, 601, 242], "pos": "np", "rank": 0.000803268724769535, "text": "ambient summer temperature"}
{"count": 1, "ids": [546, 831], "pos": "np", "rank": 0.0008032533058614482, "text": "thaw depth"}
{"count": 7, "ids": [429], "pos": "np", "rank": 0.0008017956942661347, "text": "winter"}
{"count": 1, "ids": [156, 113], "pos": "np", "rank": 0.0008017584850511763, "text": "first estimate"}
{"count": 1, "ids": [945, 606, 946], "pos": "np", "rank": 0.000799228938635605, "text": "multi-decadal time series"}
{"count": 2, "ids": [81, 276, 277, 301], "pos": "np", "rank": 0.0007966067479386012, "text": "atmospheric carbon dioxide concentrations"}
{"count": 1, "ids": [381, 413, 414], "pos": "np", "rank": 0.0007936345498243992, "text": "impact heat fluxes"}
{"count": 2, "ids": [0, 331, 0, 332], "pos": "np", "rank": 0.0007870640448933661, "text": "the past 30 years"}
{"count": 2, "ids": [324], "pos": "np", "rank": 0.0007868369243317831, "text": "expansion"}
{"count": 1, "ids": [238, 212, 239], "pos": "np", "rank": 0.0007865532748362302, "text": "passive warming treatment"}
{"count": 1, "ids": [177, 100, 118], "pos": "np", "rank": 0.0007847842090642801, "text": "sensitive ecosystem types"}
{"count": 17, "ids": [826], "pos": "np", "rank": 0.0007805874096605028, "text": "betula"}
{"count": 1, "ids": [387, 139], "pos": "np", "rank": 0.0007797371620829124, "text": "trend increase"}
{"count": 1, "ids": [211, 218], "pos": "np", "rank": 0.0007761196504231872, "text": "experimental climate"}
{"count": 1, "ids": [477, 842], "pos": "np", "rank": 0.0007698976196125924, "text": "landscape average"}
{"count": 1, "ids": [74, 135], "pos": "np", "rank": 0.0007660691255952239, "text": "nitrogen gases"}
{"count": 1, "ids": [221, 39], "pos": "np", "rank": 0.0007660408666870662, "text": "most studies"}
{"count": 8, "ids": [820], "pos": "np", "rank": 0.00076586176533196, "text": "siberian"}
{"count": 30, "ids": [118], "pos": "nns", "rank": 0.0007616469250529721, "text": "types"}
{"count": 4, "ids": [36], "pos": "np", "rank": 0.0007595781716188346, "text": "conditions"}
{"count": 1, "ids": [97, 222], "pos": "np", "rank": 0.0007582181710325025, "text": "range limits"}
{"count": 6, "ids": [101, 357], "pos": "np", "rank": 0.0007559059336368114, "text": "arctic vegetation"}
{"count": 3, "ids": [273, 82, 274], "pos": "np", "rank": 0.000754987021712597, "text": "progressive n limitation"}
{"count": 1, "ids": [493, 252, 213], "pos": "np", "rank": 0.0007529893034251158, "text": "peaty graminoid tundras"}
{"count": 1, "ids": [531, 213, 100], "pos": "np", "rank": 0.000752603078116801, "text": "alpine tundra ecosystems"}
{"count": 1, "ids": [241, 242], "pos": "np", "rank": 0.0007519684509127537, "text": "air temperatures"}
{"count": 19, "ids": [325], "pos": "np", "rank": 0.0007498814243031887, "text": "alaska"}
{"count": 2, "ids": [709, 210], "pos": "np", "rank": 0.0007475933583655227, "text": "transient response"}
{"count": 1, "ids": [409, 410], "pos": "np", "rank": 0.0007441565931611301, "text": "temporal scales"}
{"count": 1, "ids": [594, 429, 167, 242], "pos": "np", "rank": 0.0007391629953270798, "text": "higher winter soil temperatures"}
{"count": 1, "ids": [858, 859], "pos": "np", "rank": 0.0007374967456369035, "text": "hydrocarbon development"}
{"count": 2, "ids": [147, 544], "pos": "np", "rank": 0.0007368435353650534, "text": "disturbance regime"}
{"count": 2, "ids": [153], "pos": "np", "rank": 0.0007362904057795097, "text": "role"}
{"count": 1, "ids": [820, 343], "pos": "np", "rank": 0.0007351013596003333, "text": "siberian alder"}
{"count": 3, "ids": [572, 536], "pos": "np", "rank": 0.0007302841089535979, "text": "positive feedback"}
{"count": 1, "ids": [357, 296], "pos": "np", "rank": 0.0007299826967913815, "text": "vegetation biomass"}
{"count": 1, "ids": [205, 121], "pos": "np", "rank": 0.0007280311475582839, "text": "ecological changes"}
{"count": 1, "ids": [826, 827, 250], "pos": "np", "rank": 0.0007273787272923108, "text": "betula nana cover"}
{"count": 1, "ids": [556, 317], "pos": "np", "rank": 0.0007255495455162971, "text": "regional models"}
{"count": 3, "ids": [180, 101], "pos": "np", "rank": 0.0007238784798103206, "text": "high arctic"}
{"count": 1, "ids": [2101, 4], "pos": "np", "rank": 0.0007237810549522432, "text": "unrestricted use"}
{"count": 1, "ids": [828, 213, 618], "pos": "np", "rank": 0.0007201435008999388, "text": "moist tundra site"}
{"count": 1, "ids": [478, 250], "pos": "np", "rank": 0.0007187095966611452, "text": "lake cover"}
{"count": 1, "ids": [137, 138, 76], "pos": "np", "rank": 0.0007166295451415789, "text": "long-term negative effects"}
{"count": 1, "ids": [889, 452], "pos": "np", "rank": 0.0007130225690363644, "text": "quantitative methods"}
{"count": 2, "ids": [450, 1669], "pos": "np", "rank": 0.0007094029101202733, "text": "tree volume"}
{"count": 11, "ids": [207], "pos": "np", "rank": 0.000706477040449798, "text": "shrubs"}
{"count": 1, "ids": [0, 194, 195], "pos": "np", "rank": 0.0007043434047762532, "text": "the coming decades"}
{"count": 1, "ids": [359, 239], "pos": "np", "rank": 0.0007042942001087017, "text": "consistent treatment"}
{"count": 1, "ids": [1116, 1117], "pos": "np", "rank": 0.0007021338478718404, "text": "bulk densities"}
{"count": 1, "ids": [221, 759, 565, 305], "pos": "np", "rank": 0.000701359157503929, "text": "most vascular growth forms"}
{"count": 4, "ids": [2, 3], "pos": "np", "rank": 0.0006983294211977429, "text": "spatial association"}
{"count": 2, "ids": [545, 1070], "pos": "np", "rank": 0.0006978985191167927, "text": "permafrost deposits"}
{"count": 1, "ids": [1591, 229], "pos": "np", "rank": 0.0006968874061968175, "text": "phosphorus additions"}
{"count": 1, "ids": [492], "pos": "np", "rank": 0.0006938784749492869, "text": "shrublands"}
{"count": 23, "ids": [263], "pos": "vbz", "rank": 0.0006933036335482597, "text": "provides"}
{"count": 5, "ids": [86], "pos": "nnp", "rank": 0.0006925905102064452, "text": "northern"}
{"count": 1, "ids": [643, 386], "pos": "np", "rank": 0.0006911476713090047, "text": "initial understanding"}
{"count": 13, "ids": [362], "pos": "np", "rank": 0.0006888337204807502, "text": "canada"}
{"count": 7, "ids": [680], "pos": "np", "rank": 0.0006875465846451947, "text": "holocene"}
{"count": 1, "ids": [427, 212], "pos": "np", "rank": 0.000685784106478987, "text": "strong warming"}
{"count": 1, "ids": [497, 252, 213], "pos": "np", "rank": 0.000684535730386469, "text": "mineral graminoid tundras"}
{"count": 1, "ids": [762, 763], "pos": "np", "rank": 0.0006813386183207005, "text": "bare ground"}
{"count": 2, "ids": [357, 210], "pos": "np", "rank": 0.0006803153402731302, "text": "vegetation responses"}
{"count": 1, "ids": [830, 545], "pos": "np", "rank": 0.0006800506711943793, "text": "continuous permafrost"}
{"count": 2, "ids": [218, 212], "pos": "np", "rank": 0.0006791046941202888, "text": "climate warming"}
{"count": 1, "ids": [125, 233], "pos": "np", "rank": 0.000676922725811085, "text": "different measurements"}
{"count": 1, "ids": [427, 556, 631], "pos": "np", "rank": 0.000676288142436802, "text": "strong regional variation"}
{"count": 3, "ids": [208], "pos": "np", "rank": 0.0006752622397988705, "text": "abundance"}
{"count": 1, "ids": [22, 100], "pos": "np", "rank": 0.0006726721791979544, "text": "several ecosystems"}
{"count": 1, "ids": [920, 74, 303], "pos": "np", "rank": 0.0006726326490979854, "text": "likely nitrogen perturbations"}
{"count": 1, "ids": [159, 103], "pos": "np", "rank": 0.0006671066366871382, "text": "subtropical systems"}
{"count": 1, "ids": [360, 55], "pos": "np", "rank": 0.0006633704835407387, "text": "photographic results"}
{"count": 1, "ids": [915, 121], "pos": "np", "rank": 0.0006618464977802581, "text": "co2 changes"}
{"count": 3, "ids": [203, 101], "pos": "np", "rank": 0.0006580713452821096, "text": "low arctic"}
{"count": 1, "ids": [354, 1447], "pos": "np", "rank": 0.0006576032293460613, "text": "same altitude"}
{"count": 4, "ids": [167, 622], "pos": "np", "rank": 0.0006574634760623051, "text": "soil moisture"}
{"count": 2, "ids": [1375, 122], "pos": "np", "rank": 0.0006537165815068356, "text": "woody species"}
{"count": 2, "ids": [180], "pos": "nnp", "rank": 0.0006499614583838833, "text": "high"}
{"count": 1, "ids": [456, 457, 180], "pos": "np", "rank": 0.0006499614583838833, "text": "advanced very high"}
{"count": 4, "ids": [567, 351], "pos": "np", "rank": 0.0006495028362052846, "text": "control plots"}
{"count": 1, "ids": [65, 78, 209], "pos": "np", "rank": 0.000648096744387639, "text": "local plant communities"}
{"count": 1, "ids": [429, 738], "pos": "np", "rank": 0.0006453493841562766, "text": "winter albedo"}
{"count": 1, "ids": [548, 1410], "pos": "np", "rank": 0.0006432421031960445, "text": "anthropogenic sources"}
{"count": 1, "ids": [502, 1693, 58], "pos": "np", "rank": 0.0006407580834512085, "text": "abundant arthropod orders"}
{"count": 6, "ids": [761, 207], "pos": "np", "rank": 0.0006358293364048183, "text": "tall shrubs"}
{"count": 1, "ids": [421, 422, 414], "pos": "np", "rank": 0.0006352173328534671, "text": "longwave radiation flux"}
{"count": 1, "ids": [943, 318], "pos": "np", "rank": 0.0006351095439754109, "text": "dendroecological data"}
{"count": 5, "ids": [88], "pos": "np", "rank": 0.0006306956080076703, "text": "europe"}
{"count": 2, "ids": [1299, 1295], "pos": "np", "rank": 0.0006299983020982402, "text": "young ramets"}
{"count": 1, "ids": [429, 267], "pos": "np", "rank": 0.0006289022768280174, "text": "winter processes"}
{"count": 1, "ids": [503, 504, 213], "pos": "np", "rank": 0.0006274910861875965, "text": "prostrate dwarf-shrub tundra"}
{"count": 1, "ids": [1075, 1076, 1077], "pos": "np", "rank": 0.0006250529289234713, "text": "river bank exposures"}
{"count": 2, "ids": [112], "pos": "nn", "rank": 0.0006241529772376191, "text": "future"}
{"count": 2, "ids": [112, 323], "pos": "np", "rank": 0.0006241529772376191, "text": "future research"}
{"count": 1, "ids": [842, 139], "pos": "np", "rank": 0.0006237897296663299, "text": "average increase"}
{"count": 6, "ids": [313], "pos": "nn", "rank": 0.0006221785281136779, "text": "potential"}
{"count": 1, "ids": [313, 896], "pos": "np", "rank": 0.0006221785281136779, "text": "potential traps"}
{"count": 1, "ids": [795, 725], "pos": "np", "rank": 0.0006175450311991217, "text": "clear relationship"}
{"count": 1, "ids": [668, 122], "pos": "np", "rank": 0.0006163937688335832, "text": "amphi-atlantic species"}
{"count": 16, "ids": [546], "pos": "vbn", "rank": 0.0006128658238278008, "text": "thawed"}
{"count": 1, "ids": [779, 565, 401], "pos": "np", "rank": 0.0006110306946264233, "text": "annual growth records"}
{"count": 2, "ids": [203], "pos": "nnp", "rank": 0.0006080499574218002, "text": "low"}
{"count": 1, "ids": [48, 82, 973], "pos": "np", "rank": 0.0006077852188919113, "text": "unit n uptake"}
{"count": 16, "ids": [794], "pos": "np", "rank": 0.0006072467530638132, "text": "siberia"}
{"count": 1, "ids": [924, 121], "pos": "np", "rank": 0.0006066926229652366, "text": "precipitation change"}
{"count": 17, "ids": [115], "pos": "nns", "rank": 0.0006058157085773064, "text": "rates"}
{"count": 2, "ids": [112, 115], "pos": "np", "rank": 0.0006058157085773064, "text": "future rates"}
{"count": 1, "ids": [548, 906], "pos": "np", "rank": 0.0006044284122579068, "text": "anthropogenic habitats"}
{"count": 2, "ids": [653, 91], "pos": "np", "rank": 0.0006041340540872345, "text": "fossil evidence"}
{"count": 5, "ids": [78, 707, 118], "pos": "np", "rank": 0.0006041217943509014, "text": "plant functional types"}
{"count": 1, "ids": [663, 218, 212], "pos": "np", "rank": 0.0006036486169958123, "text": "contemporary climate warming"}
{"count": 4, "ids": [443, 101], "pos": "np", "rank": 0.0006032320665086005, "text": "circumpolar arctic"}
{"count": 2, "ids": [540], "pos": "np", "rank": 0.0006024485129724908, "text": "productivity"}
{"count": 1, "ids": [715, 357, 60], "pos": "np", "rank": 0.0006014619823918952, "text": "principal vegetation patterns"}
{"count": 2, "ids": [86, 180, 957], "pos": "np", "rank": 0.0006012533772790581, "text": "northern high latitudes"}
{"count": 1, "ids": [781, 782, 783], "pos": "np", "rank": 0.0005992549517464233, "text": "salix lanata l."}
{"count": 1, "ids": [1373, 357, 754], "pos": "np", "rank": 0.0005981691555000231, "text": "earlier vegetation surveys"}
{"count": 1, "ids": [276, 442], "pos": "np", "rank": 0.0005974550609539509, "text": "carbon cycle"}
{"count": 23, "ids": [56], "pos": "vbz", "rank": 0.0005965499754421152, "text": "indicates"}
{"count": 1, "ids": [297, 305], "pos": "np", "rank": 0.000596193238545842, "text": "organic forms"}
{"count": 2, "ids": [187, 88], "pos": "np", "rank": 0.0005941360518762403, "text": "eastern europe"}
{"count": 1, "ids": [101, 1016, 258], "pos": "np", "rank": 0.0005895550187465129, "text": "arctic sea-ice decline"}
{"count": 1, "ids": [264, 211, 91], "pos": "np", "rank": 0.0005875457771683752, "text": "rigorous experimental evidence"}
{"count": 1, "ids": [450, 324], "pos": "np", "rank": 0.0005846959746543609, "text": "tree expansion"}
{"count": 1, "ids": [779, 780, 565], "pos": "np", "rank": 0.0005844659645866076, "text": "annual ring growth"}
{"count": 10, "ids": [1724], "pos": "np", "rank": 0.0005835990514307646, "text": "empetrum"}
{"count": 1, "ids": [78, 619], "pos": "np", "rank": 0.0005832870699488751, "text": "plant groups"}
{"count": 1, "ids": [78, 757], "pos": "np", "rank": 0.0005830035558706236, "text": "plant canopy"}
{"count": 15, "ids": [243], "pos": "vbz", "rank": 0.0005801664233080663, "text": "predicts"}
{"count": 1, "ids": [506, 213], "pos": "np", "rank": 0.0005792225410962429, "text": "low-shrub tundra"}
{"count": 1, "ids": [213, 207, 344], "pos": "np", "rank": 0.0005780266694589257, "text": "tundra shrub willows"}
{"count": 1, "ids": [565, 387], "pos": "np", "rank": 0.0005755456212860803, "text": "growth trend"}
{"count": 5, "ids": [101, 638], "pos": "np", "rank": 0.0005752520620892457, "text": "arctic flora"}
{"count": 1, "ids": [273, 74, 274], "pos": "np", "rank": 0.0005745518441964179, "text": "progressive nitrogen limitation"}
{"count": 3, "ids": [76, 625], "pos": "np", "rank": 0.0005728625133099483, "text": "effect sizes"}
{"count": 1, "ids": [309, 310, 311], "pos": "np", "rank": 0.0005721227450659649, "text": "net primary production"}
{"count": 1, "ids": [213, 547], "pos": "np", "rank": 0.0005702067400302755, "text": "tundra fires"}
{"count": 2, "ids": [329, 1387], "pos": "np", "rank": 0.0005680148900150799, "text": "repeat sampling"}
{"count": 2, "ids": [450, 139], "pos": "np", "rank": 0.0005670815724239363, "text": "tree increase"}
{"count": 1, "ids": [357, 752], "pos": "np", "rank": 0.0005669294502276085, "text": "vegetation transformation"}
{"count": 1, "ids": [273, 82], "pos": "np", "rank": 0.0005662402662844478, "text": "progressive n"}
{"count": 20, "ids": [666], "pos": "nn", "rank": 0.0005661377887137179, "text": "population"}
{"count": 1, "ids": [686, 666], "pos": "np", "rank": 0.0005661377887137179, "text": "low-ploid populations"}
{"count": 1, "ids": [592, 974, 82, 301], "pos": "np", "rank": 0.0005642913943228312, "text": "lower tissue n concentrations"}
{"count": 1, "ids": [482, 169], "pos": "np", "rank": 0.0005625317876366886, "text": "total area"}
{"count": 1, "ids": [1908, 253, 387], "pos": "np", "rank": 0.0005600982431730282, "text": "slight decreasing trends"}
{"count": 2, "ids": [218, 121, 381], "pos": "np", "rank": 0.0005600239596602184, "text": "climate change impacts"}
{"count": 2, "ids": [77], "pos": "nn", "rank": 0.0005599874724000904, "text": "terrestrial"}
{"count": 1, "ids": [106, 697], "pos": "np", "rank": 0.0005581905201239872, "text": "current knowledge"}
{"count": 1, "ids": [494, 495], "pos": "np", "rank": 0.0005573601406801953, "text": "mountain complexes"}
{"count": 10, "ids": [101, 213], "pos": "np", "rank": 0.0005568295998540927, "text": "arctic tundra"}
{"count": 10, "ids": [292], "pos": "np", "rank": 0.0005558047986141153, "text": "pnl"}
{"count": 1, "ids": [207, 841, 1168, 213, 100], "pos": "np", "rank": 0.0005556146506428445, "text": "shrub removal shifts tundra ecosystem"}
{"count": 1, "ids": [106, 107], "pos": "np", "rank": 0.0005555452696187034, "text": "current thinking"}
{"count": 2, "ids": [614, 39], "pos": "np", "rank": 0.0005541855219668041, "text": "short-term studies"}
{"count": 16, "ids": [244], "pos": "vbn", "rank": 0.0005533052788013585, "text": "observed"}
{"count": 1, "ids": [649, 0, 0, 636, 0, 101], "pos": "np", "rank": 0.0005524203335989626, "text": "outline of the history of arctic"}
{"count": 1, "ids": [242, 403], "pos": "np", "rank": 0.0005523111888966324, "text": "temperature reconstructions"}
{"count": 1, "ids": [539, 216], "pos": "np", "rank": 0.0005522866169542699, "text": "satellite observations"}
{"count": 2, "ids": [192, 266], "pos": "np", "rank": 0.0005509959529290898, "text": "important implications"}
{"count": 1, "ids": [180, 598], "pos": "np", "rank": 0.000549036682005365, "text": "high levels"}
{"count": 1, "ids": [296, 525], "pos": "np", "rank": 0.0005474870225935361, "text": "biomass dynamics"}
{"count": 1, "ids": [0, 354, 434], "pos": "np", "rank": 0.0005471830334530811, "text": "the same period"}
{"count": 19, "ids": [776], "pos": "nn", "rank": 0.0005459930028045315, "text": "greening"}
{"count": 1, "ids": [106, 932, 776, 387], "pos": "np", "rank": 0.0005459930028045315, "text": "current enhanced greening trend"}
{"count": 1, "ids": [0, 806, 0], "pos": "np", "rank": 0.0005445788216551019, "text": "the early 1980s"}
{"count": 1, "ids": [545, 317], "pos": "np", "rank": 0.0005441621591372229, "text": "permafrost models"}
{"count": 1, "ids": [852, 545, 853], "pos": "np", "rank": 0.0005440405369555035, "text": "further permafrost degradation"}
{"count": 1, "ids": [143, 76], "pos": "np", "rank": 0.000543651498711645, "text": "soil-mediated effects"}
{"count": 1, "ids": [218, 768], "pos": "np", "rank": 0.000543283755296231, "text": "climate zone"}
{"count": 1, "ids": [570, 571], "pos": "np", "rank": 0.0005428859614112115, "text": "relative influence"}
{"count": 1, "ids": [69, 109], "pos": "np", "rank": 0.0005401162126879469, "text": "global distribution"}
{"count": 1, "ids": [531, 618], "pos": "np", "rank": 0.0005401076256749542, "text": "alpine sites"}
{"count": 1, "ids": [0, 497], "pos": "np", "rank": 0.000538957116531556, "text": "11% mineral"}
{"count": 1, "ids": [465, 444], "pos": "np", "rank": 0.0005371081378564627, "text": "draft maps"}
{"count": 1, "ids": [215, 601, 212], "pos": "np", "rank": 0.00053551248317969, "text": "recent summer warming"}
{"count": 13, "ids": [412], "pos": "nn", "rank": 0.0005348247689255173, "text": "ice"}
{"count": 2, "ids": [411, 412], "pos": "np", "rank": 0.0005348247689255173, "text": "sea ice"}
{"count": 1, "ids": [347, 348], "pos": "np", "rank": 0.0005347777578535593, "text": "hill slopes"}
{"count": 1, "ids": [137, 210], "pos": "np", "rank": 0.0005339952559753733, "text": "long-term responses"}
{"count": 2, "ids": [220, 733], "pos": "np", "rank": 0.0005331814506692361, "text": "environmental gradients"}
{"count": 1, "ids": [606, 391, 76], "pos": "np", "rank": 0.0005328192924237367, "text": "times larger effect"}
{"count": 2, "ids": [69, 73], "pos": "np", "rank": 0.0005325651971545544, "text": "global assessment"}
{"count": 4, "ids": [818], "pos": "np", "rank": 0.0005317127722562471, "text": "s."}
{"count": 4, "ids": [101, 78], "pos": "np", "rank": 0.0005302609726807956, "text": "arctic plants"}
{"count": 1, "ids": [207, 344, 565], "pos": "np", "rank": 0.0005298577803373486, "text": "shrub willow growth"}
{"count": 1, "ids": [593, 424], "pos": "np", "rank": 0.000529535383347526, "text": "deeper snow"}
{"count": 3, "ids": [1121, 1949], "pos": "np", "rank": 0.0005272963840812382, "text": "-3 cm"}
{"count": 1, "ids": [101, 1693, 1694], "pos": "np", "rank": 0.0005270072163789768, "text": "arctic arthropod assemblages"}
{"count": 18, "ids": [128], "pos": "nns", "rank": 0.0005259865689529469, "text": "interactions"}
{"count": 1, "ids": [205, 128], "pos": "np", "rank": 0.0005259865689529469, "text": "ecological interactions"}
{"count": 1, "ids": [883, 399, 13], "pos": "np", "rank": 0.0005257643160974664, "text": "few key measures"}
{"count": 1, "ids": [477, 164, 0, 207, 324], "pos": "np", "rank": 0.000524557949554522, "text": "landscape heterogeneity of shrub expansion"}
{"count": 16, "ids": [246], "pos": "vbd", "rank": 0.0005244847346855382, "text": "grew"}
{"count": 1, "ids": [847, 246, 247], "pos": "np", "rank": 0.0005244847346855382, "text": "late growing season"}
{"count": 1, "ids": [797, 357], "pos": "np", "rank": 0.0005233194925177925, "text": "upland vegetation"}
{"count": 1, "ids": [59], "pos": "np", "rank": 0.0005220975029633481, "text": "characteristics"}
{"count": 1, "ids": [1112, 724], "pos": "np", "rank": 0.0005217450736146532, "text": "stable environments"}
{"count": 1, "ids": [399, 77, 121], "pos": "np", "rank": 0.0005200222482559172, "text": "key terrestrial change"}
{"count": 1, "ids": [1151, 139], "pos": "np", "rank": 0.0005198247747219415, "text": "modern increases"}
{"count": 5, "ids": [101, 325], "pos": "np", "rank": 0.0005170560570073719, "text": "arctic alaska"}
{"count": 19, "ids": [97], "pos": "nn", "rank": 0.0005164582983057107, "text": "range"}
{"count": 1, "ids": [124, 97], "pos": "np", "rank": 0.0005164582983057107, "text": "whole range"}
{"count": 1, "ids": [663, 477], "pos": "np", "rank": 0.0005132650797417282, "text": "contemporary landscapes"}
{"count": 1, "ids": [276, 1494], "pos": "np", "rank": 0.0005126543247992715, "text": "carbon transfer"}
{"count": 2, "ids": [1684, 0], "pos": "np", "rank": 0.0005121070098752144, "text": "ad 1630-1810"}
{"count": 1, "ids": [419, 420], "pos": "np", "rank": 0.0005119363270848726, "text": "water vapor"}
{"count": 1, "ids": [1509, 1510], "pos": "np", "rank": 0.0005115042497343869, "text": "sufficient magnitude"}
{"count": 21, "ids": [367], "pos": "vbz", "rank": 0.0005103034250846187, "text": "suggests"}
{"count": 1, "ids": [838, 839, 827, 250], "pos": "np", "rank": 0.0005070458553807221, "text": "natural b. nana cover"}
{"count": 1, "ids": [218, 388], "pos": "np", "rank": 0.0005070272344473585, "text": "climate variability"}
{"count": 1, "ids": [1107, 167, 36, 59], "pos": "np", "rank": 0.0005063854477458898, "text": "anaerobic soil conditions characteristic"}
{"count": 5, "ids": [187, 1435], "pos": "np", "rank": 0.0005033952257053178, "text": "eastern nunavik"}
{"count": 2, "ids": [621, 242], "pos": "np", "rank": 0.0005013123006085026, "text": "ambient temperatures"}
{"count": 1, "ids": [235, 565, 801], "pos": "np", "rank": 0.0005009708267885208, "text": "standardized growth curve"}
{"count": 15, "ids": [549], "pos": "nns", "rank": 0.0005006608543516384, "text": "activities"}
{"count": 1, "ids": [591, 549], "pos": "np", "rank": 0.0005006608543516384, "text": "metabolic activity"}
{"count": 1, "ids": [345, 1248], "pos": "np", "rank": 0.0005003596456646571, "text": "dwarf pine"}
{"count": 2, "ids": [142], "pos": "np", "rank": 0.0004985236912645322, "text": "availability"}
{"count": 22, "ids": [282], "pos": "nnp", "rank": 0.0004978702740858232, "text": "c"}
{"count": 1, "ids": [282, 283], "pos": "np", "rank": 0.0004978702740858232, "text": "c sequestration"}
{"count": 1, "ids": [366, 55], "pos": "np", "rank": 0.0004975278626555541, "text": "alaskan results"}
{"count": 14, "ids": [1737], "pos": "nns", "rank": 0.000495313160674412, "text": "herbivores"}
{"count": 1, "ids": [1737, 1117], "pos": "np", "rank": 0.000495313160674412, "text": "herbivore density"}
{"count": 1, "ids": [2016], "pos": "np", "rank": 0.0004952617631441419, "text": "sordaria"}
{"count": 1, "ids": [2017], "pos": "np", "rank": 0.0004952617631441419, "text": "podospora"}
{"count": 1, "ids": [218, 812], "pos": "np", "rank": 0.0004938943229965738, "text": "climate proxy"}
{"count": 1, "ids": [167, 742], "pos": "np", "rank": 0.0004927753302180532, "text": "soil resources"}
{"count": 3, "ids": [1319, 1320], "pos": "np", "rank": 0.00049149211662469, "text": "cassiope tetragona"}
{"count": 1, "ids": [427, 207, 716], "pos": "np", "rank": 0.0004890994895421679, "text": "strong shrub component"}
{"count": 1, "ids": [265, 101, 78], "pos": "np", "rank": 0.00048607255829072923, "text": "many arctic plants"}
{"count": 3, "ids": [357, 121], "pos": "np", "rank": 0.0004853540983721893, "text": "vegetation change"}
{"count": 1, "ids": [869, 381], "pos": "np", "rank": 0.00048090867925429766, "text": "industrial impacts"}
{"count": 1, "ids": [22, 101, 1635], "pos": "np", "rank": 0.0004808584996019696, "text": "several arctic lineages"}
{"count": 1, "ids": [215, 139, 1418], "pos": "np", "rank": 0.00047983825358948454, "text": "recent increased supplies"}
{"count": 2, "ids": [2001, 2002, 2003], "pos": "np", "rank": 0.00047979605600688413, "text": "dung fungal spores"}
{"count": 1, "ids": [1568, 454], "pos": "np", "rank": 0.0004795882846325382, "text": "monitoring approaches"}
{"count": 1, "ids": [919, 77, 276, 317], "pos": "np", "rank": 0.00047796404876316077, "text": "mechanistic terrestrial carbon model"}
{"count": 1, "ids": [989, 990], "pos": "np", "rank": 0.0004775594591330899, "text": "aboveground phytomass"}
{"count": 1, "ids": [494, 346, 826], "pos": "np", "rank": 0.00047638003189339563, "text": "mountain birch betula"}
{"count": 5, "ids": [77, 100], "pos": "np", "rank": 0.000470870525438568, "text": "terrestrial ecosystems"}
{"count": 1, "ids": [112, 259], "pos": "np", "rank": 0.00046996671527530594, "text": "future biodiversity"}
{"count": 15, "ids": [791], "pos": "vbd", "rank": 0.00046875111047086905, "text": "occurred"}
{"count": 1, "ids": [289, 290], "pos": "np", "rank": 0.00046843194119523796, "text": "new framework"}
{"count": 2, "ids": [224, 262], "pos": "np", "rank": 0.0004680515139065071, "text": "short term"}
{"count": 1, "ids": [1018, 565, 210], "pos": "np", "rank": 0.00046724584897845164, "text": "50-year growth response"}
{"count": 4, "ids": [205], "pos": "nnp", "rank": 0.00046720758766285986, "text": "ecological"}
{"count": 3, "ids": [205, 206], "pos": "np", "rank": 0.00046720758766285986, "text": "ecological society"}
{"count": 1, "ids": [1724, 1725, 1726], "pos": "np", "rank": 0.00046696607226026854, "text": "empetrum hermaphroditum humus"}
{"count": 1, "ids": [33, 34], "pos": "np", "rank": 0.00046691729808912675, "text": "similar hypothetical"}
{"count": 1, "ids": [119], "pos": "np", "rank": 0.00046492087490013255, "text": "accumulation"}
{"count": 1, "ids": [961], "pos": "np", "rank": 0.0004627978307880576, "text": "store"}
{"count": 1, "ids": [289, 694, 122], "pos": "np", "rank": 0.0004622953266251874, "text": "new sibling species"}
{"count": 2, "ids": [211, 212, 39], "pos": "np", "rank": 0.00046182126830567017, "text": "experimental warming studies"}
{"count": 2, "ids": [0, 86, 392], "pos": "np", "rank": 0.0004617270068042968, "text": "the northern hemisphere"}
{"count": 2, "ids": [207, 941], "pos": "np", "rank": 0.00046003481466582184, "text": "shrub dominance"}
{"count": 1, "ids": [637], "pos": "np", "rank": 0.0004595462219403917, "text": "evolution"}
{"count": 1, "ids": [215, 398], "pos": "np", "rank": 0.0004589674450970203, "text": "recent insights"}
{"count": 1, "ids": [117, 447, 448], "pos": "np", "rank": 0.00045841463720730166, "text": "major bioclimate subzones"}
{"count": 1, "ids": [443, 491, 344], "pos": "np", "rank": 0.0004575171974604329, "text": "circumpolar erect willow"}
{"count": 2, "ids": [1370], "pos": "np", "rank": 0.00045623431447088626, "text": "greenland"}
{"count": 1, "ids": [821, 121], "pos": "np", "rank": 0.0004550194672239275, "text": "extensive changes"}
{"count": 3, "ids": [839], "pos": "np", "rank": 0.0004541155533997359, "text": "b."}
{"count": 10, "ids": [748], "pos": "nn", "rank": 0.00045300989297528794, "text": "link"}
{"count": 1, "ids": [192, 748], "pos": "np", "rank": 0.00045300989297528794, "text": "important link"}
{"count": 1, "ids": [82, 274], "pos": "np", "rank": 0.00045299221302755826, "text": "n limitation"}
{"count": 1, "ids": [880, 218], "pos": "np", "rank": 0.0004527364627468592, "text": "pronounced climate"}
{"count": 1, "ids": [703, 1], "pos": "np", "rank": 0.0004519424385550853, "text": "comprehensive analyses"}
{"count": 3, "ids": [714], "pos": "np", "rank": 0.0004517811991816905, "text": "traits"}
{"count": 1, "ids": [125, 723], "pos": "np", "rank": 0.00045128181720739, "text": "different ways"}
{"count": 7, "ids": [601, 242], "pos": "np", "rank": 0.00045118107054765224, "text": "summer temperatures"}
{"count": 2, "ids": [759, 78, 208], "pos": "np", "rank": 0.00045017482653258035, "text": "vascular plant abundance"}
{"count": 1, "ids": [490, 169], "pos": "np", "rank": 0.0004500254301093509, "text": "vegetated area"}
{"count": 1, "ids": [213, 554], "pos": "np", "rank": 0.00044944698851277505, "text": "tundra structure"}
{"count": 2, "ids": [454], "pos": "np", "rank": 0.0004493104402701814, "text": "approaches"}
{"count": 2, "ids": [806, 559, 722, 980], "pos": "np", "rank": 0.00044913485651662847, "text": "early nutrient cycling literature"}
{"count": 4, "ids": [1797], "pos": "nn", "rank": 0.0004489763069031667, "text": "spp"}
{"count": 1, "ids": [2015, 1797], "pos": "np", "rank": 0.0004489763069031667, "text": "sporormiella spp"}
{"count": 1, "ids": [132, 424, 1274], "pos": "np", "rank": 0.0004479121045874562, "text": "such snow beds"}
{"count": 1, "ids": [743, 26], "pos": "np", "rank": 0.0004460097387568942, "text": "less variable"}
{"count": 2, "ids": [199, 139], "pos": "np", "rank": 0.00044556409261880707, "text": "widespread increases"}
{"count": 1, "ids": [346, 1588, 1191, 565, 210], "pos": "np", "rank": 0.0004450306653663, "text": "birch apical stem growth responses"}
{"count": 11, "ids": [219], "pos": "vb", "rank": 0.00044418474104446145, "text": "respond"}
{"count": 6, "ids": [640, 641], "pos": "np", "rank": 0.00044402215790011434, "text": "eric hult\u00e9n"}
{"count": 1, "ids": [545, 167], "pos": "np", "rank": 0.0004434977971962479, "text": "permafrost soils"}
{"count": 2, "ids": [90], "pos": "np", "rank": 0.0004430770217252567, "text": "assess"}
{"count": 1, "ids": [323, 80], "pos": "np", "rank": 0.0004430016452872381, "text": "research synthesis"}
{"count": 1, "ids": [1865, 1536], "pos": "np", "rank": 0.0004429611090239247, "text": "reproductive effort"}
{"count": 10, "ids": [525], "pos": "nns", "rank": 0.0004417302503665336, "text": "dynamics"}
{"count": 1, "ids": [735, 736], "pos": "np", "rank": 0.0004381287088959223, "text": "litter quality"}
{"count": 1, "ids": [989, 296], "pos": "np", "rank": 0.00043798961807482885, "text": "aboveground biomass"}
{"count": 7, "ids": [156], "pos": "np", "rank": 0.00043530766709386405, "text": "first"}
{"count": 3, "ids": [1723, 76], "pos": "np", "rank": 0.00043452906188247333, "text": "allelopathic effects"}
{"count": 2, "ids": [457, 180, 458, 459], "pos": "np", "rank": 0.00043330763892258884, "text": "very high resolution radiometer"}
{"count": 1, "ids": [841, 351], "pos": "np", "rank": 0.0004330018908035231, "text": "removal plots"}
{"count": 1, "ids": [174, 618], "pos": "np", "rank": 0.00043208610053996333, "text": "european sites"}
{"count": 2, "ids": [329, 330], "pos": "np", "rank": 0.0004315414126225377, "text": "repeat photography"}
{"count": 1, "ids": [1698, 213], "pos": "np", "rank": 0.0004314852059383816, "text": "open tundra"}
{"count": 1, "ids": [131, 220, 1128], "pos": "np", "rank": 0.00043120279119131954, "text": "other environmental factors"}
{"count": 2, "ids": [110, 111], "pos": "np", "rank": 0.000429532750985111, "text": "g200 ecoregions"}
{"count": 1, "ids": [377, 865], "pos": "np", "rank": 0.00042944069565542336, "text": "human residents"}
{"count": 1, "ids": [626, 627], "pos": "np", "rank": 0.0004285972126118568, "text": "little indication"}
{"count": 1, "ids": [331, 121], "pos": "np", "rank": 0.00042825361621075524, "text": "past changes"}
{"count": 1, "ids": [460], "pos": "np", "rank": 0.0004273043709858456, "text": "avhrr"}
{"count": 1, "ids": [595, 601, 242, 564], "pos": "np", "rank": 0.0004271448423733409, "text": "greater summer temperature sensitivity"}
{"count": 1, "ids": [207, 1181], "pos": "np", "rank": 0.0004266850916909512, "text": "shrub patches"}
{"count": 12, "ids": [23], "pos": "vbn", "rank": 0.0004264850568072076, "text": "made"}
{"count": 15, "ids": [226], "pos": "vbn", "rank": 0.0004263144109556902, "text": "based"}
{"count": 1, "ids": [1212, 226, 444], "pos": "np", "rank": 0.0004263144109556902, "text": "avhrr-derived base maps"}
{"count": 1, "ids": [646, 101, 638], "pos": "np", "rank": 0.0004258108704766591, "text": "present-day arctic flora"}
{"count": 7, "ids": [357], "pos": "np", "rank": 0.0004251970876707064, "text": "vegetation"}
{"count": 1, "ids": [556], "pos": "nnp", "rank": 0.00042499942680691226, "text": "regional"}
{"count": 1, "ids": [779, 207, 565], "pos": "np", "rank": 0.0004238862242698788, "text": "annual shrub growth"}
{"count": 1, "ids": [443, 318], "pos": "np", "rank": 0.00042340636265027394, "text": "circumpolar data"}
{"count": 8, "ids": [1599], "pos": "np", "rank": 0.00042247569059437217, "text": "par"}
{"count": 2, "ids": [251, 207, 565], "pos": "np", "rank": 0.0004223026594023847, "text": "deciduous shrub growth"}
{"count": 1, "ids": [310, 108], "pos": "np", "rank": 0.00042068598991737286, "text": "primary mechanism"}
{"count": 1, "ids": [31, 12, 11], "pos": "np", "rank": 0.0004198961464040303, "text": "general g statistic"}
{"count": 1, "ids": [519, 516], "pos": "np", "rank": 0.0004198626063763667, "text": "climate-change applications"}
{"count": 1, "ids": [265, 205, 267], "pos": "np", "rank": 0.0004192681845520117, "text": "many ecological processes"}
{"count": 6, "ids": [78], "pos": "np", "rank": 0.0004166336213920536, "text": "plants"}
{"count": 1, "ids": [1468, 139], "pos": "np", "rank": 0.00041585981977755327, "text": "dramatic increases"}
{"count": 1, "ids": [602, 696], "pos": "np", "rank": 0.0004158214799135356, "text": "large gaps"}
{"count": 1, "ids": [112, 203, 101, 357, 210], "pos": "np", "rank": 0.00041532964353640145, "text": "future low arctic vegetation responses"}
{"count": 2, "ids": [1111], "pos": "np", "rank": 0.0004152193056415651, "text": "values"}
{"count": 1, "ids": [31, 275], "pos": "np", "rank": 0.0004150352684124844, "text": "general rise"}
{"count": 1, "ids": [313, 276, 1072], "pos": "np", "rank": 0.00041478568540911866, "text": "potential carbon release"}
{"count": 2, "ids": [18], "pos": "np", "rank": 0.00041415914879912915, "text": "properties"}
{"count": 1, "ids": [661, 55], "pos": "np", "rank": 0.0004134670255165026, "text": "contrasting results"}
{"count": 1, "ids": [247, 991], "pos": "np", "rank": 0.00041344672809759717, "text": "season ndvi"}
{"count": 1, "ids": [389, 555, 824], "pos": "np", "rank": 0.0004118894039775988, "text": "surface energy balance"}
{"count": 1, "ids": [948, 725], "pos": "np", "rank": 0.0004116966874660811, "text": "climate-growth relationships"}
{"count": 9, "ids": [89], "pos": "nnp", "rank": 0.0004112003614819187, "text": "america"}
{"count": 2, "ids": [196, 89], "pos": "np", "rank": 0.0004112003614819187, "text": "latin america"}
{"count": 1, "ids": [105, 565], "pos": "np", "rank": 0.00041017052658568756, "text": "forest growth"}
{"count": 1, "ids": [131, 444], "pos": "np", "rank": 0.0004082208838524194, "text": "other maps"}
{"count": 1, "ids": [28, 223], "pos": "np", "rank": 0.0004079063422523746, "text": "single location"}
{"count": 1, "ids": [830, 539, 401], "pos": "np", "rank": 0.0004073537964176155, "text": "continuous satellite records"}
{"count": 2, "ids": [829, 794], "pos": "np", "rank": 0.0004048311687092088, "text": "northeast siberia"}
{"count": 1, "ids": [359, 121], "pos": "np", "rank": 0.00040446174864349106, "text": "consistent change"}
{"count": 1, "ids": [818, 1880, 1740], "pos": "np", "rank": 0.0004037937012760164, "text": "s. herbacea seeds"}
{"count": 1, "ids": [820, 213, 1226], "pos": "np", "rank": 0.00040374233763582204, "text": "siberian tundra ecotones"}
{"count": 1, "ids": [48, 49], "pos": "np", "rank": 0.00040359753230628857, "text": "unit prices"}
{"count": 1, "ids": [595, 167, 622], "pos": "np", "rank": 0.00040317981563295265, "text": "greater soil moisture"}
{"count": 2, "ids": [601, 212], "pos": "np", "rank": 0.0004016343623847675, "text": "summer warming"}
{"count": 10, "ids": [831], "pos": "nn", "rank": 0.0004016266529307241, "text": "depth"}
{"count": 1, "ids": [833, 584, 831], "pos": "np", "rank": 0.0004016266529307241, "text": "active layer depths"}
{"count": 1, "ids": [1364, 60], "pos": "np", "rank": 0.00040097465492793015, "text": "geographical patterns"}
{"count": 1, "ids": [113], "pos": "np", "rank": 0.00040087924252558814, "text": "estimate"}
{"count": 1, "ids": [1633, 783], "pos": "np", "rank": 0.00040069401498399527, "text": "artemisia l."}
{"count": 2, "ids": [173], "pos": "np", "rank": 0.0004005480733291362, "text": "help"}
{"count": 2, "ids": [357, 565], "pos": "np", "rank": 0.00040018549427831186, "text": "vegetation growth"}
{"count": 1, "ids": [148, 178], "pos": "np", "rank": 0.00039991416229658304, "text": "more needs"}
{"count": 1, "ids": [1207, 1198], "pos": "np", "rank": 0.0003996157095666214, "text": "rock outcrops"}
{"count": 1, "ids": [224, 606, 410], "pos": "np", "rank": 0.0003996144693178025, "text": "short time scale"}
{"count": 18, "ids": [214], "pos": "nn", "rank": 0.0003990523170941504, "text": "biome"}
{"count": 1, "ids": [509, 69, 214], "pos": "np", "rank": 0.0003990523170941504, "text": "entire global biome"}
{"count": 1, "ids": [69, 545, 167, 276, 960], "pos": "np", "rank": 0.0003983033739693006, "text": "global permafrost soil carbon pool"}
{"count": 1, "ids": [1134, 100, 317, 55], "pos": "np", "rank": 0.0003980222901244433, "text": "process-based ecosystem model results"}
{"count": 2, "ids": [98, 120], "pos": "np", "rank": 0.0003979456910671147, "text": "main drivers"}
{"count": 1, "ids": [952, 207], "pos": "np", "rank": 0.0003973933352530114, "text": "taller shrubs"}
{"count": 1, "ids": [854, 794], "pos": "np", "rank": 0.00039727152834670117, "text": "ne siberia"}
{"count": 2, "ids": [1603], "pos": "np", "rank": 0.0003970415881244297, "text": "finland"}
{"count": 7, "ids": [414], "pos": "nns", "rank": 0.0003968172749121996, "text": "fluxes"}
{"count": 1, "ids": [352, 169], "pos": "np", "rank": 0.0003967862713779522, "text": "remote areas"}
{"count": 2, "ids": [78, 2089], "pos": "np", "rank": 0.0003949763900164755, "text": "plant phenology"}
{"count": 3, "ids": [802, 725], "pos": "np", "rank": 0.00039495197557901345, "text": "significant relationship"}
{"count": 1, "ids": [1205, 1195], "pos": "np", "rank": 0.00039472734671935585, "text": "dendritic floodplains"}
{"count": 1, "ids": [1334, 1335], "pos": "np", "rank": 0.0003946568596400577, "text": "chloroplast dna"}
{"count": 9, "ids": [371], "pos": "vbz", "rank": 0.00039460045558556737, "text": "alters"}
{"count": 1, "ids": [331], "pos": "nn", "rank": 0.00039353202244668306, "text": "past"}
{"count": 2, "ids": [0, 331, 195], "pos": "np", "rank": 0.00039353202244668306, "text": "the past decade"}
{"count": 1, "ids": [137, 212], "pos": "np", "rank": 0.0003932766374181151, "text": "long-term warming"}
{"count": 4, "ids": [101, 100], "pos": "np", "rank": 0.00039239210453214003, "text": "arctic ecosystems"}
{"count": 1, "ids": [1088, 296], "pos": "np", "rank": 0.00039175246469775303, "text": "leaf biomass"}
{"count": 1, "ids": [601, 242, 139], "pos": "np", "rank": 0.0003898685810414562, "text": "summer temperature increases"}
{"count": 1, "ids": [450, 757, 250], "pos": "np", "rank": 0.00038979731643624054, "text": "tree canopy cover"}
{"count": 3, "ids": [78, 249], "pos": "np", "rank": 0.0003888580466325834, "text": "plant height"}
{"count": 1, "ids": [969, 976], "pos": "np", "rank": 0.00038879373789895463, "text": "elevated co"}
{"count": 1, "ids": [112, 545, 546], "pos": "np", "rank": 0.0003886003835396453, "text": "future permafrost thaw"}
{"count": 2, "ids": [76, 94], "pos": "np", "rank": 0.0003883224990797464, "text": "effect thresholds"}
{"count": 2, "ids": [218, 564], "pos": "np", "rank": 0.0003880598252115936, "text": "climate sensitivity"}
{"count": 1, "ids": [1126, 355, 356, 357, 358], "pos": "np", "rank": 0.00038724901111455724, "text": "satellite-derived normalized difference vegetation index"}
{"count": 4, "ids": [665], "pos": "np", "rank": 0.0003844375606174114, "text": "atlantic"}
{"count": 11, "ids": [123], "pos": "nn", "rank": 0.0003839457797590318, "text": "composition"}
{"count": 1, "ids": [1375, 357, 121], "pos": "np", "rank": 0.00038317428818857046, "text": "woody vegetation change"}
{"count": 2, "ids": [74], "pos": "np", "rank": 0.00038303456279761193, "text": "nitrogen"}
{"count": 1, "ids": [221, 501], "pos": "np", "rank": 0.0003830204333435331, "text": "most terrain"}
{"count": 2, "ids": [820, 213], "pos": "np", "rank": 0.00038293088266598, "text": "siberian tundra"}
{"count": 1, "ids": [1401, 1514], "pos": "np", "rank": 0.00038283706546520565, "text": "greenlandic nunataks"}
{"count": 2, "ids": [150, 210], "pos": "np", "rank": 0.0003826758472138016, "text": "site-specific responses"}
{"count": 1, "ids": [412, 1520], "pos": "np", "rank": 0.0003822793723708982, "text": "ice sheets"}
{"count": 1, "ids": [188, 189], "pos": "np", "rank": 0.0003816865642545381, "text": "southern asia"}
{"count": 2, "ids": [101, 357, 2041], "pos": "np", "rank": 0.00038110818425827494, "text": "arctic vegetation archive"}
{"count": 1, "ids": [1160], "pos": "np", "rank": 0.00038082822355883545, "text": "pollen"}
{"count": 1, "ids": [502, 496, 118], "pos": "np", "rank": 0.00038082346252648605, "text": "abundant barren types"}
{"count": 1, "ids": [1114, 167, 36], "pos": "np", "rank": 0.0003797890858094173, "text": "aerobic soil conditions"}
{"count": 2, "ids": [2124, 618], "pos": "np", "rank": 0.0003791507326527528, "text": "colder sites"}
{"count": 10, "ids": [222], "pos": "vbn", "rank": 0.00037910908551625123, "text": "limited"}
{"count": 1, "ids": [357, 549], "pos": "np", "rank": 0.0003779529668184057, "text": "vegetation activity"}
{"count": 1, "ids": [666, 692], "pos": "np", "rank": 0.0003774251924758119, "text": "population fragmentation"}
{"count": 4, "ids": [1078], "pos": "np", "rank": 0.0003768820753836661, "text": "om"}
{"count": 1, "ids": [213, 223], "pos": "np", "rank": 0.0003764946517125579, "text": "tundra locations"}
{"count": 3, "ids": [0, 45, 665], "pos": "np", "rank": 0.00037640987695546703, "text": "the north atlantic"}
{"count": 1, "ids": [531], "pos": "nn", "rank": 0.0003763015390584005, "text": "alpine"}
{"count": 1, "ids": [505, 169], "pos": "np", "rank": 0.00037502119175779244, "text": "largest area"}
{"count": 1, "ids": [1479, 325], "pos": "np", "rank": 0.00037494071215159435, "text": "western alaska"}
{"count": 1, "ids": [213, 207, 250], "pos": "np", "rank": 0.0003740172567087166, "text": "tundra shrub cover"}
{"count": 1, "ids": [629, 1263], "pos": "np", "rank": 0.0003738110208375854, "text": "common strategy"}
{"count": 1, "ids": [1136, 210], "pos": "np", "rank": 0.0003737966791827613, "text": "nonlinear response"}
{"count": 1, "ids": [715, 716, 1], "pos": "np", "rank": 0.0003727239908752169, "text": "principal components analysis"}
{"count": 16, "ids": [410], "pos": "nn", "rank": 0.00037207829658056504, "text": "scale"}
{"count": 1, "ids": [410, 444], "pos": "np", "rank": 0.00037207829658056504, "text": "scale map"}
{"count": 4, "ids": [1483], "pos": "np", "rank": 0.0003718206523483379, "text": "quebec"}
{"count": 1, "ids": [1288, 1263], "pos": "np", "rank": 0.0003715482043743181, "text": "complementary strategies"}
{"count": 2, "ids": [1948, 1949], "pos": "np", "rank": 0.00037081562217927043, "text": "-30 cm"}
{"count": 2, "ids": [833, 584, 834], "pos": "np", "rank": 0.00037076456576349334, "text": "active layer thickness"}
{"count": 1, "ids": [1061, 122], "pos": "np", "rank": 0.00036983626130014993, "text": "co\u2010differential species"}
{"count": 1, "ids": [1193, 601, 242], "pos": "np", "rank": 0.0003690752142370669, "text": "mean summer temperatures"}
{"count": 11, "ids": [430], "pos": "vbn", "rank": 0.0003687800482567824, "text": "associated"}
{"count": 7, "ids": [859], "pos": "nn", "rank": 0.00036874837281845174, "text": "development"}
{"count": 1, "ids": [105, 981, 859], "pos": "np", "rank": 0.00036874837281845174, "text": "forest stand development"}
{"count": 11, "ids": [327], "pos": "vbn", "rank": 0.0003684314832869163, "text": "expected"}
{"count": 9, "ids": [544], "pos": "nn", "rank": 0.0003684217676825267, "text": "regime"}
{"count": 1, "ids": [622, 544], "pos": "np", "rank": 0.0003684217676825267, "text": "moisture regime"}
{"count": 1, "ids": [808, 216], "pos": "np", "rank": 0.0003681910779695133, "text": "qualitative observations"}
{"count": 1, "ids": [170, 153], "pos": "np", "rank": 0.00036814520288975486, "text": "critical role"}
{"count": 1, "ids": [1022, 275], "pos": "np", "rank": 0.00036812672418760147, "text": "related rise"}
{"count": 2, "ids": [343], "pos": "np", "rank": 0.00036755067980016664, "text": "alder"}
{"count": 2, "ids": [125, 1878], "pos": "np", "rank": 0.0003672731676534895, "text": "different microhabitats"}
{"count": 1, "ids": [384, 139], "pos": "np", "rank": 0.0003669351350978411, "text": "substantial increases"}
{"count": 7, "ids": [301], "pos": "nns", "rank": 0.0003669346740100195, "text": "concentrations"}
{"count": 1, "ids": [806, 1697, 1878], "pos": "np", "rank": 0.00036633091646061573, "text": "early snowmelt microhabitats"}
{"count": 1, "ids": [213, 296], "pos": "np", "rank": 0.00036499134839569077, "text": "tundra biomass"}
{"count": 1, "ids": [354, 434], "pos": "np", "rank": 0.0003647886889687208, "text": "same period"}
{"count": 1, "ids": [101, 78, 707, 118], "pos": "np", "rank": 0.00036455441871804695, "text": "arctic plant functional types"}
{"count": 1, "ids": [951, 541, 121], "pos": "np", "rank": 0.00036401557377914196, "text": "heterogeneous greenness change"}
{"count": 1, "ids": [1012, 101, 776], "pos": "np", "rank": 0.00036399533520302103, "text": "eurasian arctic greening"}
{"count": 11, "ids": [827], "pos": "nnp", "rank": 0.0003636893636461554, "text": "nana"}
{"count": 11, "ids": [722], "pos": "nn", "rank": 0.0003636201984808629, "text": "cycling"}
{"count": 1, "ids": [317, 929], "pos": "np", "rank": 0.00036277477275814855, "text": "model simulation"}
{"count": 1, "ids": [466, 467, 468], "pos": "np", "rank": 0.0003625601755551178, "text": "geographic information technology"}
{"count": 1, "ids": [909, 100, 853], "pos": "np", "rank": 0.0003622080964912061, "text": "freshwater ecosystem degradation"}
{"count": 1, "ids": [14], "pos": "np", "rank": 0.0003620742401369305, "text": "number"}
{"count": 1, "ids": [101, 705], "pos": "np", "rank": 0.0003619392399051603, "text": "arctic taxa"}
{"count": 1, "ids": [30], "pos": "np", "rank": 0.000361071212350682, "text": "comparison"}
{"count": 1, "ids": [45, 800, 618], "pos": "np", "rank": 0.0003600717504499694, "text": "north american sites"}
{"count": 1, "ids": [861, 147], "pos": "np", "rank": 0.0003594183747814471, "text": "low-intensity disturbances"}
{"count": 1, "ids": [839, 827, 250], "pos": "np", "rank": 0.0003593547983305726, "text": "b. nana cover"}
{"count": 1, "ids": [137, 205, 527], "pos": "np", "rank": 0.00035831477257078945, "text": "long-term ecological monitoring"}
{"count": 2, "ids": [472, 444], "pos": "np", "rank": 0.00035807209190430846, "text": "final map"}
{"count": 1, "ids": [286, 287], "pos": "np", "rank": 0.00035739294946531344, "text": "great uncertainty"}
{"count": 1, "ids": [412, 585], "pos": "np", "rank": 0.0003565498459503448, "text": "ice content"}
{"count": 3, "ids": [452], "pos": "np", "rank": 0.0003565112845181822, "text": "method"}
{"count": 4, "ids": [835], "pos": "np", "rank": 0.00035604941689890217, "text": "alt"}
{"count": 1, "ids": [16, 11], "pos": "np", "rank": 0.0003557449544775737, "text": "basic statistic"}
{"count": 17, "ids": [338], "pos": "vbp", "rank": 0.0003553306741986919, "text": "find"}
{"count": 10, "ids": [378, 379, 380], "pos": "np", "rank": 0.00035532311652125803, "text": "blackwell publishing ltd"}
{"count": 10, "ids": [1669], "pos": "nn", "rank": 0.00035470145506013667, "text": "volume"}
{"count": 1, "ids": [889, 450, 1669], "pos": "np", "rank": 0.00035470145506013667, "text": "quantitative tree volume"}
{"count": 1, "ids": [1019, 1187, 1188], "pos": "np", "rank": 0.0003535115398237021, "text": "alnus viridis ssp"}
{"count": 2, "ids": [424, 831], "pos": "np", "rank": 0.00035302358889835065, "text": "snow depth"}
{"count": 16, "ids": [843], "pos": "vbd", "rank": 0.00035284961298352307, "text": "compared"}
{"count": 1, "ids": [1372, 799], "pos": "np", "rank": 0.00035247244752294757, "text": "previous reports"}
{"count": 1, "ids": [53, 54], "pos": "np", "rank": 0.000352326932775968, "text": "zip\u2010code districts"}
{"count": 1, "ids": [194, 195], "pos": "np", "rank": 0.0003521717023881266, "text": "coming decades"}
{"count": 1, "ids": [359], "pos": "nn", "rank": 0.00035214710005435085, "text": "consistent"}
{"count": 12, "ids": [892], "pos": "nn", "rank": 0.00035201923635658336, "text": "land"}
{"count": 1, "ids": [892, 389], "pos": "np", "rank": 0.00035201923635658336, "text": "land surface"}
{"count": 2, "ids": [889, 91], "pos": "np", "rank": 0.0003517978505206994, "text": "quantitative evidence"}
{"count": 1, "ids": [750, 357], "pos": "np", "rank": 0.0003516643825225335, "text": "much vegetation"}
{"count": 7, "ids": [1117], "pos": "nn", "rank": 0.0003510669239359202, "text": "density"}
{"count": 1, "ids": [357, 1222, 1117], "pos": "np", "rank": 0.0003510669239359202, "text": "vegetation green-biomass density"}
{"count": 1, "ids": [1149, 128], "pos": "np", "rank": 0.00035065771263529793, "text": "climate-biosphere interactions"}
{"count": 1, "ids": [131, 1664, 1665], "pos": "np", "rank": 0.0003504917754752153, "text": "other traditional theories"}
{"count": 1, "ids": [246, 247, 242], "pos": "np", "rank": 0.0003496564897903588, "text": "growing season temperature"}
{"count": 1, "ids": [2], "pos": "nnp", "rank": 0.00034916471059887147, "text": "spatial"}
{"count": 1, "ids": [2, 328], "pos": "np", "rank": 0.00034916471059887147, "text": "spatial extent"}
{"count": 1, "ids": [594, 742, 724], "pos": "np", "rank": 0.000349005424288782, "text": "higher resource environments"}
{"count": 6, "ids": [1070], "pos": "nns", "rank": 0.00034894925955839635, "text": "deposits"}
{"count": 1, "ids": [1098, 1070], "pos": "np", "rank": 0.00034894925955839635, "text": "fluvial deposits"}
{"count": 1, "ids": [203, 598, 74, 229], "pos": "np", "rank": 0.00034844370309840874, "text": "low level nitrogen additions"}
{"count": 1, "ids": [1915, 454], "pos": "np", "rank": 0.0003481205276613461, "text": "meta-analysis approach"}
{"count": 1, "ids": [492, 250], "pos": "np", "rank": 0.00034693923747464346, "text": "shrubland cover"}
{"count": 1, "ids": [100, 121], "pos": "np", "rank": 0.00034668149883727807, "text": "ecosystem change"}
{"count": 1, "ids": [1954, 578], "pos": "np", "rank": 0.00034660084710504526, "text": "-2 \u00b0c"}
{"count": 1, "ids": [1316, 139], "pos": "np", "rank": 0.0003465498498146277, "text": "moderate increases"}
{"count": 1, "ids": [652, 39], "pos": "np", "rank": 0.0003463659512292526, "text": "molecular studies"}
{"count": 4, "ids": [86, 392], "pos": "np", "rank": 0.0003462952551032226, "text": "northern hemisphere"}
{"count": 9, "ids": [386], "pos": "nn", "rank": 0.00034557383565450236, "text": "understanding"}
{"count": 1, "ids": [891, 386], "pos": "np", "rank": 0.00034557383565450236, "text": "overall understanding"}
{"count": 1, "ids": [785, 362], "pos": "np", "rank": 0.0003444168602403751, "text": "northwest canada"}
{"count": 3, "ids": [260, 97], "pos": "np", "rank": 0.0003443055322038071, "text": "wide range"}
{"count": 1, "ids": [680, 1089], "pos": "np", "rank": 0.00034377329232259735, "text": "holocene peats"}
{"count": 1, "ids": [1466, 1467], "pos": "np", "rank": 0.00034373898558667527, "text": "excessive drainage"}
{"count": 8, "ids": [294], "pos": "vb", "rank": 0.00034322015384220366, "text": "become"}
{"count": 6, "ids": [78, 209], "pos": "np", "rank": 0.0003431100411463971, "text": "plant communities"}
{"count": 1, "ids": [595, 550], "pos": "np", "rank": 0.0003423055254866126, "text": "greater herbivory"}
{"count": 1, "ids": [602, 297, 276, 960], "pos": "np", "rank": 0.0003414028919736862, "text": "large organic carbon pool"}
{"count": 1, "ids": [167, 118], "pos": "np", "rank": 0.00034115215168942144, "text": "soil types"}
{"count": 1, "ids": [180, 790], "pos": "np", "rank": 0.00034081349760045436, "text": "high correlations"}
{"count": 6, "ids": [763], "pos": "nn", "rank": 0.00034066930916035025, "text": "ground"}
{"count": 2, "ids": [763, 413, 414], "pos": "np", "rank": 0.00034066930916035025, "text": "ground heat flux"}
{"count": 1, "ids": [727, 728], "pos": "np", "rank": 0.00034029714697780795, "text": "migratory ability"}
{"count": 1, "ids": [101, 213, 357], "pos": "np", "rank": 0.0003401576701365651, "text": "arctic tundra vegetation"}
{"count": 1, "ids": [810, 1745], "pos": "np", "rank": 0.00033999532088141345, "text": "reindeer faeces"}
{"count": 1, "ids": [268], "pos": "np", "rank": 0.0003399490135753432, "text": "atmosphere"}
{"count": 1, "ids": [1143, 210], "pos": "np", "rank": 0.0003398151628934194, "text": "decadal response"}
{"count": 1, "ids": [416, 218], "pos": "np", "rank": 0.0003395523470601444, "text": "oceanic climate"}
{"count": 3, "ids": [315], "pos": "np", "rank": 0.0003390005054705841, "text": "researchers"}
{"count": 1, "ids": [2150], "pos": "np", "rank": 0.0003388509867569931, "text": "grazing"}
{"count": 1, "ids": [631], "pos": "np", "rank": 0.000338144071218401, "text": "variation"}
{"count": 1, "ids": [570, 208], "pos": "np", "rank": 0.00033763111989943524, "text": "relative abundance"}
{"count": 2, "ids": [1014, 100], "pos": "np", "rank": 0.0003363360895989772, "text": "novel ecosystems"}
{"count": 1, "ids": [167, 1940], "pos": "np", "rank": 0.00033632755871064956, "text": "soil mineralization"}
{"count": 1, "ids": [517, 1451], "pos": "np", "rank": 0.00033623076689592114, "text": "numerous seedlings"}
{"count": 1, "ids": [1096, 1097], "pos": "np", "rank": 0.00033552951478036975, "text": "dry sediment"}
{"count": 1, "ids": [502, 207, 1020], "pos": "np", "rank": 0.00033464701916043066, "text": "abundant shrub genera"}
{"count": 1, "ids": [384, 385], "pos": "np", "rank": 0.00033375123661127514, "text": "substantial advances"}
{"count": 1, "ids": [856, 857, 103], "pos": "np", "rank": 0.0003335533183435691, "text": "yamal-nenets social-ecological system"}
{"count": 1, "ids": [74, 142], "pos": "np", "rank": 0.00033234912750968815, "text": "nitrogen availability"}
{"count": 1, "ids": [282, 1006], "pos": "np", "rank": 0.0003319135160572155, "text": "c emissions"}
{"count": 1, "ids": [55, 444], "pos": "np", "rank": 0.00033168524177036937, "text": "resulting maps"}
{"count": 1, "ids": [555, 414], "pos": "np", "rank": 0.00033146733836784574, "text": "energy fluxes"}
{"count": 1, "ids": [132, 357, 121], "pos": "np", "rank": 0.00033092324889012905, "text": "such vegetation changes"}
{"count": 4, "ids": [602, 1737], "pos": "np", "rank": 0.00033020877378294133, "text": "large herbivores"}
{"count": 1, "ids": [101, 710], "pos": "np", "rank": 0.0003290356726410548, "text": "arctic ecologists"}
{"count": 1, "ids": [1562, 1068], "pos": "np", "rank": 0.0003289312458982859, "text": "sectorial subdivision"}
{"count": 7, "ids": [1447], "pos": "nns", "rank": 0.00032880161467303067, "text": "altitudes"}
{"count": 1, "ids": [594, 1447], "pos": "np", "rank": 0.00032880161467303067, "text": "higher altitudes"}
{"count": 9, "ids": [622], "pos": "nn", "rank": 0.00032873173803115254, "text": "moisture"}
{"count": 1, "ids": [139, 78], "pos": "np", "rank": 0.0003283103840349105, "text": "increasing plant"}
{"count": 4, "ids": [779], "pos": "np", "rank": 0.0003273691245961324, "text": "annual"}
{"count": 1, "ids": [395, 396], "pos": "np", "rank": 0.000327179176221765, "text": "historical context"}
{"count": 1, "ids": [221, 652, 91], "pos": "np", "rank": 0.0003269203103476631, "text": "most molecular evidence"}
{"count": 1, "ids": [1375, 357, 250], "pos": "np", "rank": 0.0003268582907534178, "text": "woody vegetation cover"}
{"count": 1, "ids": [924, 925], "pos": "np", "rank": 0.0003248603382769803, "text": "precipitation account"}
{"count": 1, "ids": [839, 827, 841, 351], "pos": "np", "rank": 0.0003247514181026423, "text": "b. nana removal plots"}
{"count": 1, "ids": [0, 576], "pos": "np", "rank": 0.0003241009434321413, "text": "0.5 degrees"}
{"count": 1, "ids": [970, 332], "pos": "np", "rank": 0.0003239522730333831, "text": "lt;6 years"}
{"count": 1, "ids": [427, 673], "pos": "np", "rank": 0.00032305881049964216, "text": "strong barrier"}
{"count": 2, "ids": [1471, 318], "pos": "np", "rank": 0.0003229099879968656, "text": "landsat data"}
{"count": 1, "ids": [211, 228], "pos": "np", "rank": 0.00032274115773502023, "text": "experimental designs"}
{"count": 1, "ids": [389, 738], "pos": "np", "rank": 0.0003226746920781383, "text": "surface albedo"}
{"count": 1, "ids": [1125, 242, 388], "pos": "np", "rank": 0.00032227219324832307, "text": "interannual temperature variability"}
{"count": 2, "ids": [1215], "pos": "np", "rank": 0.0003220783069755676, "text": "data"}
{"count": 1, "ids": [1530, 574, 1410], "pos": "np", "rank": 0.00032162105159802226, "text": "nearest biological source"}
{"count": 1, "ids": [0, 439, 195], "pos": "np", "rank": 0.00032118508587034456, "text": "the coming decades"}
{"count": 9, "ids": [561], "pos": "vbn", "rank": 0.0003208363576454739, "text": "understood"}
{"count": 10, "ids": [58], "pos": "nn", "rank": 0.00032037904172560423, "text": "order"}
{"count": 1, "ids": [1693, 58], "pos": "np", "rank": 0.00032037904172560423, "text": "arthropod orders"}
{"count": 1, "ids": [1811, 606, 946, 318], "pos": "np", "rank": 0.000319691575454242, "text": "palaeoecological time series data"}
{"count": 1, "ids": [331, 218, 631], "pos": "np", "rank": 0.00031957867958601826, "text": "past climate variations"}
{"count": 8, "ids": [620], "pos": "vbp", "rank": 0.00031925333998957407, "text": "differ"}
{"count": 1, "ids": [330, 1178], "pos": "np", "rank": 0.0003188076091727136, "text": "photography permits"}
{"count": 1, "ids": [0, 842], "pos": "np", "rank": 0.0003186009074116978, "text": "19.8% average"}
{"count": 1, "ids": [354, 183], "pos": "np", "rank": 0.00031839061014019904, "text": "same region"}
{"count": 3, "ids": [45, 800], "pos": "np", "rank": 0.0003179866639308258, "text": "north american"}
{"count": 1, "ids": [1184, 1552], "pos": "np", "rank": 0.00031796045688848863, "text": "sampled ponds"}
{"count": 1, "ids": [207, 213, 100], "pos": "np", "rank": 0.00031791466820240913, "text": "shrub tundra ecosystems"}
{"count": 1, "ids": [309, 422], "pos": "np", "rank": 0.00031760866642673355, "text": "net radiation"}
{"count": 1, "ids": [826, 1449, 1450, 346], "pos": "np", "rank": 0.0003175866879289304, "text": "betula glandulosa michx.(dwarf birch"}
{"count": 1, "ids": [1094, 318], "pos": "np", "rank": 0.0003175547719877054, "text": "toc data"}
{"count": 1, "ids": [1359, 644], "pos": "np", "rank": 0.00031726964901834527, "text": "beringian origin"}
{"count": 1, "ids": [218, 121, 76], "pos": "np", "rank": 0.00031653528154708, "text": "climate change effects"}
{"count": 1, "ids": [221, 1148], "pos": "np", "rank": 0.00031635260893900463, "text": "most predictions"}
{"count": 1, "ids": [1472, 1471, 389, 1473, 318], "pos": "np", "rank": 0.00031565390217392573, "text": "peak-summer landsat surface reflectance data"}
{"count": 1, "ids": [188, 88], "pos": "np", "rank": 0.00031534780400383514, "text": "southern europe"}
{"count": 1, "ids": [1295], "pos": "np", "rank": 0.0003149991510491201, "text": "ramets"}
{"count": 1, "ids": [1417, 1418], "pos": "np", "rank": 0.0003147995792928546, "text": "pre-industrial supply"}
{"count": 2, "ids": [443, 324], "pos": "np", "rank": 0.0003147347697327132, "text": "circumpolar expansion"}
{"count": 1, "ids": [1102, 267], "pos": "np", "rank": 0.0003144511384140087, "text": "pedogenic processes"}
{"count": 1, "ids": [86, 100], "pos": "np", "rank": 0.000313913683625712, "text": "northern ecosystems"}
{"count": 2, "ids": [443, 101, 213], "pos": "np", "rank": 0.00031374554309379827, "text": "circumpolar arctic tundra"}
{"count": 1, "ids": [101, 213, 296], "pos": "np", "rank": 0.00031284972719630634, "text": "arctic tundra biomass"}
{"count": 1, "ids": [1077], "pos": "np", "rank": 0.00031252646446173566, "text": "exposures"}
{"count": 1, "ids": [199, 1391, 78, 122], "pos": "np", "rank": 0.0003121316735318208, "text": "widespread arctic-alpine plant species"}
{"count": 2, "ids": [0, 340], "pos": "np", "rank": 0.0003121114643766981, "text": "30 km"}
{"count": 8, "ids": [165], "pos": "vbg", "rank": 0.0003121008999629092, "text": "reducing"}
{"count": 1, "ids": [245, 139], "pos": "np", "rank": 0.00031189486483316494, "text": "rapid increases"}
{"count": 1, "ids": [1597, 213, 100], "pos": "np", "rank": 0.00031176230770449317, "text": "mesic tundra ecosystems"}
{"count": 1, "ids": [1174, 210], "pos": "np", "rank": 0.0003114972326523011, "text": "population-scale responses"}
{"count": 1, "ids": [313, 31, 60], "pos": "np", "rank": 0.00031108926405683896, "text": "potential general patterns"}
{"count": 1, "ids": [965, 103, 317], "pos": "np", "rank": 0.00031094980522127023, "text": "earth system models"}
{"count": 10, "ids": [1095], "pos": "vbp", "rank": 0.00030933257355842086, "text": "vary"}
{"count": 3, "ids": [357, 118], "pos": "np", "rank": 0.0003092342455786956, "text": "vegetation type"}
{"count": 1, "ids": [224, 225], "pos": "np", "rank": 0.00030879876846650716, "text": "short duration"}
{"count": 1, "ids": [963, 565, 725], "pos": "np", "rank": 0.00030877251559956084, "text": "climate-shrub growth relationships"}
{"count": 1, "ids": [132, 1280, 618], "pos": "np", "rank": 0.0003086329289571166, "text": "such fell-field sites"}
{"count": 3, "ids": [167, 1629], "pos": "np", "rank": 0.0003086079475238342, "text": "soil microclimate"}
{"count": 2, "ids": [610, 410], "pos": "np", "rank": 0.0003083432439465078, "text": "small scale"}
{"count": 2, "ids": [545, 543], "pos": "np", "rank": 0.0003082143258089223, "text": "permafrost attributes"}
{"count": 1, "ids": [225, 571, 122, 109], "pos": "np", "rank": 0.0003081968844167916, "text": "duration influence species distributions"}
{"count": 1, "ids": [477, 164], "pos": "np", "rank": 0.00030795904784503697, "text": "landscape heterogeneity"}
{"count": 1, "ids": [675, 653, 39], "pos": "np", "rank": 0.00030788084553711343, "text": "detailed fossil studies"}
{"count": 1, "ids": [1423, 1148], "pos": "np", "rank": 0.00030773930921018026, "text": "better predictions"}
{"count": 1, "ids": [438, 1078, 737], "pos": "np", "rank": 0.000306886228638706, "text": "stronger om decomposition"}
{"count": 1, "ids": [215, 432], "pos": "np", "rank": 0.00030597829673134684, "text": "recent manifestation"}
{"count": 6, "ids": [304], "pos": "vb", "rank": 0.00030576011954839655, "text": "accumulate"}
{"count": 1, "ids": [1842, 1843, 1844, 454], "pos": "np", "rank": 0.0003057346992858371, "text": "simple turbid medium approaches"}
{"count": 1, "ids": [74, 1429, 401], "pos": "np", "rank": 0.00030551534731321163, "text": "nitrogen isotope record"}
{"count": 1, "ids": [443, 1221], "pos": "np", "rank": 0.0003051304167683136, "text": "circumpolar view"}
{"count": 2, "ids": [973], "pos": "np", "rank": 0.00030389260944595567, "text": "uptake"}
{"count": 2, "ids": [730, 36], "pos": "np", "rank": 0.00030383126864753386, "text": "climatic conditions"}
{"count": 1, "ids": [758], "pos": "np", "rank": 0.00030367645666439923, "text": "maximum"}
{"count": 1, "ids": [546, 1552, 859], "pos": "np", "rank": 0.0003036594091938802, "text": "thaw pond development"}
{"count": 2, "ids": [176], "pos": "np", "rank": 0.0003035808913639331, "text": "progress"}
{"count": 1, "ids": [112, 218, 121, 381], "pos": "np", "rank": 0.0003033463114826183, "text": "future climate change impacts"}
{"count": 1, "ids": [749, 115], "pos": "np", "rank": 0.0003029078542886532, "text": "unprecedented rates"}
{"count": 1, "ids": [207, 213], "pos": "np", "rank": 0.0003027758744784849, "text": "shrub tundra"}
{"count": 1, "ids": [806, 1633, 699], "pos": "np", "rank": 0.0003025138876705885, "text": "early artemisia stock"}
{"count": 5, "ids": [545], "pos": "np", "rank": 0.0003022447427530575, "text": "permafrost"}
{"count": 11, "ids": [906], "pos": "nns", "rank": 0.0003022142061289534, "text": "habitats"}
{"count": 1, "ids": [213, 906], "pos": "np", "rank": 0.0003022142061289534, "text": "tundra habitats"}
{"count": 1, "ids": [655, 653], "pos": "np", "rank": 0.00030206702704361723, "text": "excellent fossil"}
{"count": 8, "ids": [707, 118], "pos": "np", "rank": 0.0003020608971754507, "text": "functional type"}
{"count": 3, "ids": [76], "pos": "np", "rank": 0.00030202861039535837, "text": "effect"}
{"count": 2, "ids": [215, 218], "pos": "np", "rank": 0.00030182430849790616, "text": "recent climate"}
{"count": 1, "ids": [713, 1], "pos": "np", "rank": 0.00030129495903672354, "text": "cluster analysis"}
{"count": 1, "ids": [78, 540], "pos": "np", "rank": 0.0003012242564862454, "text": "plant productivity"}
{"count": 1, "ids": [969, 242], "pos": "np", "rank": 0.0003007873803651015, "text": "elevated temperatures"}
{"count": 6, "ids": [957], "pos": "nns", "rank": 0.00030062668863952905, "text": "latitudes"}
{"count": 1, "ids": [1123, 957, 494], "pos": "np", "rank": 0.00030062668863952905, "text": "middle latitude mountains"}
{"count": 1, "ids": [187, 325], "pos": "np", "rank": 0.00029995256972127545, "text": "eastern alaska"}
{"count": 1, "ids": [297], "pos": "nnp", "rank": 0.0002997535188213128, "text": "organic"}
{"count": 1, "ids": [783], "pos": "np", "rank": 0.00029962747587321167, "text": "l."}
{"count": 1, "ids": [888, 454], "pos": "np", "rank": 0.00029954029351345426, "text": "analytical approach"}
{"count": 1, "ids": [559, 973], "pos": "np", "rank": 0.00029942323767775226, "text": "nutrient uptake"}
{"count": 1, "ids": [2016, 1797], "pos": "np", "rank": 0.00029931753793544446, "text": "sordaria spp"}
{"count": 8, "ids": [754], "pos": "vb", "rank": 0.00029908457775001154, "text": "survey"}
{"count": 1, "ids": [1539, 754], "pos": "np", "rank": 0.00029908457775001154, "text": "botanical survey"}
{"count": 8, "ids": [1054], "pos": "vbn", "rank": 0.00029848298185670264, "text": "reflected"}
{"count": 1, "ids": [1486, 541, 387], "pos": "np", "rank": 0.00029799818852687125, "text": "landsat-based greenness trend"}
{"count": 1, "ids": [556, 1055], "pos": "np", "rank": 0.0002975171243012244, "text": "regional features"}
{"count": 4, "ids": [187], "pos": "nnp", "rank": 0.00029706802593812014, "text": "eastern"}
{"count": 1, "ids": [187, 794], "pos": "np", "rank": 0.00029706802593812014, "text": "eastern siberia"}
{"count": 1, "ids": [139, 207, 250], "pos": "np", "rank": 0.00029704272841253804, "text": "increased shrub cover"}
{"count": 1, "ids": [663, 664], "pos": "np", "rank": 0.00029691291748472045, "text": "contemporary east"}
{"count": 1, "ids": [669, 820, 659], "pos": "np", "rank": 0.00029650977529011756, "text": "separate siberian refugium"}
{"count": 1, "ids": [357, 387], "pos": "np", "rank": 0.00029578927837962184, "text": "vegetation trends"}
{"count": 1, "ids": [323, 526], "pos": "np", "rank": 0.00029533443019149204, "text": "research priorities"}
{"count": 1, "ids": [187, 1243], "pos": "np", "rank": 0.0002950045899084129, "text": "eastern larch"}
{"count": 8, "ids": [258], "pos": "nn", "rank": 0.00029477750937325644, "text": "decline"}
{"count": 1, "ids": [1265, 1266], "pos": "np", "rank": 0.0002945040018463463, "text": "selection forces"}
{"count": 1, "ids": [525, 554], "pos": "np", "rank": 0.0002944868335776891, "text": "dynamic structure"}
{"count": 1, "ids": [785, 775, 101], "pos": "np", "rank": 0.0002938700051220616, "text": "northwest russian arctic"}
{"count": 1, "ids": [656, 91], "pos": "np", "rank": 0.0002937728885841876, "text": "phytogeographical evidence"}
{"count": 1, "ids": [921, 922], "pos": "np", "rank": 0.0002931582063050305, "text": "dominant controllers"}
{"count": 1, "ids": [0, 101, 269, 863, 1903], "pos": "np", "rank": 0.00029314283660410623, "text": "the arctic national wildlife refuge"}
{"count": 3, "ids": [1365, 1405], "pos": "np", "rank": 0.00029289862881845216, "text": "gene flow"}
{"count": 6, "ids": [374], "pos": "vbg", "rank": 0.000292664567713372, "text": "functioning"}
{"count": 7, "ids": [341], "pos": "nn", "rank": 0.0002925614636036649, "text": "west"}
{"count": 1, "ids": [104, 87], "pos": "np", "rank": 0.0002924139935267899, "text": "tropical parts"}
{"count": 11, "ids": [757], "pos": "nn", "rank": 0.0002915017779353118, "text": "canopy"}
{"count": 1, "ids": [1248, 1669, 121], "pos": "np", "rank": 0.0002912124590233136, "text": "pine volume changes"}
{"count": 4, "ids": [79], "pos": "np", "rank": 0.00029072096482010966, "text": "diversity"}
{"count": 6, "ids": [915], "pos": "np", "rank": 0.0002902067019502825, "text": "co2"}
{"count": 6, "ids": [913], "pos": "vbd", "rank": 0.00028995061076051803, "text": "present"}
{"count": 6, "ids": [342, 1370], "pos": "np", "rank": 0.0002895685187788707, "text": "south greenland"}
{"count": 2, "ids": [101, 212], "pos": "np", "rank": 0.0002895513919241282, "text": "arctic warming"}
{"count": 1, "ids": [45, 800, 530, 357, 210], "pos": "np", "rank": 0.00028955135148233687, "text": "north american high-latitude vegetation response"}
{"count": 2, "ids": [1215, 1059], "pos": "np", "rank": 0.0002894555616327096, "text": "data sets"}
{"count": 13, "ids": [638], "pos": "nnp", "rank": 0.00028762603104462285, "text": "flora"}
{"count": 1, "ids": [245, 210], "pos": "np", "rank": 0.0002875359070636626, "text": "rapid response"}
{"count": 1, "ids": [69, 74, 722], "pos": "np", "rank": 0.00028727592209820896, "text": "global nitrogen cycling"}
{"count": 8, "ids": [564], "pos": "nn", "rank": 0.0002871607904315587, "text": "sensitivity"}
{"count": 1, "ids": [1590, 180, 598, 74], "pos": "np", "rank": 0.0002869303014023083, "text": "factorial high level nitrogen"}
{"count": 7, "ids": [600], "pos": "vbn", "rank": 0.000286854063459193, "text": "followed"}
{"count": 1, "ids": [1008], "pos": "np", "rank": 0.0002868166745579866, "text": "hydrology"}
{"count": 9, "ids": [625], "pos": "nn", "rank": 0.00028643125665497415, "text": "size"}
{"count": 1, "ids": [344, 625], "pos": "np", "rank": 0.00028643125665497415, "text": "willow size"}
{"count": 1, "ids": [106, 1108], "pos": "np", "rank": 0.0002862478564248722, "text": "current interglacial"}
{"count": 1, "ids": [515, 826, 324], "pos": "np", "rank": 0.00028598790794930496, "text": "promoted betula expansion"}
{"count": 1, "ids": [218, 36], "pos": "np", "rank": 0.0002859388185769637, "text": "climate conditions"}
{"count": 10, "ids": [19], "pos": "vbp", "rank": 0.0002851542171725317, "text": "identify"}
{"count": 8, "ids": [547], "pos": "nn", "rank": 0.00028510337001513776, "text": "fire"}
{"count": 1, "ids": [547, 147], "pos": "np", "rank": 0.00028510337001513776, "text": "fire disturbances"}
{"count": 1, "ids": [1427, 1425], "pos": "np", "rank": 0.00028452928264750284, "text": "sedimentary \u03b4"}
{"count": 1, "ids": [1652, 55], "pos": "np", "rank": 0.00028430163580317377, "text": "dissimilar results"}
{"count": 1, "ids": [2126], "pos": "np", "rank": 0.0002842469210931564, "text": "flowering"}
{"count": 5, "ids": [364], "pos": "np", "rank": 0.0002842190709790884, "text": "russia"}
{"count": 1, "ids": [1217, 226, 461], "pos": "np", "rank": 0.0002842096073037935, "text": "cloud-free base image"}
{"count": 6, "ids": [1387], "pos": "nn", "rank": 0.00028400744500753995, "text": "sampling"}
{"count": 1, "ids": [1906, 1289, 1387], "pos": "np", "rank": 0.00028400744500753995, "text": "line-point intercept sampling"}
{"count": 1, "ids": [220, 2066], "pos": "np", "rank": 0.0002837759468069794, "text": "environmental policy"}
{"count": 2, "ids": [1419, 74], "pos": "np", "rank": 0.0002836187729888261, "text": "reactive nitrogen"}
{"count": 1, "ids": [359, 565, 139], "pos": "np", "rank": 0.00028354078621196813, "text": "consistent growth increases"}
{"count": 1, "ids": [125, 1521], "pos": "np", "rank": 0.0002833330095744887, "text": "different age"}
{"count": 1, "ids": [82, 283], "pos": "np", "rank": 0.0002831201331422239, "text": "n sequestration"}
{"count": 1, "ids": [1304, 666, 1024], "pos": "np", "rank": 0.00028306889435685895, "text": "periodic population peaks"}
{"count": 1, "ids": [1151, 109], "pos": "np", "rank": 0.0002826421648740332, "text": "modern distributions"}
{"count": 2, "ids": [592], "pos": "vb", "rank": 0.0002821456971614156, "text": "lower"}
{"count": 1, "ids": [0, 0, 592], "pos": "np", "rank": 0.0002821456971614156, "text": "about 25% lower"}
{"count": 1, "ids": [779, 763, 242], "pos": "np", "rank": 0.00028198816909228265, "text": "annual ground temperature"}
{"count": 1, "ids": [1064, 1052], "pos": "np", "rank": 0.0002817195378384746, "text": "various sectors"}
{"count": 2, "ids": [251, 105], "pos": "np", "rank": 0.0002815351062682565, "text": "deciduous forest"}
{"count": 1, "ids": [33, 167, 276, 699, 1928], "pos": "np", "rank": 0.0002809032007469585, "text": "similar soil carbon stock trajectories"}
{"count": 1, "ids": [2029, 2030], "pos": "np", "rank": 0.0002808673426941582, "text": "red deer"}
{"count": 1, "ids": [77, 1145], "pos": "np", "rank": 0.00028071219929728535, "text": "terrestrial biosphere"}
{"count": 1, "ids": [1820, 536, 108], "pos": "np", "rank": 0.0002804573266115819, "text": "self-reinforcing feedback mechanisms"}
{"count": 11, "ids": [253], "pos": "vbd", "rank": 0.0002800491215865141, "text": "decreased"}
{"count": 10, "ids": [567], "pos": "vbn", "rank": 0.0002800159380943261, "text": "controlled"}
{"count": 1, "ids": [220, 567], "pos": "np", "rank": 0.0002800159380943261, "text": "environmental controls"}
{"count": 1, "ids": [1686, 121], "pos": "np", "rank": 0.0002800119798301092, "text": "high-frequency changes"}
{"count": 8, "ids": [697], "pos": "nn", "rank": 0.0002790952600619936, "text": "knowledge"}
{"count": 1, "ids": [65, 1664, 697], "pos": "np", "rank": 0.0002790952600619936, "text": "local traditional knowledge"}
{"count": 1, "ids": [192, 375], "pos": "np", "rank": 0.0002790027809405015, "text": "important ramifications"}
{"count": 1, "ids": [989, 213, 990], "pos": "np", "rank": 0.00027888492719448733, "text": "aboveground tundra phytomass"}
{"count": 1, "ids": [494], "pos": "np", "rank": 0.00027868007034009763, "text": "mountain"}
{"count": 1, "ids": [75], "pos": "np", "rank": 0.0002785564123225391, "text": "deposition"}
{"count": 7, "ids": [328], "pos": "nn", "rank": 0.0002781076860665158, "text": "extent"}
{"count": 1, "ids": [292, 320], "pos": "np", "rank": 0.00027790239930705764, "text": "pnl hypothesis"}
{"count": 3, "ids": [1168], "pos": "np", "rank": 0.00027780732532142223, "text": "shifts"}
{"count": 1, "ids": [78, 1092], "pos": "np", "rank": 0.0002777557475947024, "text": "plant detritus"}
{"count": 1, "ids": [1597, 2111, 618], "pos": "np", "rank": 0.0002776553443502631, "text": "mesic riparian site"}
{"count": 4, "ids": [660], "pos": "np", "rank": 0.0002772872520621405, "text": "quaternary"}
{"count": 1, "ids": [602, 864], "pos": "np", "rank": 0.0002772143199423571, "text": "large proportion"}
{"count": 1, "ids": [1186, 167], "pos": "np", "rank": 0.00027718612324765493, "text": "chemical soil"}
{"count": 1, "ids": [823, 39], "pos": "np", "rank": 0.00027709276098340205, "text": "transect studies"}
{"count": 1, "ids": [117, 86, 659], "pos": "np", "rank": 0.0002770362040825781, "text": "major northern refugium"}
{"count": 1, "ids": [85, 100], "pos": "np", "rank": 0.00027698266202268705, "text": "temperate ecosystem"}
{"count": 1, "ids": [1112, 74, 1424, 1111], "pos": "np", "rank": 0.0002768128704277101, "text": "stable nitrogen isotopic values"}
{"count": 7, "ids": [636], "pos": "nns", "rank": 0.0002762101667994813, "text": "histories"}
{"count": 1, "ids": [638, 636], "pos": "np", "rank": 0.0002762101667994813, "text": "flora history"}
{"count": 9, "ids": [403], "pos": "nn", "rank": 0.0002761555944483162, "text": "reconstruction"}
{"count": 1, "ids": [889, 450, 296, 403], "pos": "np", "rank": 0.0002761555944483162, "text": "quantitative tree biomass reconstructions"}
{"count": 1, "ids": [890, 216], "pos": "np", "rank": 0.00027614330847713496, "text": "participant observation"}
{"count": 1, "ids": [991, 387], "pos": "np", "rank": 0.0002756311520650648, "text": "ndvi trend"}
{"count": 7, "ids": [266], "pos": "nns", "rank": 0.0002754979764645449, "text": "implications"}
{"count": 1, "ids": [117, 266], "pos": "np", "rank": 0.0002754979764645449, "text": "major implications"}
{"count": 1, "ids": [1463, 65, 1464, 36], "pos": "np", "rank": 0.0002748895801107436, "text": "harsh local microclimatic conditions"}
{"count": 12, "ids": [598], "pos": "nns", "rank": 0.0002745183410026825, "text": "levels"}
{"count": 1, "ids": [685, 598], "pos": "np", "rank": 0.0002745183410026825, "text": "diploid level"}
{"count": 1, "ids": [1342, 1343], "pos": "np", "rank": 0.0002737639899596305, "text": "fragment-length polymorphism"}
{"count": 1, "ids": [296, 119], "pos": "np", "rank": 0.00027374351129676807, "text": "biomass accumulation"}
{"count": 1, "ids": [0, 650, 434], "pos": "np", "rank": 0.0002735915167265406, "text": "the quarternary period"}
{"count": 1, "ids": [105, 975], "pos": "np", "rank": 0.00027344701772379174, "text": "forest floor"}
{"count": 3, "ids": [1988], "pos": "np", "rank": 0.000272998122353139, "text": "scandinavian"}
{"count": 3, "ids": [821, 776], "pos": "np", "rank": 0.00027299650140226575, "text": "extensive greening"}
{"count": 4, "ids": [174], "pos": "np", "rank": 0.00027288168317319596, "text": "european"}
{"count": 3, "ids": [183], "pos": "np", "rank": 0.0002726205203982077, "text": "region"}
{"count": 2, "ids": [1358, 554], "pos": "np", "rank": 0.0002725249091409353, "text": "genetic structure"}
{"count": 1, "ids": [1365, 79], "pos": "np", "rank": 0.00027223428145311217, "text": "gene diversity"}
{"count": 1, "ids": [0, 237, 3, 0, 357, 1069], "pos": "np", "rank": 0.0002721261361092521, "text": "the international association of vegetation science"}
{"count": 1, "ids": [427, 930, 317], "pos": "np", "rank": 0.00027208107956861144, "text": "strong regression model"}
{"count": 2, "ids": [84], "pos": "np", "rank": 0.0002718303874314579, "text": "threat"}
{"count": 1, "ids": [632, 76], "pos": "np", "rank": 0.0002718257493558225, "text": "cumulative effects"}
{"count": 2, "ids": [570], "pos": "nn", "rank": 0.00027144298070560575, "text": "relative"}
{"count": 1, "ids": [570, 153], "pos": "np", "rank": 0.00027144298070560575, "text": "relative role"}
{"count": 1, "ids": [242, 139], "pos": "np", "rank": 0.0002712129259418826, "text": "temperature increase"}
{"count": 1, "ids": [125, 1119, 48], "pos": "np", "rank": 0.00027076909032443404, "text": "different stratigraphic units"}
{"count": 1, "ids": [805], "pos": "np", "rank": 0.0002701188805133152, "text": "signal"}
{"count": 1, "ids": [101, 1693, 208], "pos": "np", "rank": 0.0002701048959195482, "text": "arctic arthropod abundance"}
{"count": 10, "ids": [109], "pos": "nn", "rank": 0.00027005810634397344, "text": "distribution"}
{"count": 1, "ids": [260, 466, 109], "pos": "np", "rank": 0.00027005810634397344, "text": "wide geographic distribution"}
{"count": 1, "ids": [203, 101, 618], "pos": "np", "rank": 0.0002700538128374771, "text": "low arctic site"}
{"count": 8, "ids": [916], "pos": "vb", "rank": 0.0002697926338424419, "text": "improve"}
{"count": 3, "ids": [565], "pos": "np", "rank": 0.0002697535221168958, "text": "growth"}
{"count": 6, "ids": [129], "pos": "vbd", "rank": 0.00026968791373110457, "text": "led"}
{"count": 2, "ids": [1772, 121], "pos": "np", "rank": 0.0002696411657623274, "text": "land-cover changes"}
{"count": 1, "ids": [833, 147, 544], "pos": "np", "rank": 0.00026956378108608536, "text": "active disturbance regimes"}
{"count": 1, "ids": [784, 768], "pos": "np", "rank": 0.00026952435525358717, "text": "coastal zone"}
{"count": 5, "ids": [497], "pos": "nn", "rank": 0.000269478558265778, "text": "mineral"}
{"count": 2, "ids": [443], "pos": "nnp", "rank": 0.00026924032259982084, "text": "circumpolar"}
{"count": 1, "ids": [999, 213, 448], "pos": "np", "rank": 0.00026892475122325567, "text": "southernmost tundra subzones"}
{"count": 1, "ids": [444], "pos": "np", "rank": 0.00026855406892823135, "text": "map"}
{"count": 2, "ids": [341, 820, 101], "pos": "np", "rank": 0.0002681031406704891, "text": "west siberian arctic"}
{"count": 1, "ids": [675, 654], "pos": "np", "rank": 0.00026808517521313826, "text": "detailed proposals"}
{"count": 1, "ids": [593, 546, 831], "pos": "np", "rank": 0.0002677511019538161, "text": "deeper thaw depth"}
{"count": 6, "ids": [1019], "pos": "np", "rank": 0.0002675403036137565, "text": "alnus"}
{"count": 1, "ids": [309, 1955], "pos": "np", "rank": 0.00026742992808756596, "text": "net nitrification"}
{"count": 1, "ids": [1123, 1122, 412, 495], "pos": "np", "rank": 0.00026741238446275863, "text": "middle weichselian ice complex"}
{"count": 6, "ids": [348], "pos": "nnp", "rank": 0.00026738887892677963, "text": "slope"}
{"count": 1, "ids": [930, 348], "pos": "np", "rank": 0.00026738887892677963, "text": "regression slope"}
{"count": 1, "ids": [359, 113], "pos": "np", "rank": 0.0002672528283503921, "text": "consistent estimates"}
{"count": 5, "ids": [771, 772, 158], "pos": "np", "rank": 0.0002670358498371805, "text": "macmillan publishers limited"}
{"count": 1, "ids": [28, 210], "pos": "np", "rank": 0.00026699762798768664, "text": "single response"}
{"count": 2, "ids": [103], "pos": "np", "rank": 0.0002668426546748553, "text": "systems"}
{"count": 1, "ids": [1048], "pos": "np", "rank": 0.0002666993039660959, "text": "status"}
{"count": 11, "ids": [733], "pos": "nn", "rank": 0.00026659072533461803, "text": "gradient"}
{"count": 1, "ids": [733, 452], "pos": "np", "rank": 0.00026659072533461803, "text": "gradient methods"}
{"count": 1, "ids": [2126, 606], "pos": "np", "rank": 0.00026640964621186836, "text": "flowering times"}
{"count": 1, "ids": [69, 280], "pos": "np", "rank": 0.0002662825985772772, "text": "global biogeochemistry"}
{"count": 1, "ids": [1427, 1515, 1335, 1516], "pos": "np", "rank": 0.0002661992550563633, "text": "sedimentary ancient dna meta-barcoding"}
{"count": 3, "ids": [1249], "pos": "np", "rank": 0.00026606605451722073, "text": "pinus"}
{"count": 1, "ids": [1014, 214], "pos": "np", "rank": 0.000266034878062767, "text": "novel biomes"}
{"count": 1, "ids": [818, 782], "pos": "np", "rank": 0.00026585638612812353, "text": "s. lanata"}
{"count": 1, "ids": [482, 297, 276], "pos": "np", "rank": 0.0002655355826462004, "text": "total organic carbon"}
{"count": 5, "ids": [552], "pos": "vbd", "rank": 0.00026540761172114537, "text": "contributed"}
{"count": 1, "ids": [1558, 1106, 1551], "pos": "np", "rank": 0.00026530329203609116, "text": "methane-emitting wet depressions"}
{"count": 3, "ids": [78, 128], "pos": "np", "rank": 0.0002651304863403978, "text": "plant interactions"}
{"count": 1, "ids": [1112, 207, 1181], "pos": "np", "rank": 0.0002649288901686743, "text": "stable shrub patches"}
{"count": 1, "ids": [1025, 424, 1271, 78], "pos": "np", "rank": 0.000264767691673763, "text": "persistent snow deforms plants"}
{"count": 1, "ids": [251, 122], "pos": "np", "rank": 0.0002641687580715357, "text": "deciduous species"}
{"count": 1, "ids": [842, 297, 276, 1118], "pos": "np", "rank": 0.0002637049860907129, "text": "average organic carbon inventories"}
{"count": 1, "ids": [1372, 2053, 454], "pos": "np", "rank": 0.00026367960925538953, "text": "previous modeling approaches"}
{"count": 7, "ids": [1121], "pos": "nnp", "rank": 0.0002636481920406191, "text": "-3"}
{"count": 1, "ids": [2027, 2028], "pos": "np", "rank": 0.00026344760872491275, "text": "heck cattle"}
{"count": 1, "ids": [560], "pos": "np", "rank": 0.0002634174989724477, "text": "project"}
{"count": 1, "ids": [802, 266], "pos": "np", "rank": 0.00026330131705267564, "text": "significant implications"}
{"count": 1, "ids": [1755, 1756], "pos": "np", "rank": 0.00026316933149748246, "text": "solidago virgaurea"}
{"count": 8, "ids": [13], "pos": "nn", "rank": 0.0002628821580487332, "text": "measure"}
{"count": 1, "ids": [2036, 889, 13], "pos": "np", "rank": 0.0002628821580487332, "text": "robust quantitative measure"}
{"count": 2, "ids": [1583, 1584], "pos": "np", "rank": 0.0002623924336274025, "text": "caribou exclusion"}
{"count": 2, "ids": [331, 195], "pos": "np", "rank": 0.00026235468163112206, "text": "past decade"}
{"count": 1, "ids": [450, 757, 250, 324], "pos": "np", "rank": 0.000262278974777261, "text": "tree canopy cover expansion"}
{"count": 1, "ids": [246, 36], "pos": "np", "rank": 0.0002622423673427691, "text": "growing conditions"}
{"count": 4, "ids": [1923], "pos": "np", "rank": 0.00026183170505138226, "text": "clm4.5"}
{"count": 2, "ids": [357, 1069], "pos": "np", "rank": 0.00026165974625889623, "text": "vegetation science"}
{"count": 1, "ids": [1159, 100], "pos": "np", "rank": 0.00026159473635476, "text": "subarctic ecosystems"}
{"count": 2, "ids": [482, 250], "pos": "np", "rank": 0.0002613489442404164, "text": "total cover"}