-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbibliography.bib
More file actions
1254 lines (1153 loc) · 65.8 KB
/
Copy pathbibliography.bib
File metadata and controls
1254 lines (1153 loc) · 65.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@article{teixeira2022,
title = {River dike grasslands can reconcile biodiversity and different ecosystem services to provide multifunctionality},
author = {Teixeira, Leonardo H. and Bauer, Markus and Moosner, Michaela and Kollmann, Johannes},
year = {2022},
month = {12},
date = {2022-12},
journal = {Basic and Applied Ecology},
volume = {66},
pages = {22--30},
doi = {10.1016/j.baae.2022.12.001},
url = {http://dx.doi.org/10.1016/j.baae.2022.12.001},
langid = {en}
}
@article{lme4,
title = {Fitting Linear Mixed-Effects Models Using {\textbraceleft}lme4{\textbraceright}},
author = {Bates, Douglas and Machler, Martin and Bolker, Ben and Walker, Steve},
year = {2015},
date = {2015},
volume = {67},
doi = {10.18637/jss.v067.i01}
}
@article{base,
title = {R: A Language and Environment for Statistical Computing},
author = {R Core Team, },
year = {2022},
date = {2022},
url = {https://www.R-project.org/}
}
@article{mucina2016,
title = {Vegetation of Europe: hierarchical floristic classification system of vascular plant, bryophyte, lichen, and algal communities},
author = {Mucina, Ladislav and {Bültmann}, Helga and {Dierßen}, Klaus and Theurillat, {Jean{-}Paul} and Raus, Thomas and {{\v{C}}arni}, {Andra{\v{z}}} and {{\v{S}}umberová}, {Kate{\v{r}}ina} and Willner, Wolfgang and Dengler, {Jürgen} and {García}, {Rosario Gavilán} and {Chytrý}, Milan and {Hájek}, Michal and Di Pietro, Romeo and Iakushenko, Dmytro and Pallas, Jens and {Daniëls}, Fred J.A. and Bergmeier, Erwin and Santos Guerra, Arnoldo and Ermakov, Nikolai and {Valachovi{\v{c}}}, Milan and {Schaminée}, Joop H.J. and Lysenko, Tatiana and Didukh, Yakiv P. and Pignatti, Sandro and Rodwell, John S. and Capelo, Jorge and Weber, Heinrich E. and Solomeshch, Ayzik and Dimopoulos, Panayotis and Aguiar, Carlos and Hennekens, Stephan M. and {Tichý}, {Lubomír}},
year = {2016},
month = {11},
date = {2016-11},
journal = {Applied Vegetation Science},
pages = {3--264},
volume = {19},
doi = {10.1111/avsc.12257},
url = {http://dx.doi.org/10.1111/avsc.12257},
langid = {en}
}
@article{dwd2021,
title = {Langjähriges Mittel der Wetterstation Metten 1981--2010},
author = {Deutscher Wetterdienst, },
year = {2021},
date = {2021},
url = {www.dwd.de},
note = {Citation Key: DeutscherWetterdienst.2021},
langid = {ngerman}
}
@article{cdc2022temp,
title = {Annual station observations of air temperature at 2 m above ground in °C for {Germany}. Version v21.3: Station {Metten}},
author = {Climate Data Center of the German Meteorological Service, },
year = {2022},
date = {2022},
url = {https://cdc.dwd.de/portal/},
note = {Citation Key: ClimateDataCenteroftheGermanMeteorologicalService.2022},
langid = {en}
}
@article{cdc2022prec,
title = {Annual station observations of precipitation in mm for {Germany}. Version v21.3: Station {Metten}},
author = {Climate Data Center of the German Meteorological Service, },
year = {2022},
date = {2022},
url = {https://cdc.dwd.de/portal/},
note = {Citation Key: ClimateDataCenteroftheGermanMeteorologicalService.2022b},
langid = {en}
}
@article{lfu2021waterlevel,
title = {Water level {Deggendorf / Donau}},
author = {{Bayerisches Landesamt für Umwelt}, },
year = {2021},
date = {2021},
url = {https://www.gkd.bayern.de/en/rivers/waterlevel/passau/deggendorf-10081004/total-period},
langid = {en}
}
@article{lfu2021discharge,
title = {Discharge {Pfelling / Donau}},
author = {{Bayerisches Landesamt für Umwelt}, },
year = {2021},
date = {2021},
url = {https://www.gkd.bayern.de/en/rivers/discharge/passau/pfelling-10078000/total-period},
langid = {en}
}
@article{chung2013,
title = {A Nondegenerate Penalized Likelihood Estimator for Variance Parameters in Multilevel Models},
author = {Chung, Yeojin and Rabe-Hesketh, Sophia and Dorie, Vincent and Gelman, Andrew and Liu, Jingchen},
year = {2013},
month = {03},
date = {2013-03-12},
journal = {Psychometrika},
pages = {685--709},
volume = {78},
doi = {10.1007/s11336-013-9328-2},
url = {http://dx.doi.org/10.1007/s11336-013-9328-2},
langid = {en}
}
@book{BraunBlanquet.1964,
title = {Pflanzensoziologie: Grundzüge der Vegetationskunde},
author = {Braun-Blanquet, Josias},
year = {1964},
date = {1964},
publisher = {Springer, Wien--NewYork},
edition = {3},
doi = {10.1007/978-3-7091-8110-2},
address = {Wien, New York},
langid = {ngerman}
}
@article{brms,
title = {{brms}: An {R} package for {Bayesian} multilevel models using {Stan}},
author = {{Bürkner}, Paul-Christian},
year = {2017},
date = {2017},
journal = {Journal of Statistical Software},
pages = {1--28},
volume = {80},
doi = {10.18637/jss.v080.i01},
langid = {en}
}
@article{bayesplot,
title = {{bayesplot}: Plotting for {Bayesian} models},
author = {Gabry, Jonah and Mahr, Tristan},
year = {2022},
date = {2022},
url = {https://mc-stan.org/bayesplot/},
langid = {en}
}
@article{vegan,
title = {{vegan}: Community ecology package},
author = {Oksanen, Jari and Simpson, Gavin L. and Blanchet, F. Guillaume and Kindt, Roeland and Legendre, Pierre and Minchin, Peter R. and {O'Hara}, R.B. and Solymos, Peter and Stevens, M. Henry H. and Szoecs, Eduard and Wagner, Helene and Barbour, Matt and Bedward, Michael and Bolker, Ben and Borcard, Daniel and Carvalho, Gustavo and Chirico, Michael and De Caceres, Miquel and Durand, Sebastien and Evangelista, Heloisa Beatriz Antoniazi and FitzJohn, Rich and Friendly, Michael and Furneaux, Brendan and Hannigan, Geoffrey and Hill, Mark O. and Lahti, Leo and McGlinn, Dan and Ouellette, Marie-Helene and Ribeiro Cunha, Eduardo and Smith, Tyler and Stier, Adrian and Ter Braak, Cajo J.F. and Weedon, James},
year = {2022},
date = {2022},
url = {https://CRAN.R-project.org/package=vegan},
langid = {en}
}
@article{londo1976,
title = {The decimal scale for releves of permanent quadrats},
author = {Londo, G.},
year = {1976},
month = {12},
date = {1976-12},
journal = {Vegetatio},
pages = {61--64},
volume = {33},
doi = {10.1007/BF00055300},
url = {http://link.springer.com/10.1007/BF00055300},
langid = {en}
}
@article{lemoine2022,
title = {Nativeness is not binary. A graduated terminology for native and non{-}native species in the {Anthropocene}},
author = {Lemoine, Rhys T. and Svenning, {Jens{-}Christian}},
year = {2022},
month = {03},
date = {2022-03-03},
journal = {Restoration Ecology},
doi = {10.1111/rec.13636},
url = {https://onlinelibrary.wiley.com/doi/10.1111/rec.13636},
langid = {en}
}
@article{kruschke2021,
title = {Bayesian analysis reporting guidelines},
author = {Kruschke, John K.},
year = {2021},
date = {2021},
journal = {Nature Human Behaviour},
pages = {1282--1291},
volume = {5},
doi = {10.1038/s41562-021-01177-7},
note = {Citation Key: Kruschke.2021},
langid = {en},
}
@article{gabry2019,
title = {Visualization in Bayesian workflow},
author = {Gabry, Jonah and Simpson, Daniel and Vehtari, Aki and Betancourt, Michael and Gelman, Andrew},
year = {2019},
date = {2019},
journal = {Journal of the Royal Statistical Society: Series A},
pages = {389--402},
volume = {182},
doi = {10.1111/rssa.12378},
langid = {en},
note = {Citation Key: Gabry.2019}
}
@article{gelman2019,
title = {R-squared for Bayesian regression models},
author = {Gelman, Andrew and Goodrich, Ben and Gabry, Jonah and Vehtari, Aki},
year = {2019},
month = {05},
date = {2019-05-13},
journal = {The American Statistician},
pages = {307--309},
volume = {73},
doi = {10.1080/00031305.2018.1549100},
url = {http://dx.doi.org/10.1080/00031305.2018.1549100},
langid = {en}
}
@article{lemoine2019,
title = {Moving beyond noninformative priors: Why and how to choose weakly informative priors in Bayesian analyses},
author = {Lemoine, Nathan P.},
year = {2019},
date = {2019},
journal = {Oikos},
pages = {912--928},
volume = {128},
doi = {10.1111/oik.05985},
note = {Citation Key: Lemoine.2019},
langid = {en}
}
@article{hari2020,
title = {Increased future occurrences of the exceptional 2018--2019 Central European drought under global warming},
author = {Hari, Vittal and Rakovec, Oldrich and Markonis, Yannis and Hanel, Martin and Kumar, Rohini},
year = {2020},
month = {08},
date = {2020-08-06},
journal = {Scientific Reports},
pages = {12207},
volume = {10},
doi = {10.1038/s41598-020-68872-9},
url = {http://dx.doi.org/10.1038/s41598-020-68872-9},
langid = {en}
}
@article{Sabatini.2021,
title = {sPlotOpen -- An environmentally balanced, open{-}access, global dataset of vegetation plots},
author = {Sabatini, Francesco Maria and Lenoir, Jonathan and Hattab, Tarek and Arnst, Elise Aimee and {Chytrý}, Milan and Dengler, {Jürgen} and de Ruffray, Patrice and Hennekens, Stephan M. and Jandt, Ute and Jansen, Florian and {Jiménez{-}Alfaro}, Borja and Kattge, Jens and Levesley, Aurora and Pillar, {Valério D.} and Purschke, Oliver and Sandel, Brody and Sultana, Fahmida and Aavik, Tsipe and {A{\'{c}}i{\'{c}}}, Svetlana and Acosta, Alicia T. R. and Agrillo, Emiliano and Alvarez, Miguel and Apostolova, Iva and Arfin Khan, Mohammed A. S. and Arroyo, Luzmila and Attorre, Fabio and Aubin, Isabelle and Banerjee, Arindam and Bauters, Marijn and Bergeron, Yves and Bergmeier, Erwin and Biurrun, Idoia and Bjorkman, Anne D. and Bonari, Gianmaria and Bondareva, Viktoria and Brunet, {Jörg} and {{\v{C}}arni}, {Andra{\v{z}}} and Casella, Laura and Cayuela, Luis and {{\v{C}}erný}, {Tomá{\v{s}}} and Chepinoga, Victor and Csiky, {János} and {{\'{C}}u{\v{s}}terevska}, Renata and de Bie, Els and Gasper, {André Luis} and de Sanctis, Michele and Dimopoulos, Panayotis and {Dole{\v{z}}al}, {Ji{\v{r}}í} and Dziuba, Tetiana and {El{-}Sheikh}, {Mohamed Abd El{-}Rouf Mousa} and Enquist, Brian J. and Ewald, {Jörg} and Fazayeli, Farideh and Field, Richard and Finckh, Manfred and Gachet, Sophie and {Galán{-}de{-}Mera}, Antonio and Garbolino, Emmanuel and Gholizadeh, Hamid and Giorgis, Melisa and Golub, Valentin and Alsos, Inger Greve and Grytnes, {John{-}Arvid} and Guerin, Gregory Richard and {Gutiérrez}, Alvaro G. and Haider, Sylvia and Hatim, Mohamed Z. and {Hérault}, Bruno and Hinojos Mendoza, Guillermo and {Hölzel}, Norbert and Homeier, {Jürgen} and Hubau, Wannes and Indreica, Adrian and Janssen, John A. M. and Jedrzejek, Birgit and Jentsch, Anke and {Jürgens}, Norbert and {K{\k{a}}cki}, Zygmunt and Kapfer, Jutta and Karger, Dirk Nikolaus and {Kavgac{\i}}, Ali and Kearsley, Elizabeth and Kessler, Michael and Khanina, Larisa and Killeen, Timothy and Korolyuk, Andrey Y. and Kreft, Holger and {Kühl}, Hjalmar S. and Kuzemko, Anna and Landucci, Flavia and Lengyel, Attila and Lens, Frederic and Lingner, {Débora Vanessa} and Liu, Hongyan and Lysenko, Tatiana and Mahecha, Miguel D. and {Marcenò}, Corrado and Martynenko, Vasiliy and Moeslund, Jesper Erenskjold and Monteagudo Mendoza, Abel and Mucina, Ladislav and {Müller}, Jonas V. and Munzinger, {Jérôme} and Naqinezhad, Alireza and Noroozi, Jalil and Nowak, Arkadiusz and Onyshchenko, Viktor and Overbeck, Gerhard E. and {Pärtel}, Meelis and Pauchard, {Aníbal} and Peet, Robert K. and {Peñuelas}, Josep and {Pérez{-}Haase}, Aaron and Peterka, {Tomá{\v{s}}} and {Pet{\v{r}}ík}, Petr and Peyre, Gwendolyn and Phillips, Oliver L. and Prokhorov, Vadim and {Ra{\v{s}}omavi{\v{c}}ius}, Valerijus and Revermann, Rasmus and {Rivas{-}Torres}, Gonzalo and Rodwell, John S. and Ruprecht, Eszter and {R{\={u}}si{\c{n}}a}, Solvita and Samimi, Cyrus and Schmidt, Marco and Schrodt, Franziska and Shan, Hanhuai and Shirokikh, Pavel and {{\v{S}}ibík}, Jozef and {{\v{S}}ilc}, Urban and {Sklená{\v{r}}}, Petr and {{\v{S}}kvorc}, {{\v{Z}}eljko} and Sparrow, Ben and Sperandii, Marta Gaia and {Stan{\v{c}}i{\'{c}}}, Zvjezdana and Svenning, {Jens{-}Christian} and Tang, Zhiyao and Tang, Cindy Q. and Tsiripidis, Ioannis and Vanselow, {Kim André} and {Vásquez Martínez}, Rodolfo and Vassilev, Kiril and {Vélez{-}Martin}, Eduardo and Venanzoni, Roberto and Vibrans, Alexander Christian and Violle, Cyrille and Virtanen, Risto and Wehrden, Henrik and Wagner, Viktoria and Walker, Donald A. and Waller, Donald M. and Wang, {Hua{-}Feng} and Wesche, Karsten and Whitfeld, Timothy J. S. and Willner, Wolfgang and Wiser, Susan K. and Wohlgemuth, Thomas and Yamalov, Sergey and Zobel, Martin and Bruelheide, Helge and Bates, Amanda},
year = {2021},
date = {2021},
journal = {Global Ecology and Biogeography},
pages = {1740--1764},
volume = {30},
doi = {10.1111/geb.13346},
note = {Citation Key: Sabatini.2021}
}
@article{bauer2023,
title = {Beta diversity of restored river dike grasslands is strongly influenced by uncontrolled spatio-temporal variability},
author = {Bauer, Markus and Huber, Jakob and Kollmann, Johannes},
year = {2023},
month = {01},
date = {2023-01-19},
journal = {EcoEvoRxiv},
url = {http://dx.doi.org/10.32942/X2959J}
}
@article{Chytry.2020,
title = {EUNIS Habitat Classification: Expert system, characteristic species combinations and distribution maps of European habitats},
author = {{Chytrý}, Milan and {Tichý}, {Lubomír} and Hennekens, Stephan M. and {Knollová}, Ilona and Janssen, John A. M. and Rodwell, John S. and Peterka, {Tomá{\v{s}}} and {Marcenò}, Corrado and Landucci, Flavia and Danihelka, {Ji{\v{r}}í} and {Hájek}, Michal and Dengler, {Jürgen} and {Novák}, Pavel and Zukal, Dominik and {Jiménez{-}Alfaro}, Borja and Mucina, Ladislav and Abdulhak, Sylvain and {A{\'{c}}i{\'{c}}}, Svetlana and Agrillo, Emiliano and Attorre, Fabio and Bergmeier, Erwin and Biurrun, Idoia and Boch, Steffen and {Bölöni}, {János} and Bonari, Gianmaria and Braslavskaya, Tatiana and Bruelheide, Helge and Campos, Juan Antonio and {{\v{C}}arni}, {Andra{\v{z}}} and Casella, Laura and {{\'{C}}uk}, Mirjana and {{\'{C}}u{\v{s}}terevska}, Renata and de Bie, Els and Delbosc, Pauline and Demina, Olga and Didukh, Yakiv P. and {Dít{\v{e}}}, Daniel and Dziuba, Tetiana and Ewald, {Jörg} and {Gavilán}, Rosario G. and {Gégout}, {Jean{-}Claude} and Del Giusso Galdo, Gian Pietro and Golub, Valentin and Goncharova, Nadezhda and Goral, Friedemann and Graf, Ulrich and Indreica, Adrian and Isermann, Maike and Jandt, Ute and Jansen, Florian and Jansen, Jan and {Ja{\v{s}}ková}, Anni and {Jirou{\v{s}}ek}, Martin and {K{\k{a}}cki}, Zygmunt and {Kalníková}, Veronika and {Kavgac{\i}}, Ali and Khanina, Larisa and Yu. Korolyuk, Andrey and Kozhevnikova, Mariya and Kuzemko, Anna and {Küzmi{\v{c}}}, Filip and Kuznetsov, Oleg L. and {Laivi{\c{n}}{\v{s}}}, {M{\={a}}ris} and Lavrinenko, Igor and Lavrinenko, Olga and Lebedeva, Maria and {Lososová}, {Zde{\v{n}}ka} and Lysenko, Tatiana and Maciejewski, Lise and Mardari, Constantin and {Marin{\v{s}}ek}, Aleksander and Napreenko, Maxim G. and Onyshchenko, Viktor and {Pérez{-}Haase}, Aaron and Pielech, Remigiusz and Prokhorov, Vadim and {Ra{\v{s}}omavi{\v{c}}ius}, Valerijus and {Rodríguez{-}Rojo}, {María Pilar} and {R{\={u}}si{\c{n}}a}, Solvita and Schrautzer, Joachim and {{\v{S}}ibík}, Jozef and {{\v{S}}ilc}, Urban and {{\v{S}}kvorc}, {{\v{Z}}eljko} and Smagin, Viktor A. and {Stan{\v{c}}i{\'{c}}}, Zvjezdana and Stanisci, Angela and Tikhonova, Elena and Tonteri, Tiina and Uogintas, Domas and {Valachovi{\v{c}}}, Milan and Vassilev, Kiril and Vynokurov, Denys and Willner, Wolfgang and Yamalov, Sergey and Evans, Douglas and Palitzsch Lund, Mette and Spyropoulou, Rania and Tryfon, Eleni and {Schaminée}, Joop H. J.},
year = {2020},
date = {2020},
journal = {Applied Vegetation Science},
pages = {648--675},
volume = {23},
doi = {10.1111/avsc.12519},
note = {Citation Key: Chytry.2020}
}
@book{BodenkundlKartieranl.2005,
title = {Bodenkundliche Kartieranleitung},
editor = {{Bundesanstalt für Geowissenschaften und Rohstoffe}, },
year = {2005},
date = {2005},
publisher = {Schweizerbart, Stuttgart. ISBN 978-3-510-95920-4.},
edition = {5},
note = {Citation Key: BundesanstaltfurGeowissenschaftenundRohstoffe.2005},
address = {Stuttgart},
langid = {ngerman}
}
@article{WorldFloraOnline.2021,
title = {World flora online: Published on the internet},
author = {World Flora Online, },
year = {2021},
date = {2021},
url = {www.worldfloraonline.org/},
note = {Citation Key: WorldFloraOnline.2021}
}
@article{Kiehl.2010,
title = {Species introduction in restoration projects. Evaluation of different techniques for the establishment of semi-natural grasslands in Central and Northwestern Europe},
author = {Kiehl, Kathrin and Kirmer, Anita and Donath, Tobias W. and Rasran, Leonid and {Hölzel}, Norbert},
year = {2010},
date = {2010},
journal = {Basic and Applied Ecology},
pages = {285--299},
volume = {11},
doi = {10.1016/j.baae.2009.12.004},
note = {Citation Key: Kiehl.2010},
langid = {en}
}
@article{Torok.2010,
title = {Restoring grassland biodiversity: Sowing low-diversity seed mixtures can lead to rapid favourable changes},
author = {{Török}, {Péter} and {Deák}, {Balázs} and Vida, {Enik{{\H o}}} and {Valkó}, Orsolya and Lengyel, Szabolcs and {Tóthmérész}, {Béla}},
year = {2010},
date = {2010},
journal = {Biological Conservation},
pages = {806--812},
volume = {143},
doi = {10.1016/j.biocon.2009.12.024},
note = {Citation Key: Torok.2010}
}
@article{Engst.2016,
title = {Functional community ecology meets restoration ecology: Assessing the restoration success of alluvial floodplain meadows with functional traits},
author = {Engst, Karina and Baasch, Annett and Erfmeier, Alexandra and Jandt, Ute and May, Konstanze and Schmiede, Ralf and Bruelheide, Helge},
year = {2016},
date = {2016},
journal = {Journal of Applied Ecology},
pages = {751--764},
volume = {53},
doi = {10.1111/1365-2664.12623},
note = {Citation Key: Engst.2016}
}
@article{Freitag.2021,
title = {Restoration of plant diversity in permanent grassland by seeding: Assessing the limiting factors along land-use gradients},
author = {Freitag, Martin and Klaus, Valentin H. and Bollinger, Ralph and Hamer, Ute and Kleinebecker, Till and Prati, Daniel and {Schäfer}, Deborah and {Hölzel}, Norbert},
year = {2021},
date = {2021},
journal = {Journal of Applied Ecology},
pages = {1681--1692},
volume = {58},
doi = {10.1111/1365-2664.13883},
note = {Citation Key: Freitag.2021}
}
@article{Torok.2021,
title = {The present and future of grassland restoration},
author = {{Török}, {Péter} and Brudvig, Lars A. and Kollmann, Johannes and Price, Jodi N. and {Tóthmérész}, {Béla}},
year = {2021},
date = {2021},
journal = {Restoration Ecology},
pages = {e13378},
volume = {29},
doi = {10.1111/rec.13378},
note = {Citation Key: Torok.2021}
}
@article{Bardgett.2021,
title = {Combatting global grassland degradation},
author = {Bardgett, Richard D. and Bullock, James M. and Lavorel, Sandra and Manning, Peter and Schaffner, Urs and Ostle, Nicholas and Chomel, Mathilde and Durigan, Giselda and Fry, Ellen L. and Johnson, David and Lavallee, Jocelyn M. and Le Provost, {Gaëtane} and Luo, Shan and Png, Kenny and Sankaran, Mahesh and Hou, Xiangyang and Zhou, Huakun and Ma, Li and Ren, Weibo and Li, Xiliang and Ding, Yong and Li, Yuanheng and Shi, Hongxiao},
year = {2021},
date = {2021},
journal = {Nature Reviews Earth & Environment},
pages = {720--735},
volume = {2},
doi = {10.1038/s43017-021-00207-2},
note = {Citation Key: Bardgett.2021}
}
@article{Buisson.2022,
title = {Ancient grasslands guide ambitious goals in grassland restoration},
author = {Buisson, Elise and Archibald, Sally and Fidelis, Alessandra and Suding, Katharine N.},
year = {2022},
date = {2022},
journal = {Science},
pages = {594--598},
volume = {377},
doi = {10.1126/science.abo4605},
note = {Citation Key: Buisson.2022}
}
@article{dudley2020,
title = {Grasslands and savannahs in the UN Decade on Ecosystem Restoration},
author = {Dudley, Nigel and Eufemia, Luca and Fleckenstein, Martina and Periago, Maria E. and Petersen, Ilka and Timmers, Jean F.},
year = {2020},
month = {11},
date = {2020-11},
journal = {Restoration Ecology},
pages = {1313--1317},
volume = {28},
doi = {10.1111/rec.13272},
url = {http://dx.doi.org/10.1111/rec.13272},
langid = {en}
}
@misc{COP.2014,
title = {Convention on Biological Diversity (CBD): Aichi biodiversity targets 14 and 15},
year = {2014},
url = {https://www.cbd.int/sp/targets/},
note = {Citation Key: COP.2014},
langid = {en}
}
@book{Janssen.2016,
title = {European red list of habitats: Part 2. Terrestrial and freshwater habitats},
author = {Janssen, John A. M. and Rodwell, John S. and {García-Criado}, M. and Gubbay, S. and Haynes, T. and Nieto, A. and Sanders, Nathan J. and Landucci, Flavia and Loidi, Javier and Ssymank, Axel and Tahvanainen, T. and Valderrabano, M. and Acosta, Alicia T. R. and Aronsson, M. and Arts, G. and Attore, F. and Bergmeier, Erwin and Bijlsma, R.-J. and Bioret, Frederic and Bita-Nicolae, C. and Biurrun, Idoia and Calix, M. and Capelo, Jorge and {{\v{C}}arni}, {Andra{\v{z}}} and {Chytrý}, Milan and Dengler, {Jürgen} and Dimopoulos, Panayotis and Essl, Franz and Gardfjell, H. and Gigante, D. and Del Giusso Galdo, G. and {Hájek}, Michal and Jansen, Florian and Jansen, Jan and Kapfer, Jutta and Mickolajczak, A. and Molina, J. A. and {Molnár}, Z. and Paternoster, D. and Piernik, A. and Poulin, B. and Renaux, B. and {Schaminée}, Joop H. J. and {Sumberová}, K. and Toivonen, H. and Tonteri, Tiina and Tsiripidis, Ioannis and Tzonev, Rossen and {Valachovi{\v{c}}}, Milan},
year = {2016},
date = {2016},
publisher = {Publication Office of the European Union, Luxembourg},
isbn = {978-9279615887},
doi = {10.2779/091372},
url = {https://data.europa.eu/doi/10.2779/091372},
note = {Citation Key: Janssen.2016},
address = {Luxembourg}
}
@article{UnitedNations.2019b,
title = {United Nations decade on ecosystem restoration (2021--2030): Resolution. Adopted by the general assembly: A/RES/73/284},
author = {United Nations, },
year = {2019},
date = {2019},
url = {https://digitallibrary.un.org/record/3794317/files/A_RES_73_284-EN.pdf},
langid = {en}
}
@article{Dengler.2014,
title = {Biodiversity of {Palaearctic} grasslands: a synthesis},
author = {Dengler, {Jürgen} and {Jani{\v{s}}ová}, Monika and {Török}, {Péter} and Wellstein, Camilla},
year = {2014},
date = {2014},
journal = {Agriculture, Ecosystems & Environment},
pages = {1--14},
volume = {182},
doi = {10.1016/j.agee.2013.12.015},
note = {Citation Key: Dengler.2014}
}
@article{Torok.2011,
title = {Grassland restoration on former croplands in Europe: an assessment of applicability of techniques and costs},
author = {{Török}, {Péter} and Vida, {Enik{{\H o}}} and {Deák}, {Balázs} and Lengyel, Szabolcs and {Tóthmérész}, {Béla}},
year = {2011},
date = {2011},
journal = {Biodiversity and Conservation},
pages = {2311--2332},
volume = {20},
doi = {10.1007/s10531-011-9992-4},
note = {Citation Key: Torok.2011}
}
@article{Brudvig.2017,
title = {Toward prediction in the restoration of biodiversity},
author = {Brudvig, Lars A.},
year = {2017},
date = {2017},
journal = {Journal of Applied Ecology},
pages = {1013--1017},
volume = {54},
doi = {10.1111/1365-2664.12940},
note = {Citation Key: Brudvig.2017}
}
@article{Cooke.2018,
title = {Evidence-based restoration in the Anthropocene -- from acting with purpose to acting for impact},
author = {Cooke, Steven J. and Rous, Andrew M. and Donaldson, Lisa A. and Taylor, Jessica J. and Rytwinski, Trina and Prior, Kent A. and Smokorowski, Karen E. and Bennett, Joseph R.},
year = {2018},
date = {2018},
journal = {Restoration Ecology},
pages = {201--205},
volume = {26},
doi = {10.1111/rec.12675},
note = {Citation Key: Cooke.2018}
}
@article{Suding.2011,
title = {Toward an era of restoration in ecology: Successes, failures, and opportunities ahead},
author = {Suding, Katharine N.},
year = {2011},
date = {2011},
journal = {Annual Review of Ecology, Evolution, and Systematics},
pages = {465--487},
volume = {42},
doi = {10.1146/annurev-ecolsys-102710-145115},
note = {Citation Key: Suding.2011}
}
@article{Brudvig.2011,
title = {The restoration of biodiversity: where has research been and where does it need to go?},
author = {Brudvig, Lars A.},
year = {2011},
date = {2011},
journal = {American Journal of Botany},
pages = {549--558},
volume = {98},
doi = {10.3732/ajb.1000285},
note = {Citation Key: Brudvig.2011}
}
@article{Brudvig.2017b,
title = {Interpreting variation to advance predictive restoration science},
author = {Brudvig, Lars A. and Barak, Rebecca S. and Bauer, Jonathan T. and Caughlin, T. Trevor and Laughlin, Daniel C. and Larios, Loralee and Matthews, Jeffrey W. and Stuble, Katharine L. and Turley, Nash E. and Zirbel, Chad R.},
year = {2017},
date = {2017},
journal = {Journal of Applied Ecology},
pages = {1018--1027},
volume = {54},
doi = {10.1111/1365-2664.12938},
note = {Citation Key: Brudvig.2017b}
}
@article{Torok.2017,
title = {Ecological theory provides strong support for habitat restoration},
author = {{Török}, {Péter} and Helm, Aveliina},
year = {2017},
date = {2017},
journal = {Biological Conservation},
pages = {85--91},
volume = {206},
doi = {10.1016/j.biocon.2016.12.024},
note = {Citation Key: Torok.2017}
}
@article{Funk.2008,
title = {Restoration through reassembly: plant traits and invasion resistance},
author = {Funk, Jennifer L. and Cleland, Elsa E. and Suding, Katharine N. and Zavaleta, Erika S.},
year = {2008},
date = {2008},
journal = {Trends in Ecology and Evolution},
pages = {695--703},
volume = {23},
doi = {10.1016/j.tree.2008.07.013},
note = {Citation Key: Funk.2008}
}
@article{Mouquet.2015,
title = {Predictive ecology in a changing world},
author = {Mouquet, Nicolas and Lagadeuc, Yvan and Devictor, Vincent and Doyen, Luc and {Duputié}, Anne and Eveillard, Damien and Faure, Denis and Garnier, Eric and Gimenez, Olivier and Huneman, Philippe and Jabot, Franck and Jarne, Philippe and Joly, Dominique and Julliard, Romain and {Kéfi}, Sonia and Kergoat, Gael J. and Lavorel, Sandra and Le Gall, Line and Meslin, Laurence and Morand, Serge and Morin, Xavier and Morlon, {Hélène} and Pinay, Gilles and Pradel, Roger and Schurr, Frank M. and Thuiller, Wilfried and Loreau, Michel},
year = {2015},
date = {2015},
journal = {Journal of Applied Ecology},
pages = {1293--1310},
volume = {52},
doi = {10.1111/1365-2664.12482},
note = {Citation Key: Mouquet.2015}
}
@article{Wainwright.2018,
title = {Links between community ecology theory and ecological restoration are on the rise},
author = {Wainwright, Claire E. and Staples, Timothy L. and Charles, Lachlan S. and Flanagan, Thomas C. and Lai, Hao Ran and Loy, Xingwen and Reynolds, Victoria A. and Mayfield, Margaret M.},
year = {2018},
date = {2018},
journal = {Journal of Applied Ecology},
pages = {570--581},
volume = {55},
doi = {10.1111/1365-2664.12975},
note = {Citation Key: Wainwright.2018}
}
@article{Bauer.2022,
title = {Using crushed waste bricks for urban greening with contrasting grassland mixtures: no negative effects of brick-augmented substrates varying in soil type, moisture and acid pre-treatment},
author = {Bauer, Markus and Krause, Martin and Heizinger, Valentin and Kollmann, Johannes},
year = {2022},
date = {2022},
journal = {Urban Ecosystems},
volume = {25},
pages = {1369--1378},
doi = {10.1007/s11252-022-01230-x},
note = {Citation Key: Bauer.2022}
}
@article{Laughlin.2014,
title = {Applying trait-based models to achieve functional targets for theory-driven ecological restoration},
author = {Laughlin, Daniel C.},
year = {2014},
date = {2014},
journal = {Ecology Letters},
pages = {771--784},
volume = {17},
doi = {10.1111/ele.12288},
note = {Citation Key: Laughlin.2014}
}
@article{chenot-lescure2022,
title = {Using various artificial soil mixtures to restore dry grasslands in quarries},
author = {{Chenot{-}Lescure}, Julie and Jaunatre, Renaud and Buisson, Elise and Ramone, {Hervé} and Dutoit, Thierry},
year = {2022},
month = {02},
date = {2022-02-17},
journal = {Restoration Ecology},
pages = {e13620},
volume = {30},
doi = {10.1111/rec.13620},
url = {http://dx.doi.org/10.1111/rec.13620},
langid = {en}
}
@article{Batori.2020,
title = {River embankments mitigate the loss of grassland biodiversity in agricultural landscapes},
author = {{Bátori}, {Zoltán} and Kiss, {Péter J.} and {Tölgyesi}, Csaba and {Deák}, {Balázs} and {Valkó}, Orsolya and {Török}, {Péter} and {Erd{{\H o}}s}, {László} and {Tóthmérész}, {Béla} and Kelemen, {András}},
year = {2020},
date = {2020},
journal = {River Research and Applications},
pages = {1160--1170},
volume = {36},
doi = {10.1002/rra.3643},
note = {Citation Key: Batori.2020}
}
@article{kiehl2006,
title = {Establishment and persistence of target species in newly created calcareous grasslands on former arable fields},
author = {Kiehl, Kathrin and Pfadenhauer, {Jörg}},
year = {2007},
journal = {Plant Ecology},
pages = {31--48},
volume = {189},
doi = {10.1007/s11258-006-9164-x},
url = {http://dx.doi.org/10.1007/s11258-006-9164-x},
langid = {en}
}
@article{Liebrand.1996,
title = {Restoration of semi-natural, species-rich grasslands on river dikes after reconstruction},
author = {Liebrand, C.I.J.M. and Sykora, K. V.},
year = {1996},
date = {1996},
journal = {Ecological Engineering},
pages = {315--326},
volume = {7},
doi = {10.1016/S0925-8574(96)00023-7},
url = {http://www.sciencedirect.com/science/article/pii/S0925857496000237},
note = {Citation Key: Liebrand.1996}
}
@article{Batori.2016,
title = {River dikes in agricultural landscapes: The importance of secondary habitats in maintaining landscape-scale diversity},
author = {{Bátori}, {Zoltán} and {Körmöczi}, {László} and Zalatnai, {Márta} and {Erd{{\H o}}s}, {László} and {Ódor}, {Péter} and {Tölgyesi}, Csaba and {Margóczi}, Katalin and Torma, Attila and {Gallé}, {Róbert} and Cseh, {Viktória} and {Török}, {Péter}},
year = {2016},
date = {2016},
journal = {Wetlands},
pages = {251--264},
volume = {36},
doi = {10.1007/s13157-016-0734-y},
note = {Citation Key: Batori.2016}
}
@article{KleberLerchbaumer.2017,
title = {Gestaltung und Unterhaltung von Deichen und Deichschutzstreifen unter Anwendung der Bayerischen Kompensationsverordnung. Beispiel Donauausbau Straubing und Vilshofen},
author = {Kleber-Lerchbaumer, Uwe and Berger, Clemens and Veit, Elke},
year = {2017},
date = {2017},
journal = {KW Korrespondenz Wasserwirtschaft},
pages = {596--606},
volume = {10},
note = {Citation Key: KleberLerchbaumer.2017},
langid = {ngerman}
}
@article{Wilsey.2021,
title = {Restoration in the face of changing climate: Importance of persistence, priority effects, and species diversity},
author = {Wilsey, Brian},
year = {2021},
date = {2021},
journal = {Restoration Ecology},
pages = {e13132},
volume = {29},
doi = {10.1111/rec.13132},
note = {Citation Key: Wilsey.2021},
langid = {en}
}
@article{Helm.2015,
title = {Characteristic and derived diversity: Implementing the species pool concept to quantify conservation condition of habitats},
author = {Helm, Aveliina and Zobel, Martin and Moles, Angela T. and Szava-Kovats, Robert and {Pärtel}, Meelis},
year = {2015},
date = {2015},
journal = {Diversity and Distributions},
pages = {711--721},
volume = {21},
doi = {10.1111/ddi.12285},
note = {Citation Key: Helm.2015},
langid = {en}
}
@article{Rydgren.2019,
title = {Advancing restoration ecology: A new approach to predict time to recovery},
author = {Rydgren, Knut and Halvorsen, Rune and {Töpper}, Joachim P. and Auestad, Inger and Hamre, Liv Norunn and Jongejans, Eelke and Sulavik, Jan},
year = {2019},
date = {2019},
journal = {Journal of Applied Ecology},
pages = {225--234},
volume = {56},
doi = {10.1111/1365-2664.13254},
note = {Citation Key: Rydgren.2019},
langid = {en}
}
@article{bayerischevermessungsverwaltung2023,
title = {BayernAtlas. Open data. Digitales Orthophoto 40cm (DOP40). License CC-BY-4.0},
author = {Bayerische Vermessungsverwaltung, },
year = {2023},
date = {2023},
url = {https://geodaten.bayern.de/opengeodata/OpenDataDetail.html?pn=dop40},
langid = {ngerman}
}
@techreport{lfl2022,
title = {Leitfaden für die Düngung von Acker- und Grünland. Gelbes Heft. Stand: 2022},
author = {{Bayerisches Landesamt für Landwirtschaft (LfL)}, },
year = {2022},
date = {2022},
url = {https://www.lfl.bayern.de/mam/cms07/publikationen/daten/informationen/2022_08_iab_info_gelbes_heft.pdf},
langid = {ngerman}
}
@article{Kattge.2020,
title = {TRY plant trait database - enhanced coverage and open access},
author = {Kattge, Jens and {Bönisch}, Gerhard and {D{\i}\'az}, Sandra and Lavorel, Sandra and Prentice, Iain Colin and Leadley, Paul and Tautenhahn, Susanne and Werner, Gijsbert D. A. and Aakala, Tuomas and Abedi, Mehdi and Acosta, Alicia T. R. and Adamidis, George C. and Adamson, Kairi and Aiba, Masahiro and Albert, {Cécile H.} and {Alcántara}, Julio M. and {Alcázar C}, Carolina and Aleixo, Izabela and Ali, Hamada and Amiaud, Bernard and Ammer, Christian and Amoroso, Mariano M. and Anand, Madhur and Anderson, Carolyn and Anten, Niels and Antos, Joseph and Apgaua, {Deborah Mattos Guimarães} and Ashman, Tia-Lynn and Asmara, Degi Harja and Asner, Gregory P. and Aspinwall, Michael and Atkin, Owen and Aubin, Isabelle and Baastrup-Spohr, Lars and Bahalkeh, Khadijeh and Bahn, Michael and Baker, Timothy and Baker, William J. and Bakker, Jan P. and Baldocchi, Dennis and Baltzer, Jennifer L. and Banerjee, Arindam and Baranger, Anne and Barlow, Jos and Barneche, Diego R. and Baruch, Zdravko and Bastianelli, Denis and Battles, John and Bauerle, William and Bauters, Marijn and Bazzato, Erika and Beckmann, Michael and Beeckman, Hans and Beierkuhnlein, Carl and Bekker, Renee and Belfry, Gavin and Belluau, Michael and Beloiu, Mirela and Benavides, Raquel and Benomar, Lahcen and Berdugo-Lattke, Mary Lee and Berenguer, Erika and Bergamin, Rodrigo and Bergmann, Joana and Bergmann Carlucci, Marcos and Berner, Logan and {Bernhardt-Römermann}, Markus and Bigler, Christof and Bjorkman, Anne D. and Blackman, Chris and Blanco, Carolina and Blonder, Benjamin and Blumenthal, Dana and {Bocanegra-González}, Kelly T. and Boeckx, Pascal and Bohlman, Stephanie and {Böhning-Gaese}, Katrin and Boisvert-Marsh, Laura and Bond, William and Bond-Lamberty, Ben and Boom, Arnoud and Boonman, Coline C. F. and Bordin, Kauane and Boughton, Elizabeth H. and Boukili, Vanessa and Bowman, David M. J. S. and Bravo, Sandra and Brendel, Marco Richard and Broadley, Martin R. and Brown, Kerry A. and Bruelheide, Helge and Brumnich, Federico and Bruun, Hans Henrik and Bruy, David and Buchanan, Serra W. and Bucher, Solveig Franziska and Buchmann, Nina and Buitenwerf, Robert and Bunker, Daniel E. and {Bürger}, Jana and Burrascano, Sabina and Burslem, David F. R. P. and Butterfield, Bradley J. and Byun, Chaeho and Marques, Marcia and Scalon, Marina C. and Caccianiga, Marco and Cadotte, Marc William and Cailleret, Maxime and Camac, James and Camarero, {Jesús Julio} and Campany, Courtney and Campetella, Giandiego and Campos, Juan Antonio and Cano-Arboleda, Laura and Canullo, Roberto and Carbognani, Michele and Carvalho, Fabio and Casanoves, Fernando and Castagneyrol, Bastien and Catford, Jane A. and Cavender-Bares, Jeannine and Cerabolini, Bruno E. L. and Cervellini, Marco and {Chacón-Madrigal}, Eduardo and Chapin, Kenneth and Chapin, F. Stuart and Chelli, Stefano and Chen, Si-Chong and Chen, Anping and Cherubini, Paolo and Chianucci, Francesco and Choat, Brendan and Chung, Kyong-Sook and {Chytrý}, Milan and Ciccarelli, Daniela and Coll, {Lluís} and Collins, Courtney G. and Conti, Luisa and Coomes, David Anthony and Cornelissen, Johannes H. C. and Cornwell, William K. and Corona, Piermaria and Coyea, Marie and Craine, Joseph M. and Craven, Dylan and Cromsigt, Joris P. G. M. and Csecserits, {Anikó} and Cufar, Katarina and Cuntz, Matthias and da Silva, Ana Carolina and Dahlin, Kyla M. and Dainese, Matteo and Dalke, Igor and Dalle Fratte, Michele and Dang-Le, Anh Tuan and Danihelka, {Ji{\v{r}}í} and Dannoura, Masako and Dawson, Samantha and de Beer, Arend Jacobus and de Frutos, Angel and de Long, Jonathan R. and Dechant, Benjamin and Delagrange, Sylvain and Delpierre, Nicolas and Derroire, {Géraldine} and Dias, Arildo S. and Diaz-Toribio, Milton Hugo and Dimitrakopoulos, Panayiotis G. and Dobrowolski, Mark and Doktor, Daniel and {D{\v{r}}evojan}, Pavel and Dong, Ning and Dransfield, John and Dressler, Stefan and Duarte, Leandro and Ducouret, Emilie and Dullinger, Stefan and Durka, Walter and Duursma, Remko and Dymova, Olga and {E{-}Vojtkó}, Anna and Eckstein, Rolf Lutz and Ejtehadi, Hamid and Elser, James and Emilio, Thaise and Engemann, Kristine and Erfanian, Mohammad Bagher and Erfmeier, Alexandra and Esquivel-Muelbert, Adriane and Esser, Gerd and Estiarte, Marc and Domingues, Tomas F. and Fagan, William F. and {Fagúndez}, Jaime and Falster, Daniel S. and Fan, Ying and Fang, Jingyun and Farris, Emmanuele and Fazlioglu, Fatih and Feng, Yanhao and Fernandez-Mendez, Fernando and Ferrara, Carlotta and Ferreira, Joice and Fidelis, Alessandra and Finegan, Bryan and Firn, Jennifer and Flowers, Timothy J. and Flynn, Dan F. B. and Fontana, Veronika and Forey, Estelle and Forgiarini, Cristiane and {François}, Louis and Frangipani, Marcelo and Frank, Dorothea and Frenette-Dussault, Cedric and Freschet, {Grégoire T.} and Fry, Ellen L. and Fyllas, Nikolaos M. and Mazzochini, Guilherme G. and Gachet, Sophie and Gallagher, Rachael and Ganade, Gislene and Ganga, Francesca and {García-Palacios}, Pablo and Gargaglione, {Verónica} and Garnier, Eric and Garrido, Jose Luis and de Gasper, {André Luís} and Gea-Izquierdo, Guillermo and Gibson, David and Gillison, Andrew N. and Giroldo, Aelton and Glasenhardt, Mary-Claire and Gleason, Sean and Gliesch, Mariana and Goldberg, Emma and {Göldel}, Bastian and Gonzalez-Akre, Erika and Gonzalez-Andujar, Jose L. and {González-Melo}, {Andrés} and {González-Robles}, Ana and Graae, Bente Jessen and Granda, Elena and Graves, Sarah and Green, Walton A. and Gregor, Thomas and Gross, Nicolas and Guerin, Gregory Richard and {Günther}, Angela and {Gutiérrez}, Alvaro G. and Haddock, Lillie and Haines, Anna and Hall, Jefferson and Hambuckers, Alain and Han, Wenxuan and Harrison, Sandy P. and Hattingh, Wesley and Hawes, Joseph E. and He, Tianhua and He, Pengcheng and Heberling, Jacob Mason and Helm, Aveliina and Hempel, Stefan and Hentschel, {Jörn} and {Hérault}, Bruno and {Here{\c{s}}}, Ana-Maria and Herz, Katharina and Heuertz, Myriam and Hickler, Thomas and Hietz, Peter and Higuchi, Pedro and Hipp, Andrew L. and Hirons, Andrew D. and Hock, Maria and Hogan, James Aaron and Holl, Karen D. and Honnay, Olivier and Hornstein, Daniel and Hou, Enqing and Hough-Snee, Nate and Hovstad, Knut Anders and Ichie, Tomoaki and {Igi{\'{c}}}, Boris and Illa, Estela and Isaac, Marney and Ishihara, Masae and Ivanov, Leonid and Ivanova, Larissa and Iversen, Colleen M. and Izquierdo, Jordi and Jackson, Robert B. and Jackson, Benjamin and Jactel, {Hervé} and Jagodzinski, Andrzej M. and Jandt, Ute and Jansen, Steven and Jenkins, Thomas and Jentsch, Anke and Jespersen, Jens Rasmus Plantener and Jiang, Guo-Feng and Johansen, Jesper Liengaard and Johnson, David and Jokela, Eric J. and Joly, Carlos Alfredo and Jordan, Gregory J. and Joseph, Grant Stuart and Junaedi, Decky and Junker, Robert R. and Justes, Eric and Kabzems, Richard and Kane, Jeffrey and Kaplan, Zdenek and Kattenborn, Teja and Kavelenova, Lyudmila and Kearsley, Elizabeth and Kempel, Anne and Kenzo, Tanaka and Kerkhoff, Andrew and Khalil, Mohammed I. and Kinlock, Nicole L. and Kissling, Wilm Daniel and Kitajima, Kaoru and Kitzberger, Thomas and {Kjøller}, Rasmus and Klein, Tamir and Kleyer, Michael and {Klime{\v{s}}ová}, Jitka and Klipel, Joice and Kloeppel, Brian and Klotz, Stefan and Knops, Johannes M. H. and Kohyama, Takashi and Koike, Fumito and Kollmann, Johannes and Komac, Benjamin and Komatsu, Kimberly and {König}, Christian and Kraft, Nathan J. B. and Kramer, Koen and Kreft, Holger and {Kühn}, Ingolf and Kumarathunge, Dushan and Kuppler, Jonas and Kurokawa, Hiroko and Kurosawa, Yoko and Kuyah, Shem and Laclau, Jean-Paul and Lafleur, Benoit and Lallai, Erik and Lamb, Eric G. and Lamprecht, Andrea and Larkin, Daniel J. and Laughlin, Daniel C. and Le Bagousse-Pinguet, Yoann and Le Maire, Guerric and Le Roux, Peter C. and Le Roux, Elizabeth and Lee, Tali and Lens, Frederic and Lewis, Simon L. and Lhotsky, Barbara and Li, Yuanzhi and Li, Xine and Lichstein, Jeremy W. and Liebergesell, Mario and Lim, Jun Ying and Lin, Yan-Shih and Linares, Juan Carlos and Liu, Chunjiang and Liu, Daijun and Liu, Udayangani and Livingstone, Stuart W. and {Llusià}, Joan and Lohbeck, Madelon and {López-García}, {Álvaro} and Lopez-Gonzalez, Gabriela and {Lososová}, {Zde{\v{n}}ka} and Louault, {Frédérique} and {Lukács}, {Balázs A.} and {Luke{\v{s}}}, Petr and Luo, Yunjian and Lussu, Michele and Ma, Siyan and Maciel Rabelo Pereira, Camilla and Mack, Michelle and Maire, Vincent and {Mäkelä}, Annikki and {Mäkinen}, Harri and Malhado, Ana Claudia Mendes and Mallik, Azim and Manning, Peter and Manzoni, Stefano and Marchetti, Zuleica and Marchino, Luca and Marcilio-Silva, Vinicius and Marcon, Eric and Marignani, Michela and Markesteijn, Lars and Martin, Adam and {Martínez-Garza}, Cristina and {Martínez-Vilalta}, Jordi and {Ma{\v{s}}ková}, Tereza and Mason, Kelly and Mason, Norman and Massad, Tara Joy and Masse, Jacynthe and Mayrose, Itay and McCarthy, James and McCormack, M. Luke and McCulloh, Katherine and McFadden, Ian R. and McGill, Brian J. and McPartland, Mara Y. and Medeiros, Juliana S. and Medlyn, Belinda and Meerts, Pierre and Mehrabi, Zia and Meir, Patrick and Melo, Felipe P. L. and Mencuccini, Maurizio and Meredieu, {Céline} and Messier, Julie and {Mészáros}, Ilona and Metsaranta, Juha and Michaletz, Sean T. and Michelaki, Chrysanthi and Migalina, Svetlana and Milla, {Rubén} and Miller, Jesse E. D. and Minden, Vanessa and Ming, Ray and Mokany, Karel and Moles, Angela T. and {Molnár}, Attila and Molofsky, Jane and Molz, Martin and Montgomery, Rebecca A. and Monty, Arnaud and {Moravcová}, Lenka and {Moreno-Martínez}, Alvaro and Moretti, Marco and Mori, Akira S. and Mori, Shigeta and Morris, Dave and Morrison, Jane and Mucina, Ladislav and Mueller, Sandra and Muir, Christopher D. and {Müller}, Sandra Cristina and Munoz, {François} and Myers-Smith, Isla H. and Myster, Randall W. and Nagano, Masahiro and Naidu, Shawna and Narayanan, Ayyappan and Natesan, Balachandran and Negoita, Luka and Nelson, Andrew S. and Neuschulz, Eike Lena and Ni, Jian and Niedrist, Georg and Nieto, Jhon and Niinemets, {Ülo} and Nolan, Rachael and Nottebrock, Henning and Nouvellon, Yann and Novakovskiy, Alexander and Nystuen, Kristin Odden and {O'Grady}, Anthony and {O'Hara}, Kevin and {O'Reilly-Nugent}, Andrew and Oakley, Simon and Oberhuber, Walter and Ohtsuka, Toshiyuki and Oliveira, Ricardo and {Öllerer}, Kinga and Olson, Mark E. and Onipchenko, Vladimir and Onoda, Yusuke and Onstein, Renske E. and {Ordoñez}, Jenny C. and Osada, Noriyuki and Ostonen, Ivika and Ottaviani, Gianluigi and Otto, Sarah and Overbeck, Gerhard E. and Ozinga, Wim A. and Pahl, Anna T. and Paine, C. E. Timothy and Pakeman, Robin J. and Papageorgiou, Aristotelis C. and Parfionova, Evgeniya and {Pärtel}, Meelis and Patacca, Marco and Paula, Susana and Paule, Juraj and Pauli, Harald and Pausas, Juli G. and Peco, {Begoña} and {Peñuelas}, Josep and Perea, Antonio and Peri, Pablo Luis and Petisco-Souza, Ana Carolina and Petraglia, Alessandro and Petritan, Any Mary and Phillips, Oliver L. and Pierce, Simon and Pillar, {Valério D.} and Pisek, Jan and Pomogaybin, Alexandr and Poorter, Hendrik and Portsmuth, Angelika and Poschlod, Peter and Potvin, Catherine and Pounds, Devon and Powell, A. Shafer and Power, Sally A. and Prinzing, Andreas and Puglielli, Giacomo and {Py{\v{s}}ek}, Petr and Raevel, Valerie and Rammig, Anja and Ransijn, Johannes and Ray, Courtenay A. and Reich, Peter B. and Reichstein, Markus and Reid, Douglas E. B. and {Réjou-Méchain}, Maxime and de Dios, Victor Resco and Ribeiro, Sabina and Richardson, Sarah J. and Riibak, Kersti and Rillig, Matthias C. and Riviera, Fiamma and Robert, Elisabeth M. R. and Roberts, Scott and Robroek, Bjorn and Roddy, Adam and Rodrigues, Arthur Vinicius and Rogers, Alistair and Rollinson, Emily and Rolo, Victor and {Römermann}, Christine and Ronzhina, Dina and Roscher, Christiane and Rosell, Julieta A. and Rosenfield, Milena Fermina and Rossi, Christian and Roy, David B. and Royer-Tardif, Samuel and {Rüger}, Nadja and Ruiz-Peinado, Ricardo and Rumpf, Sabine B. and Rusch, Graciela M. and Ryo, Masahiro and Sack, Lawren and {Saldaña}, Angela and Salgado-Negret, Beatriz and Salguero-Gomez, Roberto and Santa-Regina, Ignacio and {Santacruz-García}, Ana Carolina and Santos, Joaquim and Sardans, Jordi and Schamp, Brandon and Scherer-Lorenzen, Michael and Schleuning, Matthias and Schmid, Bernhard and Schmidt, Marco and Schmitt, Sylvain and Schneider, Julio V. and Schowanek, Simon D. and Schrader, Julian and Schrodt, Franziska and Schuldt, Bernhard and Schurr, Frank and Selaya Garvizu, Galia and Semchenko, Marina and Seymour, Colleen and Sfair, Julia C. and Sharpe, Joanne M. and Sheppard, Christine S. and {Sheremet'ev}, Serge N. and Shiodera, Satomi and Shipley, Bill and Shovon, Tanvir Ahmed and {Siebenkäs}, Alrun and Sierra, Carlos and Silva, Vasco and Silva, Mateus and Sitzia, Tommaso and {Sjöman}, Henrik and Slot, Martijn and Smith, Nicholas G. and Sodhi, Darwin and Soltis, Pamela and Soltis, Douglas and Somers, Ben and Sonnier, {Grégory} and {Sørensen}, Mia Vedel and Sosinski, Enio Egon and Soudzilovskaia, Nadejda A. and Souza, Alexandre F. and Spasojevic, Marko and Sperandii, Marta Gaia and Stan, Amanda B. and Stegen, James C. and Steinbauer, Klaus and Stephan, {Jörg G.} and Sterck, Frank and Stojanovic, Dejan B. and Strydom, Tanya and Suarez, Maria Laura and Svenning, Jens-Christian and {Svitková}, Ivana and Svitok, Marek and Svoboda, Miroslav and Swaine, Emily and Swenson, Nathan G. and Tabarelli, Marcelo and Takagi, Kentaro and Tappeiner, Ulrike and Tarifa, {Rubén} and Tauugourdeau, Simon and Tavsanoglu, Cagatay and Te Beest, Mariska and Tedersoo, Leho and Thiffault, Nelson and Thom, Dominik and Thomas, Evert and Thompson, Ken and Thornton, Peter E. and Thuiller, Wilfried and {Tichý}, {Lubomír} and Tissue, David and Tjoelker, Mark G. and Tng, David Yue Phin and Tobias, Joseph and {Török}, {Péter} and Tarin, Tonantzin and Torres-Ruiz, {José M.} and {Tóthmérész}, {Béla} and Treurnicht, Martina and Trivellone, Valeria and Trolliet, Franck and Trotsiuk, Volodymyr and Tsakalos, James L. and Tsiripidis, Ioannis and Tysklind, Niklas and Umehara, Toru and Usoltsev, Vladimir and Vadeboncoeur, Matthew and Vaezi, Jamil and Valladares, Fernando and Vamosi, Jana and van Bodegom, Peter M. and van Breugel, Michiel and van Cleemput, Elisa and van de Weg, Martine and van der Merwe, Stephni and van der Plas, Fons and van der Sande, Masha T. and van Kleunen, Mark and van Meerbeek, Koenraad and Vanderwel, Mark and Vanselow, {Kim André} and {Vårhammar}, Angelica and Varone, Laura and Vasquez Valderrama, Maribel Yesenia and Vassilev, Kiril and Vellend, Mark and Veneklaas, Erik J. and Verbeeck, Hans and Verheyen, Kris and Vibrans, Alexander Christian and Vieira, Ima and {Villacís}, Jaime and Violle, Cyrille and Vivek, Pandi and Wagner, Katrin and Waldram, Matthew and Waldron, Anthony and Walker, Anthony P. and Waller, Martyn and Walther, Gabriel and Wang, Han and Wang, Feng and Wang, Weiqi and Watkins, Harry and Watkins, James and Weber, Ulrich and Weedon, James T. and Wei, Liping and Weigelt, Patrick and Weiher, Evan and Wells, Aidan W. and Wellstein, Camilla and Wenk, Elizabeth and Westoby, Mark and Westwood, Alana and White, Philip John and Whitten, Mark and Williams, Mathew and Winkler, Daniel E. and Winter, Klaus and Womack, Chevonne and Wright, Ian J. and Wright, S. Joseph and Wright, Justin P. and Pinho, Bruno X. and Ximenes, Fabiano and Yamada, Toshihiro and Yamaji, Keiko and Yanai, Ruth and Yankov, Nikolay and Yguel, Benjamin and Zanini, {Kátia Janaina} and Zanne, Amy E. and {Zelený}, David and Zhao, Yun-Peng and Zheng, Jingming and Zheng, Ji and {Ziemi{\'{n}}ska}, Kasia and Zirbel, Chad R. and Zizka, Georg and Zo-Bi, {Irié Casimir} and Zotz, Gerhard and Wirth, Christian},
year = {2020},
date = {2020},
journal = {Global Change Biology},
pages = {119--188},
volume = {26},
doi = {10.1111/gcb.14904},
note = {Citation Key: Kattge.2020},
langid = {en}
}
@article{Kleyer.2008,
title = {The LEDA Traitbase: A database of life-history traits of the Northwest European flora},
author = {Kleyer, M. and Bekker, R. M. and Knevel, I. C. and Bakker, Jan P. and Thompson, Ken and Sonnenschein, M. and Poschlod, Peter and van Groenendael, J. M. and {Klime{\v{s}}}, L. and {Klime{\v{s}}ová}, J. and Klotz, Stefan and Rusch, Graciela M. and Hermy, M. and Adriaens, D. and Boedeltje, G. and Bossuyt, B. and Dannemann, A. and Endels, P. and {Götzenberger}, Lars and Hodgson, J. G. and Jackel, A-K. and {Kühn}, Ingolf and Kunzmann, D. and Ozinga, Wim A. and {Römermann}, Christine and Stadler, M. and Schlegelmilch, J. and Steendam, H. J. and Tackenberg, O. and Wilmann, B. and Cornelissen, Johannes H. C. and Eriksson, Ove and Garnier, Eric and Peco, B.},
year = {2008},
date = {2008},
journal = {Journal of Ecology},
pages = {1266--1274},
volume = {96},
doi = {10.1111/j.1365-2745.2008.01430.x},
note = {Citation Key: Kleyer.2008},
langid = {en}
}
@article{FD,
title = {A distance-based framework for measuring functional diversity from multiple traits},
author = {{Laliberté}, Etienne and Legendre, Pierre},
year = {2010},
date = {2010},
journal = {Ecology},
volume = {91},
pages = {299--305},
doi = {10.1890/08-2244.1},
langid = {en}
}
@article{orrock2023,
title = {Long-term, large-scale experiment reveals the effects of seed limitation, climate, and anthropogenic disturbance on restoration of plant communities in a biodiversity hotspot},
author = {Orrock, John L. and Brudvig, Lars A. and Damschen, Ellen I. and Mattingly, W. Brett and Cruz, Jennyffer and Veldman, Joseph W. and Hahn, Philip G. and Larsen-Gray, Angela L.},
year = {2023},
month = {02},
date = {2023-02-06},
journal = {Proceedings of the National Academy of Sciences},
volume = {120},
pages = {e2201943119},
doi = {10.1073/pnas.2201943119},
url = {http://dx.doi.org/10.1073/pnas.2201943119},
langid = {en}
}
@article{Groves.2020,
title = {Lasting signature of planting year weather on restored grasslands},
author = {Groves, Anna M. and Bauer, Jonathan T. and Brudvig, Lars A.},
year = {2020},
date = {2020},
journal = {Scientific Reports},
pages = {5953},
volume = {10},
doi = {10.1038/s41598-020-62123-7},
note = {Citation Key: Groves.2020},
langid = {en}
}
@article{Stuble.2017,
title = {Every restoration is unique: Testing year effects and site effects as drivers of initial restoration trajectories},
author = {Stuble, Katharine L. and Fick, Stephen E. and Young, Truman P.},
year = {2017},
date = {2017},
journal = {Journal of Applied Ecology},
pages = {1051--1057},
volume = {54},
doi = {10.1111/1365-2664.12861},
note = {Citation Key: Stuble.2017},
langid = {en}
}
@article{myers2009,
title = {Seed arrival, ecological filters, and plant species richness: A meta-analysis},
author = {Myers, Jonathan A. and Harms, Kyle E.},
year = {2009},
month = {11},
date = {2009-11},
journal = {Ecology Letters},
pages = {1250--1260},
volume = {12},
doi = {10.1111/j.1461-0248.2009.01373.x},
url = {http://dx.doi.org/10.1111/j.1461-0248.2009.01373.x},
langid = {en}
}
@article{Larson.2021,
title = {Water the odds? Spring rainfall and emergence{-}related seed traits drive plant recruitment},
author = {Larson, Julie E. and Ebinger, Kathleen R. and Suding, Katharine N.},
year = {2021},
date = {2021},
journal = {Oikos},
volume = {130},
pages = {1665--1678},
doi = {10.1111/oik.08638},
note = {Citation Key: Larson.2021},
langid = {en}
}
@article{walker2004,
title = {The restoration and re-creation of species-rich lowland grassland on land formerly managed for intensive agriculture in the UK},
author = {Walker, Kevin J and Stevens, Paul A and Stevens, David P and Mountford, J.Owen and Manchester, Sarah J and Pywell, Richard F},
year = {2004},
month = {09},
date = {2004-09},
journal = {Biological Conservation},
pages = {1--18},
volume = {119},
doi = {10.1016/j.biocon.2003.10.020},
url = {http://dx.doi.org/10.1016/j.biocon.2003.10.020},
langid = {en}
}
@article{Balazs.2020,
title = {The right trait in the right place at the right time: Matching traits to environment improves restoration outcomes},
author = {Balazs, Kathleen R. and Kramer, Andrea T. and Munson, Seth M. and Talkington, Nora and Still, Shannon and Butterfield, Bradley J.},
year = {2020},
date = {2020},
journal = {Ecological Applications},
pages = {e02110},
volume = {30},
doi = {10.1002/eap.2110},
note = {Citation Key: Balazs.2020},
langid = {en}
}
@article{Fukami.2015,
title = {Historical contingency in community assembly: Integrating niches, species pools, and priority effects},
author = {Fukami, Tadashi},
year = {2015},
date = {2015},
journal = {Annual Review of Ecology, Evolution, and Systematics},
pages = {1--23},
volume = {46},
doi = {10.1146/annurev-ecolsys-110411-160340},
note = {Citation Key: Fukami.2015},
langid = {en}
}
@book{Oberdorfer.1993,
title = {Süddeutsche Pflanzengesellschaften. Teil II und III},
author = {Oberdorfer, Erich},
year = {1993},
date = {1993},
publisher = {Gustav Fischer, Stuttgart. ISBN 3334604357.},
series = {Süddeutsche Pflanzengesellschaften},
edition = {3},
note = {Citation Key: Oberdorfer.1993},
address = {Stuttgart},
langid = {ngerman}
}
@article{Kaulfuss.2022,
title = {Grassland restoration by local seed mixtures: new evidence from a practical 15{-}year restoration study},
author = {{Kaulfuß}, Franziska and Rosbakh, Sergey and Reisch, Christoph},
year = {2022},
date = {2022},
journal = {Applied Vegetation Science},
pages = {e12652},
volume = {25},
doi = {10.1111/avsc.12652},
note = {Citation Key: Kaulfuss.2022},
langid = {en}
}
@article{Zirbel.2020,
title = {Trait-environment interactions affect plant establishment success during restoration},
author = {Zirbel, Chad R. and Brudvig, Lars A.},
year = {2020},
date = {2020},
journal = {Ecology},
pages = {e02971},
volume = {101},
doi = {10.1002/ecy.2971},
note = {Citation Key: Zirbel.2020},
langid = {en}
}
@article{baer2004,
title = {Plant community responses to resource availability and heterogeneity during restoration},
author = {Baer, S. G. and Blair, J. M. and Collins, S. L. and Knapp, A. K.},
year = {2004},
month = {05},
date = {2004-05-01},
journal = {Oecologia},
pages = {617--629},
volume = {139},
doi = {10.1007/s00442-004-1541-3},
url = {http://dx.doi.org/10.1007/s00442-004-1541-3},
langid = {en}
}
@article{dornbush2010,
title = {Experimental manipulation of soil depth alters species richness and co-occurrence in restored tallgrass prairie},
author = {Dornbush, Mathew E. and Wilsey, Brian J.},
year = {2010},
month = {01},
date = {2010-01},
journal = {Journal of Ecology},
pages = {117--125},
volume = {98},
doi = {10.1111/j.1365-2745.2009.01605.x},
url = {http://dx.doi.org/10.1111/j.1365-2745.2009.01605.x},
langid = {en}
}
@article{mitchley2012,
title = {Regional seed mixtures for the re-creation of species-rich meadows in the White Carpathian Mountains: Results of a 10-yr experiment},
author = {Mitchley, Jonathan and {Jongepierová}, Ivana and Fajmon, Karel},
editor = {Holzel, Norbert},
year = {2012},
month = {01},
date = {2012-01-18},
journal = {Applied Vegetation Science},
pages = {253--263},
volume = {15},
doi = {10.1111/j.1654-109x.2012.01183.x},
url = {http://dx.doi.org/10.1111/j.1654-109X.2012.01183.x},
langid = {en}
}
@article{jones2018,
title = {Restoration and repair of Earth's damaged ecosystems},
author = {Jones, Holly P. and Jones, Peter C. and Barbier, Edward B. and Blackburn, Ryan C. and Rey Benayas, Jose M. and Holl, Karen D. and McCrackin, Michelle and Meli, Paula and Montoya, Daniel and Mateos, David Moreno},
year = {2018},
month = {02},
date = {2018-02-28},
journal = {Proceedings of the Royal Society B: Biological Sciences},
pages = {20172577},
volume = {285},
doi = {10.1098/rspb.2017.2577},
url = {http://dx.doi.org/10.1098/rspb.2017.2577},
langid = {en}
}
@article{MorenoMateos.2017,
title = {Anthropogenic ecosystem disturbance and the recovery debt},
author = {Moreno-Mateos, David and Barbier, Edward B. and Jones, Peter C. and Jones, Holly P. and Aronson, James and {López-López}, {José A.} and McCrackin, Michelle L. and Meli, Paula and Montoya, Daniel and Rey-Benayas, {José M.}},
year = {2017},
date = {2017},
journal = {Nature Communications},
pages = {14163},
volume = {8},
doi = {10.1038/ncomms14163},
note = {Citation Key: MorenoMateos.2017},
langid = {en}
}
@article{nerlekar2020,
title = {High plant diversity and slow assembly of old-growth grasslands},
author = {Nerlekar, Ashish N. and Veldman, Joseph W.},
year = {2020},
month = {07},
date = {2020-07-16},
journal = {Proceedings of the National Academy of Sciences},
pages = {18550--18556},
volume = {117},
doi = {10.1073/pnas.1922266117},
url = {http://dx.doi.org/10.1073/pnas.1922266117},
langid = {en}
}
@article{Holl.2022,
title = {Overcoming biotic homogenization in ecological restoration},
author = {Holl, Karen D. and Luong, Justin C. and Brancalion, Pedro H. S.},
year = {2022},
date = {2022},
journal = {Trends in Ecology and Evolution},
pages = {777--788},
volume = {37},
doi = {10.1016/j.tree.2022.05.002},
note = {Citation Key: Holl.2022}
}
@article{valkó2020,
title = {Dynamics in vegetation and seed bank composition highlight the importance of post{-}restoration management in sown grasslands},
author = {{Valkó}, Orsolya and {Deák}, {Balázs} and {Török}, {Péter} and {Tóth}, Katalin and Kiss, {Réka} and Kelemen, {András} and {Miglécz}, {Tamás} and Sonkoly, Judit and {Tóthmérész}, {Béla}},
year = {2020},
month = {06},