The following table was created as response to the SQL query SELECT sbs_sbsname "SBS name", sbs_sbsnumber "SBS number", m_methodname "general method", snp_singlevalue "single value", snp_samples "sample size", snpsm_specificmethodname "reproduction unit measured", ref_refname "reference", snp_mean "average SNP", snp_maximum "maximum SNP", snp_minimum "minimum SNP", snp_median "median SNP", snp_categoryname "seed number category", snp_replicates "number of replicates", snp_stderror "standard error", snp_stddeviation "standard deviation", cmlv_name "counting method", csub_name "counted subunit", snp_collectiondate "collection date", snp_comment "general comment", or_origrefname "original reference", geo_countryname "country" FROM (SELECT CASE WHEN snp_categoryid IS NULL THEN 'not computable' WHEN snp_categoryid = 1 THEN 'seednumber <= 10' WHEN snp_categoryid = 2 THEN '10 < seednumber <= 100' WHEN snp_categoryid = 3 THEN '100 < seednumber <= 1000' WHEN snp_categoryid = 4 THEN '1000 < seednumber <= 10,000' WHEN snp_categoryid = 5 THEN '10,000 < seednumber <= 100,000' ELSE 'seednumber > 100,000' END AS snp_categoryname, snp_singlevalue, sbs_sbsnumber, sbs_sbsname, m_methodname, snp_median, snp_mean, snp_minimum, snp_maximum, snp_samples, snpsm_specificmethodname, ref_refname, snp_replicates, snp_stderror, snp_stddeviation, cmlv_name, csub_name, snp_collectiondate, snp_comment, or_origrefname, geo_countryname FROM (SELECT CASE WHEN snp_singlevalue IS NULL THEN 0 WHEN snp_singlevalue <= 10 THEN 1 WHEN snp_singlevalue > 10 AND snp_singlevalue <= 100 THEN 2 WHEN snp_singlevalue > 100 AND snp_singlevalue <= 1000 THEN 3 WHEN snp_singlevalue > 1000 AND snp_singlevalue <= 10000 THEN 4 WHEN snp_singlevalue > 10000 AND snp_singlevalue <= 100000 THEN 5 ELSE 6 END AS snp_categoryid, snp_singlevalue, sbs_sbsnumber, sbs_sbsname, m_methodname, snp_median, snp_mean, snp_minimum, snp_maximum, snp_samples, snpsm_specificmethodname, ref_refname, snp_replicates, snp_stderror, snp_stddeviation, cmlv_name, csub_name, snp_collectiondate, snp_comment, or_origrefname, geo_countryname FROM (SELECT case when snp_median is not null then snp_median when snp_mean is not null then snp_mean when snp_minimum is not null and snp_maximum is not null then (snp_minimum + snp_maximum) / 2 when snp_minimum is not null then snp_minimum when snp_maximum is not null then snp_maximum else null end AS snp_singlevalue, sbs_sbsnumber, sbs_sbsname, m_methodname, snp_median, snp_mean, snp_minimum, snp_maximum, snp_samples, snpsm_specificmethodname, ref_refname, snp_replicates, snp_stderror, snp_stddeviation, cmlv_name, csub_name, snp_collectiondate, snp_comment, or_origrefname, geo_countryname FROM (SELECT sbs.sbs_sbsnumber, sbs.sbs_sbsname, snp_m.m_methodname, snp_m.snp_median, snp_m.snp_mean, snp_m.snp_minimum, snp_m.snp_maximum, snp_m.snp_samples, snp_m.snpsm_specificmethodname, snp_m.ref_refname, snp_m.snp_replicates, snp_m.snp_stderror, snp_m.snp_stddeviation, snp_m.cmlv_name, snp_m.csub_name, snp_m.snp_collectiondate, snp_m.snp_comment, snp_m.or_origrefname, snp_m.geo_countryname FROM (SELECT speciesno AS sbs_sbsnumber, fullname AS sbs_sbsname FROM (SELECT fullname, speciesno, familyname, isinledalist from (select fullname, speciesno, family as familyid, isinledalist from taxon where specieslist = 60028) natural join taxonomicfamily)) sbs JOIN (SELECT snp_snpsm.snp_sbsnumber, m.m_methodname, snp_snpsm.snp_median, snp_snpsm.snp_mean, snp_snpsm.snp_minimum, snp_snpsm.snp_maximum, snp_snpsm.snp_samples, snp_snpsm.snpsm_specificmethodname, snp_snpsm.ref_refname, snp_snpsm.snp_replicates, snp_snpsm.snp_stderror, snp_snpsm.snp_stddeviation, snp_snpsm.cmlv_name, snp_snpsm.csub_name, snp_snpsm.snp_collectiondate, snp_snpsm.snp_comment, snp_snpsm.or_origrefname, snp_snpsm.geo_countryname FROM (SELECT snp_r.snp_sbsnumber, snp_r.snp_methodid, snp_r.snp_median, snp_r.snp_mean, snp_r.snp_minimum, snp_r.snp_maximum, snp_r.snp_samples, snpsm.snpsm_specificmethodname, snp_r.ref_refname, snp_r.snp_replicates, snp_r.snp_stderror, snp_r.snp_stddeviation, snp_r.cmlv_name, snp_r.csub_name, snp_r.snp_collectiondate, snp_r.snp_comment, snp_r.or_origrefname, snp_r.geo_countryname FROM (SELECT snp_cmlv.snp_sbsnumber, snp_cmlv.snp_methodid, snp_cmlv.snp_median, snp_cmlv.snp_mean, snp_cmlv.snp_minimum, snp_cmlv.snp_maximum, snp_cmlv.snp_samples, snp_cmlv.snp_specificmethodid, r.ref_refname, snp_cmlv.snp_replicates, snp_cmlv.snp_stderror, snp_cmlv.snp_stddeviation, snp_cmlv.cmlv_name, snp_cmlv.csub_name, snp_cmlv.snp_collectiondate, snp_cmlv.snp_comment, snp_cmlv.or_origrefname, snp_cmlv.geo_countryname FROM (SELECT snp_csub.snp_sbsnumber, snp_csub.snp_methodid, snp_csub.snp_median, snp_csub.snp_mean, snp_csub.snp_minimum, snp_csub.snp_maximum, snp_csub.snp_samples, snp_csub.snp_specificmethodid, snp_csub.snp_referenceid, snp_csub.snp_replicates, snp_csub.snp_stderror, snp_csub.snp_stddeviation, cmlv.cmlv_name, snp_csub.csub_name, snp_csub.snp_collectiondate, snp_csub.snp_comment, snp_csub.or_origrefname, snp_csub.geo_countryname FROM (SELECT snp_orf.snp_sbsnumber, snp_orf.snp_methodid, snp_orf.snp_median, snp_orf.snp_mean, snp_orf.snp_minimum, snp_orf.snp_maximum, snp_orf.snp_samples, snp_orf.snp_specificmethodid, snp_orf.snp_referenceid, snp_orf.snp_replicates, snp_orf.snp_stderror, snp_orf.snp_stddeviation, snp_orf.snp_countingmethodid, csub.csub_name, snp_orf.snp_collectiondate, snp_orf.snp_comment, snp_orf.or_origrefname, snp_orf.geo_countryname FROM (SELECT snp_geo.snp_sbsnumber, snp_geo.snp_methodid, snp_geo.snp_median, snp_geo.snp_mean, snp_geo.snp_minimum, snp_geo.snp_maximum, snp_geo.snp_samples, snp_geo.snp_specificmethodid, snp_geo.snp_referenceid, snp_geo.snp_replicates, snp_geo.snp_stderror, snp_geo.snp_stddeviation, snp_geo.snp_countingmethodid, snp_geo.snp_csuid, snp_geo.snp_collectiondate, snp_geo.snp_comment, orf.or_origrefname, snp_geo.geo_countryname FROM (SELECT snp.snp_sbsnumber, snp.snp_methodid, snp.snp_median, snp.snp_mean, snp.snp_minimum, snp.snp_maximum, snp.snp_samples, snp.snp_specificmethodid, snp.snp_referenceid, snp.snp_replicates, snp.snp_stderror, snp.snp_stddeviation, snp.snp_countingmethodid, snp.snp_csuid, snp.snp_collectiondate, snp.snp_comment, snp.snp_origrefid, geo.geo_countryname FROM (SELECT sbsnumber AS snp_sbsnumber, methodid AS snp_methodid, median AS snp_median, mean AS snp_mean, minimum AS snp_minimum, maximum AS snp_maximum, n AS snp_samples, snpspecificmethodid AS snp_specificmethodid, referenceid AS snp_referenceid, replicates AS snp_replicates, stderror AS snp_stderror, stddeviation AS snp_stddeviation, snpcountingmethodid AS snp_countingmethodid, snpcountedsubunitid AS snp_csuid, collectiondate AS snp_collectiondate, p_comment AS snp_comment, origreferenceid AS snp_origrefid, georefid AS snp_georefid, valid AS snp_valid FROM (SELECT seednumberproductionid, sbsnumber, taxonid, n, replicates, mean, minimum, maximum, median, stddeviation, stderror, collectiondate, p_comment, created_when, updated_when, batchid, snpspecificmethodid, methodid, referenceid, origreferenceid, snpcountingmethodid, snpcountedsubunitid, georefid, valid, validsince, validuntil, ledaid, habitattypeid FROM seednumberproduction natural join taxontosbsassignment WHERE valid IN (-2, 1))) snp LEFT JOIN (SELECT georefid AS geo_georefid, countryname AS geo_countryname FROM (select * from georef_part)) geo ON snp.snp_georefid = geo.geo_georefid) snp_geo LEFT JOIN (SELECT origreferenceid AS or_origrefid, origrefname AS or_origrefname FROM (select referenceid as origreferenceid, refname as origrefname, reftypeid as origreftypeid from reference)) orf ON snp_geo.snp_origrefid = orf.or_origrefid) snp_orf LEFT JOIN (SELECT snpcountedsubunitid AS csub_id, snpcountedsubunitname AS csub_name FROM (SELECT snpcountedsubunitid, snpcountedsubunitname from snpcountedsubunit_lv)) csub ON snp_orf.snp_csuid = csub.csub_id) snp_csub LEFT JOIN (SELECT snpcountingmethodid AS cmlv_id, snpcountingmethodname AS cmlv_name FROM (SELECT snpcountingmethodid, snpcountingmethodname from snpcountingmethod_lv)) cmlv ON snp_csub.snp_countingmethodid = cmlv.cmlv_id) snp_cmlv JOIN (SELECT referenceid AS ref_referenceid, refname AS ref_refname FROM (select referenceid, refname, reftypeid from reference)) r ON snp_cmlv.snp_referenceid = r.ref_referenceid) snp_r JOIN (SELECT snpspecificmethodid AS snpsm_specificmethodid, snpspecificmethodname AS snpsm_specificmethodname FROM (SELECT * FROM snpspecificmethod_lv)) snpsm ON snp_r.snp_specificmethodid = snpsm.snpsm_specificmethodid) snp_snpsm LEFT JOIN (SELECT methodid AS m_methodid, methodname AS m_methodname FROM (select * from method_lv)) m ON snp_snpsm.snp_methodid = m.m_methodid) snp_m ON sbs.sbs_sbsnumber = snp_m.snp_sbsnumber)))) ORDER BY sbs_sbsname on Tue Mar 10 10:54:45 CET 2009 . SBS name;SBS number;general method;single value;sample size;reproduction unit measured;reference;average SNP;maximum SNP;minimum SNP;median SNP;seed number category;number of replicates;standard error;standard deviation;counting method;counted subunit;collection date;general comment;original reference;country Acer campestre;811;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Watson, H.(1948): Botanical Notes on Trees of the British Forests, Oliver and Boyd, Edinburgh []; Acer campestre;811;unknown;3096;;per ramet/tussock or individual plant ;BIOPOP April 2005;3096;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: coppice stem in closed stand;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.; Acer platanoides;801;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Watson, H.(1948): Botanical Notes on Trees of the British Forests, Oliver and Boyd, Edinburgh []; Acer pseudoplatanus;803;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Watson, H.(1948): Botanical Notes on Trees of the British Forests, Oliver and Boyd, Edinburgh []; Acer pseudoplatanus;803;unknown;870;;per ramet/tussock or individual plant ;BIOPOP April 2005;870;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: in closed stand;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.;UNITED KINGDOM Acer pseudoplatanus;803;unknown;9350;;per ramet/tussock or individual plant ;BIOPOP April 2005;9350;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: isolated tree in garden;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.; Achillea cartilaginea;4689;actual measurement (following LEDA data standards);12634.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15314.1;38334;3707;12634.5;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Achillea collina;3512;laboratory/greenhouse/garden experiment;5110;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5565.2;14610;420;5110;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Achillea erba-rotta s. moschata;6098;actual measurement;200;10;per ramet/tussock or individual plant ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];;300;100;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;collection period: 1985, maximum in large genets: 10,000;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Achillea erba-rotta s. moschata;6098;actual measurement;35;10;per multiple flower inflorescence ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];35;;;;10 < seednumber <= 100;1;1.897;6;counting ;multiple flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Achillea macrophylla;4009;laboratory/greenhouse/garden experiment;2521;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2452.75;3761;1008;2521;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Achillea millefolium;3013;estimation (following LEDA data standards);3300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3300;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Achillea millefolium;3013;actual measurement (following LEDA data standards);822;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;885.53;1323;508;822;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Achillea millefolium;3013;actual measurement;365;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];365;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Achillea millefolium;3013;unknown;3330;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3330;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Warwick, S.I. (1982): The biology of Canadian weeds. 52. Achillea millefolium L. S.L.; Achillea millefolium;3013;actual measurement;190;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;190;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Achillea millefolium;3013;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;3000;4000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Achillea millefolium;3013;actual measurement;10250;;per square meter;BIOPOP April 2005;;10250;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Achillea millefolium;3013;actual measurement;1725;;per square meter;BIOPOP April 2005;;1725;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Achillea millefolium;3013;actual measurement;1392;;per square meter;BIOPOP April 2005;;1392;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Achillea millefolium;3013;actual measurement;2925;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2925;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Achillea millefolium;3013;actual measurement;7200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7200;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Achillea millefolium;3013;actual measurement;695.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;695.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Achillea millefolium;3013;actual measurement;1724;;per ramet/tussock or individual plant ;BIOPOP April 2005;1724;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Achillea millefolium;3013;actual measurement;1047;;per ramet/tussock or individual plant ;BIOPOP April 2005;1047;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Achillea millefolium;3013;actual measurement;101882;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;101882;;;;seednumber > 100,000;1;;75707.86355;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Achillea millefolium;3013;estimation (following LEDA data standards);3500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;4000;3000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Achillea millefolium;3013;actual measurement;2400;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;3200;1600;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Achillea pannonica;5321;actual measurement (following LEDA data standards);545;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;544.11;989;315;545;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Achillea ptarmica;4799;actual measurement;66400;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;66400;;;;10,000 < seednumber <= 100,000;1;;41314.40427;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Achillea ptarmica;4799;estimation (following LEDA data standards);1300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1300;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Achillea ptarmica;4799;actual measurement (following LEDA data standards);784;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;799;1700;91;784;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Achillea ptarmica;4799;actual measurement (following LEDA data standards);391.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;714.4;2279;109;391.5;100 < seednumber <= 1000;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Acinos arvensis;24493;actual measurement;342;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;342;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Aconitum variegatum;27421;actual measurement;35122;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35122;;;;10,000 < seednumber <= 100,000;1;;8550.874341;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Acorus calamus;35825;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Actaea spicata;27324;actual measurement;1164;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1164;;;;1000 < seednumber <= 10,000;1;;419.838064;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Actaea spicata;27324;estimation;1900;;per ramet/tussock or individual plant ;BIOPOP April 2005;1900;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: small plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Actaea spicata;27324;actual measurement;165;;per ramet/tussock or individual plant ;BIOPOP April 2005;;242;88;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Actaea spicata;27324;actual measurement;132;;per square meter;BIOPOP April 2005;;132;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Actaea spicata;27324;actual measurement;124;;per ramet/tussock or individual plant ;BIOPOP April 2005;124;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Actaea spicata;27324;actual measurement (following LEDA data standards);108;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;101.73;153;34;108;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Actaea spicata;27324;estimation;12;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;12;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Adonis aestivalis;27328;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >200;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Adonis aestivalis;27328;estimation (following LEDA data standards);50;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;;50;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Adonis aestivalis;27328;actual measurement (following LEDA data standards);21;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21;21;21;21;10 < seednumber <= 100;;;;counting ;;2004-07-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Adonis aestivalis;27328;actual measurement;75;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100;50;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Adonis annua;27329;unknown;22;1;per single flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;22;;;;10 < seednumber <= 100;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Adonis vernalis;29095;actual measurement (following LEDA data standards);60;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;60;60;60;60;10 < seednumber <= 100;;;;counting ;;2005-06-12 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Adonis vernalis;29095;estimation (following LEDA data standards);32.5;1;per multiple flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;40;25;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Adonis vernalis;29095;estimation (following LEDA data standards);90;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;150;30;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Adoxa moschatellina;2407;estimation;98;;per square meter;BIOPOP April 2005;98;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Adoxa moschatellina;2407;estimation;3.5;;per single flower inflorescence ;BIOPOP April 2005;3.5;;;;seednumber <= 10;;;;unknown;unknown;;Value comment: per fruit;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Adoxa moschatellina;2407;estimation;13.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;13.5;15;12;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mean per ramet;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Adoxa moschatellina;2407;estimation;1260;;per square meter;BIOPOP April 2005;;1260;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Adoxa moschatellina;2407;actual measurement;8.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7.4;;;8.5;seednumber <= 10;1;.819213715;2.59058123;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Aegopodium podagraria;2007;actual measurement;19370;;per square meter;BIOPOP April 2005;;19370;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;4230;;per square meter;BIOPOP April 2005;;4230;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;27720;;per square meter;BIOPOP April 2005;;27720;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;2287;;per square meter;BIOPOP April 2005;;4092;482;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;522.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;522.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;346.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;346.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement (following LEDA data standards);402;10;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;393.9;514;250;402;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aegopodium podagraria;2007;estimation (following LEDA data standards);2800;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2800;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Aegopodium podagraria;2007;actual measurement;508.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;508.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;479.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;479.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;1468;;per square meter;BIOPOP April 2005;;1468;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;1197;;per ramet/tussock or individual plant ;BIOPOP April 2005;1197;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Aegopodium podagraria;2007;actual measurement;46.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;49.3;;;46.5;10 < seednumber <= 100;1;6.250422208;19.76557051;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Aegopodium podagraria;2007;actual measurement;10700;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;13500;9650;10700;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Aegopodium podagraria;2007;actual measurement (following LEDA data standards);196;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;196;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);180;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;180;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);190;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;190;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);173;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;173;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);199;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;199;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);253;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;253;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);291;1;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;291;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);181;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;181;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);237;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;237;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);226;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;226;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);164;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;164;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;only upper umbel with seed;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);335;1;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;335;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Aegopodium podagraria;2007;actual measurement (following LEDA data standards);240;1;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;240;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Aethusa cynapium;1502;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Aethusa cynapium;1502;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Aethusa cynapium;1502;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;500;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Aethusa cynapium;1502;estimation (following LEDA data standards);600;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;600;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Aethusa cynapium;1502;estimation (following LEDA data standards);6000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Aethusa cynapium;1502;actual measurement;126313.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;126313.75;;;;seednumber > 100,000;1;;117615.5041;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Aethusa cynapium;1502;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;500;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Agrimonia eupatoria;29512;actual measurement (following LEDA data standards);50;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;50;50;50;50;10 < seednumber <= 100;;;;counting ;;;preaggregated value obtained from single record;;GERMANY Agrimonia eupatoria;29512;unknown;48;;per square meter;BIOPOP April 2005;48;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Agrimonia eupatoria;29512;actual measurement;66;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;66;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Agrimonia eupatoria;29512;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Ridley, H. N.(1930): The Dispersal of Plants Throughout the World, L Reeve + Co Ltd, Ashford, Kent []; Agrimonia procera;29916;actual measurement;9265.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9265.333333;;;;1000 < seednumber <= 10,000;1;;5277.350314;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Agrimonia procera;29916;actual measurement (following LEDA data standards);146;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;141.55;241;60;146;100 < seednumber <= 1000;;;;counting ;multiple flower stem or single stem;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Agrostemma githago;16318;estimation;42;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;42;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Agrostemma githago;16318;actual measurement;850;;per ramet/tussock or individual plant ;BIOPOP April 2005;;850;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >850;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Agrostemma githago;16318;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Agrostemma githago;16318;estimation;3150;141;per ramet/tussock or individual plant ;BIOPOP April 2005;;3150;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Agrostemma githago;16318;estimation;314;141;per ramet/tussock or individual plant ;BIOPOP April 2005;314;332;296;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Agrostemma githago;16318;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;200;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Agrostemma githago;16318;laboratory/greenhouse/garden experiment;1020;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1258.33;2867;516;1020;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-06-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Agrostemma githago;16318;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;200;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Agrostemma githago;16318;estimation (following LEDA data standards);223;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;223;284;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Agrostis canina;40532;actual measurement;385148;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;385148;;;;seednumber > 100,000;1;;270469.3656;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Agrostis capillaris;41392;actual measurement;111;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;111;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Agrostis capillaris;41392;actual measurement;855.5;;per square meter;BIOPOP April 2005;;1659;52;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;27.2;;per multiple flower inflorescence ;BIOPOP April 2005;27.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;703;;per square meter;BIOPOP April 2005;;1350;56;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;51.9;;per multiple flower inflorescence ;BIOPOP April 2005;51.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;82;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;82;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Agrostis capillaris;41392;actual measurement;977;;per square meter;BIOPOP April 2005;;977;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;laboratory/greenhouse/garden experiment;986;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);986;986;986;986;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Agrostis capillaris;41392;actual measurement;274;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;313;;;274;100 < seednumber <= 1000;1;36.08570046;114.1130044;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Agrostis capillaris;41392;actual measurement;491234.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;491234.3333;;;;seednumber > 100,000;1;;386657.8497;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Agrostis capillaris;41392;actual measurement;2.3;;per multiple flower inflorescence ;BIOPOP April 2005;2.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;15;;per square meter;BIOPOP April 2005;;15;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;45.3;;per multiple flower inflorescence ;BIOPOP April 2005;45.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;2735;;per square meter;BIOPOP April 2005;;2735;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;17.2;;per multiple flower inflorescence ;BIOPOP April 2005;17.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;729;;per square meter;BIOPOP April 2005;;1444;14;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;2.7;;per multiple flower inflorescence ;BIOPOP April 2005;2.7;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;5.5;;per square meter;BIOPOP April 2005;;9;2;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis capillaris;41392;actual measurement;39.9;;per multiple flower inflorescence ;BIOPOP April 2005;39.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Agrostis gigantea;40852;actual measurement (following LEDA data standards);236.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;253.2;564;107;236.5;100 < seednumber <= 1000;;;;counting ;;2004-09-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Agrostis mertensii;40856;actual measurement (following LEDA data standards);45;4;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;42.5;55;25;45;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Agrostis mertensii;40856;actual measurement;27.1;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;27.1;59;6;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 62% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Agrostis mertensii;40856;actual measurement (following LEDA data standards);23;5;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;20.2;34;6;23;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Agrostis stolonifera;40861;actual measurement;62463.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;62463.25;;;;10,000 < seednumber <= 100,000;1;;44094.2281;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Agrostis vinealis;41896;actual measurement;75;400;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;100;50;;10 < seednumber <= 100;1;;;counting ;;1998-08-06 00:00:00.0;;;UNITED KINGDOM Agrostis vinealis;41896;actual measurement (following LEDA data standards);67;4;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;67.25;82;53;67;10 < seednumber <= 100;;;;counting ;;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aira caryophyllea;40866;laboratory/greenhouse/garden experiment;18612;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);18704.4;26299;12060;18612;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aira caryophyllea;40866;actual measurement (following LEDA data standards);166;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;152.31;264;35;166;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aira praecox;41629;laboratory/greenhouse/garden experiment;12604.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14255.4;25806;756;12604.5;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aira praecox;41629;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Newman, E. I.(1967): no title given, publication in Journal of Ecology issue: 55 pages: 539-556 [55]; Aira praecox;41629;laboratory/greenhouse/garden experiment;30550;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);30550;30550;30550;30550;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ajuga chamaepitys;24497;actual measurement (following LEDA data standards);32;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32;32;32;32;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ajuga genevensis;24142;actual measurement;124933.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;124933.3333;;;;seednumber > 100,000;1;;114124.3766;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ajuga genevensis;24142;actual measurement (following LEDA data standards);221;9;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;164.67;257;40;221;100 < seednumber <= 1000;;;;counting ;;2005-05-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ajuga pyramidalis;24144;actual measurement;60;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];60;;;;10 < seednumber <= 100;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Ajuga reptans;25159;actual measurement;53753.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;53753.33333;;;;10,000 < seednumber <= 100,000;1;;10798.82092;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ajuga reptans;25159;actual measurement;48;90;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;48;;;;10 < seednumber <= 100;1;;;counting ;;1999-06-13 00:00:00.0;;;UNITED KINGDOM Ajuga reptans;25159;actual measurement (following LEDA data standards);36;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51.5;160;3;36;10 < seednumber <= 100;;;;counting ;;2004-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ajuga reptans;25159;actual measurement (following LEDA data standards);21;10;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22.4;41;10;21;10 < seednumber <= 100;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ajuga reptans;25159;actual measurement;105;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;105;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Ajuga reptans;25159;actual measurement;38;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;56.3;;;38;10 < seednumber <= 100;1;10.66984328;33.74100703;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Alcea rosea;25760;laboratory/greenhouse/garden experiment;8345;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8345;8345;8345;8345;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Alcea rosea;25760;laboratory/greenhouse/garden experiment;1395;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1194.33;1737;451;1395;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-09-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Alchemilla alpina;29517;actual measurement (following LEDA data standards);50.5;6;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;54.33;93;35;50.5;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Alchemilla alpina;29517;actual measurement;25;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];25;;;;10 < seednumber <= 100;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Alchemilla glabra;30979;actual measurement (following LEDA data standards);150;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;150;150;150;150;100 < seednumber <= 1000;;;;estimation ;single flower inflorescence ;;preaggregated value obtained from single record;;GERMANY Alchemilla glabra;30979;actual measurement;60;250;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;60;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-21 00:00:00.0;;;UNITED KINGDOM Alchemilla glabra;30979;actual measurement (following LEDA data standards);36;4;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;37.25;49;28;36;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Alchemilla glaucescens;29479;actual measurement;193;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;193;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Alchemilla glomerulans;30703;actual measurement;51.9;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;51.9;95;16;;10 < seednumber <= 100;1;;;counting ;unknown;;only full developed seeds, seed setting: 20% of the number of flowers,13.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Alchemilla monticola;29465;actual measurement (following LEDA data standards);200;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;200;200;200;200;100 < seednumber <= 1000;;;;estimation ;single flower inflorescence ;;preaggregated value obtained from single record;;GERMANY Alchemilla monticola;29465;actual measurement;55413;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;55413;;;;10,000 < seednumber <= 100,000;1;;65324.89378;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Alchemilla propinqua;30381;actual measurement (following LEDA data standards);250;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;250;250;250;250;100 < seednumber <= 1000;;;;estimation ;single flower inflorescence ;;preaggregated value obtained from single record;;GERMANY Alchemilla subcrenata;30359;actual measurement (following LEDA data standards);80;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;80;80;80;80;10 < seednumber <= 100;;;;estimation ;single flower inflorescence ;;preaggregated value obtained from single record;;GERMANY Alchemilla subglobosa;29864;actual measurement (following LEDA data standards);200;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;200;200;200;200;100 < seednumber <= 1000;;;;estimation ;single flower inflorescence ;;preaggregated value obtained from single record;;GERMANY Alchemilla vulgaris;60849;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;400;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Alchemilla vulgaris;60849;actual measurement;34.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;34.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Alchemilla vulgaris;60849;actual measurement (following LEDA data standards);300;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;300;300;300;300;100 < seednumber <= 1000;;;;estimation ;single flower inflorescence ;;PREAGGREGATED! Raw record's comment: one seed per fruit, number of seeds was estimated by number of flowers;;GERMANY Alchemilla vulgaris;60849;estimation (following LEDA data standards);300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;300;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Alchemilla vulgaris;60849;actual measurement;1751;;per square meter;BIOPOP April 2005;;3458;44;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Alchemilla vulgaris;60849;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Alchemilla xanthochlora;30366;actual measurement (following LEDA data standards);250;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;250;250;250;250;100 < seednumber <= 1000;;;;estimation ;single flower inflorescence ;;preaggregated value obtained from single record;;GERMANY Alisma plantago-aquatica;35609;actual measurement (following LEDA data standards);7710;14;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10737.79;35056;1672;7710;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-12 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Alisma plantago-aquatica;35609;estimation;36518;11;per ramet/tussock or individual plant ;BIOPOP April 2005;36518;46284;26752;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Alisma plantago-aquatica;35609;actual measurement;4620;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];4620;19236;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Alisma plantago-aquatica;35609;actual measurement;1200;4;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;1200;;;;1000 < seednumber <= 10,000;1;;;counting ;;1999-07-11 00:00:00.0;;;UNITED KINGDOM Alisma plantago-aquatica;35609;actual measurement;330444;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;330444;;;;seednumber > 100,000;1;;378344.8307;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Alisma plantago-aquatica;35609;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Alliaria petiolata;13080;actual measurement;288;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;288;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Alliaria petiolata;13080;actual measurement (following LEDA data standards);2231;14;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2637.5;6682;420;2231;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-06-04 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Alliaria petiolata;13080;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Alliaria petiolata;13080;actual measurement;138507.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;138507.5;;;;seednumber > 100,000;1;;154832.2325;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Allium oleraceum;38816;estimation (following LEDA data standards);55;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;80;30;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Allium oleraceum;38816;actual measurement (following LEDA data standards);14;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14;20;8;14;10 < seednumber <= 100;;;;counting ;;2004-08-31 00:00:00.0;preaggregated value obtained from single record;;GERMANY Allium paradoxum;38827;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Allium schoenoprasum;39221;actual measurement (following LEDA data standards);162;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;155.7;207;81;162;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-06-11 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Allium schoenoprasum;39221;actual measurement (following LEDA data standards);4149;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4384.6;8760;606;4149;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-12 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Allium scorodoprasum;39339;actual measurement (following LEDA data standards);0;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;0;0;0;0;seednumber <= 10;;;;counting ;;2003-07-22 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Allium scorodoprasum;39339;actual measurement (following LEDA data standards);81;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;81;81;81;81;10 < seednumber <= 100;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Allium senescens;39230;actual measurement (following LEDA data standards);35;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;47.3;97;16;35;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Allium sphaerocephalon;39232;estimation;1.5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;1;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): usually 1 or 2;Lovatt, C. M.(1982): The history, ecology and status of the rare plants and the vegetation of the Avon Gorge, Bristol. PhD thesis, University of Bristol. []; Allium sphaerocephalon;39232;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Lovatt, C. M.(1982): The history, ecology and status of the rare plants and the vegetation of the Avon Gorge, Bristol. PhD thesis, University of Bristol. []; Allium ursinum;39243;actual measurement;4751.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4751.25;;;;1000 < seednumber <= 10,000;1;;2294.669094;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Allium ursinum;39243;actual measurement;330;300;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;360;300;;100 < seednumber <= 1000;1;;;counting ;;1998-06-11 00:00:00.0;;;UNITED KINGDOM Allium ursinum;39243;actual measurement;95;;per ramet/tussock or individual plant ;BIOPOP April 2005;95;97.8;92.2;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Allium ursinum;39243;estimation (following LEDA data standards);30;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;45;15;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Allium ursinum;39243;actual measurement (following LEDA data standards);9;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.13;22;4;9;seednumber <= 10;;;;counting and extrapolation ;single flower inflorescence ;2003-06-04 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Allium ursinum;39243;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Alopecurus aequalis;40867;laboratory/greenhouse/garden experiment;843;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1994.2;6118;237;843;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Alopecurus bulbosus;42103;laboratory/greenhouse/garden experiment;963;4;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);963.75;1672;257;963;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Alopecurus myosuroides;41138;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Naylor, R. E. C.(1972): no title given, publication in Journal of Applied Ecology issue: 9 pages: 127-139 [9]; Alopecurus myosuroides;41138;unknown;1040;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;2000;80;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Alopecurus myosuroides;41138;actual measurement;7500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant General comment: max >7500;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Alopecurus myosuroides;41138;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Alopecurus myosuroides;41138;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Alopecurus myosuroides;41138;unknown;7614;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7614;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: older plants;Naylor, R. E. L. (1972): Biological flora of the British Isles: Alopecurus myosuroides Huds. [60]; Alopecurus myosuroides;41138;estimation (following LEDA data standards);220;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;400;40;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Alopecurus myosuroides;41138;unknown;140;;per ramet/tussock or individual plant ;BIOPOP April 2005;;270;10;;100 < seednumber <= 1000;;;;unknown;unknown;;;Naylor, R. E. L. (1972): Biological flora of the British Isles: Alopecurus myosuroides Huds. [60]; Alopecurus myosuroides;41138;unknown;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;100;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: younger plants;Naylor, R. E. L. (1972): Biological flora of the British Isles: Alopecurus myosuroides Huds. [60]; Alopecurus myosuroides;41138;laboratory/greenhouse/garden experiment;4356;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);3850.2;5720;2205;4356;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Alopecurus pratensis;40391;actual measurement;414;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;414;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Alopecurus pratensis;40391;actual measurement;90308.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;90308.75;;;;10,000 < seednumber <= 100,000;1;;16903.19416;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Althaea officinalis;25782;laboratory/greenhouse/garden experiment;149;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;191.5;392;76;149;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Alyssum alyssoides;13424;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Alyssum alyssoides;13424;actual measurement;103912.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;103912.75;;;;seednumber > 100,000;1;;66534.372;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Alyssum alyssoides;13424;laboratory/greenhouse/garden experiment;1160;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5082.43;25160;184;1160;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Alyssum alyssoides;13424;actual measurement (following LEDA data standards);620;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;982.55;4992;240;620;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-05-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Alyssum montanum;14366;actual measurement (following LEDA data standards);68;1;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;68;68;68;68;10 < seednumber <= 100;;;;counting ;;2005-05-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Amaranthus albus;891;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Amaranthus caudatus;894;laboratory/greenhouse/garden experiment;7148.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7048.8;15817;2166;7148.5;1000 < seednumber <= 10,000;;;;counting ;;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Amaranthus lividus;924;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;100;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Amaranthus lividus;924;laboratory/greenhouse/garden experiment;387.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1557.1;6069;200;387.5;100 < seednumber <= 1000;;;;counting and weighing ;;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Amaranthus powellii;44854;actual measurement;100000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Amaranthus powellii;44854;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Amaranthus powellii;44854;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Amaranthus retroflexus;931;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Amaranthus retroflexus;931;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Amaranthus retroflexus;931;laboratory/greenhouse/garden experiment;4491;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6593;32677;75;4491;1000 < seednumber <= 10,000;;;;counting and weighing ;;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Amaranthus retroflexus;931;actual measurement;138122.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;138122.5;;;;seednumber > 100,000;1;;55161.92536;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Amaranthus retroflexus;931;unknown;3000;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;5000;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Ambrosia artemisiifolia;4198;actual measurement;62000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;62000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ambrosia artemisiifolia;4198;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ambrosia artemisiifolia;4198;laboratory/greenhouse/garden experiment;7563;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7138.6;13572;1171;7563;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-10-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ambrosia coronopifolia;5955;actual measurement (following LEDA data standards);0;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;0;0;0;0;seednumber <= 10;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-11 00:00:00.0;PREAGGREGATED! Raw record's comment: all steril;;GERMANY Ambrosia trifida;6319;laboratory/greenhouse/garden experiment;235;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;583.11;1860;33;235;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-10-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Amelanchier lamarckii;50025;actual measurement (following LEDA data standards);19;8;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.63;26;11;19;10 < seednumber <= 100;;;;counting ;;2005-07-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Amelanchier lamarckii;50025;actual measurement (following LEDA data standards);1.5;6;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.5;2;1;1.5;seednumber <= 10;;;;counting ;;2004-07-28 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Amelanchier ovalis;29390;actual measurement (following LEDA data standards);741;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;948.67;1393;712;741;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ammophila arenaria;40398;estimation;35650;;per ramet/tussock or individual plant ;BIOPOP April 2005;35650;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;problematic value - seed production of a clone with several tillers!;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Anacamptis pyramidalis;39443;unknown;35000;1;per ramet/tussock or individual plant ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];35000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;from literatur: Tournay, 1960, no mean!;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Anacamptis pyramidalis;39443;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Anacamptis pyramidalis;39443;estimation;35000;;per ramet/tussock or individual plant ;BIOPOP April 2005;35000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Anagallis arvensis;28783;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;300;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Anagallis arvensis;28783;actual measurement;212971;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;212971;;;;seednumber > 100,000;1;;98189.38329;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Anagallis arvensis;28783;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;300;100;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Anagallis arvensis;28783;estimation;45;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;45;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: arvensis Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Anagallis arvensis;28783;actual measurement;902;135;per ramet/tussock or individual plant ;BIOPOP April 2005;902;956;848;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Anagallis arvensis;28783;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anagallis arvensis;28783;actual measurement;250;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;200;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anagallis foemina;29031;estimation;466;86;per ramet/tussock or individual plant ;BIOPOP April 2005;466;542;390;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Anagallis foemina;29031;laboratory/greenhouse/garden experiment;3700;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3925.14;7440;1206;3700;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anagallis foemina;29031;actual measurement;325;;per ramet/tussock or individual plant ;BIOPOP April 2005;;450;200;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anagallis foemina;29031;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anagallis minima;28953;estimation;31;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;31;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1969): no title given, publication in Watsonia issue: 7 pages: 25-39 [7]; Anagallis minima;28953;actual measurement (following LEDA data standards);309;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;292.7;363;103;309;100 < seednumber <= 1000;;;;counting ;;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anagallis minima;28953;estimation;245;229;per ramet/tussock or individual plant ;BIOPOP April 2005;245;268;222;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Anagallis tenella;28935;actual measurement (following LEDA data standards);32;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;32.4;65;11;32;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-09-21 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Anarrhinum bellidifolium;33247;laboratory/greenhouse/garden experiment;27310;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32045.63;64320;15075;27310;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-09-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anchusa arvensis;12189;actual measurement;700;;per ramet/tussock or individual plant ;BIOPOP April 2005;700;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anchusa arvensis;12189;estimation (following LEDA data standards);700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;1200;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Anchusa arvensis;12189;estimation (following LEDA data standards);700;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;1200;200;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Anchusa arvensis;12189;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Anchusa arvensis;12189;actual measurement;128;25;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;240;16;;100 < seednumber <= 1000;1;;;counting ;;1999-08-28 00:00:00.0;;;UNITED KINGDOM Anchusa arvensis;12189;actual measurement;33982;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33982;;;;10,000 < seednumber <= 100,000;1;;25986.11352;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Anchusa azurea;12594;laboratory/greenhouse/garden experiment;324;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;324;324;324;324;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anchusa officinalis;12527;estimation (following LEDA data standards);900;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;900;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Anchusa officinalis;12527;actual measurement (following LEDA data standards);336;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;614;1868;164;336;100 < seednumber <= 1000;;;;counting ;;2003-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Androsace lactea;29061;actual measurement (following LEDA data standards);309.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;318.2;602;45;309.5;100 < seednumber <= 1000;;;;counting ;;2003-06-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Androsace maxima;28785;laboratory/greenhouse/garden experiment;36;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44.67;118;5;36;10 < seednumber <= 100;;;;counting ;;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Androsace septentrionalis;28905;laboratory/greenhouse/garden experiment;49;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;62.2;144;22;49;10 < seednumber <= 100;;;;counting ;;2005-05-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anemone nemorosa;27355;actual measurement;17.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;17.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;2386.5;;per square meter;BIOPOP April 2005;;4750;23;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;19;;per ramet/tussock or individual plant ;BIOPOP April 2005;19;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;18.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;18.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;22;;per ramet/tussock or individual plant ;BIOPOP April 2005;22;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;23.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;23.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;882;;per square meter;BIOPOP April 2005;;1680;84;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;1615;;per square meter;BIOPOP April 2005;;1615;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;9450;;per square meter;BIOPOP April 2005;;9450;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;528;;per square meter;BIOPOP April 2005;;1020;36;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;22.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;22.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;480;;per square meter;BIOPOP April 2005;;480;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;16.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;16.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;80;;per square meter;BIOPOP April 2005;;80;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;14;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Anemone nemorosa;27355;actual measurement;17;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17.2;;;17;10 < seednumber <= 100;1;.813770374;2.573367875;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Anemone nemorosa;27355;actual measurement (following LEDA data standards);26;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;26;40;12;26;10 < seednumber <= 100;;;;counting ;;2003-05-19 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Anemone nemorosa;27355;actual measurement;60182.16667;6;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60182.16667;;;;10,000 < seednumber <= 100,000;1;;42040.13678;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Anemone nemorosa;27355;actual measurement;16.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;16.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;360;;per square meter;BIOPOP April 2005;;360;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;actual measurement;2;;per square meter;BIOPOP April 2005;;;2;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone nemorosa;27355;estimation;47;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;47;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Shirreffs, D. A. (unknown e-mail address); Anemone nemorosa;27355;estimation;22.1;193;per ramet/tussock or individual plant ;BIOPOP April 2005;22.1;22.39;21.81;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Anemone nemorosa;27355;estimation;8250;;per square meter;BIOPOP April 2005;;8250;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Anemone nemorosa;27355;estimation;3300;;per square meter;BIOPOP April 2005;3300;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Anemone nemorosa;27355;actual measurement;33.6;5;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];33.6;36;31;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Anemone ranunculoides;27359;actual measurement;1;;per square meter;BIOPOP April 2005;;;1;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone ranunculoides;27359;laboratory/greenhouse/garden experiment;18;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21.6;46;13;18;10 < seednumber <= 100;;;;counting ;;2004-05-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anemone ranunculoides;27359;actual measurement;.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anemone ranunculoides;27359;actual measurement;13;;per square meter;BIOPOP April 2005;;13;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anethum graveolens;1512;actual measurement (following LEDA data standards);525;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;815;2060;115;525;100 < seednumber <= 1000;;;;counting ;;2004-09-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Angelica archangelica;1514;estimation;22500;10;per ramet/tussock or individual plant ;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];22500;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;ssp. litoralis, number of fruit sets!;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];GERMANY Angelica archangelica;1514;estimation;37625;10;per ramet/tussock or individual plant ;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];;70000;5250;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;ssp. litoralis, number of fruit sets!;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];GERMANY Angelica archangelica;1514;estimation;1225;10;per multiple flower inflorescence ;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];;1400;1050;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;ssp. litoralis, number of fruit sets!;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];GERMANY Angelica archangelica;1514;actual measurement (following LEDA data standards);2160;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2058;2700;1380;2160;1000 < seednumber <= 10,000;;;;counting ;;2005-09-18 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Angelica sylvestris;1519;actual measurement;20352;;per square meter;BIOPOP April 2005;;20352;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;2713;;per ramet/tussock or individual plant ;BIOPOP April 2005;2713;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;1428;;per ramet/tussock or individual plant ;BIOPOP April 2005;1428;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;4296;;per square meter;BIOPOP April 2005;;4296;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;19578;;per square meter;BIOPOP April 2005;;19578;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement (following LEDA data standards);12960;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12424.56;15371;8645;12960;10,000 < seednumber <= 100,000;;;;counting ;;2003-08-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Angelica sylvestris;1519;actual measurement;1204.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1880.7;;;1204.5;1000 < seednumber <= 10,000;1;430.2743582;1360.646991;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Angelica sylvestris;1519;actual measurement;59794;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;102272;17316;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Angelica sylvestris;1519;actual measurement;15643;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15643;;;;10,000 < seednumber <= 100,000;1;;15939.36344;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Angelica sylvestris;1519;actual measurement;4895;;per ramet/tussock or individual plant ;BIOPOP April 2005;4895;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;804.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;804.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;2826;;per ramet/tussock or individual plant ;BIOPOP April 2005;2826;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;1530;;per square meter;BIOPOP April 2005;;1530;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;16616;;per square meter;BIOPOP April 2005;;16616;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;19578;;per ramet/tussock or individual plant ;BIOPOP April 2005;;19578;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Angelica sylvestris;1519;actual measurement;2713;;per ramet/tussock or individual plant ;BIOPOP April 2005;2713;9083;1733;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Antennaria dioica;2770;actual measurement;280;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;280;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Anthemis arvensis;3024;unknown;3540;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3540;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis arvensis L.;UNITED KINGDOM Anthemis arvensis;3024;unknown;14;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;14;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: small plant;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis arvensis L.;UNITED KINGDOM Anthemis arvensis;3024;laboratory/greenhouse/garden experiment;408;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;388;934;102;408;100 < seednumber <= 1000;;;;counting ;;2004-10-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anthemis arvensis;3024;estimation (following LEDA data standards);4400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4400;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Anthemis arvensis;3024;estimation (following LEDA data standards);4500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;5000;4000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Anthemis arvensis;3024;actual measurement;114099.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;114099.6667;;;;seednumber > 100,000;1;;115168.7;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Anthemis arvensis;3024;unknown;900;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1200;600;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: small plant;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis arvensis L.;UNITED KINGDOM Anthemis arvensis;3024;unknown;18480;;per ramet/tussock or individual plant ;BIOPOP April 2005;;18480;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis arvensis L.;UNITED KINGDOM Anthemis arvensis;3024;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;1000;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anthemis arvensis;3024;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anthemis arvensis;3024;unknown;20;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;20;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: small plant;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis arvensis L.;UNITED KINGDOM Anthemis arvensis;3024;unknown;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis arvensis L.;POLAND Anthemis arvensis;3024;unknown;3150;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4200;2100;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: small plant;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis arvensis L.;UNITED KINGDOM Anthemis arvensis;3024;estimation;132;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;132;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Kay, Q. O. N. (1971): no title given, publication in Journal of Ecology issue: 59 pages: 637-648 [59]; Anthemis austriaca;4304;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anthemis cotula;2778;estimation;120;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;120;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis cotula L.; Anthemis cotula;2778;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;5000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anthemis cotula;2778;unknown;3500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4200;2800;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis cotula L.;UNITED KINGDOM Anthemis cotula;2778;unknown;962.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1375;550;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis cotula L.;UNITED KINGDOM Anthemis cotula;2778;unknown;9750;;per ramet/tussock or individual plant ;BIOPOP April 2005;;12000;7500;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis cotula L.;UNITED KINGDOM Anthemis cotula;2778;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1200;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Anthemis cotula;2778;unknown;27000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;27000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kay, Q. O. N. (1971): Biological flora of the British Isles: Anthemis cotula L.;UNITED KINGDOM Anthemis tinctoria;2787;estimation (following LEDA data standards);11500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;11500;40000;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Anthemis tinctoria;2787;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;3000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anthericum liliago;38767;laboratory/greenhouse/garden experiment;26.6;30;per ramet/tussock or individual plant ;BIOPOP April 2005;26.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 5;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Anthericum liliago;38767;laboratory/greenhouse/garden experiment;31.1;30;per ramet/tussock or individual plant ;BIOPOP April 2005;31.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 4;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Anthericum liliago;38767;laboratory/greenhouse/garden experiment;12.2;30;per ramet/tussock or individual plant ;BIOPOP April 2005;12.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 1;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Anthericum liliago;38767;laboratory/greenhouse/garden experiment;10.2;30;per ramet/tussock or individual plant ;BIOPOP April 2005;10.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 2;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Anthericum liliago;38767;laboratory/greenhouse/garden experiment;30.9;30;per ramet/tussock or individual plant ;BIOPOP April 2005;30.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 3;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Anthericum ramosum;38246;actual measurement (following LEDA data standards);62.5;14;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;64.43;137;24;62.5;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);3;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;4;7;2;3;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);3;6;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;3.33;6;2;3;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);27.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29.6;45;22;27.5;10 < seednumber <= 100;;;;counting ;;2004-08-05 00:00:00.0;preaggregated value obtained from single record;;FRANCE Anthoxanthum aristatum;40551;laboratory/greenhouse/garden experiment;1014;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1014;1014;1014;1014;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anthoxanthum aristatum;40551;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anthoxanthum aristatum;40551;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Anthoxanthum aristatum;40551;laboratory/greenhouse/garden experiment;2248.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2421.8;7028;380;2248.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anthoxanthum odoratum;41907;actual measurement;1038.5;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1333;744;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Anthoxanthum odoratum;41907;actual measurement;211894.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;211894.6667;;;;seednumber > 100,000;1;;329038.0687;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Anthoxanthum odoratum;41907;actual measurement;15.5;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;15.5;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 75% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Anthoxanthum odoratum;41907;actual measurement;14.5;;per multiple flower inflorescence ;BIOPOP April 2005;14.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;30;;per square meter;BIOPOP April 2005;;30;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;14.2;;per multiple flower inflorescence ;BIOPOP April 2005;14.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;57;;per square meter;BIOPOP April 2005;;57;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;15.5;;per multiple flower inflorescence ;BIOPOP April 2005;15.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;54.5;;per square meter;BIOPOP April 2005;;98;11;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;17.1;;per multiple flower inflorescence ;BIOPOP April 2005;17.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;230;;per square meter;BIOPOP April 2005;;345;115;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;12.3;;per multiple flower inflorescence ;BIOPOP April 2005;12.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;342;;per square meter;BIOPOP April 2005;;418;266;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;19.6;;per multiple flower inflorescence ;BIOPOP April 2005;19.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;4526;;per square meter;BIOPOP April 2005;;8990;62;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;15.1;;per multiple flower inflorescence ;BIOPOP April 2005;15.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;actual measurement;767;;per square meter;BIOPOP April 2005;;767;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthoxanthum odoratum;41907;unknown;9;;per square meter;BIOPOP April 2005;9;;;;seednumber <= 10;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Anthoxanthum odoratum;41907;actual measurement;9;10;per multiple flower inflorescence ;BIOPOP April 2005;9;;;;seednumber <= 10;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Anthoxanthum odoratum;41907;actual measurement;304;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;304;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Anthoxanthum odoratum;41907;actual measurement;13.7;11;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;13.7;20;7;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 70% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Anthoxanthum odoratum;41907;actual measurement;13.6;11;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;13.6;25;4;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 74% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Anthoxanthum odoratum;41907;laboratory/greenhouse/garden experiment;157;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);157;157;157;157;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anthoxanthum odoratum;41907;actual measurement;108;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;169;;;108;100 < seednumber <= 1000;1;45.44227107;143.7010786;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Anthriscus caucalis;1975;laboratory/greenhouse/garden experiment;9135;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10725.18;34200;2169;9135;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anthriscus cerefolium;1526;laboratory/greenhouse/garden experiment;959.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1268.1;3663;454;959.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Anthriscus sylvestris;1916;actual measurement;62448.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;62448.25;;;;10,000 < seednumber <= 100,000;1;;48674.58561;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Anthriscus sylvestris;1916;actual measurement;9309;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];9309;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Anthriscus sylvestris;1916;actual measurement;5952;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];5952;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Anthriscus sylvestris;1916;actual measurement;149;7;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];149;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Anthriscus sylvestris;1916;actual measurement;310;6;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];310;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Anthriscus sylvestris;1916;actual measurement;506;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;506;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Anthriscus sylvestris;1916;actual measurement;408;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;408;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Anthriscus sylvestris;1916;unknown;5400;;unknown;BIOPOP April 2005;;10000;800;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Darbyshire, S. J.(1999): The biology of Canadian weeds. 111. Anthriscus sylvestris (L.) Hoffm. [79(4)]; Anthriscus sylvestris;1916;unknown;5400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;800;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Darbyshire, S. J.(1999): The biology of Canadian weeds. 111. Anthriscus sylvestris (L.) Hoffm. [79(4)]; Anthriscus sylvestris;1916;actual measurement;2575;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2575;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;926.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;926.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;927.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;927.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;234.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;234.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;estimation;650;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;;1200;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): up to 1200, non-British data;van Mierlo, J. E. M.(1991): no title given, publication in Journal of Applied Ecology issue: 28 pages: 128-139 [28]; Anthriscus sylvestris;1916;estimation (following LEDA data standards);10000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;10000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Anthriscus sylvestris;1916;actual measurement;807.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;807.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;1908;;per square meter;BIOPOP April 2005;;1908;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;132.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;132.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;450;;per square meter;BIOPOP April 2005;;450;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;474.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;474.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;1180;;per square meter;BIOPOP April 2005;;1180;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement (following LEDA data standards);2457;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2628.8;6956;512;2457;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-06-22 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Anthriscus sylvestris;1916;unknown;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;800;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa; Anthriscus sylvestris;1916;actual measurement;592;;per square meter;BIOPOP April 2005;;592;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;4872;;per square meter;BIOPOP April 2005;;4872;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;5488;;per square meter;BIOPOP April 2005;;5488;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthriscus sylvestris;1916;actual measurement;9754;;per ramet/tussock or individual plant ;BIOPOP April 2005;;9754;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Anthyllis vulneraria;21660;actual measurement;194;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;194;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Anthyllis vulneraria;21660;actual measurement;16.6;10;per multiple flower inflorescence ;BIOPOP April 2005;16.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Anthyllis vulneraria;21660;actual measurement;30;;per ramet/tussock or individual plant ;BIOPOP April 2005;30;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant, in favourable years;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Apera interrupta;41910;laboratory/greenhouse/garden experiment;261;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;338;923;25;261;100 < seednumber <= 1000;;;;counting ;;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Apera spica-venti;40884;actual measurement;12000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;12000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Apera spica-venti;40884;unknown;12000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;12000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Wehsarg, O. (1954): Ackerunkräuter. Biologie. Allgemeine Bekämpfung und Einzelbekämpfung []; Apera spica-venti;40884;estimation (following LEDA data standards);3800;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;7000;600;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Apera spica-venti;40884;estimation (following LEDA data standards);12000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;12000;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Apera spica-venti;40884;actual measurement;600;;per ramet/tussock or individual plant ;BIOPOP April 2005;600;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Apera spica-venti;40884;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Apera spica-venti;40884;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Warwick, S. I. (1985): no title given, publication in Canadian Journal of Plant Science issue: 65 pages: 711-721 [65]; Apera spica-venti;40884;actual measurement;250801.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;250801.3333;;;;seednumber > 100,000;1;;38461.95822;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Apera spica-venti;40884;actual measurement;1626;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];1626;;;;1000 < seednumber <= 10,000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Apera spica-venti;40884;actual measurement;850;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;850;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-19 00:00:00.0;;;UNITED KINGDOM Apera spica-venti;40884;unknown;6500;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;12000;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Apera spica-venti;40884;laboratory/greenhouse/garden experiment;9928;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);10533.8;16848;5232;9928;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aphanes arvensis;29391;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Aphanes arvensis;29391;actual measurement;6000;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;8000;4000;;1000 < seednumber <= 10,000;1;;;counting ;;1997-07-19 00:00:00.0;;;UNITED KINGDOM Aphanes arvensis;29391;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;150;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Aphanes arvensis;29391;actual measurement;242204.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;242204.6667;;;;seednumber > 100,000;1;;48780.44757;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Aphanes arvensis;29391;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Sculthorpe, C. D.(1967): The Biology Of Aquatic Vascular Plants, Edward Arnold Ltd, London []; Aphanes inexspectata;50026;actual measurement;40;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;60;20;;10 < seednumber <= 100;1;;;counting ;;1997-08-04 00:00:00.0;;;UNITED KINGDOM Aphanes inexspectata;50026;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Aphanes inexspectata;50026;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Apium graveolens;1456;actual measurement (following LEDA data standards);380;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;368;440;280;380;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-26 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Apium inundatum;1920;actual measurement (following LEDA data standards);18;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22.36;48;12;18;10 < seednumber <= 100;;;;counting ;;2004-06-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Apium nodiflorum;1922;actual measurement (following LEDA data standards);238;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;248.2;272;238;238;100 < seednumber <= 1000;;;;counting ;;2005-07-21 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Aquilegia vulgaris;27156;actual measurement;2640;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;3630;1980;2640;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;small individuums;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Aquilegia vulgaris;27156;actual measurement;33;5;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];33.2;36;30;33;10 < seednumber <= 100;1;;;counting ;unknown;;small individuums;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Aquilegia vulgaris;27156;actual measurement;66;49;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;72;60;;10 < seednumber <= 100;1;;;counting ;;1998-07-10 00:00:00.0;;;UNITED KINGDOM Aquilegia vulgaris;27156;actual measurement (following LEDA data standards);539;7;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;606.29;889;440;539;100 < seednumber <= 1000;;;;counting ;;2004-07-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Arabidopsis suecica;13762;laboratory/greenhouse/garden experiment;5973;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5462.7;9604;879;5973;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Arabidopsis thaliana;12652;actual measurement;4448014;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4448014;;;;seednumber > 100,000;1;;2681968.939;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Arabidopsis thaliana;12652;estimation;45;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;45;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Arabidopsis thaliana;12652;actual measurement;5711;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5711;;;;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Arabidopsis thaliana;12652;actual measurement (following LEDA data standards);673;4;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1071.75;2881;60;673;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-05-28 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Arabidopsis thaliana;12652;actual measurement;83.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;83.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Arabidopsis thaliana;12652;actual measurement;14317.5;;per square meter;BIOPOP April 2005;;21995;6640;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Arabidopsis thaliana;12652;actual measurement;83.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;83.2;144;48;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Arabidopsis thaliana;12652;actual measurement;144;;per ramet/tussock or individual plant ;BIOPOP April 2005;;144;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Arabidopsis thaliana;12652;actual measurement;21995;;per square meter;BIOPOP April 2005;;21995;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Arabidopsis thaliana;12652;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Arabidopsis thaliana;12652;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Arabis glabra;13349;actual measurement;1483500;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1483500;;;;seednumber > 100,000;1;;851110.8917;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Arabis hirsuta;13002;actual measurement;750;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;750;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Arabis hirsuta;13002;actual measurement;1103333.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1103333.333;;;;seednumber > 100,000;1;;789957.8048;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Arabis sagittata;14273;actual measurement (following LEDA data standards);88;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;88;88;88;88;10 < seednumber <= 100;;;;counting ;;2004-05-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Arabis stricta;13357;estimation;26;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;26;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 26;Pring, M. E.(1961): no title given, publication in Journal of Ecology issue: 49 pages: 431-437 [49]; Arabis stricta;13357;estimation;130;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;130;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 130;Pring, M. E.(1961): no title given, publication in Journal of Ecology issue: 49 pages: 431-437 [49]; Arabis turrita;13010;unknown;2000;1;per ramet/tussock or individual plant ;Salisbury, S.E.(1964): Weeds & Aliens;2000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Arabis turrita;13010;unknown;60;1;per single flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;60;;;;10 < seednumber <= 100;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Arbutus unedo;19577;estimation;40;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;40;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Sealy, J. R.(1950): no title given, publication in Journal of Ecology issue: 38 pages: 223-236 [38]; Arctium lappa;6084;actual measurement;15166.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15166.66667;;;;10,000 < seednumber <= 100,000;1;;3685.557398;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Arctium lappa;6084;estimation (following LEDA data standards);26000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;26000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Arctium lappa;6084;estimation (following LEDA data standards);24520;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;24520;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Arctium lappa;6084;unknown;8200;;per ramet/tussock or individual plant ;BIOPOP April 2005;8200;10500;6500;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Gross, R. S.(1980): The biology of Canadian weeds. 38. Arctium minus (Hill.) Bernh. and Arctium lappa L.;CANADA Arctium lappa;6084;estimation (following LEDA data standards);3700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3700;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Arctium lappa;6084;estimation (following LEDA data standards);12388;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;12388;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Arctium lappa;6084;laboratory/greenhouse/garden experiment;8978;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9826;15602;4898;8978;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Arctium minus;4154;estimation;64;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;64;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Straw, N. A. (unknown e-mail address); Arctium minus;4154;estimation (following LEDA data standards);43;1;per multiple flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;43;;;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Arctium minus;4154;estimation (following LEDA data standards);1900;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1900;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Arctium minus;4154;unknown;18119;;per ramet/tussock or individual plant ;BIOPOP April 2005;18119;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Gross, R. S.(1980): The biology of Canadian weeds. 38. Arctium minus (Hill.) Bernh. and Arctium lappa L.;UNITED STATES Arctium minus;4154;unknown;13400;;per ramet/tussock or individual plant ;BIOPOP April 2005;13400;17000;9800;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Gross, R. S.(1980): The biology of Canadian weeds. 38. Arctium minus (Hill.) Bernh. and Arctium lappa L.;CANADA Arctium minus;4154;unknown;11700;;per ramet/tussock or individual plant ;BIOPOP April 2005;11700;16300;6000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Gross, R. S.(1980): The biology of Canadian weeds. 38. Arctium minus (Hill.) Bernh. and Arctium lappa L.;CANADA Arctium minus;4154;unknown;11600;;per ramet/tussock or individual plant ;BIOPOP April 2005;11600;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Gross, R. S.(1980): The biology of Canadian weeds. 38. Arctium minus (Hill.) Bernh. and Arctium lappa L.;UNITED STATES Arctium tomentosum;3664;actual measurement;29116.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29116.66667;;;;10,000 < seednumber <= 100,000;1;;17622.26882;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Arctium tomentosum;3664;estimation (following LEDA data standards);3400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3400;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Arctostaphylos alpinus;19579;actual measurement;5;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;5;;4;;seednumber <= 10;1;;;counting ;unknown;;,02.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Arenaria ciliata;16814;actual measurement;59.3;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;59.3;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Arenaria ciliata;16814;actual measurement;4.9;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;4.9;8;2;;seednumber <= 10;1;;;counting ;unknown;1931-08-01 00:00:00.0;Arenaria ciliata ssp. frigida;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Arenaria serpyllifolia;16833;estimation;3583;31;per ramet/tussock or individual plant ;BIOPOP April 2005;3583;4096;3070;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);405;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;502.5;1560;120;405;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Arenaria serpyllifolia;16833;actual measurement;349;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;349;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Arenaria serpyllifolia;16833;actual measurement;1256927.167;6;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1256927.167;;;;seednumber > 100,000;1;;456029.5323;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);114;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;96.83;156;9;114;100 < seednumber <= 1000;;;;counting ;;2003-06-01 00:00:00.0;PREAGGREGATED! Raw record's comment: 3: no plant, just some seeds;;GERMANY Arenaria serpyllifolia;16833;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Arenaria serpyllifolia s. leptoclados;44912;actual measurement (following LEDA data standards);91;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;114.1;312;12;91;10 < seednumber <= 100;;;;counting ;;2004-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Armeria maritima;28355;unknown;2963;;per square meter;BIOPOP April 2005;2963;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Woodell, S. R. J. (1993): Biological flora of the British Isles: Armeria maritima (Mill.) Willd. (Statice armeria L., S. maritima Mill.).;UNITED KINGDOM Armeria maritima;28355;unknown;13;;per multiple flower inflorescence ;BIOPOP April 2005;13;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Woodell, S. R. J. (1993): Biological flora of the British Isles: Armeria maritima (Mill.) Willd. (Statice armeria L., S. maritima Mill.).;DENMARK Armeria maritima;28355;unknown;34;;per multiple flower inflorescence ;BIOPOP April 2005;34;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Woodell, S. R. J. (1993): Biological flora of the British Isles: Armeria maritima (Mill.) Willd. (Statice armeria L., S. maritima Mill.).;DENMARK Armeria maritima;28355;unknown;219;;per ramet/tussock or individual plant ;BIOPOP April 2005;;419;19;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: 5 populations;Woodell, S. R. J. (1993): Biological flora of the British Isles: Armeria maritima (Mill.) Willd. (Statice armeria L., S. maritima Mill.).;DENMARK Armeria maritima;28355;unknown;265;;per square meter;BIOPOP April 2005;265;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Woodell, S. R. J. (1993): Biological flora of the British Isles: Armeria maritima (Mill.) Willd. (Statice armeria L., S. maritima Mill.).;DENMARK Armeria maritima;28355;unknown;1446;;per square meter;BIOPOP April 2005;1446;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Woodell, S. R. J. (1993): Biological flora of the British Isles: Armeria maritima (Mill.) Willd. (Statice armeria L., S. maritima Mill.).;UNITED KINGDOM Armeria maritima;28355;unknown;10528;;per square meter;BIOPOP April 2005;10528;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Woodell, S. R. J. (1993): Biological flora of the British Isles: Armeria maritima (Mill.) Willd. (Statice armeria L., S. maritima Mill.).;UNITED KINGDOM Armeria maritima s. halleri;28712;actual measurement (following LEDA data standards);225.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;270.4;667;96;225.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-26 00:00:00.0;PREAGGREGATED! Raw record's comment: """flower head""";;GERMANY Armoracia rusticana;13400;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Armoracia rusticana;13400;actual measurement (following LEDA data standards);1715;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1715;1715;1715;1715;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Armoracia rusticana;13400;actual measurement (following LEDA data standards);42250;2;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;42250;43500;41000;42250;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Arnica angustifolia s. alpina;4309;actual measurement;52.4;10;per ramet/tussock or individual plant ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;52.4;;;;10 < seednumber <= 100;1;;;counting ;unknown;2006-01-24 00:00:00.0;seednumber per head, a single individual has only one head;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Arnica montana;3665;actual measurement;67303.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;67303.66667;;;;10,000 < seednumber <= 100,000;1;;19957.03235;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Arnoseris minima;3666;actual measurement;600;;per ramet/tussock or individual plant ;BIOPOP April 2005;;600;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Arnoseris minima;3666;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Arnoseris minima;3666;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Arnoseris minima;3666;estimation;60;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;60;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Arrhenatherum elatius;40414;laboratory/greenhouse/garden experiment;10;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);10;10;10;10;seednumber <= 10;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Arrhenatherum elatius;40414;actual measurement;25150.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25150.66667;;;;10,000 < seednumber <= 100,000;1;;10955.36989;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Artemisia absinthium;5486;unknown;11530;7;unknown;BIOPOP April 2005;11530;188383;63124;;10,000 < seednumber <= 100,000;;;;counting and weighing ;unknown;;;Maw, M. G.(1985): The biology of Canadian weeds. 66. Artemisia absinthium L.;CANADA Artemisia absinthium;5486;actual measurement;4500;4;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;5000;4000;;1000 < seednumber <= 10,000;1;;;counting ;;1999-10-07 00:00:00.0;;;UNITED KINGDOM Artemisia absinthium;5486;estimation;38;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;38;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): seeds/flowering head, non-British recording;Maw, M. G.(1985): The biology of Canadian weeds. 66. Artemisia absinthium L.; Artemisia campestris;2974;actual measurement (following LEDA data standards);24768;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29181;62778;1397;24768;10,000 < seednumber <= 100,000;;;;counting ;;2004-10-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Artemisia maritima;2981;actual measurement (following LEDA data standards);637.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;670.5;1200;370;637.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-10-05 00:00:00.0;preaggregated value obtained from single record;;DENMARK Artemisia maritima;2981;actual measurement (following LEDA data standards);0;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;0;0;0;0;seednumber <= 10;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Artemisia vulgaris;4158;unknown;200000;1;per multiple flower inflorescence ;Barney, J.N.(2002): The biology of Canadian weeds. 118. Artemisia vulgaris L. [];;200000;;;seednumber > 100,000;1;;;unknown;unknown;;Pawlowski et al. 1967;Barney, J.N.(2002): The biology of Canadian weeds. 118. Artemisia vulgaris L. [];UNITED STATES Artemisia vulgaris;4158;actual measurement;177548;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;177548;;;;seednumber > 100,000;1;;90015.96365;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Artemisia vulgaris;4158;actual measurement;500000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Artemisia vulgaris;4158;actual measurement;200000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200000;;;seednumber > 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Artemisia vulgaris;4158;estimation (following LEDA data standards);375000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;700000;50000;;seednumber > 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Arum italicum;35838;actual measurement;125.58;2;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;125.58;;;;100 < seednumber <= 1000;1;;;counting ;;1998-09-18 00:00:00.0;;;UNITED KINGDOM Arum italicum;35838;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Prime, C. T.(1960): Lords and Ladies, Collins, London []; Arum maculatum;35847;actual measurement (following LEDA data standards);34;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;38.2;61;18;34;10 < seednumber <= 100;;;;counting ;;2003-08-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Arum maculatum;35847;estimation;29.4;328;per ramet/tussock or individual plant ;BIOPOP April 2005;29.4;30.5;28.3;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Arum maculatum;35847;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Prime, C. T.(1955): no title given, publication in Watsonia issue: 3 pages: 181-185 [3]; Aruncus dioicus;31209;actual measurement;32458.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32458.66667;;;;10,000 < seednumber <= 100,000;1;;15398.83701;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Asarum europaeum;2429;actual measurement;8466.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8466.666667;;;;1000 < seednumber <= 10,000;1;;4801.388688;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Asparagus officinalis;38660;actual measurement;63;35;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;125;1;;10 < seednumber <= 100;1;;;counting ;;1999-09-15 00:00:00.0;;;UNITED KINGDOM Asparagus officinalis;38660;actual measurement (following LEDA data standards);2.5;6;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.33;4;1;2.5;seednumber <= 10;;;;counting ;;2000-10-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Asparagus officinalis;38660;actual measurement (following LEDA data standards);5;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.8;6;3;5;seednumber <= 10;;;;counting ;;2003-09-24 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Asperugo procumbens;12544;actual measurement (following LEDA data standards);32;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;38;76;16;32;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-06-09 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Asperula arvensis;32387;unknown;1300;1;per ramet/tussock or individual plant ;Salisbury, S.E.(1964): Weeds & Aliens;1300;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Asperula arvensis;32387;unknown;2;1;per single flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;2;;;;seednumber <= 10;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Asperula cynanchica;31904;unknown;1280;;per square meter;BIOPOP April 2005;1280;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Asperula tinctoria;32329;actual measurement (following LEDA data standards);99;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;111.23;312;32;99;10 < seednumber <= 100;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aster amellus;3537;unknown;195;;per square meter;BIOPOP April 2005;195;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Aster lanceolatus;5496;actual measurement (following LEDA data standards);7024;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8998.17;19685;4315;7024;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aster tripolium;3539;estimation;1300;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;;1600;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): up to 1600;Waisel, Y.(1972): Biology of Halophytes, Academic Press, New York []; Aster tripolium;3539;actual measurement (following LEDA data standards);1662;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1792.17;2725;1193;1662;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Aster tripolium;3539;estimation;450;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;450;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): 450 upwards;Waisel, Y.(1972): Biology of Halophytes, Academic Press, New York []; Astragalus alpinus;21673;actual measurement;58;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];58;;;;10 < seednumber <= 100;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Astragalus cicer;21198;actual measurement (following LEDA data standards);58.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;71;212;4;58.5;10 < seednumber <= 100;;;;counting ;multiple flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Astragalus frigidus;21746;actual measurement;18.1;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;18.1;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;multiple flower inflorescence ;;high production of pods without or only 1-2 (developed) seeds per pod,30.08.31;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Astragalus glycyphyllos;22427;actual measurement;7220.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7220.75;;;;1000 < seednumber <= 10,000;1;;4144.741518;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Astragalus glycyphyllos;22427;actual measurement (following LEDA data standards);10315;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17116.67;33099;7936;10315;10,000 < seednumber <= 100,000;;;;counting ;;2003-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Astrantia major;1925;actual measurement;41293.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41293.33333;;;;10,000 < seednumber <= 100,000;1;;11616.28742;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Athyrium filix-femina;37;actual measurement (following LEDA data standards);1834146;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1878039;2429168;1344294;1834146;seednumber > 100,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex calotheca;17758;laboratory/greenhouse/garden experiment;2565;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3971.4;11392;1548;2565;1000 < seednumber <= 10,000;;;;counting ;;2004-10-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex glabriuscula;17760;laboratory/greenhouse/garden experiment;19760;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21848;52800;5880;19760;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex laciniata;17773;laboratory/greenhouse/garden experiment;22500;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28316;76572;100;22500;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex littoralis;17778;laboratory/greenhouse/garden experiment;43577.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44634.5;90125;9300;43577.5;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex micrantha;44812;laboratory/greenhouse/garden experiment;8882;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8882;16316;1448;8882;1000 < seednumber <= 10,000;;;;counting ;;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex nitens;17671;actual measurement;40959.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40959.33333;;;;10,000 < seednumber <= 100,000;1;;16744.70428;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Atriplex oblongifolia;17673;actual measurement (following LEDA data standards);1605;6;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1996.67;4660;1040;1605;1000 < seednumber <= 10,000;;;;estimation ;;2004-09-03 00:00:00.0;PREAGGREGATED! Raw record's comment: very big annuals, seed number collected only of one main twig per individual;;GERMANY Atriplex patula;17675;actual measurement;6000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant General comment: max >6000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Atriplex patula;17675;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Atriplex patula;17675;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Atriplex patula;17675;actual measurement;67944.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;67944.66667;;;;10,000 < seednumber <= 100,000;1;;76342.27207;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Atriplex patula;17675;unknown;100;;unknown;BIOPOP April 2005;100;6000;;;10 < seednumber <= 100;;;;unknown;unknown;;;Bassett, I. J. (1987): The biology of Canadian weeds. 81. Atriplex patula L., A. prostata Boucher ex DC. and A. rosea L.; Atriplex patula;17675;estimation (following LEDA data standards);3050;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;6000;100;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Atriplex patula;17675;actual measurement (following LEDA data standards);396;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;382;510;261;396;100 < seednumber <= 1000;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex patula;17675;estimation (following LEDA data standards);3050;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;6000;100;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Atriplex patula;17675;unknown;3050;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6000;100;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Bassett, I. J. (1987): The biology of Canadian weeds. 81. Atriplex patula L., A. prostata Boucher ex DC. and A. rosea L.; Atriplex praecox;17678;actual measurement;30;60;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;30;;;;10 < seednumber <= 100;1;;;counting ;;1998-08-17 00:00:00.0;;;UNITED KINGDOM Atriplex prostrata;44815;unknown;3050;;unknown;BIOPOP April 2005;;6000;100;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Bassett, I. J. (1987): The biology of Canadian weeds. 81. Atriplex patula L., A. prostata Boucher ex DC. and A. rosea L.; Atriplex rosea;17679;unknown;3050;;unknown;BIOPOP April 2005;;6000;100;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Bassett, I. J. (1987): The biology of Canadian weeds. 81. Atriplex patula L., A. prostata Boucher ex DC. and A. rosea L.; Atriplex rosea;17679;laboratory/greenhouse/garden experiment;584;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;734.3;2223;255;584;100 < seednumber <= 1000;;;;counting ;;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex tatarica;17681;laboratory/greenhouse/garden experiment;392;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;367.33;698;12;392;100 < seednumber <= 1000;;;;counting ;;2004-10-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Atriplex tatarica;17681;actual measurement (following LEDA data standards);192;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;212.75;518;34;192;100 < seednumber <= 1000;;;;counting ;;2004-08-23 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Atropa bella-donna;35087;actual measurement;32613.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32613.33333;;;;10,000 < seednumber <= 100,000;1;;10814.60741;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Atropa bella-donna;35087;estimation;74045;9;per ramet/tussock or individual plant ;BIOPOP April 2005;74045;87770;60320;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Avena fatua;40425;unknown;525;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;1000;50;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Avena fatua;40425;laboratory/greenhouse/garden experiment;29;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);52;142;4;29;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Avena fatua;40425;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Avena fatua;40425;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Avena fatua;40425;actual measurement;10;;per ramet/tussock or individual plant ;BIOPOP April 2005;10;;;;seednumber <= 10;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Avena fatua;40425;estimation (following LEDA data standards);450;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;450;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Avena sativa;41151;laboratory/greenhouse/garden experiment;339.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;361;769;11;339.5;100 < seednumber <= 1000;;;;counting ;;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Avena sterilis;41440;laboratory/greenhouse/garden experiment;113;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;216.5;624;16;113;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Avena sterilis;41440;laboratory/greenhouse/garden experiment;908.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;908.5;1703;114;908.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-07-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Avena strigosa;40565;laboratory/greenhouse/garden experiment;1243.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1578.4;4690;424;1243.5;1000 < seednumber <= 10,000;;;;counting ;;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Avenula pratensis;40921;actual measurement;188;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;188;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Avenula pratensis;40921;actual measurement (following LEDA data standards);18.5;2;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18.5;23;14;18.5;10 < seednumber <= 100;;;;counting ;;2003-06-15 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Avenula pratensis;40921;unknown;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per tussock;Dixon, J. M. (1991): Biological flora of the British Isles: Avenula (Dumort.) Dumort.; Avenula pubescens;40923;unknown;4000;;per ramet/tussock or individual plant ;BIOPOP April 2005;4000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: per tussock;Dixon, J. M. (1991): Biological flora of the British Isles: Avenula (Dumort.) Dumort.; Avenula pubescens;40923;actual measurement;43.5;;per multiple flower inflorescence ;BIOPOP April 2005;43.5;69;15;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Avenula pubescens;40923;actual measurement;43.5;;per multiple flower inflorescence ;BIOPOP April 2005;43.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Avenula pubescens;40923;actual measurement;1710;;per square meter;BIOPOP April 2005;;1710;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Avenula pubescens;40923;actual measurement;1127.5;;per square meter;BIOPOP April 2005;;2160;95;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Avenula pubescens;40923;actual measurement;137.5;;per square meter;BIOPOP April 2005;;230;45;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Avenula pubescens;40923;actual measurement;45.6;;per multiple flower inflorescence ;BIOPOP April 2005;45.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Avenula pubescens;40923;actual measurement;192;;per square meter;BIOPOP April 2005;;192;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Avenula pubescens;40923;estimation;4000;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;4000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c.4000 seeds/tussock;Dixon, J. M. (unknown e-mail address); Avenula pubescens;40923;actual measurement;59;;per multiple flower inflorescence ;BIOPOP April 2005;59;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Baldellia ranunculoides;35614;estimation;807;60;per ramet/tussock or individual plant ;BIOPOP April 2005;807;850;764;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Baldellia repens;59543;actual measurement (following LEDA data standards);51;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;57.8;85;34;51;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ballota nigra;24563;actual measurement;91669.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;91669.5;;;;10,000 < seednumber <= 100,000;1;;70754.86643;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ballota nigra;24563;actual measurement (following LEDA data standards);1068.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1131.63;1827;684;1068.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Barbarea intermedia;13016;laboratory/greenhouse/garden experiment;4316;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4316;4316;4316;4316;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Barbarea stricta;14378;laboratory/greenhouse/garden experiment;3393;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4894.33;9650;1640;3393;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Barbarea stricta;14378;laboratory/greenhouse/garden experiment;3640;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4218.11;7931;2201;3640;1000 < seednumber <= 10,000;;;;counting ;;2004-10-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Barbarea stricta;14378;actual measurement (following LEDA data standards);1333;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1903.67;3188;1190;1333;1000 < seednumber <= 10,000;;;;counting ;;2003-08-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Barbarea vulgaris;14291;estimation (following LEDA data standards);5500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;10000;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Barbarea vulgaris;14291;actual measurement;212285.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;212285.6667;;;;seednumber > 100,000;1;;134751.0297;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Barbarea vulgaris;14291;estimation (following LEDA data standards);5500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;10000;1000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Barbarea vulgaris;14291;estimation;13;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;13;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 13;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Barbarea vulgaris;14291;estimation;21;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;21;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Barbarea vulgaris;14291;estimation;38000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;38000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Bartsia alpina;34451;actual measurement;155;32;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;155;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-08 00:00:00.0;;;UNITED KINGDOM Bartsia alpina;34451;estimation;234;35;per ramet/tussock or individual plant ;BIOPOP April 2005;234;245;223;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Bartsia alpina;34451;actual measurement;227.1;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;227.1;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;2007-06-21 00:00:00.0;seed number per single shoot;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Bartsia alpina;34451;actual measurement;100;10;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;100;;;;10 < seednumber <= 100;1;;;counting ;;1998-09-23 00:00:00.0;;;UNITED KINGDOM Bartsia alpina;34451;actual measurement;225.7;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;225.7;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;2006-11-21 00:00:00.0;seed number per single shoot;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Bartsia alpina;34451;actual measurement;37;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;37;75;0;;10 < seednumber <= 100;1;;;counting ;unknown;2006-12-21 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Bartsia alpina;34451;actual measurement;333;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];333;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Bartsia alpina;34451;actual measurement;33.9;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;33.9;69;0;;10 < seednumber <= 100;1;;;counting ;unknown;2007-06-21 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Bartsia alpina;34451;estimation;60;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;60;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Bassia scoparia;44831;laboratory/greenhouse/garden experiment;3906.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4227.1;13153;1147;3906.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bellis perennis;2808;actual measurement;67407.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;67407.33333;;;;10,000 < seednumber <= 100,000;1;;17111.94207;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bellis perennis;2808;estimation;200;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;200;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Bellis perennis;2808;estimation;125;250;per multiple flower stem;BIOPOP April 2005;125;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Bellis perennis;2808;estimation;1288;250;per ramet/tussock or individual plant ;BIOPOP April 2005;1288;1359;1217;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Berteroa incana;14292;actual measurement;139387.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;139387.5;;;;seednumber > 100,000;1;;76660.35889;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Berteroa incana;14292;estimation (following LEDA data standards);7000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;7000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Berteroa incana;14292;actual measurement;51816;;per ramet/tussock or individual plant ;BIOPOP April 2005;;51816;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Berteroa incana;14292;actual measurement (following LEDA data standards);1919.5;6;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1587.33;2932;282;1919.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-20 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Berteroa incana;14292;estimation (following LEDA data standards);7300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;7300;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Berula erecta;1938;actual measurement;25000;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;25000;;;;10,000 < seednumber <= 100,000;1;;;counting ;;1999-09-09 00:00:00.0;;;UNITED KINGDOM Beta vulgaris;17819;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): seeds/fruit;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Betula nana;11715;actual measurement;5100;87;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;5100;;;;1000 < seednumber <= 10,000;1;;;counting ;;1998-09-25 00:00:00.0;;;UNITED KINGDOM Betula nana;11715;actual measurement;937.6;15;per ramet/tussock or individual plant ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;937.6;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Betula nana;11715;actual measurement;58.6;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;58.6;76;34;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Betula nana;11715;actual measurement (following LEDA data standards);1856.5;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4282.25;12640;776;1856.5;1000 < seednumber <= 10,000;;;;counting ;;2004-08-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Betula pendula;11720;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Watson, H.(1948): Botanical Notes on Trees of the British Forests, Oliver and Boyd, Edinburgh []; Betula pendula;11720;unknown;23400;;per square meter;BIOPOP April 2005;;43000;3800;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: filled seeds;Atkinson, M. D. (1992): Biological flora of the British Isles: Betula pendula Roth (B. verrucosa Ehrh. ) and B. pubescens Ehrh.;UNITED KINGDOM Betula pendula;11720;unknown;1320;;per square meter;BIOPOP April 2005;;2300;340;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: filled seeds;Atkinson, M. D. (1992): Biological flora of the British Isles: Betula pendula Roth (B. verrucosa Ehrh. ) and B. pubescens Ehrh.; Betula pendula;11720;unknown;450;1;per multiple flower inflorescence ;Schirmer, Randolf(2001): Birke - Vermehrungskünstler und Überlebensstratege [];450;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Schirmer, Randolf(2001): Birke - Vermehrungskünstler und Überlebensstratege [];GERMANY Betula pendula;11720;unknown;53200;;per square meter;BIOPOP April 2005;53200;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: filled seeds;Atkinson, M. D. (1992): Biological flora of the British Isles: Betula pendula Roth (B. verrucosa Ehrh. ) and B. pubescens Ehrh.; Betula pubescens;11725;unknown;50000;1;per square meter;Schirmer, Randolf(2001): Birke - Vermehrungskünstler und Überlebensstratege [];;50000;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Schirmer, Randolf(2001): Birke - Vermehrungskünstler und Überlebensstratege [];GERMANY Betula pubescens;11725;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Watson, H.(1948): Botanical Notes on Trees of the British Forests, Oliver and Boyd, Edinburgh []; Betula pubescens;11725;unknown;10000000;1;per ramet/tussock or individual plant ;Schirmer, Randolf(2001): Birke - Vermehrungskünstler und Überlebensstratege [];10000000;;;;seednumber > 100,000;1;;;unknown;unknown;;;Schirmer, Randolf(2001): Birke - Vermehrungskünstler und Überlebensstratege [];GERMANY Betula pubescens;11725;unknown;450;1;per multiple flower inflorescence ;Schirmer, Randolf(2001): Birke - Vermehrungskünstler und Überlebensstratege [];450;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Schirmer, Randolf(2001): Birke - Vermehrungskünstler und Überlebensstratege [];GERMANY Bidens cernua;3807;actual measurement;53040.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;53040.66667;;;;10,000 < seednumber <= 100,000;1;;62941.24213;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bidens cernua;3807;estimation;1847;64;per ramet/tussock or individual plant ;BIOPOP April 2005;1847;2063;1631;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: polymorphic fruit;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Bidens cernua;3807;estimation;190;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;190;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Bidens cernua;3807;laboratory/greenhouse/garden experiment;949;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1010;1390;752;949;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bidens connata;3153;actual measurement (following LEDA data standards);952;11;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1201.82;2295;420;952;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Bidens frondosa;6191;actual measurement (following LEDA data standards);345;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;493.67;792;344;345;100 < seednumber <= 1000;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bidens frondosa;6191;actual measurement;53307.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;53307.66667;;;;10,000 < seednumber <= 100,000;1;;38214.73324;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bidens frondosa;6191;estimation;30;10;per multiple flower inflorescence ;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];;50;10;;10 < seednumber <= 100;1;;;counting ;multiple flower inflorescence ;;number of fruit sets;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];GERMANY Bidens frondosa;6191;estimation;25025;10;per ramet/tussock or individual plant ;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];;50000;50;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;number of fruit sets;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];GERMANY Bidens radiata;5325;actual measurement;468;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];468;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Bidens tripartita;3990;estimation;1829;100;per ramet/tussock or individual plant ;BIOPOP April 2005;1829;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: polymorphic fruit, morph2;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Bidens tripartita;3990;estimation;1509;100;per ramet/tussock or individual plant ;BIOPOP April 2005;1509;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: polymorphic fruit, morph1;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Bidens tripartita;3990;estimation (following LEDA data standards);250;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;250;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Bidens tripartita;3990;actual measurement;156;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];156;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Bidens tripartita;3990;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Bidens tripartita;3990;estimation;1669;100;per ramet/tussock or individual plant ;BIOPOP April 2005;1669;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: polymorphic fruit;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Bidens tripartita;3990;estimation;83;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;83;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Bidens tripartita;3990;actual measurement;231370.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;231370.6667;;;;seednumber > 100,000;1;;312988.3899;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bifora radians;1939;laboratory/greenhouse/garden experiment;331;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;431.18;1237;118;331;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Biscutella laevigata;13799;laboratory/greenhouse/garden experiment;43.5;30;per ramet/tussock or individual plant ;BIOPOP April 2005;43.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 4;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Biscutella laevigata;13799;laboratory/greenhouse/garden experiment;43.9;30;per ramet/tussock or individual plant ;BIOPOP April 2005;43.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 2;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Biscutella laevigata;13799;laboratory/greenhouse/garden experiment;40.2;30;per ramet/tussock or individual plant ;BIOPOP April 2005;40.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 1;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Biscutella laevigata;13799;laboratory/greenhouse/garden experiment;21;30;per ramet/tussock or individual plant ;BIOPOP April 2005;21;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 3;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Biscutella laevigata;13799;laboratory/greenhouse/garden experiment;39.2;30;per ramet/tussock or individual plant ;BIOPOP April 2005;39.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 5;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Blackstonia perfoliata;22864;estimation;1179;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1179;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Blackstonia perfoliata s. perfoliata;22866;estimation;9219;180;per ramet/tussock or individual plant ;BIOPOP April 2005;9219;10524;7914;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Blackstonia perfoliata s. serotina;22779;actual measurement (following LEDA data standards);1200;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1350;2400;600;1200;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-24 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Blysmus compressus;37421;actual measurement (following LEDA data standards);56.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;65.5;119;41;56.5;10 < seednumber <= 100;;;;counting ;;2005-07-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Blysmus rufus;37423;actual measurement (following LEDA data standards);13;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13.08;20;6;13;10 < seednumber <= 100;;;;counting ;;2004-06-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Borago officinalis;12546;actual measurement (following LEDA data standards);108;2;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;108;110;106;108;100 < seednumber <= 1000;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Borago officinalis;12546;actual measurement (following LEDA data standards);290;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;387.3;1176;168;290;100 < seednumber <= 1000;;;;counting ;;2005-05-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Brachypodium pinnatum;40931;actual measurement;65000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;65000;;;;10,000 < seednumber <= 100,000;1;;64953.82976;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Brachypodium pinnatum;40931;actual measurement (following LEDA data standards);87;6;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;83.33;97;60;87;10 < seednumber <= 100;;;;counting ;;2003-08-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Brachypodium pinnatum s. pinnatum;41177;actual measurement (following LEDA data standards);84;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;82.5;101;65;84;10 < seednumber <= 100;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Brachypodium pinnatum s. pinnatum;41177;unknown;735;;per square meter;BIOPOP April 2005;735;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Brachypodium sylvaticum;41179;actual measurement;64;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;64.9;;;64;10 < seednumber <= 100;1;6.34288753;20.05797154;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;116;3;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);85;135;4;116;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Brachypodium sylvaticum;41179;actual measurement;11130.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11130.5;;;;10,000 < seednumber <= 100,000;1;;9795.821609;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Brachypodium sylvaticum;41179;actual measurement;12;2;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;16;8;;10 < seednumber <= 100;1;;;counting ;;1998-10-15 00:00:00.0;;;UNITED KINGDOM Brassica elongata;14200;unknown;5000;1;per ramet/tussock or individual plant ;Salisbury, S.E.(1964): Weeds & Aliens;5000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Brassica elongata;14200;laboratory/greenhouse/garden experiment;175;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;175;179;171;175;100 < seednumber <= 1000;;;;counting ;;2005-07-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Brassica elongata;14200;unknown;12.5;1;per single flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;;17;8;;10 < seednumber <= 100;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Brassica napus;14206;actual measurement;180472.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;180472.3333;;;;seednumber > 100,000;1;;125670.6929;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Brassica nigra;13691;actual measurement (following LEDA data standards);3112;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4074.6;6730;2191;3112;1000 < seednumber <= 10,000;;;;counting ;;2003-08-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Brassica oleracea;14208;estimation;32;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;32;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Mitchell, N. D.(1979): no title given, publication in Journal of Ecology issue: 67 pages: 1087-1096 [67]; Brassica rapa;13695;estimation (following LEDA data standards);10500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;20000;1000;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Brassica rapa;13695;laboratory/greenhouse/garden experiment;1711;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3188.67;7310;545;1711;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Brassica rapa;13695;estimation (following LEDA data standards);160;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;160;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Briza media;40342;actual measurement;179;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;179;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Briza media;40342;estimation;7308;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7308;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;"per tussock;Dixon, J. M. (2002): Biological flora of the British Isles: Briza media L.; Briza media;40342;actual measurement;30956.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30956.25;;;;10,000 < seednumber <= 100,000;1;;17895.52716;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Briza media;40342;unknown;6800;;per square meter;BIOPOP April 2005;6800;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Briza media;40342;actual measurement;336;;per square meter;BIOPOP April 2005;;560;112;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Briza media;40342;actual measurement;27.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;27.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Briza media;40342;unknown;288;;per square meter;BIOPOP April 2005;288;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Bromus arvensis;40609;laboratory/greenhouse/garden experiment;644;3;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);625.33;923;309;644;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus arvensis;40609;laboratory/greenhouse/garden experiment;1480;2;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1480;1917;1043;1480;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus benekenii;41454;actual measurement;95;17;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;160;30;;10 < seednumber <= 100;1;;;counting ;;1999-08-20 00:00:00.0;;;UNITED KINGDOM Bromus benekenii;41454;laboratory/greenhouse/garden experiment;14;2;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);14;18;10;14;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus benekenii;41454;actual measurement (following LEDA data standards);52;5;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;50.8;57;42;52;10 < seednumber <= 100;;;;counting ;;2005-05-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus bromoideus;60560;laboratory/greenhouse/garden experiment;783;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);758;1365;324;783;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus catharticus;60559;laboratory/greenhouse/garden experiment;156.5;4;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);152.25;282;14;156.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus commutatus;40941;laboratory/greenhouse/garden experiment;1605.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2459.9;5710;432;1605.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus commutatus;40941;laboratory/greenhouse/garden experiment;486;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);548.4;774;347;486;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus diandrus;42153;laboratory/greenhouse/garden experiment;69;3;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);105.67;197;51;69;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus erectus;40358;laboratory/greenhouse/garden experiment;21;2;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);21;27;15;21;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus erectus;40358;actual measurement (following LEDA data standards);93.5;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;92.75;152;36;93.5;10 < seednumber <= 100;;;;counting ;;2003-06-15 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Bromus erectus;40358;actual measurement;120964;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;120964;;;;seednumber > 100,000;1;;196856.9311;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bromus erectus;40358;unknown;10906;;per square meter;BIOPOP April 2005;10906;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Bromus erectus;40358;unknown;902;;per square meter;BIOPOP April 2005;902;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Bromus grossus;42156;laboratory/greenhouse/garden experiment;151;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;245.71;561;19;151;100 < seednumber <= 1000;;;;counting ;;2005-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus hordeaceus;40361;actual measurement;63610;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;63610;;;;10,000 < seednumber <= 100,000;1;;67323.33226;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bromus hordeaceus;40361;actual measurement;20.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;20.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Bromus hordeaceus;40361;estimation (following LEDA data standards);1600;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1600;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Bromus hordeaceus;40361;laboratory/greenhouse/garden experiment;285;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);353.4;765;128;285;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus inermis;40620;actual measurement (following LEDA data standards);203;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;200.2;245;147;203;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-06-12 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Bromus inermis;40620;actual measurement (following LEDA data standards);63.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;78.63;146;40;63.5;10 < seednumber <= 100;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus inermis;40620;actual measurement;27077.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27077.33333;;;;10,000 < seednumber <= 100,000;1;;10688.02794;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bromus intermedius;40621;laboratory/greenhouse/garden experiment;1173;4;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1157.5;1555;729;1173;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus japonicus;40365;laboratory/greenhouse/garden experiment;423;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;587.57;1831;157;423;100 < seednumber <= 1000;;;;counting ;;2005-05-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus japonicus;40365;laboratory/greenhouse/garden experiment;1850;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);3321;8379;688;1850;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus lanceolatus;42158;laboratory/greenhouse/garden experiment;951;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);868;1260;240;951;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus madritensis;40949;laboratory/greenhouse/garden experiment;2475;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);2907.4;4277;1814;2475;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus racemosus;40951;laboratory/greenhouse/garden experiment;152;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);327.6;1000;94;152;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus racemosus;40951;laboratory/greenhouse/garden experiment;1105;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1118;1742;668;1105;1000 < seednumber <= 10,000;;;;counting ;;2004-07-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus ramosus;40952;actual measurement (following LEDA data standards);67;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;71.4;108;36;67;10 < seednumber <= 100;;;;counting ;;2004-07-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus rubens;41967;laboratory/greenhouse/garden experiment;2669;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);3991;11482;288;2669;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus secalinus;40610;actual measurement;1400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1400;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant General comment: max >1400;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Bromus secalinus;40610;laboratory/greenhouse/garden experiment;566;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);614.6;986;308;566;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus secalinus;40610;laboratory/greenhouse/garden experiment;1355;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1807.44;4488;488;1355;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus secalinus;40610;estimation (following LEDA data standards);1450;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1450;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Bromus secalinus;40610;estimation (following LEDA data standards);730;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;730;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Bromus secalinus;40610;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Bromus secalinus;40610;actual measurement;45;;per ramet/tussock or individual plant ;BIOPOP April 2005;45;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Bromus squarrosus;40372;laboratory/greenhouse/garden experiment;867;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1161;2512;18;867;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus squarrosus;40372;laboratory/greenhouse/garden experiment;4434;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3982.3;6076;919;4434;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus sterilis;40373;actual measurement;67835.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;67835.25;;;;10,000 < seednumber <= 100,000;1;;43982.1233;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bromus sterilis;40373;laboratory/greenhouse/garden experiment;680;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);678.2;1316;250;680;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus sterilis;40373;actual measurement (following LEDA data standards);133;6;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;138;178;108;133;100 < seednumber <= 1000;;;;counting ;;2003-08-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus tectorum;41688;laboratory/greenhouse/garden experiment;2002;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1601.8;2616;382;2002;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus tectorum;41688;laboratory/greenhouse/garden experiment;264.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;395.7;1244;115;264.5;100 < seednumber <= 1000;;;;counting ;;2004-10-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bromus tectorum;41688;actual measurement;105400;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;105400;;;;seednumber > 100,000;1;;98396.95117;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bryonia alba;18474;actual measurement;1618.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1618.666667;;;;1000 < seednumber <= 10,000;1;;296.3871342;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Bryonia cretica s. dioica;18478;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Buddleja davidii;15414;actual measurement (following LEDA data standards);8601;3;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10461.67;18492;4292;8601;1000 < seednumber <= 10,000;;;;estimation ;single flower inflorescence ;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Buddleja davidii;15414;actual measurement (following LEDA data standards);1275;1;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1275;1275;1275;1275;1000 < seednumber <= 10,000;;;;counting ;;2005-07-27 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Buglossoides purpurocaerulea;12486;actual measurement;16;200;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;24;8;;10 < seednumber <= 100;1;;;counting ;;1997-08-30 00:00:00.0;;;UNITED KINGDOM Bunias orientalis;14415;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Bunias orientalis;14415;estimation (following LEDA data standards);2600;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;5000;200;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Bunias orientalis;14415;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Bunias orientalis;14415;estimation (following LEDA data standards);3500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;5000;2000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Bunium bulbocastanum;2366;actual measurement (following LEDA data standards);353;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;322.1;493;77;353;100 < seednumber <= 1000;;;;counting ;;2004-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bunium bulbocastanum;2366;estimation;530;;per ramet/tussock or individual plant ;BIOPOP April 2005;530;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Buphthalmum salicifolium;5238;actual measurement;77.5;10;per multiple flower inflorescence ;BIOPOP April 2005;77.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Buphthalmum salicifolium;5238;unknown;2184;;per square meter;BIOPOP April 2005;2184;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Bupleurum falcatum;1909;actual measurement (following LEDA data standards);582;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1135.5;3888;196;582;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2002-08-22 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bupleurum longifolium;1423;actual measurement (following LEDA data standards);92;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;118.27;380;45;92;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Bupleurum rotundifolium;1894;actual measurement;353;5;per ramet/tussock or individual plant ;BIOPOP April 2005;353;436;270;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Bupleurum rotundifolium;1894;actual measurement;75;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100;50;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Bupleurum rotundifolium;1894;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;400;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Bupleurum tenuissimum;1364;actual measurement (following LEDA data standards);306;9;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;336;634;74;306;100 < seednumber <= 1000;;;;counting ;;2003-09-17 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Bupleurum tenuissimum;1364;estimation;252;;per ramet/tussock or individual plant ;BIOPOP April 2005;252;312;192;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Butomus umbellatus;35620;actual measurement (following LEDA data standards);285;2;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;285;306;264;285;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Butomus umbellatus;35620;actual measurement;31;12;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];31;45;20;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Butomus umbellatus;35620;actual measurement;2418;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];2418;3906;2046;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Butomus umbellatus;35620;actual measurement (following LEDA data standards);100;13;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;167.77;407;24;100;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-07-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Butomus umbellatus;35620;actual measurement;124796;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;124796;;;;seednumber > 100,000;1;;196021.1503;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Butomus umbellatus;35620;actual measurement;35000;;per ramet/tussock or individual plant ;BIOPOP April 2005;35000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;problematic value - large clone with several inflorescences;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Butomus umbellatus;35620;actual measurement;2500;3;per ramet/tussock or individual plant ;BIOPOP April 2005;2500;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;clone with more than one inflorescences;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;FINLAND Cakile maritima;14226;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Cakile maritima;14226;estimation;4800;;per ramet/tussock or individual plant ;BIOPOP April 2005;4800;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cakile maritima;14226;estimation;11250;;per ramet/tussock or individual plant ;BIOPOP April 2005;;11250;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Calamagrostis arundinacea;40633;actual measurement;55040;;per square meter;BIOPOP April 2005;;55040;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis arundinacea;40633;actual measurement;126.4;;per multiple flower inflorescence ;BIOPOP April 2005;126.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis arundinacea;40633;actual measurement;322;2;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];322;;;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Calamagrostis arundinacea;40633;actual measurement;12000;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;19200;4800;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Calamagrostis arundinacea;40633;actual measurement;15886.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15886.66667;;;;10,000 < seednumber <= 100,000;1;;8505.206249;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Calamagrostis arundinacea;40633;actual measurement (following LEDA data standards);289.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;292.1;353;227;289.5;100 < seednumber <= 1000;;;;counting ;;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Calamagrostis arundinacea;40633;actual measurement;120.2;;per multiple flower inflorescence ;BIOPOP April 2005;120.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis arundinacea;40633;actual measurement;6400;;per square meter;BIOPOP April 2005;;6400;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis arundinacea;40633;actual measurement;198.6;;per multiple flower inflorescence ;BIOPOP April 2005;198.6;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis arundinacea;40633;actual measurement;2059.5;;per square meter;BIOPOP April 2005;;2400;1719;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis arundinacea;40633;actual measurement;5824;;per square meter;BIOPOP April 2005;;5824;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis arundinacea;40633;actual measurement;62.7;;per multiple flower inflorescence ;BIOPOP April 2005;62.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis canescens;40960;actual measurement (following LEDA data standards);0;15;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.27;4;0;0;seednumber <= 10;;;;counting ;;2004-08-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Calamagrostis canescens;40960;actual measurement;295596.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;295596.6667;;;;seednumber > 100,000;1;;487190.412;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Calamagrostis epigejos;41199;actual measurement;258326.6;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;258326.6;;;;seednumber > 100,000;1;;322041.1018;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Calamagrostis epigejos;41199;actual measurement;1500;220;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;1500;;;;1000 < seednumber <= 10,000;1;;;counting ;;1997-08-22 00:00:00.0;;;UNITED KINGDOM Calamagrostis epigejos;41199;unknown;1933.5;1;per multiple flower inflorescence ;Rebele, Franz(2001): Biological Flora of Central Europe: Calamagrostis epigejos (L.) [196];;2865;1002;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Lehmann & Rebele 1994, different open sites in Northeast Germany and Poland, florets/panicle;Rebele, Franz(2001): Biological Flora of Central Europe: Calamagrostis epigejos (L.) [196];Europe Calamagrostis epigejos;41199;unknown;1702;12;per multiple flower inflorescence ;Rebele, Franz(2001): Biological Flora of Central Europe: Calamagrostis epigejos (L.) [196];1702;4407;594;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Lehmann & Rebele 1994, different open sites in Northeast Germany and Poland;Rebele, Franz(2001): Biological Flora of Central Europe: Calamagrostis epigejos (L.) [196];Europe Calamagrostis epigejos;41199;unknown;800000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: Extreme maximum;Lehmann, C. (1994): Zum Potential sexueller Fortpflanzung bei Calamagrostis epigejos (L. ) Roth. [23]; Calamagrostis epigejos;41199;unknown;150500;;per square meter;BIOPOP April 2005;;300000;1000;;seednumber > 100,000;;;;unknown;unknown;;;Lehmann, C. (1994): Zum Potential sexueller Fortpflanzung bei Calamagrostis epigejos (L. ) Roth. [23]; Calamagrostis epigejos;41199;actual measurement;209.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;208.7;;;209.5;100 < seednumber <= 1000;1;34.57103797;109.3232211;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Calamagrostis purpurea;40263;actual measurement;110;;per square meter;BIOPOP April 2005;;110;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis purpurea;40263;actual measurement;23;;per ramet/tussock or individual plant ;BIOPOP April 2005;23;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis purpurea;40263;actual measurement;146.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;146.7;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis purpurea;40263;actual measurement;2357.5;;per square meter;BIOPOP April 2005;;4575;140;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calamagrostis villosa;40268;actual measurement;34102.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34102.33333;;;;10,000 < seednumber <= 100,000;1;;19075.77454;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Caldesia parnassifolia;35608;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Calendula arvensis;3677;actual measurement (following LEDA data standards);5;2;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5;6;4;5;seednumber <= 10;;;;counting ;;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Calla palustris;35879;actual measurement (following LEDA data standards);197.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;213.9;377;104;197.5;100 < seednumber <= 1000;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Callitriche palustris;15420;actual measurement;148289.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;148289.6667;;;;seednumber > 100,000;1;;37889.53048;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Callitriche platycarpa;15423;actual measurement;40;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;40;;;;10 < seednumber <= 100;1;;;counting ;;1999-05-14 00:00:00.0;;;UNITED KINGDOM Callitriche stagnalis;15424;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Callitriche truncata;15431;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Barry, R.(1986): no title given, publication in Journal of Ecology issue: 74 pages: 289-294 [74]; Calluna vulgaris;19587;actual measurement;41704;;per square meter;BIOPOP April 2005;;41704;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calluna vulgaris;19587;actual measurement;1398;;per multiple flower stem;BIOPOP April 2005;1398;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calluna vulgaris;19587;actual measurement;1033;;per multiple flower stem;BIOPOP April 2005;1033;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calluna vulgaris;19587;actual measurement;263.2;;per multiple flower stem;BIOPOP April 2005;263.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calluna vulgaris;19587;actual measurement;896;;per square meter;BIOPOP April 2005;;896;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calluna vulgaris;19587;actual measurement;14936;;per square meter;BIOPOP April 2005;;14936;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calluna vulgaris;19587;actual measurement;761890;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;761890;;;;seednumber > 100,000;1;;294386.2876;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Calluna vulgaris;19587;estimation;41;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;41;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Legg, C. J.(1992): no title given, publication in Journal of Ecology issue: 80 pages: 737-752 [80]; Caltha palustris;27293;actual measurement;245793.8;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;245793.8;;;;seednumber > 100,000;1;;221296.1387;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Caltha palustris;27293;actual measurement;22;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28.6;;;22;10 < seednumber <= 100;1;5.163332257;11.54556192;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Caltha palustris;27293;actual measurement (following LEDA data standards);1357;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1983.93;6201;159;1357;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-05-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Caltha palustris;27293;actual measurement;137.5;60;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;175;100;;100 < seednumber <= 1000;1;;;counting ;;1998-06-17 00:00:00.0;;;UNITED KINGDOM Caltha palustris;27293;estimation (following LEDA data standards);2800;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2800;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Caltha palustris;27293;actual measurement;3192;;per square meter;BIOPOP April 2005;;3192;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Caltha palustris;27293;estimation;1832;;per ramet/tussock or individual plant ;BIOPOP April 2005;1832;2041;1623;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Caltha palustris;27293;actual measurement;10560;;per square meter;BIOPOP April 2005;;17952;3168;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Caltha palustris;27293;actual measurement;905.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;905.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Caltha palustris;27293;actual measurement;216.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;216.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Caltha palustris;27293;actual measurement;1500;;per square meter;BIOPOP April 2005;;2000;1000;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Calypso bulbosa;39456;unknown;6800;1;per ramet/tussock or individual plant ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];6800;;;;1000 < seednumber <= 10,000;1;;;;;;Calypso produced only one flower;; Calystegia sepium;18945;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: sepium Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Calystegia sepium;18945;actual measurement;968.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;968.75;;;;100 < seednumber <= 1000;1;;174.8511272;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Calystegia sepium;18945;estimation (following LEDA data standards);250;1;per multiple flower stem;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;400;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Calystegia sepium;18945;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Calystegia soldanella;18962;estimation;728;;per square meter;BIOPOP April 2005;728;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Camelina alyssum;14231;unknown;900;1;per ramet/tussock or individual plant ;Salisbury, S.E.(1964): Weeds & Aliens;900;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Camelina microcarpa;13713;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Camelina microcarpa;13713;actual measurement (following LEDA data standards);840;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1582;5088;420;840;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-05-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Camelina microcarpa;13713;actual measurement;373133.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;373133.3333;;;;seednumber > 100,000;1;;152047.3309;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Camelina sativa;14234;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Campanula cervicaria;15224;laboratory/greenhouse/garden experiment;1386;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2222;4848;432;1386;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Campanula glomerata;15158;actual measurement;27000;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];27000;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Campanula glomerata;15158;estimation;2297;40;per ramet/tussock or individual plant ;BIOPOP April 2005;2297;2770;1824;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Campanula glomerata;15158;estimation;106;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;106;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Campanula latifolia;15145;actual measurement (following LEDA data standards);42848;2;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;42848;43680;42016;42848;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Campanula patula;15092;actual measurement;14700;;per ramet/tussock or individual plant ;BIOPOP April 2005;;14700;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula patula;15092;actual measurement;9000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;9000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula patula;15092;actual measurement;2375000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2375000;;;;seednumber > 100,000;1;;3139566.053;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Campanula patula;15092;actual measurement;14700;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];14700;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Campanula persicifolia;15103;actual measurement;915;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;915;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Campanula persicifolia;15103;actual measurement;375000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;375000;;;;seednumber > 100,000;1;;150000;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Campanula persicifolia;15103;actual measurement;1384;;per ramet/tussock or individual plant ;BIOPOP April 2005;1384;4780;239;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;5386;;per ramet/tussock or individual plant ;BIOPOP April 2005;5386;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;7920;;per square meter;BIOPOP April 2005;;7920;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;3381;;per square meter;BIOPOP April 2005;;3381;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;15480;;per square meter;BIOPOP April 2005;;15480;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;87376;;per square meter;BIOPOP April 2005;;87376;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;8128;;per square meter;BIOPOP April 2005;;8128;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;2286;;per ramet/tussock or individual plant ;BIOPOP April 2005;2286;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;1384;;per ramet/tussock or individual plant ;BIOPOP April 2005;1384;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula persicifolia;15103;actual measurement;457.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;457.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula rapunculoides;15082;actual measurement;175000;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;175000;;;;seednumber > 100,000;1;;124894.6222;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Campanula rapunculoides;15082;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;3000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Campanula rapunculoides;15082;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Campanula rapunculoides;15082;estimation (following LEDA data standards);3200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3200;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Campanula rapunculoides;15082;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Campanula rapunculus;15083;actual measurement (following LEDA data standards);24255;2;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24255;25410;23100;24255;10,000 < seednumber <= 100,000;;;;estimation ;;2005-06-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Campanula rapunculus;15083;actual measurement (following LEDA data standards);30246;5;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;30261.8;46247;17226;30246;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Campanula rotundifolia;15045;actual measurement;2143145.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2143145.75;;;;seednumber > 100,000;1;;2229403.98;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Campanula rotundifolia;15045;actual measurement;510;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;510;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Campanula rotundifolia;15045;unknown;2688;;per square meter;BIOPOP April 2005;2688;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Campanula rotundifolia;15045;actual measurement (following LEDA data standards);73;2;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;73;78;68;73;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Campanula rotundifolia;15045;actual measurement;87.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;87.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula rotundifolia;15045;actual measurement;1525;;per square meter;BIOPOP April 2005;;3000;50;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula rotundifolia;15045;actual measurement;300;;per square meter;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula rotundifolia;15045;actual measurement;56.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;56.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula rotundifolia;15045;actual measurement;49.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;49.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Campanula sibirica;15030;actual measurement (following LEDA data standards);400;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;408.33;625;200;400;100 < seednumber <= 1000;;;;estimation ;;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Campanula trachelium;15002;actual measurement;268837.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;268837.25;;;;seednumber > 100,000;1;;72338.25487;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Campanula trachelium;15002;actual measurement;8775;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;9750;7800;;1000 < seednumber <= 10,000;1;;;counting ;;1999-10-07 00:00:00.0;;;UNITED KINGDOM Campanula trachelium;15002;actual measurement;1251;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;1251;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Campanula trachelium;15002;estimation;6639;28;per ramet/tussock or individual plant ;BIOPOP April 2005;6639;7486;5792;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Campanula trachelium;15002;estimation;451;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;451;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): seeds/capsule;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Cannabis sativa;14695;actual measurement (following LEDA data standards);996;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1038.33;1276;843;996;100 < seednumber <= 1000;;;;counting ;;2003-09-23 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Capsella bursa-pastoris;12848;unknown;45000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;60000;30000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hurka, H. (1982): Seed ecology of Capsella bursa-pastoris (Cruciferae): Dispersal mechanism and the soil seed bank. [172]; Capsella bursa-pastoris;12848;unknown;47500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;90000;5000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hurka, H. (1982): Seed ecology of Capsella bursa-pastoris (Cruciferae): Dispersal mechanism and the soil seed bank. [172]; Capsella bursa-pastoris;12848;laboratory/greenhouse/garden experiment;34918.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;;58512;11325;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Aksoy, A.(1998): Biological flora of the British Isles: Capsella bursa-pastoris (L.) Medikus (Thlaspi bursa-pastoris L., Bursa bursa-pastoris (L.) Shull, Bursa pastoris (L.) Weber). [86]; Capsella bursa-pastoris;12848;actual measurement;4500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Capsella bursa-pastoris;12848;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;800;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Capsella bursa-pastoris;12848;estimation (following LEDA data standards);21000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;40000;2000;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Capsella bursa-pastoris;12848;actual measurement;14550;;per ramet/tussock or individual plant ;BIOPOP April 2005;;14550;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Capsella bursa-pastoris;12848;actual measurement;64000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;64000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Capsella bursa-pastoris;12848;actual measurement;64115;;per ramet/tussock or individual plant ;BIOPOP April 2005;;64115;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Capsella bursa-pastoris;12848;actual measurement;73010;;per ramet/tussock or individual plant ;BIOPOP April 2005;;73010;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Capsella bursa-pastoris;12848;actual measurement;1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Capsella bursa-pastoris;12848;actual measurement;40000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: exceptional plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Capsella bursa-pastoris;12848;laboratory/greenhouse/garden experiment;47500;;unknown;BIOPOP April 2005;;90000;5000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Aksoy, A.(1998): Biological flora of the British Isles: Capsella bursa-pastoris (L.) Medikus (Thlaspi bursa-pastoris L., Bursa bursa-pastoris (L.) Shull, Bursa pastoris (L.) Weber). [86]; Capsella bursa-pastoris;12848;actual measurement;1965033.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1965033.333;;;;seednumber > 100,000;1;;781678.9644;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Capsella bursa-pastoris;12848;estimation (following LEDA data standards);2000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;2000;40000;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Capsella bursa-pastoris;12848;actual measurement;7662.5;4;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;14550;775;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Capsella bursa-pastoris;12848;actual measurement;25.4;10;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];25.4;31;21;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Capsella bursa-pastoris;12848;actual measurement (following LEDA data standards);7755;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9123.4;21869;4343;7755;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-05-22 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Caragana arborescens;20788;actual measurement (following LEDA data standards);9;1;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9;9;9;9;seednumber <= 10;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardamine amara;14239;actual measurement;339.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;402.3;;;339.5;100 < seednumber <= 1000;1;55.44527833;175.333365;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Cardamine bellidifolia s. bellidifolia;14429;actual measurement;18.5;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;18.5;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cardamine bellidifolia s. bellidifolia;14429;actual measurement;6.6;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;6.6;12;2;;seednumber <= 10;1;;;counting and extrapolation ;unknown;1931-09-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cardamine bulbifera;14430;actual measurement;11.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;11.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cardamine bulbifera;14430;actual measurement;40;;per square meter;BIOPOP April 2005;;40;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cardamine bulbifera;14430;laboratory/greenhouse/garden experiment;13.5;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14.75;26;6;13.5;10 < seednumber <= 100;;;;counting ;;2004-06-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardamine bulbifera;14430;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Shower, A.(1988): no title given, publication in BSBI News issue: 48 pages: 26-28 [48]; Cardamine flexuosa;13294;actual measurement;127.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;201.2;;;127.5;100 < seednumber <= 1000;1;51.55510536;163.031558;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Cardamine flexuosa;13294;actual measurement (following LEDA data standards);194;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;217.1;352;86;194;100 < seednumber <= 1000;;;;counting ;multiple flower inflorescence ;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardamine heptaphylla;13726;actual measurement (following LEDA data standards);59.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;68.1;120;38;59.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-05-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardamine hirsuta;14245;actual measurement (following LEDA data standards);263.5;4;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;323.25;523;243;263.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-05-28 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cardamine hirsuta;14245;estimation;640;;per ramet/tussock or individual plant ;BIOPOP April 2005;640;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cardamine hirsuta;14245;estimation;98;;per ramet/tussock or individual plant ;BIOPOP April 2005;98;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cardamine impatiens;13298;actual measurement;1365;10;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1680;1050;;1000 < seednumber <= 10,000;1;;;counting ;;1997-07-19 00:00:00.0;;;UNITED KINGDOM Cardamine parviflora;14444;actual measurement (following LEDA data standards);4419.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5463.5;13144;1864;4419.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-06-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardamine pratensis;14249;estimation (following LEDA data standards);260;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;400;120;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cardamine pratensis;14249;actual measurement;236917.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;236917.5;;;;seednumber > 100,000;1;;156627.3429;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cardamine pratensis;14249;actual measurement (following LEDA data standards);80.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;72;115;23;80.5;10 < seednumber <= 100;;;;counting ;;2005-06-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardaminopsis arenosa;14130;estimation (following LEDA data standards);400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;400;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cardaminopsis arenosa;14130;actual measurement (following LEDA data standards);2627;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3322.5;11300;160;2627;1000 < seednumber <= 10,000;;;;estimation ;;2003-06-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardaminopsis arenosa;14130;actual measurement (following LEDA data standards);604;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;937.14;2288;291;604;100 < seednumber <= 1000;;;;counting ;;2003-06-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardaminopsis halleri;14132;actual measurement;3521393.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3521393.333;;;;seednumber > 100,000;1;;959919.28;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cardaminopsis halleri;14132;actual measurement (following LEDA data standards);80.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;143.3;453;30;80.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardaminopsis petraea;13735;actual measurement;38.86;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;38.86;;;;10 < seednumber <= 100;1;;;counting ;;1997-09-07 00:00:00.0;;;UNITED KINGDOM Cardaminopsis petraea;13735;actual measurement (following LEDA data standards);768;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;874.67;2280;120;768;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cardaria draba;13313;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cardaria draba;13313;actual measurement;1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cardaria draba;13313;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cardaria draba;13313;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;4800;1200;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cardaria draba;13313;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;5000;1000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Cardaria draba;13313;unknown;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4800;1200;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Mulligan, G. A. (1974): The biology of Canadian weeds. 3. Cardaria draba, C. chalepensis and C. pubescens.; Carduus crispus;2731;actual measurement;21200;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21200;;;;10,000 < seednumber <= 100,000;1;;15099.66887;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carduus crispus;2731;estimation (following LEDA data standards);6500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Carduus crispus;2731;actual measurement;1025;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2000;50;;1000 < seednumber <= 10,000;1;;;counting ;;1999-07-17 00:00:00.0;;;UNITED KINGDOM Carduus nutans;3493;estimation;300;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;300;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Carduus nutans;3493;actual measurement;3498.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3498.333333;;;;1000 < seednumber <= 10,000;1;;872.5011939;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carduus nutans;3493;estimation;4082;43;per ramet/tussock or individual plant ;BIOPOP April 2005;4082;4408;3756;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Carduus personata;2736;actual measurement;6113.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6113.333333;;;;1000 < seednumber <= 10,000;1;;3739.372719;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex acuta;38000;actual measurement (following LEDA data standards);515.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;518.1;726;210;515.5;100 < seednumber <= 1000;;;;counting ;;2004-06-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex acuta;38000;actual measurement;27862.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27862.66667;;;;10,000 < seednumber <= 100,000;1;;30955.20282;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex acutiformis;37460;actual measurement;448;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;444.2;;;448;100 < seednumber <= 1000;1;18.40338133;58.19660166;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Carex acutiformis;37460;actual measurement;400;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;400;;;;100 < seednumber <= 1000;1;;;counting ;;1999-09-04 00:00:00.0;;;UNITED KINGDOM Carex alba;37462;actual measurement (following LEDA data standards);6.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6.8;11;4;6.5;seednumber <= 10;;;;counting ;;2004-05-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex appropinquata;37464;actual measurement (following LEDA data standards);10;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.6;10;8;10;seednumber <= 10;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex appropinquata;37464;actual measurement (following LEDA data standards);7820;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8276.43;18905;2580;7820;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex appropinquata;37464;actual measurement (following LEDA data standards);6680;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8159.29;17085;3670;6680;1000 < seednumber <= 10,000;;;;counting and extrapolation ;;2005-06-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex aquatilis;38015;actual measurement;4.5;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;4.5;6;3;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;seeds per spike;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex aquatilis;38015;actual measurement;148.1;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;148.1;;;;100 < seednumber <= 1000;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 36% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex aquatilis;38015;actual measurement (following LEDA data standards);542;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;501.18;926;10;542;100 < seednumber <= 1000;;;;counting ;;2004-06-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex arenaria;38017;actual measurement (following LEDA data standards);18;9;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22;38;13;18;10 < seednumber <= 100;;;;counting ;;2003-08-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex arenaria;38017;actual measurement (following LEDA data standards);56;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;53.2;88;30;56;10 < seednumber <= 100;;;;counting ;;2003-09-26 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex arenaria;38017;estimation;19;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;19;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Noble, J. C. (unknown e-mail address); Carex atrata;37469;actual measurement (following LEDA data standards);100;3;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;75.33;102;24;100;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Carex atrata s. aterrima;36945;actual measurement;44;29;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;44;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-08 00:00:00.0;;;UNITED KINGDOM Carex atrofusca;37347;actual measurement;0;52;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;0;;;;seednumber <= 10;1;;;counting ;;1997-08-17 00:00:00.0;;;UNITED KINGDOM Carex bigelowii;37350;actual measurement (following LEDA data standards);23;3;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;34;61;18;23;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Carex bigelowii;37350;actual measurement;39.3;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;39.3;63;19;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 71% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex bigelowii;37350;actual measurement (following LEDA data standards);22;6;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;32.17;81;5;22;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Carex bigelowii;37350;actual measurement;14.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;14.4;36;0;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 10% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex bigelowii;37350;actual measurement;23.9;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;23.9;33;13;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 56% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex binervis;38036;actual measurement;6880;5;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;8600;5160;;1000 < seednumber <= 10,000;1;;;counting ;;1999-07-07 00:00:00.0;;;UNITED KINGDOM Carex binervis;38036;actual measurement;2250;45;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;2250;;;;1000 < seednumber <= 10,000;1;;;counting ;;1999-08-11 00:00:00.0;;;UNITED KINGDOM Carex brizoides;37356;actual measurement;44620;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44620;;;;10,000 < seednumber <= 100,000;1;;49525.19763;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex brizoides;37356;actual measurement (following LEDA data standards);52;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;52;52;52;52;10 < seednumber <= 100;;;;counting ;;2004-05-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex brunnescens;37929;actual measurement;29.6;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;29.6;46;15;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 95% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex brunnescens;37929;actual measurement;31.5;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;31.5;40;20;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 91% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex buxbaumii;37932;actual measurement;12.5;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;12.5;47;0;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 18% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex buxbaumii;37932;actual measurement (following LEDA data standards);132;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;128.1;156;78;132;100 < seednumber <= 1000;;;;counting ;;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex caryophyllea;37362;actual measurement;28;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Carex caryophyllea;37362;unknown;518;;per square meter;BIOPOP April 2005;518;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Carex caryophyllea;37362;actual measurement (following LEDA data standards);19;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23.85;51;5;19;10 < seednumber <= 100;;;;counting ;;2005-05-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex cespitosa;37943;actual measurement (following LEDA data standards);86;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;90;124;44;86;10 < seednumber <= 100;;;;counting ;;2005-05-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex chordorrhiza;37947;actual measurement;0;75;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;0;;;;seednumber <= 10;1;;;counting ;;1997-08-29 00:00:00.0;;;UNITED KINGDOM Carex chordorrhiza;37947;actual measurement (following LEDA data standards);13;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13;21;5;13;10 < seednumber <= 100;;;;counting ;;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex curta;37950;actual measurement (following LEDA data standards);90;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;91.8;138;35;90;10 < seednumber <= 100;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex curta;37950;actual measurement;55143;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;55143;;;;10,000 < seednumber <= 100,000;1;;40875.36357;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex curvula;37370;actual measurement (following LEDA data standards);18;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26.9;79;3;18;10 < seednumber <= 100;;;;counting ;;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;SWITZERLAND Carex davalliana;37956;actual measurement (following LEDA data standards);943;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1183.25;2684;408;943;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex demissa;37374;actual measurement;60;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;60;;;;10 < seednumber <= 100;1;;;counting ;;1998-10-21 00:00:00.0;;;UNITED KINGDOM Carex demissa;37374;actual measurement;75;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;75;;;;10 < seednumber <= 100;1;;;counting ;;1998-07-26 00:00:00.0;;;UNITED KINGDOM Carex demissa;37374;actual measurement (following LEDA data standards);59;15;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;61.27;89;41;59;10 < seednumber <= 100;;;;counting ;;2004-06-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex demissa;37374;actual measurement (following LEDA data standards);38.5;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40.75;50;36;38.5;10 < seednumber <= 100;;;;counting ;;2005-05-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex digitata;37970;actual measurement;511;;per square meter;BIOPOP April 2005;;511;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;10.6;;per multiple flower stem;BIOPOP April 2005;10.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;10.8;;per multiple flower stem;BIOPOP April 2005;10.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;1397;;per square meter;BIOPOP April 2005;;1397;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;12.2;;per multiple flower stem;BIOPOP April 2005;12.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;198;;per square meter;BIOPOP April 2005;;198;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;683.5;;per square meter;BIOPOP April 2005;;1274;93;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;10.5;;per multiple flower stem;BIOPOP April 2005;10.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;10.5;;per multiple flower stem;BIOPOP April 2005;10.5;19;4;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;11.7;;per multiple flower stem;BIOPOP April 2005;11.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;67;;per square meter;BIOPOP April 2005;;100;34;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex digitata;37970;actual measurement;100;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;100;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Carex dioica;37381;actual measurement (following LEDA data standards);7;11;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7.55;10;5;7;seednumber <= 10;;;;counting ;;2005-06-14 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Carex distans;37979;actual measurement (following LEDA data standards);66.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;66.8;92;42;66.5;10 < seednumber <= 100;;;;counting ;;2004-06-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex distans;37979;actual measurement (following LEDA data standards);84.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;80.25;118;36;84.5;10 < seednumber <= 100;;;;counting ;;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex distans;37979;actual measurement (following LEDA data standards);85;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;93.14;118;73;85;10 < seednumber <= 100;;;;counting ;;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex distans;37979;actual measurement;37.5;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;50;25;;10 < seednumber <= 100;1;;;counting ;;1998-07-25 00:00:00.0;;;UNITED KINGDOM Carex disticha;37982;actual measurement (following LEDA data standards);971;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1061.36;1933;240;971;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex divulsa subsp. leersii;36954;actual measurement (following LEDA data standards);67;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;66.7;101;42;67;10 < seednumber <= 100;;;;counting ;;2005-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex echinata;37888;actual measurement;36;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;36;;;;10 < seednumber <= 100;1;;;counting ;;1997-07-18 00:00:00.0;;;UNITED KINGDOM Carex elata;37396;actual measurement;22614.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22614.75;;;;10,000 < seednumber <= 100,000;1;;12098.59952;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex elongata;37397;actual measurement (following LEDA data standards);825;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;951.36;1800;275.5;825;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex extensa;37399;actual measurement;142.5;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;225;60;;100 < seednumber <= 1000;1;;;counting ;;1998-08-04 00:00:00.0;;;UNITED KINGDOM Carex extensa;37399;actual measurement (following LEDA data standards);125.5;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;128.63;169;87;125.5;100 < seednumber <= 1000;;;;counting ;;2004-09-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex extensa;37399;actual measurement (following LEDA data standards);6343;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6343;6343;6343;6343;1000 < seednumber <= 10,000;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex extensa;37399;actual measurement (following LEDA data standards);48;13;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51.62;78;36;48;10 < seednumber <= 100;;;;counting ;;2004-06-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex extensa;37399;actual measurement (following LEDA data standards);144;3;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;123.33;150;76;144;100 < seednumber <= 1000;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex flacca;37912;actual measurement (following LEDA data standards);80;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;66.4;124;2;80;10 < seednumber <= 100;;;;counting ;;2003-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex flacca;37912;actual measurement;12080;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12080;;;;10,000 < seednumber <= 100,000;1;;3507.021528;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex flacca;37912;unknown;930;;per square meter;BIOPOP April 2005;930;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Carex flacca;37912;unknown;12276;;per square meter;BIOPOP April 2005;12276;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Carex flacca;37912;actual measurement;93;10;per multiple flower inflorescence ;BIOPOP April 2005;93;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Carex flava;37404;actual measurement;2335;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;2600;2070;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Carex flava;37404;actual measurement;80;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;96;64;;10 < seednumber <= 100;1;;;counting ;;1997-07-20 00:00:00.0;;;UNITED KINGDOM Carex flava;37404;actual measurement;42.6;10;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];42.6;55;36;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Carex flava;37404;actual measurement (following LEDA data standards);9115.17;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9311;16801.67;5346;9115.17;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex flava;37404;actual measurement (following LEDA data standards);126.5;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;132.25;172;104;126.5;100 < seednumber <= 1000;;;;counting ;;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex flava ag.;58724;actual measurement (following LEDA data standards);142;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;142.9;225;105;142;100 < seednumber <= 1000;;;;counting ;;2003-07-13 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Carex frigida;37406;actual measurement (following LEDA data standards);62.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;74;138;37;62.5;10 < seednumber <= 100;;;;counting ;;2004-07-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex hirta;37296;actual measurement;38231.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38231.75;;;;10,000 < seednumber <= 100,000;1;;19538.53989;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex hirta;37296;actual measurement;400;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;600;200;;100 < seednumber <= 1000;1;;;counting ;;1998-07-22 00:00:00.0;;;UNITED KINGDOM Carex holostoma;37842;actual measurement;15.7;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;15.7;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 47% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex hostiana;37300;actual measurement;24;250;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;24;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-18 00:00:00.0;;;UNITED KINGDOM Carex hostiana;37300;actual measurement (following LEDA data standards);32.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;32.3;45;20;32.5;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-06-14 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Carex hostiana;37300;actual measurement (following LEDA data standards);46.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;46.2;64;32;46.5;10 < seednumber <= 100;;;;counting ;;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex humilis;37847;actual measurement (following LEDA data standards);3;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4.69;19;1;3;seednumber <= 10;;;;counting ;;2005-05-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex humilis;37847;actual measurement;2.5;5000;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;4;1;;seednumber <= 10;1;;;counting ;;1998-05-07 00:00:00.0;;;UNITED KINGDOM Carex humilis;37847;actual measurement;14000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14000;;;;10,000 < seednumber <= 100,000;1;;7858.116823;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex lachenalii;37313;actual measurement;25.9;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;25.9;49;17;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 73% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex lachenalii;37313;actual measurement;53.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;53.4;73;25;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 84% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex lachenalii;37313;actual measurement;36.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;36.4;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 82% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex lasiocarpa;37319;actual measurement (following LEDA data standards);26;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26;32;20;26;10 < seednumber <= 100;;;;counting ;;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex lasiocarpa;37319;actual measurement (following LEDA data standards);69;12;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;70.33;165;15;69;10 < seednumber <= 100;;;;counting ;;2003-07-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex lepidocarpa;37871;actual measurement (following LEDA data standards);60;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;67.3;119;46;60;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex ligerica;37874;actual measurement (following LEDA data standards);483.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;520.33;1134;73;483.5;100 < seednumber <= 1000;;;;counting ;;2005-06-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex limosa;37761;actual measurement;16;350;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;24;8;;10 < seednumber <= 100;1;;;counting ;;1999-07-20 00:00:00.0;;;UNITED KINGDOM Carex limosa;37761;actual measurement (following LEDA data standards);21;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27.17;45;15;21;10 < seednumber <= 100;;;;counting ;;2005-05-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex limosa;37761;actual measurement (following LEDA data standards);16;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13.33;21;3;16;10 < seednumber <= 100;;;;counting ;;2005-05-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex magellanica;37333;actual measurement (following LEDA data standards);17.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18.3;31;3;17.5;10 < seednumber <= 100;;;;counting ;;2004-06-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex magellanica;37333;actual measurement;25;33;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;30;20;;10 < seednumber <= 100;1;;;counting ;;1997-07-17 00:00:00.0;;;UNITED KINGDOM Carex magellanica;37333;actual measurement;28.75;72;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;28.75;;;;10 < seednumber <= 100;1;;;counting ;;1999-07-22 00:00:00.0;;;UNITED KINGDOM Carex maritima;37338;actual measurement;12.5;150;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;14;11;;10 < seednumber <= 100;1;;;counting ;;1998-08-23 00:00:00.0;;;UNITED KINGDOM Carex microglochin;37344;actual measurement;5;160;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;5;;;;seednumber <= 10;1;;;counting ;;1997-08-12 00:00:00.0;;;UNITED KINGDOM Carex montana;37346;unknown;40;;per square meter;BIOPOP April 2005;40;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Carex montana;37346;actual measurement (following LEDA data standards);16;5;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20.4;56;1;16;10 < seednumber <= 100;;;;counting ;;2005-05-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex muricata;37224;actual measurement;40775.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40775.66667;;;;10,000 < seednumber <= 100,000;1;;27777.95846;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex nigra;37228;actual measurement (following LEDA data standards);29;1;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;29;29;29;29;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Carex nigra;37228;actual measurement;118629.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;118629.25;;;;seednumber > 100,000;1;;74204.08497;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex norvegica;37233;actual measurement (following LEDA data standards);41.5;8;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;46.63;96;3;41.5;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Carex norvegica;37233;actual measurement;41.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;41.4;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 83% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex ornithopoda;37237;actual measurement;3.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;3.4;7;0;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 48% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex ornithopoda;37237;actual measurement (following LEDA data standards);322;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;576.67;1173;235;322;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-05-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex ornithopoda;37237;actual measurement;5;500;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;5;;;;seednumber <= 10;1;;;counting ;;1997-06-04 00:00:00.0;;;UNITED KINGDOM Carex otrubae;37711;actual measurement (following LEDA data standards);288;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;288;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);483;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;483;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);256;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;256;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);234;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;234;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);381;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;381;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);156;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;156;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);282;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;282;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);236;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;236;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);299;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;299;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);187;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;187;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);280;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;280;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);81;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;81;;;;10 < seednumber <= 100;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);303;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;303;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-24 00:00:00.0;;;NETHERLANDS Carex otrubae;37711;actual measurement (following LEDA data standards);233;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;233;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Carex ovalis;37242;actual measurement (following LEDA data standards);77;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;81;107;46;77;10 < seednumber <= 100;;;;counting ;;2004-07-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex ovalis;37242;actual measurement (following LEDA data standards);125;11;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;117.36;146;83;125;100 < seednumber <= 1000;;;;counting ;;2005-05-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex ovalis;37242;actual measurement;133;3;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];133;175;100;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Carex ovalis;37242;actual measurement;48912.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;48912.25;;;;10,000 < seednumber <= 100,000;1;;28831.15237;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex pallescens;37247;actual measurement;1020;;per square meter;BIOPOP April 2005;;1020;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;19.5;;per multiple flower stem;BIOPOP April 2005;19.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;21.7;;per multiple flower stem;BIOPOP April 2005;21.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;1232;;per square meter;BIOPOP April 2005;;1232;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;18.6;;per multiple flower stem;BIOPOP April 2005;18.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;152;;per square meter;BIOPOP April 2005;;152;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;153;;per square meter;BIOPOP April 2005;;153;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;20.2;;per multiple flower stem;BIOPOP April 2005;20.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement (following LEDA data standards);51;11;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;55.45;89;24;51;10 < seednumber <= 100;;;;counting ;;2004-05-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex pallescens;37247;actual measurement;14.8;;per multiple flower stem;BIOPOP April 2005;14.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;450;;per square meter;BIOPOP April 2005;;450;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carex pallescens;37247;actual measurement;64256;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;64256;;;;10,000 < seednumber <= 100,000;1;;15118.16699;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex panicea;37248;actual measurement;37269;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37269;;;;10,000 < seednumber <= 100,000;1;;36245.4654;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex panicea;37248;actual measurement;27.5;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;30;25;;10 < seednumber <= 100;1;;;counting ;;1997-07-23 00:00:00.0;;;UNITED KINGDOM Carex pauciflora;37251;actual measurement (following LEDA data standards);5.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5.4;6;4;5.5;seednumber <= 10;;;;counting ;;2005-05-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex pauciflora;37251;actual measurement;1.5;750;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2;1;;seednumber <= 10;1;;;counting ;;1999-07-20 00:00:00.0;;;UNITED KINGDOM Carex pendula;37253;actual measurement (following LEDA data standards);2699.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2562.5;3719;1111;2699.5;1000 < seednumber <= 10,000;;;;counting ;;2004-07-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex pendula;37253;actual measurement (following LEDA data standards);2260;8;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2048.13;2260;1695;2260;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-06-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex pilosa;37256;actual measurement (following LEDA data standards);34;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33;37;28;34;10 < seednumber <= 100;;;;counting ;;2004-05-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex pilosa;37256;actual measurement;9760.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9760.666667;;;;1000 < seednumber <= 10,000;1;;4363.924992;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex pilulifera;37739;actual measurement;108;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;152.5;;;108;100 < seednumber <= 1000;1;43.38490521;137.1951165;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Carex pilulifera;37739;actual measurement (following LEDA data standards);31;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;32.07;49;24;31;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2004-06-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex pilulifera;37739;actual measurement (following LEDA data standards);28.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31.6;50;13;28.5;10 < seednumber <= 100;;;;counting ;;2004-06-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex praecox;37742;actual measurement;52273.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;52273.66667;;;;10,000 < seednumber <= 100,000;1;;31585.00088;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex praecox;37742;actual measurement (following LEDA data standards);29;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32.44;46;20;29;10 < seednumber <= 100;;;;counting ;;;preaggregated value obtained from single record;;GERMANY Carex pulicaris;37751;actual measurement;12.5;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;15;10;;10 < seednumber <= 100;1;;;counting ;;1999-07-03 00:00:00.0;;;UNITED KINGDOM Carex pulicaris;37751;actual measurement (following LEDA data standards);90;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;155.11;656;10;90;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex punctata;37752;actual measurement;3;75;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;3;;;;seednumber <= 10;1;;;counting ;;1997-07-29 00:00:00.0;;;UNITED KINGDOM Carex rariflora;37753;actual measurement;12;900;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;12;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-18 00:00:00.0;;;UNITED KINGDOM Carex recta;37267;actual measurement;0;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;0;;;;seednumber <= 10;1;;;counting ;;1997-07-24 00:00:00.0;;;UNITED KINGDOM Carex remota;37756;actual measurement;849;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;812.2;;;849;100 < seednumber <= 1000;1;87.0758035;275.3578682;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Carex remota;37756;actual measurement (following LEDA data standards);72;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;73.4;103;36;72;10 < seednumber <= 100;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex remota;37756;actual measurement (following LEDA data standards);57;8;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;57.13;83;34;57;10 < seednumber <= 100;;;;counting ;;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex remota;37756;actual measurement (following LEDA data standards);41.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;41.2;55;27;41.5;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex riparia;37273;actual measurement;23260.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23260.66667;;;;10,000 < seednumber <= 100,000;1;;10956.13829;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex riparia;37273;actual measurement (following LEDA data standards);248;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;309.33;464;216;248;100 < seednumber <= 1000;;;;counting ;;2005-06-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex rostrata;37274;actual measurement (following LEDA data standards);219;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;226.33;311;170;219;100 < seednumber <= 1000;;;;counting ;multiple flower inflorescence ;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex rostrata;37274;actual measurement (following LEDA data standards);9;7;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.86;37;1;9;seednumber <= 10;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-06 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex rostrata;37274;actual measurement (following LEDA data standards);116;15;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;117.6;139;100;116;100 < seednumber <= 1000;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex rostrata;37274;actual measurement;26575;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26575;;;;10,000 < seednumber <= 100,000;1;;2969.322313;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex rostrata;37274;actual measurement;.7;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;.7;;;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex rotundata;37649;actual measurement;4.3;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;4.3;14;0;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 4% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex rupestris;37277;actual measurement;8;127;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;8;;;;seednumber <= 10;1;;;counting ;;1998-08-30 00:00:00.0;;;UNITED KINGDOM Carex rupestris;37277;actual measurement;2.6;90;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;2.6;;;;seednumber <= 10;1;;;counting ;;1997-08-18 00:00:00.0;;;UNITED KINGDOM Carex rupestris;37277;actual measurement;.9;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;.9;4;0;;seednumber <= 10;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 21% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Carex saxatilis;37653;actual measurement (following LEDA data standards);22;6;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;24.33;47;4;22;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Carex saxatilis;37653;actual measurement (following LEDA data standards);53;3;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;48.33;56;36;53;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Carex saxatilis;37653;actual measurement;60;55;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;60;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-17 00:00:00.0;;;UNITED KINGDOM Carex saxatilis;37653;actual measurement;62;70;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;62;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-12 00:00:00.0;;;UNITED KINGDOM Carex spicata;37285;actual measurement;27900;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27900;;;;10,000 < seednumber <= 100,000;1;;14568.11587;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex strigosa;37674;actual measurement;17.5;100;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;20;15;;10 < seednumber <= 100;1;;;counting ;;1997-07-10 00:00:00.0;;;UNITED KINGDOM Carex strigosa;37674;actual measurement (following LEDA data standards);6257;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6149;10626;1280;6257;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex sylvatica;37678;actual measurement;736;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;702.6;;;736;100 < seednumber <= 1000;1;63.06613812;199.4326397;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Carex tomentosa;37173;actual measurement (following LEDA data standards);23;7;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;40;87;7;23;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carex tomentosa;37173;actual measurement (following LEDA data standards);47;12;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;55.33;103;24;47;10 < seednumber <= 100;;;;counting ;;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex trinervis;37174;actual measurement (following LEDA data standards);98.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;96.25;144;27;98.5;10 < seednumber <= 100;;;;counting ;;2004-06-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex umbrosa;37688;actual measurement (following LEDA data standards);131;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;131;238;24;131;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-05-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex vaginata;37695;actual measurement;7;104;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;7;;;;seednumber <= 10;1;;;counting ;;1997-08-19 00:00:00.0;;;UNITED KINGDOM Carex vesicaria;37183;actual measurement;.1;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;.1;;;;seednumber <= 10;1;;;counting ;unknown;1933-09-05 00:00:00.0;only fully developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;SWEDEN Carex vesicaria;37183;actual measurement;29776.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29776.25;;;;10,000 < seednumber <= 100,000;1;;7129.931481;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carex vulpina;37185;actual measurement (following LEDA data standards);232.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;241.8;398;52;232.5;100 < seednumber <= 1000;;;;counting ;;2004-06-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carex vulpina;37185;actual measurement;17966.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17966.66667;;;;10,000 < seednumber <= 100,000;1;;6811.999217;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carlina acaulis;3171;actual measurement;29555.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29555.66667;;;;10,000 < seednumber <= 100,000;1;;16603.14869;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carlina vulgaris;3338;actual measurement (following LEDA data standards);150;9;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;172.22;300;100;150;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-09-21 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Carlina vulgaris;3338;actual measurement (following LEDA data standards);100;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;105;200;50;100;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-06-07 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Carlina vulgaris;3338;estimation;679;205;per ramet/tussock or individual plant ;BIOPOP April 2005;679;750;608;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Carlina vulgaris;3338;actual measurement;37.7;3;per multiple flower inflorescence ;BIOPOP April 2005;37.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Carlina vulgaris;3338;actual measurement (following LEDA data standards);257;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;273;582;91;257;100 < seednumber <= 1000;;;;counting ;;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carlina vulgaris;3338;unknown;114;;per square meter;BIOPOP April 2005;114;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Carlina vulgaris s. vulgaris;2945;estimation;300;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;300;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Carpinus betulus;17990;unknown;705318;1;per ramet/tussock or individual plant ;Pijut, Paula(2000): Carpinus L., hornbeam or ironwood [];705318;;;;seednumber > 100,000;1;;;total weight;unknown;;N unknown, Rudolf and Phipps (1974), seedweight from BIOLFLOR;Pijut, Paula(2000): Carpinus L., hornbeam or ironwood [];UNITED STATES Carpinus betulus;17990;actual measurement (following LEDA data standards);45;9;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45.67;60;33;45;10 < seednumber <= 100;;;;counting ;;2004-10-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carthamus tinctorius;3822;laboratory/greenhouse/garden experiment;1300;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1300;1300;1300;1300;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Carum carvi;2331;actual measurement;3461;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3461;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carum carvi;2331;actual measurement;1278;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1278;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carum carvi;2331;actual measurement;3192;;per square meter;BIOPOP April 2005;;3192;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carum carvi;2331;actual measurement;905.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;905.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Carum carvi;2331;estimation (following LEDA data standards);10000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;15000;5000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Carum carvi;2331;actual measurement;95191.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;95191.25;;;;10,000 < seednumber <= 100,000;1;;35398.51301;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Carum verticillatum;1858;estimation;716;;per ramet/tussock or individual plant ;BIOPOP April 2005;716;1200;300;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cassiope hypnoides;19524;actual measurement (following LEDA data standards);150;3;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;287.33;600;112;150;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Castanea sativa;22480;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Watson, H.(1948): Botanical Notes on Trees of the British Forests, Oliver and Boyd, Edinburgh []; Catabrosa aquatica;41695;actual measurement (following LEDA data standards);609;9;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;570.89;868;221;609;100 < seednumber <= 1000;;;;counting ;;2004-06-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Caucalis platycarpos;2287;actual measurement;60;;per ramet/tussock or individual plant ;BIOPOP April 2005;60;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Centaurea calcitrapa;2960;laboratory/greenhouse/garden experiment;5530;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5530;5530;5530;5530;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-09-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurea cyanus;3132;actual measurement;1600;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1600;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Centaurea cyanus;3132;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: open stand;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Centaurea cyanus;3132;actual measurement;365;;per ramet/tussock or individual plant ;BIOPOP April 2005;;700;30;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Centaurea cyanus;3132;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Centaurea cyanus;3132;estimation (following LEDA data standards);3700.5;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;6680;721;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Centaurea cyanus;3132;estimation (following LEDA data standards);1150;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;1600;700;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Centaurea cyanus;3132;laboratory/greenhouse/garden experiment;2321;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2371.25;4388;455;2321;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurea cyanus;3132;actual measurement;25166;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25166;;;;10,000 < seednumber <= 100,000;1;;14960.60908;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Centaurea cyanus;3132;estimation (following LEDA data standards);1150;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;1600;700;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Centaurea cyanus;3132;actual measurement;100;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;100;;;;10 < seednumber <= 100;1;;;counting ;;1998-07-15 00:00:00.0;;;UNITED KINGDOM Centaurea cyanus;3132;unknown;1150;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;1600;700;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Centaurea diffusa;6142;actual measurement (following LEDA data standards);56;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;84;213;34;56;10 < seednumber <= 100;;;;counting ;;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurea jacea;4270;actual measurement;334;;per square meter;BIOPOP April 2005;;504;164;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Centaurea jacea;4270;actual measurement;104;;per multiple flower stem;BIOPOP April 2005;104;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Centaurea jacea;4270;actual measurement;1060;;per square meter;BIOPOP April 2005;;1060;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Centaurea jacea;4270;actual measurement;82.8;;per multiple flower stem;BIOPOP April 2005;82.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Centaurea jacea;4270;actual measurement;53.2;;per multiple flower stem;BIOPOP April 2005;53.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Centaurea jacea;4270;estimation (following LEDA data standards);2800;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2800;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Centaurea jacea;4270;actual measurement;235.1;;per multiple flower stem;BIOPOP April 2005;235.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Centaurea jacea;4270;actual measurement;1195;;per square meter;BIOPOP April 2005;;1434;956;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Centaurea jacea;3112;actual measurement;29786.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29786.5;;;;10,000 < seednumber <= 100,000;1;;26093.69028;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Centaurea jacea;4270;actual measurement;26;10;per multiple flower inflorescence ;BIOPOP April 2005;26;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Centaurea jacea;4270;unknown;2808;;per square meter;BIOPOP April 2005;2808;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Centaurea jacea;4270;unknown;177;;per square meter;BIOPOP April 2005;177;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Centaurea jacea;3112;actual measurement;50;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;50;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Centaurea montana;2682;actual measurement (following LEDA data standards);37;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;38.6;112;19;37;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-06-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Centaurea montana;2682;actual measurement (following LEDA data standards);60;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;60;80;40;60;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Centaurea nigra;3754;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Marsden-Jones, E. M.(1954): British Knapweeds, The Ray Society, London []; Centaurea phrygia;2883;actual measurement;400;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];400;400;400;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Centaurea phrygia subsp. pseudophrygia;3702;actual measurement (following LEDA data standards);108.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;229.5;874;8;108.5;100 < seednumber <= 1000;;;;counting ;;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurea rhenana;4249;actual measurement (following LEDA data standards);1320;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1532;2730;810;1320;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurea rhenana;4249;actual measurement (following LEDA data standards);1768.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2077;3423;715;1768.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurea scabiosa;3597;estimation;2000;57;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Centaurea scabiosa;3597;estimation;87;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;87;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Centaurea scabiosa;3597;estimation (following LEDA data standards);7200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;7200;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Centaurea scabiosa;3597;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Centaurea scabiosa;3597;actual measurement;7000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: max >7000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Centaurea solstitialis;3444;laboratory/greenhouse/garden experiment;1538;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1611.9;2005;1231;1538;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurium erythraea;22963;estimation;10840;173;per ramet/tussock or individual plant ;BIOPOP April 2005;10840;12054;9626;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Centaurium erythraea;22963;actual measurement (following LEDA data standards);3258;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3924.33;6440;2075;3258;1000 < seednumber <= 10,000;;;;counting ;;2005-08-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurium erythraea;22963;actual measurement;12252500;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12252500;;;;seednumber > 100,000;1;;5328810.843;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Centaurium erythraea;22963;estimation;334;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;334;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Centaurium littorale;22951;actual measurement (following LEDA data standards);1172;9;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1043.56;1792;246;1172;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-26 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Centaurium pulchellum;22823;actual measurement (following LEDA data standards);2658;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3017.2;5392;1612;2658;1000 < seednumber <= 10,000;;;;counting and weighing ;;2003-08-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Centaurium pulchellum;22823;actual measurement (following LEDA data standards);11004;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11397.8;23056;2384;11004;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Centranthus ruber;34865;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Centranthus ruber;34865;actual measurement (following LEDA data standards);395;6;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;431.67;670;250;395;100 < seednumber <= 1000;;;;counting ;;2000-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cephalanthera damasonium;39459;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Cephalanthera damasonium;39459;categorized from original source;24000;1;per ramet/tussock or individual plant ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];24000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;from literature: Tournay, 1960, no mean!;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Cephalanthera longifolia;39466;actual measurement (following LEDA data standards);100;5;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;98;110;85;100;10 < seednumber <= 100;;;;counting ;;2005-06-07 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Cephalanthera rubra;39469;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Rose, F. (unknown e-mail address); Cerastium alpinum;16895;actual measurement;8.3;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;8.3;;;;seednumber <= 10;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cerastium alpinum;16895;actual measurement;15.9;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;15.9;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cerastium alpinum;16895;actual measurement;21.5;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;21.5;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cerastium alpinum;16895;actual measurement;6.9;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;6.9;26;2;;seednumber <= 10;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cerastium alpinum;16895;actual measurement;11.3;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;11.3;21;1;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cerastium alpinum;16895;actual measurement;10.6;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;10.6;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cerastium arvense;16782;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;400;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >400;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cerastium arvense;16782;estimation (following LEDA data standards);220;1;per multiple flower stem;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;220;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cerastium arvense;16782;actual measurement;560841.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;560841.3333;;;;seednumber > 100,000;1;;507150.7359;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cerastium brachypetalum;16786;actual measurement (following LEDA data standards);92.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;116.17;262;36;92.5;10 < seednumber <= 100;;;;counting ;;2003-05-01 00:00:00.0;PREAGGREGATED! Raw record's comment: partially immature;;GERMANY Cerastium cerastoides;17207;actual measurement;45.5;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;45.5;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only viable seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cerastium cerastoides;17207;actual measurement;25.3;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;25.3;37;13;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only viable seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Cerastium cerastoides;17207;actual measurement (following LEDA data standards);3;1;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;3;3;3;3;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Cerastium diffusum;16473;estimation;45;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;45;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Cerastium fontanum;16798;actual measurement;1143;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1143;;;;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Cerastium fontanum;16798;actual measurement (following LEDA data standards);2464;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2287;5280;850;2464;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-06-24 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cerastium fontanum;16798;actual measurement (following LEDA data standards);23;1;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;23;23;23;23;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Cerastium fontanum s. vulgare;44993;estimation;6463;26;per ramet/tussock or individual plant ;BIOPOP April 2005;6463;7472;5454;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cerastium fontanum s. vulgare;44993;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cerastium fontanum s. vulgare;44993;actual measurement;28706;;per ramet/tussock or individual plant ;BIOPOP April 2005;;28706;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;1690.5;;per square meter;BIOPOP April 2005;;2940;441;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;149;;per ramet/tussock or individual plant ;BIOPOP April 2005;149;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;219.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;219.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;355;;per ramet/tussock or individual plant ;BIOPOP April 2005;355;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;123.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;123.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;249.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;249.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;861;;per square meter;BIOPOP April 2005;;861;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;224;;per square meter;BIOPOP April 2005;;256;192;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;actual measurement;714;;per square meter;BIOPOP April 2005;;714;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cerastium fontanum s. vulgare;44993;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1200;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cerastium fontanum s. vulgare;44993;actual measurement;545066.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;545066.6667;;;;seednumber > 100,000;1;;175069.053;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cerastium glomeratum;17356;estimation;4725;41;per ramet/tussock or individual plant ;BIOPOP April 2005;4725;5410;4040;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cerastium glomeratum;17356;estimation;62;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;62;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Cerastium nigrescens subsp. arcticum;44985;actual measurement;550;23;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;550;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-24 00:00:00.0;;;UNITED KINGDOM Cerastium pumilum;16863;actual measurement (following LEDA data standards);87;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;118.11;233;52;87;10 < seednumber <= 100;;;;counting ;;2003-05-11 00:00:00.0;PREAGGREGATED! Raw record's comment: partly immature;;GERMANY Cerastium pumilum;16863;actual measurement;3061601.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3061601.75;;;;seednumber > 100,000;1;;1922589.674;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cerastium semidecandrum;15651;estimation;256;77;per ramet/tussock or individual plant ;BIOPOP April 2005;256;284;228;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cerastium semidecandrum;15651;estimation;30;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;30;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Cerastium tomentosum;16387;actual measurement (following LEDA data standards);180;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;180;300;90;180;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-06-15 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Ceratocapnos claviculata;45620;actual measurement (following LEDA data standards);35.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45.6;80;22;35.5;10 < seednumber <= 100;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ceratocapnos claviculata;45620;actual measurement;39;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43;;;39;10 < seednumber <= 100;1;9.304718039;29.42410199;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Ceratocapnos claviculata;45620;actual measurement (following LEDA data standards);11;15;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.4;18;5;11;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-06-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Chaenorhinum minus;33202;actual measurement;948603.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;948603.25;;;;seednumber > 100,000;1;;193981.5649;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chaenorhinum minus;33202;estimation;2168;149;per ramet/tussock or individual plant ;BIOPOP April 2005;2168;2488;1848;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Chaenorhinum minus;33202;estimation;103;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;103;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Chaenorhinum minus;33202;actual measurement;2500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chaenorhinum minus;33202;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chaenorhinum minus;33202;actual measurement;25000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;25000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant General comment: max >25000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chaerophyllum aromaticum;2289;actual measurement;79401;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;79401;;;;10,000 < seednumber <= 100,000;1;;48413.53739;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chaerophyllum aureum;1393;actual measurement;77066.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;77066.66667;;;;10,000 < seednumber <= 100,000;1;;41216.17805;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chaerophyllum aureum;1393;actual measurement (following LEDA data standards);195;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;206;300;152;195;100 < seednumber <= 1000;;;;counting ;;2004-07-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chaerophyllum bulbosum;1394;laboratory/greenhouse/garden experiment;76.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;103.88;282;19;76.5;10 < seednumber <= 100;;;;counting ;;2005-07-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chaerophyllum bulbosum;1394;actual measurement (following LEDA data standards);4844;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6249.8;14952;2180;4844;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chaerophyllum hirsutum;1398;actual measurement;15183.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15183.66667;;;;10,000 < seednumber <= 100,000;1;;16040.90709;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chaerophyllum hirsutum;1398;actual measurement (following LEDA data standards);1214;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1193.6;1567;780;1214;1000 < seednumber <= 10,000;;;;counting and weighing ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chaerophyllum temulum;59605;laboratory/greenhouse/garden experiment;3125.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3016.8;4676;1271;3125.5;1000 < seednumber <= 10,000;;;;counting ;;2004-07-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chaerophyllum temulum;59605;actual measurement;86914.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;86914.33333;;;;10,000 < seednumber <= 100,000;1;;73158.80819;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);250;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;242.5;275;225;250;100 < seednumber <= 1000;;;;counting ;;2005-06-15 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);91;4;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;95;136;62;91;10 < seednumber <= 100;;;;counting ;multiple flower inflorescence ;2004-04-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Chamaespartium sagittale;21791;actual measurement (following LEDA data standards);30.5;10;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29.8;44;12;30.5;10 < seednumber <= 100;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chamomilla recutita;5994;actual measurement;45000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;45000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant General comment: max >45000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chamomilla recutita;5994;estimation (following LEDA data standards);5300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;5300;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chamomilla recutita;5994;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chamomilla recutita;5994;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chamomilla recutita;5994;actual measurement;871870;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;871870;;;;seednumber > 100,000;1;;684537.2828;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chamomilla recutita;5994;unknown;5500;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;10000;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Chamomilla recutita;5994;estimation (following LEDA data standards);5000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;5000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Chamomilla suaveolens;5904;estimation;450;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;450;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Chamomilla suaveolens;5904;estimation (following LEDA data standards);5300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;5300;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chamomilla suaveolens;5904;estimation (following LEDA data standards);5000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;5000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Chamomilla suaveolens;5904;actual measurement;704933;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;704933;;;;seednumber > 100,000;1;;421709.4568;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chamomilla suaveolens;5904;actual measurement;16250;;per ramet/tussock or individual plant ;BIOPOP April 2005;;16250;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Chamomilla suaveolens;5904;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;5000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: mean >5000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chamomilla suaveolens;5904;estimation;6384;184;per ramet/tussock or individual plant ;BIOPOP April 2005;6384;4034;6034;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Chelidonium majus;25435;actual measurement;761;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;991.1;;;761;100 < seednumber <= 1000;1;193.86252;613.0471162;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Chelidonium majus;25435;actual measurement;1782.5;;per square meter;BIOPOP April 2005;;2625;940;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Chelidonium majus;25435;actual measurement;186;;per ramet/tussock or individual plant ;BIOPOP April 2005;186;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Chelidonium majus;25435;actual measurement;500.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;500.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Chelidonium majus;25435;actual measurement;485;;per square meter;BIOPOP April 2005;;485;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Chelidonium majus;25435;actual measurement;286798.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;286798.6667;;;;seednumber > 100,000;1;;52499.46291;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chelidonium majus;25435;actual measurement;110;6;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;100;;100 < seednumber <= 1000;1;;;counting ;;1997-06-06 00:00:00.0;;;UNITED KINGDOM Chelidonium majus;25435;estimation (following LEDA data standards);16897;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;16897;35969;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chelidonium majus;25435;estimation (following LEDA data standards);6700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6700;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chenopodium album;17842;estimation;72450;;per ramet/tussock or individual plant ;BIOPOP April 2005;72450;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Chenopodium album;17842;unknown;3123;;per ramet/tussock or individual plant ;BIOPOP April 2005;3123;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Williams, J.T. (1963): Biological Flora of the British Isles. [51(3)]; Chenopodium album;17842;unknown;10100;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;20000;200;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Chenopodium album;17842;estimation (following LEDA data standards);11500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;20000;3000;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Chenopodium album;17842;actual measurement;312589;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;312589;;;;seednumber > 100,000;1;;349042.2938;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium album;17842;actual measurement;206018;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;206018;;;;seednumber > 100,000;1;;223003.3497;counting and weighing ;;;ssp. pedunculare, coll.: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium album;17842;actual measurement;1525;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3000;50;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium album;17842;actual measurement;20000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;20000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium album;17842;estimation (following LEDA data standards);3100;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3100;20000;100;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chenopodium album;17842;unknown;15586;;per ramet/tussock or individual plant ;BIOPOP April 2005;15586;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa; Chenopodium album;17842;actual measurement;500000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium ambrosioides;17719;laboratory/greenhouse/garden experiment;9424;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10098.1;21204;1097;9424;1000 < seednumber <= 10,000;;;;estimation ;single flower inflorescence ;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chenopodium bonus-henricus;17724;actual measurement (following LEDA data standards);2548;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2670.71;3619;2121;2548;1000 < seednumber <= 10,000;;;;counting ;;2003-09-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chenopodium bonus-henricus;17724;actual measurement;23441.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23441.66667;;;;10,000 < seednumber <= 100,000;1;;13889.66351;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium bonus-henricus;17724;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1200;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chenopodium ficifolium;17866;actual measurement;130000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;130000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium ficifolium;17866;actual measurement (following LEDA data standards);18151;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18151;31963;4339;18151;10,000 < seednumber <= 100,000;;;;counting and weighing ;;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chenopodium ficifolium;17866;actual measurement;1800;;per ramet/tussock or individual plant ;BIOPOP April 2005;1800;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium ficifolium;17866;actual measurement;4000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium glaucum;17874;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium glaucum;17874;estimation (following LEDA data standards);2800;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2800;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chenopodium glaucum;17874;actual measurement;110556.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;110556.3333;;;;seednumber > 100,000;1;;90524.93513;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium glaucum;17874;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;3000;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Chenopodium hybridum;17875;estimation (following LEDA data standards);4500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4500;15000;1000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chenopodium hybridum;17875;actual measurement;228120.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;228120.3333;;;;seednumber > 100,000;1;;227108.3362;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium hybridum;17875;estimation (following LEDA data standards);8000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;15000;1000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Chenopodium hybridum;17875;actual measurement;15000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;15000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium hybridum;17875;actual measurement;4500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium hybridum;17875;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium polyspermum;17882;actual measurement;4000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chenopodium polyspermum;17882;estimation (following LEDA data standards);4000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chenopodium polyspermum;17882;unknown;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Wehsarg, O. (1954): Ackerunkräuter. Biologie. Allgemeine Bekämpfung und Einzelbekämpfung []; Chenopodium polyspermum;17882;estimation (following LEDA data standards);4000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;4000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Chenopodium polyspermum;17882;actual measurement;264320.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;264320.6667;;;;seednumber > 100,000;1;;300502.6098;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium rubrum;17729;actual measurement;222192.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;222192.3333;;;;seednumber > 100,000;1;;166289.9711;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium rubrum;17729;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;3000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Chenopodium rubrum;17729;actual measurement;250000;;per ramet/tussock or individual plant ;BIOPOP April 2005;250000;;;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Chenopodium rubrum;17729;estimation;176300;;per ramet/tussock or individual plant ;BIOPOP April 2005;176300;;;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Chenopodium rubrum;17729;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chenopodium strictum;17718;actual measurement;65467.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;65467.66667;;;;10,000 < seednumber <= 100,000;1;;43220.19246;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium suecicum;17888;actual measurement;79928;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;79928;;;;10,000 < seednumber <= 100,000;1;;69612.86916;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Chenopodium urbicum;17891;actual measurement (following LEDA data standards);3397;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3397;5387;1407;3397;1000 < seednumber <= 10,000;;;;counting and weighing ;;2004-10-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chondrilla juncea;5390;actual measurement (following LEDA data standards);616.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;855.83;2278;403;616.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chrysanthemum segetum;3728;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chrysanthemum segetum;3728;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chrysanthemum segetum;3728;estimation (following LEDA data standards);2100;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2100;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Chrysanthemum segetum;3728;actual measurement;1300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1300;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Chrysanthemum segetum;3728;estimation;426;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;426;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/head;Howarth, S. E.(1972): no title given, publication in Journal of Ecology issue: 60 pages: 573-584 [60]; Chrysosplenium alternifolium;31308;actual measurement (following LEDA data standards);138.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;175.6;504;63;138.5;100 < seednumber <= 1000;;;;counting ;;2004-05-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Chrysosplenium alternifolium;31308;actual measurement;317;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;352.2;;;317;100 < seednumber <= 1000;1;37.657462;119.0833508;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Chrysosplenium oppositifolium;31313;actual measurement (following LEDA data standards);35;5;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;33.8;41;17;35;10 < seednumber <= 100;;;;counting ;;2004-06-30 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cicendia filiformis;22974;estimation;291;110;per ramet/tussock or individual plant ;BIOPOP April 2005;291;325;257;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cicendia filiformis;22974;actual measurement (following LEDA data standards);140.5;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;171;314;50;140.5;100 < seednumber <= 1000;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cicendia filiformis;22974;actual measurement (following LEDA data standards);1862;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2047.8;4654;1241;1862;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cicendia filiformis;22974;estimation;149;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;149;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 149;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Cicendia filiformis;22974;estimation;186;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;186;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Cicerbita alpina;2692;actual measurement (following LEDA data standards);470.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;495.5;985;146;470.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cichorium intybus;2694;estimation (following LEDA data standards);6500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cichorium intybus;2694;actual measurement (following LEDA data standards);10896;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13277.67;33330;3767;10896;10,000 < seednumber <= 100,000;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cichorium intybus;2694;actual measurement (following LEDA data standards);2406;6;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5801.17;21427;515;2406;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cichorium intybus;2694;actual measurement;76095.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;76095.5;;;;10,000 < seednumber <= 100,000;1;;45559.5034;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cicuta virosa;2295;actual measurement;30500;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30500;;;;10,000 < seednumber <= 100,000;1;;4092.676386;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cicuta virosa;2295;actual measurement;20700;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];20700;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Cicuta virosa;2295;actual measurement;1716;31;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;1716;;;;1000 < seednumber <= 10,000;1;;;counting ;;1997-08-21 00:00:00.0;;;UNITED KINGDOM Cicuta virosa;2295;estimation;17500;;per ramet/tussock or individual plant ;BIOPOP April 2005;17500;20000;15000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cicuta virosa;2295;estimation (following LEDA data standards);4000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cicuta virosa;2295;actual measurement (following LEDA data standards);1956;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2496.8;5285;945;1956;1000 < seednumber <= 10,000;;;;counting ;;2004-09-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cicuta virosa;2295;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Circaea alpina;26057;actual measurement;3;;per square meter;BIOPOP April 2005;;;3;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Circaea lutetiana;26061;actual measurement;124;96;per ramet/tussock or individual plant ;BIOPOP April 2005;124;131.8;116.2;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Circaea lutetiana;26061;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Circaea lutetiana;26061;actual measurement;27.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26.5;;;27.5;10 < seednumber <= 100;1;2.785877081;8.809716858;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Circaea lutetiana;26061;actual measurement;15;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;20;10;;10 < seednumber <= 100;1;;;counting ;;1998-09-29 00:00:00.0;;;UNITED KINGDOM Circaea lutetiana;26061;actual measurement;5806.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5806.333333;;;;1000 < seednumber <= 10,000;1;;877.7154057;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cirsium acaule;3252;unknown;425;;per square meter;BIOPOP April 2005;425;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Cirsium arvense;5024;actual measurement;40000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cirsium arvense;5024;actual measurement;32776.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32776.33333;;;;10,000 < seednumber <= 100,000;1;;18293.64973;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cirsium arvense;5024;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cirsium arvense;5024;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cirsium arvense;5024;estimation (following LEDA data standards);4500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;5000;4000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Cirsium arvense;5024;actual measurement;6972;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;7802;6142;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Cirsium arvense;5024;estimation (following LEDA data standards);3500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium arvense;5024;estimation (following LEDA data standards);5000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;6000;4000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium arvense;5024;estimation (following LEDA data standards);6240;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6240;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium arvense;5024;estimation (following LEDA data standards);4600;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4600;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium arvense;5024;unknown;1530;;per ramet/tussock or individual plant ;BIOPOP April 2005;1530;5300;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Moore, R. J. (1975): The biology of Canadian weeds 13. Cirsium arvense (L.) Scop.; Cirsium arvense;5024;estimation (following LEDA data standards);15875;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;19650;12100;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium arvense;5024;estimation (following LEDA data standards);35550;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;35550;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium arvense;5024;estimation (following LEDA data standards);40000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;40000;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium arvense;5024;estimation;200;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;200;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): seeds/head;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Cirsium dissectum;5048;actual measurement (following LEDA data standards);16;11;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.36;28;2;16;10 < seednumber <= 100;;;;counting ;;2000-06-28 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cirsium helenioides;3067;estimation;375;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;450;300;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Cirsium helenioides;3067;actual measurement;42.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;42.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium helenioides;3067;actual measurement;125;;per square meter;BIOPOP April 2005;;125;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium helenioides;3067;actual measurement;384;;per square meter;BIOPOP April 2005;;384;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium helenioides;3067;estimation (following LEDA data standards);1600;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1600;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium helenioides;3067;actual measurement;66.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;66.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium helenioides;3067;actual measurement;12.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;12.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium helenioides;3067;actual measurement;206;;per ramet/tussock or individual plant ;BIOPOP April 2005;206;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium helenioides;3067;actual measurement;572;;per square meter;BIOPOP April 2005;;572;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium helenioides;3067;actual measurement;5750;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5750;;;;1000 < seednumber <= 10,000;1;;1145.643924;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cirsium oleraceum;6109;actual measurement;13985;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13985;;;;10,000 < seednumber <= 100,000;1;;5244.346956;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cirsium oleraceum;6109;actual measurement;279.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;323.5;;;279.5;100 < seednumber <= 1000;1;41.40699082;130.940402;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Cirsium palustre;5896;actual measurement;59469;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;59469;;;;10,000 < seednumber <= 100,000;1;;70040.96718;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cirsium palustre;5896;actual measurement;3914;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;5624;2204;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Cirsium palustre;5896;actual measurement;2040;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2344.1;;;2040;1000 < seednumber <= 10,000;1;377.9555074;1195.200258;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Cirsium palustre;5896;estimation;77;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;77;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Cirsium palustre;5896;actual measurement;6080;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6080;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium palustre;5896;actual measurement;5220;;per square meter;BIOPOP April 2005;;5220;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium palustre;5896;actual measurement;1824;;per square meter;BIOPOP April 2005;;1824;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium palustre;5896;actual measurement;878.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;878.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium palustre;5896;actual measurement;1819;;per ramet/tussock or individual plant ;BIOPOP April 2005;1819;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium palustre;5896;estimation (following LEDA data standards);7000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;7000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium palustre;5896;estimation;7225;42;per ramet/tussock or individual plant ;BIOPOP April 2005;7225;8240;6210;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cirsium vulgare;3737;actual measurement;53070;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;53070;;;;10,000 < seednumber <= 100,000;1;;40174.99554;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cirsium vulgare;3737;actual measurement;3380;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3380;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium vulgare;3737;unknown;3100;;per ramet/tussock or individual plant ;BIOPOP April 2005;3100;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: ungrazed pasture, year 3;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.;AUSTRALIA Cirsium vulgare;3737;unknown;3400;;per ramet/tussock or individual plant ;BIOPOP April 2005;3400;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: ungrazed pasture, year 1;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.;AUSTRALIA Cirsium vulgare;3737;unknown;4300;;per ramet/tussock or individual plant ;BIOPOP April 2005;4300;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed pasture year 2;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.;AUSTRALIA Cirsium vulgare;3737;estimation;400;;per single flower inflorescence ;BIOPOP April 2005;;400;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.; Cirsium vulgare;3737;estimation;4000;;per ramet/tussock or individual plant ;BIOPOP April 2005;4000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.;CANADA Cirsium vulgare;3737;unknown;1373;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2500;246;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.; Cirsium vulgare;3737;unknown;8000;;per ramet/tussock or individual plant ;BIOPOP April 2005;8000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.; Cirsium vulgare;3737;unknown;7000;;per ramet/tussock or individual plant ;BIOPOP April 2005;7000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed pasture year 3;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.;AUSTRALIA Cirsium vulgare;3737;unknown;8400;;per ramet/tussock or individual plant ;BIOPOP April 2005;8400;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed pasture year 1;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.;AUSTRALIA Cirsium vulgare;3737;unknown;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: ungrazed pasture, year 2;Klinkhamer, P. G. L. (1993): Biological flora of the British Isles: Cirsium vulgare (Savi.) Ten.;AUSTRALIA Cirsium vulgare;3737;actual measurement;2272;;per square meter;BIOPOP April 2005;;2272;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cirsium vulgare;3737;estimation (following LEDA data standards);2800;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2800;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cirsium vulgare;3737;actual measurement;1362;;per ramet/tussock or individual plant ;BIOPOP April 2005;1362;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Claytonia perfoliata;27495;actual measurement;459;21;per ramet/tussock or individual plant ;BIOPOP April 2005;459;498;420;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Claytonia perfoliata;27495;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Clematis vitalba;27205;actual measurement (following LEDA data standards);77;15;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;88.73;144;26;77;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-09-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Clematis viticella;27206;actual measurement (following LEDA data standards);25;3;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;25;25;25;25;10 < seednumber <= 100;;;;counting ;;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Clinopodium vulgare;24218;actual measurement;53;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;53;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Clinopodium vulgare;24218;actual measurement (following LEDA data standards);41;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;56.55;117;10;41;10 < seednumber <= 100;;;;counting ;;2003-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Clinopodium vulgare;24218;actual measurement;216818;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;216818;;;;seednumber > 100,000;1;;142158.9044;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cnicus benedictus;3260;laboratory/greenhouse/garden experiment;54.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;161.6;689;35;54.5;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cochlearia anglica;13319;actual measurement;400;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;400;;;;100 < seednumber <= 1000;1;;;counting ;;1998-07-09 00:00:00.0;;;UNITED KINGDOM Cochlearia danica;12875;laboratory/greenhouse/garden experiment;330;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1030.29;3700;177;330;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cochlearia danica;12875;estimation;11;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;11;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Cochlearia officinalis;14148;actual measurement (following LEDA data standards);21;14;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22.86;42;9;21;10 < seednumber <= 100;;;;counting ;;2005-05-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cochlearia officinalis subsp. pyrenaica;14458;actual measurement;1155;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1260;1050;;1000 < seednumber <= 10,000;1;;;counting ;;1997-06-20 00:00:00.0;;;UNITED KINGDOM Coeloglossum viride;39475;actual measurement;12028;44;per ramet/tussock or individual plant ;BIOPOP April 2005;12028;13937;10119;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Coeloglossum viride;39475;estimation;2251;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2251;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Coeloglossum viride;39475;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Colchicum autumnale;38684;actual measurement;86766.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;86766.66667;;;;10,000 < seednumber <= 100,000;1;;34477.57725;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Colchicum autumnale;38684;actual measurement;64.29;7;per single flower inflorescence ;BIOPOP April 2005;64.29;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Colchicum autumnale;38684;unknown;105;;per ramet/tussock or individual plant ;BIOPOP April 2005;;120;90;;100 < seednumber <= 1000;;;;unknown;unknown;;;Butcher, R. W. (1954): Biological flora of the British Isles: Colchium autumnale L..; Colchicum autumnale;38684;estimation;105;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;;120;90;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): 90-120;Butcher, R. E.(1954): no title given, publication in Journal of Ecology issue: 42 pages: 249-257 [42]; Colchicum autumnale;38684;estimation;35;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;35;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Butcher, R. E.(1954): no title given, publication in Journal of Ecology issue: 42 pages: 249-257 [42]; Colutea arborescens;21799;actual measurement (following LEDA data standards);158;1;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;158;158;158;158;100 < seednumber <= 1000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Conium maculatum;1410;actual measurement;92387.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;92387.66667;;;;10,000 < seednumber <= 100,000;1;;45598.33392;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Conium maculatum;1410;estimation (following LEDA data standards);15000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;15000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Conopodium majus;1346;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Conopodium majus;1346;actual measurement;215.5;121;per ramet/tussock or individual plant ;BIOPOP April 2005;215.5;224.5;206.5;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Conringia orientalis;13624;laboratory/greenhouse/garden experiment;239.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;390.3;1740;93;239.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-07-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Conringia orientalis;13624;actual measurement;1300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1300;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Conringia orientalis;13624;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Conringia orientalis;13624;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Consolida orientalis;27096;actual measurement;700;;per ramet/tussock or individual plant ;BIOPOP April 2005;;700;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Consolida orientalis;27096;actual measurement;275;;per ramet/tussock or individual plant ;BIOPOP April 2005;;350;200;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Consolida regalis;27229;actual measurement;197646.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;197646.6667;;;;seednumber > 100,000;1;;144035.4628;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Consolida regalis;27229;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;200;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Consolida regalis;27229;actual measurement (following LEDA data standards);144;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;144;144;144;144;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Consolida regalis;27229;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Consolida regalis;27229;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Consolida regalis;27229;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;200;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Convallaria majalis;39099;actual measurement;1;;per square meter;BIOPOP April 2005;;;1;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Convallaria majalis;39099;actual measurement;11;;per ramet/tussock or individual plant ;BIOPOP April 2005;11;42;6;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Convallaria majalis;39099;actual measurement;4.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;4.2;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Convallaria majalis;39099;actual measurement;11;;per ramet/tussock or individual plant ;BIOPOP April 2005;11;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Convallaria majalis;39099;actual measurement;3.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;3.2;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Convallaria majalis;39099;actual measurement;20.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22.2;;;20.5;10 < seednumber <= 100;1;4.095526014;12.95119042;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Convallaria majalis;39099;actual measurement;2468.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2468.75;;;;1000 < seednumber <= 10,000;1;;1437.5;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Convallaria majalis;39099;actual measurement;9;;per square meter;BIOPOP April 2005;;9;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Convallaria majalis;39099;actual measurement;458;;per square meter;BIOPOP April 2005;;458;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Convallaria majalis;39099;actual measurement;18;;per square meter;BIOPOP April 2005;;18;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Convolvulus arvensis;18911;unknown;162.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;25;;100 < seednumber <= 1000;;;;unknown;unknown;;;Weaver, S. E. (1982): The biology of Canadian weeds. 53. Convolvulus arvensis L.; Convolvulus arvensis;18911;estimation (following LEDA data standards);600;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;600;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Convolvulus arvensis;18911;estimation (following LEDA data standards);550;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;550;;;;100 < seednumber <= 1000;1;;;unknown;single flower inflorescence ;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Convolvulus arvensis;18911;estimation (following LEDA data standards);1.5;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;2;1;;seednumber <= 10;1;;;unknown;unknown;;four seeds per single flower is rarity;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Convolvulus arvensis;18911;estimation (following LEDA data standards);550;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;550;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Convolvulus arvensis;18911;actual measurement;909.3333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;909.3333333;;;;100 < seednumber <= 1000;1;;252.1137309;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Convolvulus arvensis;18911;actual measurement;550;;per ramet/tussock or individual plant ;BIOPOP April 2005;;550;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Convolvulus arvensis;18911;actual measurement;25;;per ramet/tussock or individual plant ;BIOPOP April 2005;25;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Convolvulus arvensis;18911;actual measurement;6000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Convolvulus arvensis;18911;estimation;14;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;14;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Conyza canadensis;5194;estimation;230000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;230000;;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Conyza canadensis;5194;estimation;25000;;per ramet/tussock or individual plant ;BIOPOP April 2005;25000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Conyza canadensis;5194;actual measurement;800475.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;800475.5;;;;seednumber > 100,000;1;;787029.1969;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Conyza canadensis;5194;actual measurement;110000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;110000;;;seednumber > 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Conyza canadensis;5194;estimation;49;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;49;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Conyza canadensis;5194;unknown;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: 40 cm tall plant;Weaver, S. E. (2001): The biology of Canadian weeds. 115. Conyza canadensis. [81(4)]; Conyza canadensis;5194;unknown;200000;;per ramet/tussock or individual plant ;BIOPOP April 2005;200000;;;;seednumber > 100,000;;;;unknown;unknown;;;Weaver, S. E. (2001): The biology of Canadian weeds. 115. Conyza canadensis. [81(4)]; Conyza canadensis;5194;actual measurement;200000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Conyza canadensis;5194;actual measurement;100000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Conyza canadensis;5194;actual measurement;25000;;per ramet/tussock or individual plant ;BIOPOP April 2005;25000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Conyza canadensis;5194;unknown;230000;;per ramet/tussock or individual plant ;BIOPOP April 2005;230000;;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: 1,5 m tall plant;Weaver, S. E. (2001): The biology of Canadian weeds. 115. Conyza canadensis. [81(4)]; Coriandrum sativum;2310;actual measurement (following LEDA data standards);1224;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1364.4;2576;206;1224;1000 < seednumber <= 10,000;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Corispermum intermedium;17909;actual measurement (following LEDA data standards);5066;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5593.22;11692;1321;5066;1000 < seednumber <= 10,000;;;;counting ;;2003-08-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cornus mas;18428;actual measurement (following LEDA data standards);5;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.8;10;2;5;seednumber <= 10;;;;counting ;;2004-09-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cornus sanguinea;18429;unknown;2900;5;per ramet/tussock or individual plant ;Kollmann, Johannes(2001): Biological Flora of Central Europe: Cornus sanguinea L. [196];;5100;700;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Pirl 1990;Kollmann, Johannes(2001): Biological Flora of Central Europe: Cornus sanguinea L. [196];Europe Cornus sanguinea;18429;unknown;9;1;per multiple flower inflorescence ;Kollmann, Johannes(2001): Biological Flora of Central Europe: Cornus sanguinea L. [196];9;;;;seednumber <= 10;1;;;unknown;unknown;;Pirl 1990;Kollmann, Johannes(2001): Biological Flora of Central Europe: Cornus sanguinea L. [196];Europe Cornus sanguinea;18429;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Smith, C. J.(1980): Ecology of the English Chalk, Academic Press, London []; Cornus suecica;18440;actual measurement (following LEDA data standards);5;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.6;7;2;5;seednumber <= 10;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Coronilla coronata;21803;actual measurement (following LEDA data standards);21;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22.31;35.1;13;21;10 < seednumber <= 100;;;;counting ;multiple flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Coronilla emerus;21806;actual measurement (following LEDA data standards);30.5;2;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30.5;36;25;30.5;10 < seednumber <= 100;;;;counting ;;2004-05-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Coronilla scorpioides;22332;unknown;24;1;per multiple flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;;44;4;;10 < seednumber <= 100;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Coronilla scorpioides;22332;unknown;6.5;1;per single flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;;11;2;;seednumber <= 10;1;;;unknown;unknown;;Number of segments per pod, refered by C. Stace 1991 New Flora of the British Isles;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Coronilla vaginalis;21349;actual measurement (following LEDA data standards);189.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;265.83;572;70;189.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Coronilla varia;21810;actual measurement;129900;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;129900;;;;seednumber > 100,000;1;;192250.9558;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Coronilla varia;21810;estimation;7;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;7;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Duke, J. A.(1981): Handbook of Legumes of World Economic Importance, Plenum Press, New York []; Coronilla varia;21810;actual measurement (following LEDA data standards);64;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;68.9;128;45;64;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2000-08-21 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Coronilla varia;21810;actual measurement (following LEDA data standards);1451;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1473;2759;90;1451;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Coronilla varia;21810;actual measurement (following LEDA data standards);377.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1328.5;8184;46;377.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Coronopus didymus;13200;actual measurement (following LEDA data standards);123;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;218;556;70;123;100 < seednumber <= 1000;;;;counting ;;2004-07-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Coronopus squamatus;14154;actual measurement (following LEDA data standards);184;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;184;184;184;184;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Coronopus squamatus;14154;actual measurement (following LEDA data standards);51.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;108;359;9;51.5;10 < seednumber <= 100;;;;counting ;;2004-06-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Coronopus squamatus;14154;actual measurement;18000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;18000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Coronopus squamatus;14154;actual measurement;8050;;per ramet/tussock or individual plant ;BIOPOP April 2005;;16000;100;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Corrigiola litoralis;15658;estimation;30;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;30;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 30;Coker, P. D.(1962): no title given, publication in Journal of Ecology issue: 50 pages: 833-840 [50]; Corrigiola litoralis;15658;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Coker, P. D.(1962): no title given, publication in Journal of Ecology issue: 50 pages: 833-840 [50]; Corydalis cava;25389;laboratory/greenhouse/garden experiment;62;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60.3;79;41;62;10 < seednumber <= 100;;;;counting ;;2004-04-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Corydalis cava;25389;actual measurement;17664;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17664;;;;10,000 < seednumber <= 100,000;1;;6908.739972;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Corydalis pumila;25496;unknown;7.6;1;per single flower inflorescence ;Stolle, Jens(2004): Biological flora of Central Europe: Corydalis pumila (Host) Rchb. [199];7.6;12;5;;seednumber <= 10;1;;;counting ;unknown;;N unknown;Stolle, Jens(2004): Biological flora of Central Europe: Corydalis pumila (Host) Rchb. [199];GERMANY Corydalis pumila;25496;unknown;35;1;per ramet/tussock or individual plant ;Stolle, Jens(2004): Biological flora of Central Europe: Corydalis pumila (Host) Rchb. [199];;60;10;;10 < seednumber <= 100;1;;;unknown;unknown;;N unknown;Stolle, Jens(2004): Biological flora of Central Europe: Corydalis pumila (Host) Rchb. [199];GERMANY Corydalis solida;25469;actual measurement;4158;;per square meter;BIOPOP April 2005;;4158;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Corydalis solida;25469;actual measurement;115;;per square meter;BIOPOP April 2005;;161;69;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Corydalis solida;25469;actual measurement;13183.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13183.33333;;;;10,000 < seednumber <= 100,000;1;;3583.410852;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Corydalis solida;25469;laboratory/greenhouse/garden experiment;30.5;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27.63;46;9;30.5;10 < seednumber <= 100;;;;counting ;;2004-04-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Corydalis solida;25469;actual measurement;12.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;12.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Corydalis solida;25469;actual measurement;76.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;76.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Corylus avellana;18083;actual measurement;1250;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1250;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Cotoneaster horizontalis;29735;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Cotoneaster integerrimus;30932;actual measurement (following LEDA data standards);51;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;55.9;126;24;51;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-06-11 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Cotoneaster integerrimus;30932;actual measurement (following LEDA data standards);344;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;544.86;1260;109;344;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cotula coronopifolia;5009;actual measurement (following LEDA data standards);1716;15;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1736.93;3040;700;1716;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Crambe maritima;14463;estimation;40000;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;50000;30000;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Crambe maritima;14463;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Scott, G. A. M.(1976): no title given, publication in Journal of Ecology issue: 64 pages: 1077-1091 [64]; Crambe maritima;14463;actual measurement (following LEDA data standards);115;3;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;147.67;252;76;115;100 < seednumber <= 1000;;;;counting ;;2005-06-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Crambe maritima;14463;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Scott, G. A. M.(1976): no title given, publication in Journal of Ecology issue: 64 pages: 1077-1091 [64]; Crassula tillaea;18116;estimation;736;92;per ramet/tussock or individual plant ;BIOPOP April 2005;736;776;696;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Crassula tillaea;18116;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;8;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 8;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Crataegus laevigata;29749;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Crataegus laevigata;29749;actual measurement;125;7;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;200;50;;100 < seednumber <= 1000;1;;;counting ;;1997-10-16 00:00:00.0;;;UNITED KINGDOM Crataegus monogyna;29980;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Crataegus monogyna;29980;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Batko, S.(1946): Report for 1943-1944 [12]; Crepis biennis;4230;actual measurement;74895.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;74895.75;;;;10,000 < seednumber <= 100,000;1;;11208.61682;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Crepis biennis;4230;actual measurement;2775;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;4350;1200;;1000 < seednumber <= 10,000;1;;;counting ;;1998-06-26 00:00:00.0;;;UNITED KINGDOM Crepis biennis;4230;actual measurement (following LEDA data standards);1450;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1450;1450;1450;1450;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Crepis biennis;4230;actual measurement (following LEDA data standards);1876;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1876;1876;1876;1876;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-06-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Crepis capillaris;3071;estimation;40;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;40;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 40 seeds/capitulum;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Crepis capillaris;3071;actual measurement;8000;250;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;12000;4000;;1000 < seednumber <= 10,000;1;;;counting ;;1998-07-24 00:00:00.0;;;UNITED KINGDOM Crepis paludosa;5882;actual measurement;250;10;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;400;100;;100 < seednumber <= 1000;1;;;counting ;;1999-08-05 00:00:00.0;;;UNITED KINGDOM Crepis paludosa;5882;actual measurement;225;38;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;300;150;;100 < seednumber <= 1000;1;;;counting ;;1999-08-24 00:00:00.0;;;UNITED KINGDOM Crepis paludosa;5882;actual measurement;178.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;189.5;;;178.5;100 < seednumber <= 1000;1;21.9470322;69.40260962;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Crepis paludosa;5882;actual measurement (following LEDA data standards);462;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;550.47;1175;180;462;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2000-08-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Crepis pyrenaica;4706;actual measurement (following LEDA data standards);344;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;351.4;456;249;344;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-22 00:00:00.0;preaggregated value obtained from single record;;GERMANY Crepis tectorum;3084;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Crepis tectorum;3084;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Crepis tectorum;3084;actual measurement;17;;per square meter;BIOPOP April 2005;;;17;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Crepis tectorum;3084;actual measurement;9856;;per square meter;BIOPOP April 2005;;9856;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Crepis tectorum;3084;unknown;26390;;per ramet/tussock or individual plant ;BIOPOP April 2005;;49420;3360;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Najda, H. G.(1982): The biology of Canadian weeds. 54. Crepis tectorum L.; Crepis tectorum;3084;actual measurement;448;;per ramet/tussock or individual plant ;BIOPOP April 2005;448;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Crepis tectorum;3084;actual measurement;5376;;per square meter;BIOPOP April 2005;;9856;896;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Crepis tectorum;3084;actual measurement;1848;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1848;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Crepis vesicaria s. haenseleri;5286;actual measurement (following LEDA data standards);132;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;161.6;264;92;132;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Crithmum maritimum;1350;actual measurement (following LEDA data standards);5052;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4653.6;7820;1932;5052;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Cruciata glabra;31855;actual measurement;243185.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;243185.3333;;;;seednumber > 100,000;1;;74480.68102;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cruciata laevipes;32133;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Cuscuta campestris;18871;actual measurement (following LEDA data standards);1180;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2269.33;5033;595;1180;1000 < seednumber <= 10,000;;;;counting ;;2003-08-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cuscuta epilinum;18845;estimation (following LEDA data standards);4;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4;;;;seednumber <= 10;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cuscuta epithymum;18799;estimation (following LEDA data standards);2500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cuscuta epithymum;18799;estimation (following LEDA data standards);4;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4;;;;seednumber <= 10;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cuscuta europaea;18822;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Verdcourt, B.(1948): no title given, publication in Journal of Ecology issue: 36 pages: 356-365 [36]; Cuscuta europaea;18822;actual measurement (following LEDA data standards);4389;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4526;6013;3286;4389;1000 < seednumber <= 10,000;;;;counting ;;2003-08-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cuscuta europaea;18822;estimation (following LEDA data standards);4;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4;;;;seednumber <= 10;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Cuscuta europaea;18822;actual measurement;190748;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;190748;;;;seednumber > 100,000;1;;120041.4866;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cuscuta lupuliformis;18833;actual measurement (following LEDA data standards);193;4;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;190.75;333;44;193;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cymbalaria muralis;33224;actual measurement;59559.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;59559.66667;;;;10,000 < seednumber <= 100,000;1;;13156.96319;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cymbalaria muralis;33224;actual measurement;30;;per single flower inflorescence ;BIOPOP April 2005;30;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per capsule;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Cymbalaria muralis;33224;estimation;42;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;42;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Cynodon dactylon;41221;actual measurement;1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: max >1500;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Cynodon dactylon;41221;actual measurement;55550;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;55550;;;;10,000 < seednumber <= 100,000;1;;29594.04501;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cynoglossum officinale;12519;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Cynoglossum officinale;12519;estimation;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Upadhyaya, M. K.(1988): The biology of Canadian weeds. 87. Cynoglossum officinale L.; Cynoglossum officinale;12519;unknown;494;;per ramet/tussock or individual plant ;BIOPOP April 2005;;674;314;;100 < seednumber <= 1000;;;;unknown;unknown;;;Upadhyaya, M. K.(1988): The biology of Canadian weeds. 87. Cynoglossum officinale L.; Cynoglossum officinale;12519;estimation;425;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800;50;;100 < seednumber <= 1000;;;;unknown;unknown;;;Upadhyaya, M. K.(1988): The biology of Canadian weeds. 87. Cynoglossum officinale L.; Cynoglossum officinale;12519;actual measurement;14453.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14453.33333;;;;10,000 < seednumber <= 100,000;1;;7938.295367;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cynosurus cristatus;40659;unknown;1100;;per ramet/tussock or individual plant ;BIOPOP April 2005;1100;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Lodge, R. W. (1959): Biological flora of the British Isles: Cynosurus cristatus.; Cynosurus cristatus;40659;actual measurement;96897;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;96897;;;;10,000 < seednumber <= 100,000;1;;63594.50557;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Cyperus flavescens;37602;laboratory/greenhouse/garden experiment;205.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;217.3;587;29;205.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cyperus fuscus;37606;actual measurement (following LEDA data standards);689.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;710.8;1178;373;689.5;100 < seednumber <= 1000;;;;counting ;;2004-07-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cyperus longus;37214;laboratory/greenhouse/garden experiment;378;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;752.6;1626;31;378;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Cypripedium calceolus;39484;categorized from original source;3158;1;per single flower inflorescence ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];3158;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature: Proctor & Harder, 1994, seeds with embryos per anther, no mean!;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Cypripedium calceolus;39484;categorized from original source;3660;1;per single flower inflorescence ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];3660;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature: Proctor & Harder, 1994, seeds with embryos per half anther, no mean!;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Cypripedium calceolus;39484;categorized from original source;1867;1;per single flower inflorescence ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];1867;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature: seeds with embryos per quarter anther, no mean!;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Cypripedium calceolus;39484;categorized from original source;1435;1;per single flower inflorescence ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];1435;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature: Proctor Harder, 1994. seeds with embryos: natural pollination. no mean!;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Daboecia cantabrica;19536;estimation;235;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;235;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Woodell, S. R. J. (1958): no title given, publication in Journal of Ecology issue: 46 pages: 205-216 [46]; Dactylis glomerata;40290;actual measurement;295;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;295;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Dactylis glomerata;40290;actual measurement;138622.4;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;138622.4;;;;seednumber > 100,000;1;;194931.7751;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Dactylorhiza fuchsii;39508;actual measurement;4074562.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4074562.5;;;;seednumber > 100,000;1;;1885138.235;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Dactylorhiza maculata;39506;actual measurement;500000;;per square meter;BIOPOP April 2005;;500000;;;seednumber > 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Dactylorhiza maculata;39506;actual measurement;105000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;105000;;;seednumber > 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Dactylorhiza maculata;39506;estimation;56000;33;per ramet/tussock or individual plant ;BIOPOP April 2005;56000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Dactylorhiza majalis;39838;actual measurement;4720600;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4720600;;;;seednumber > 100,000;1;;1802081.892;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Damasonium alisma;35641;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Preston, C. . D.(1997): Aquatic Plants in Britain and Ireland Harley Books Colchester, Essex []; Danthonia decumbens;42203;actual measurement;111;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;111;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Danthonia decumbens;42203;actual measurement (following LEDA data standards);18;8;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.75;33;11;18;10 < seednumber <= 100;;;;counting ;;2003-09-19 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Danthonia decumbens;42203;actual measurement;34648.2;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34648.2;;;;10,000 < seednumber <= 100,000;1;;15143.73554;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Daphne laureola;34606;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Daphne laureola;34606;actual measurement (following LEDA data standards);144;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;144;144;144;144;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Daphne mezereum;34610;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Daphne mezereum;34610;actual measurement;22.5;6;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;35;10;;10 < seednumber <= 100;1;;;counting ;;1997-07-30 00:00:00.0;;;UNITED KINGDOM Datura stramonium;34907;estimation (following LEDA data standards);475;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;500;450;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Datura stramonium;34907;laboratory/greenhouse/garden experiment;78;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;78;78;78;78;10 < seednumber <= 100;;;;counting ;;2004-10-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Datura stramonium;34907;unknown;12600;1;per ramet/tussock or individual plant ;Salisbury, S.E.(1964): Weeds & Aliens;;24000;1200;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Daucus carota;1358;actual measurement;168025;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;168025;;;;seednumber > 100,000;1;;57908.39448;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Daucus carota;1358;estimation (following LEDA data standards);4000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;4000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Daucus carota;1358;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: carota Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Daucus carota;1358;unknown;20500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40000;1000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Dale, H. M. (1974): The biology of Canadian weeds. 5. Daucus carota.; Daucus carota;1358;actual measurement;90000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;90000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Daucus carota;1358;actual measurement;4500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;4000;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Daucus carota;1358;actual measurement;80;;per ramet/tussock or individual plant ;BIOPOP April 2005;80;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Daucus carota;1358;unknown;3600;;per ramet/tussock or individual plant ;BIOPOP April 2005;3600;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa; Daucus carota;1358;estimation (following LEDA data standards);4000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4000;10000;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Deschampsia cespitosa;40299;actual measurement;2350;;per square meter;BIOPOP April 2005;;2350;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;424;;per multiple flower inflorescence ;BIOPOP April 2005;424;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;492.7;;per multiple flower inflorescence ;BIOPOP April 2005;492.7;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;786.5;3;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1161;412;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Deschampsia cespitosa;40299;actual measurement;49530;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;92880;6180;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Deschampsia cespitosa;40299;actual measurement;162199;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;162199;;;;seednumber > 100,000;1;;129723.0031;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Deschampsia cespitosa;40299;unknown;500000;;per ramet/tussock or individual plant ;BIOPOP April 2005;500000;;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: per tussock;Davy, A. J. (1980): Biological flora of the British Isles: Deschampsia caespitosa (L.) Beauv.; Deschampsia cespitosa;40299;estimation (following LEDA data standards);1000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1000;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Deschampsia cespitosa;40299;actual measurement;180.9;;per multiple flower inflorescence ;BIOPOP April 2005;180.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;6516;;per square meter;BIOPOP April 2005;;6516;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;371.6;;per multiple flower inflorescence ;BIOPOP April 2005;371.6;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;11718;;per square meter;BIOPOP April 2005;;11718;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);70;5;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;52;80;5;70;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);60;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;64;75;57;60;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Deschampsia cespitosa;40299;actual measurement;6094;;per square meter;BIOPOP April 2005;;6094;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;848;;per square meter;BIOPOP April 2005;;848;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;55;;per multiple flower inflorescence ;BIOPOP April 2005;55;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;760;;per square meter;BIOPOP April 2005;;760;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;540.1;;per multiple flower inflorescence ;BIOPOP April 2005;540.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia cespitosa;40299;actual measurement;3975;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3975;;;;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Deschampsia cespitosa;40299;actual measurement;3770;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;3770;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Deschampsia cespitosa;40299;actual measurement;5026.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5455.8;;;5026.5;1000 < seednumber <= 10,000;1;1453.416082;4596.105206;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Deschampsia cespitosa s. alpina;40298;actual measurement;0;1;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;0;;;;seednumber <= 10;1;;;counting ;;1931-08-01 00:00:00.0;no seeds, only bulbils;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Deschampsia cespitosa subsp. paludosa;41235;actual measurement (following LEDA data standards);310;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;318.3;411;182;310;100 < seednumber <= 1000;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Deschampsia flexuosa;41982;actual measurement;56;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;56;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Deschampsia flexuosa;41982;actual measurement;37.4;;per multiple flower inflorescence ;BIOPOP April 2005;37.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia flexuosa;41982;actual measurement;22.6;;per multiple flower inflorescence ;BIOPOP April 2005;22.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);27.5;6;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;29.17;48;11;27.5;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);61;2;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;61;67;55;61;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);54;15;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;56.53;102;37;54;10 < seednumber <= 100;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Deschampsia flexuosa;41982;actual measurement;495;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;832.3;;;495;100 < seednumber <= 1000;1;288.3064747;911.7051241;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Deschampsia flexuosa;41982;actual measurement;81856.5;6;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;81856.5;;;;10,000 < seednumber <= 100,000;1;;133154.0861;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Deschampsia flexuosa;41982;actual measurement;26;;per square meter;BIOPOP April 2005;;26;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia flexuosa;41982;actual measurement;234;;per square meter;BIOPOP April 2005;;234;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia flexuosa;41982;actual measurement;2926;;per square meter;BIOPOP April 2005;;5244;608;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia flexuosa;41982;actual measurement;26.7;;per multiple flower inflorescence ;BIOPOP April 2005;26.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Deschampsia setacea;40982;actual measurement (following LEDA data standards);69;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;60.8;75;38;69;10 < seednumber <= 100;;;;counting ;;2004-07-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Descurainia sophia;13207;unknown;75650;1;per ramet/tussock or individual plant ;Best, K. F.(1977): The biology of canadian weeds. 22. Descurania sophia (L.) Webb [57];75650;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Best, K. F.(1977): The biology of canadian weeds. 22. Descurania sophia (L.) Webb [57];CANADA Descurainia sophia;13207;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Descurainia sophia;13207;actual measurement;39825;;per ramet/tussock or individual plant ;BIOPOP April 2005;;75650;4000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Descurainia sophia;13207;actual measurement;90000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;90000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Descurainia sophia;13207;estimation (following LEDA data standards);6000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6000;730000;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Descurainia sophia;13207;actual measurement;426041.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;426041.6667;;;;seednumber > 100,000;1;;277678.7806;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Descurainia sophia;13207;actual measurement;730484;;per ramet/tussock or individual plant ;BIOPOP April 2005;;730484;;;seednumber > 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Desmazeria rigida;40985;estimation;250;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;;400;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): up to 400;Clark, S. C.(1974): no title given, publication in Journal of Ecology issue: 62 pages: 937-958 [62]; Desmazeria rigida;40985;laboratory/greenhouse/garden experiment;11232;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);11232;11232;11232;11232;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Dianthus armeria;16115;actual measurement;800;120;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;800;;;;100 < seednumber <= 1000;1;;;counting ;;1998-08-12 00:00:00.0;;;UNITED KINGDOM Dianthus armeria;16115;estimation;1279;131;per ramet/tussock or individual plant ;BIOPOP April 2005;1279;1405;1153;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Dianthus armeria;16115;estimation;76;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;76;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Dianthus carthusianorum;16880;field experiment;232;200;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Vegetation Science and Nature conservation Group, DE (Steiner) (luisa.steiner@t-online.de);232;;;;100 < seednumber <= 1000;1;;;counting ;single flower inflorescence ;;;Source data from Carl von Ossietzky university of Oldenburg, Vegetation Science and Nature conservation Group, DE (Steiner) (luisa.steiner@t-online.de);GERMANY Dianthus carthusianorum;16880;field experiment;1161;200;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Vegetation Science and Nature conservation Group, DE (Steiner) (luisa.steiner@t-online.de);1161;;;;1000 < seednumber <= 10,000;1;;;counting ;multiple flower stem or single stem;;;Source data from Carl von Ossietzky university of Oldenburg, Vegetation Science and Nature conservation Group, DE (Steiner) (luisa.steiner@t-online.de);GERMANY Dianthus deltoides;16129;actual measurement;217359.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;217359.3333;;;;seednumber > 100,000;1;;136448.6709;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Dianthus deltoides;16129;actual measurement;419;2;per multiple flower stem;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;798;40;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;high variance;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Dianthus deltoides;16129;actual measurement;40.5;4;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;76;5;;10 < seednumber <= 100;1;;;counting ;unknown;;high variance;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Dianthus deltoides;16129;actual measurement;7432;;per square meter;BIOPOP April 2005;;11280;3584;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Dianthus deltoides;16129;actual measurement;54.2;;per multiple flower inflorescence ;BIOPOP April 2005;54.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Dianthus deltoides;16129;actual measurement;141;;per multiple flower inflorescence ;BIOPOP April 2005;141;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Dianthus deltoides;16129;actual measurement;88;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;88;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Dianthus superbus;16439;actual measurement (following LEDA data standards);1256.5;4;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1453.25;2475;825;1256.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Diapensia lapponica;19591;actual measurement;78.8;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;78.8;115;39;;10 < seednumber <= 100;1;;;counting ;unknown;;the short single stem has one solitary flower,02.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Diapensia lapponica;19591;actual measurement;1750;12;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2000;1500;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-10 00:00:00.0;;;UNITED KINGDOM Diapensia lapponica;19591;actual measurement (following LEDA data standards);200;1;per single flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;200;200;200;200;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Dichanthium ischaemum;41730;laboratory/greenhouse/garden experiment;84;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);84;84;84;84;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Dictamnus albus;31688;actual measurement (following LEDA data standards);74;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;76.5;131;36;74;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Digitalis grandiflora;33169;actual measurement (following LEDA data standards);12125;14;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14578.57;30959;7560;12125;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Digitalis grandiflora;33169;actual measurement;376605;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;376605;;;;seednumber > 100,000;1;;338967.8775;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Digitalis purpurea;33178;estimation;1379;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1379;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Digitalis purpurea;33178;actual measurement;1002454;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1002454;;;;seednumber > 100,000;1;;1204189.242;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Digitalis purpurea;33178;estimation;85551;102;per ramet/tussock or individual plant ;BIOPOP April 2005;85551;92655;78447;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Digitaria ischaemum;40681;actual measurement;1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: max >1500;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Digitaria ischaemum;40681;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Digitaria ischaemum;40681;actual measurement (following LEDA data standards);264.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;342.83;737;184;264.5;100 < seednumber <= 1000;;;;counting ;;2003-08-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Digitaria ischaemum;40681;actual measurement (following LEDA data standards);320;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;338;712;66;320;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-07-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Digitaria ischaemum;40681;actual measurement (following LEDA data standards);314;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;659.5;1863;167;314;100 < seednumber <= 1000;;;;counting ;;2003-08-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Digitaria sanguinalis;40683;actual measurement;270460;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;270460;;;;seednumber > 100,000;1;;168132.4192;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Digitaria sanguinalis;40683;unknown;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;100;;100 < seednumber <= 1000;;;;unknown;unknown;;small plants;Kirchner, O. v.(1936): Lebensgeschichte der Blütenpflanzen Mitteleuropas; Digitaria sanguinalis;40683;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Digitaria sanguinalis;40683;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Diphasiastrum alpinum;44384;actual measurement (following LEDA data standards);1166400;4;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1389600;2822400;403200;1166400;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Diphasiastrum alpinum;44384;actual measurement (following LEDA data standards);127500;2;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;127500;150000;105000;127500;seednumber > 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Diphasiastrum complanatum;44372;actual measurement (following LEDA data standards);924960;4;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1029920;1797440;472320;924960;seednumber > 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Diphasiastrum complanatum s. issleri;44374;actual measurement (following LEDA data standards);5043600;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5043600;5043600;5043600;5043600;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Diplotaxis muralis;13634;laboratory/greenhouse/garden experiment;4448;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4363.6;6900;1593;4448;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Diplotaxis muralis;13634;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Diplotaxis muralis;13634;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Diplotaxis tenuifolia;14468;actual measurement (following LEDA data standards);5226;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5676.8;7980;4091;5226;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-07-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Dipsacus fullonum;19359;estimation;2960;270;per ramet/tussock or individual plant ;BIOPOP April 2005;2960;3365;2555;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Dipsacus fullonum;19359;actual measurement;384264.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;384264.25;;;;seednumber > 100,000;1;;304279.1588;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Dipsacus fullonum;19359;estimation;1892;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1892;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/head;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Dipsacus pilosus;19256;estimation;11749;;per ramet/tussock or individual plant ;BIOPOP April 2005;11749;15119;8379;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Dipsacus pilosus;19256;actual measurement;1050;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1200;900;;1000 < seednumber <= 10,000;1;;;counting ;;1998-09-23 00:00:00.0;;;UNITED KINGDOM Dipsacus pilosus;19256;estimation;90;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;90;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/head;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Dipsacus strigosus;19104;laboratory/greenhouse/garden experiment;3223.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3699.2;7340;1176;3223.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Doronicum pardalianches;3685;actual measurement (following LEDA data standards);260;5;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;256;280;230;260;100 < seednumber <= 1000;;;;counting ;;2005-06-15 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Draba aizoides;14170;actual measurement (following LEDA data standards);56.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;56.5;73;40;56.5;10 < seednumber <= 100;;;;counting ;;2005-05-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Draba aizoides;14170;actual measurement (following LEDA data standards);204;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;204;204;204;204;100 < seednumber <= 1000;;;;counting ;;2004-04-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Draba aizoides;14170;estimation;24;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;24;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Kay, Q. O. N. (1970): no title given, publication in Journal of Ecology issue: 58 pages: 877-888 [58]; Draba incana;14189;actual measurement;600;73;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;700;500;;100 < seednumber <= 1000;1;;;counting ;;1997-08-18 00:00:00.0;;;UNITED KINGDOM Draba muralis;14065;actual measurement;987;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1652;322;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Draba muralis;14065;actual measurement;250;180;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;250;;;;100 < seednumber <= 1000;1;;;counting ;;1997-05-08 00:00:00.0;;;UNITED KINGDOM Draba muralis;14065;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;12;8;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): 8-12 usually - source no 537;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Draba muralis;14065;estimation;12;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;12;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Ratcliffe, D.(1960): no title given, publication in Journal of Ecology issue: 48 pages: 737-744 [48]; Draba norvegica;14067;actual measurement;138;6;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;192;84;;100 < seednumber <= 1000;1;;;counting ;;1997-08-24 00:00:00.0;;;UNITED KINGDOM Draba norvegica;14067;actual measurement;27.6;12;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;27.6;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-11 00:00:00.0;;;UNITED KINGDOM Drosera anglica;18994;actual measurement;716;89;per ramet/tussock or individual plant ;BIOPOP April 2005;716;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Drosera intermedia;18996;actual measurement;535;200;per ramet/tussock or individual plant ;BIOPOP April 2005;535;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Drosera intermedia;18996;estimation;111;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;111;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Drosera intermedia;18996;estimation;85;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;85;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 85;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Drosera rotundifolia;18999;estimation;74;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;74;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 74;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Drosera rotundifolia;18999;estimation;113;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;113;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Drosera rotundifolia;18999;actual measurement;462;310;per ramet/tussock or individual plant ;BIOPOP April 2005;462;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Drosera rotundifolia;18999;actual measurement (following LEDA data standards);1365;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1413.3;2072;895;1365;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Dryas octopetala;31232;actual measurement;126;6;per multiple flower inflorescence ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;126;;;;100 < seednumber <= 1000;1;;;counting ;;1997-07-24 00:00:00.0;;;UNITED KINGDOM Dryas octopetala;31232;actual measurement;33.8;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;33.8;44;24;;10 < seednumber <= 100;1;;;counting ;unknown;;seed viability was reduced,04.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Dryas octopetala;31232;actual measurement;41;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;41;52;33;;10 < seednumber <= 100;1;;;counting ;unknown;;,01.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Dryas octopetala;31232;actual measurement;56.1;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;56.1;62;47;;10 < seednumber <= 100;1;;;counting ;unknown;;seed viability was reduced,23.08.31;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Dryopteris filix-mas;393;actual measurement (following LEDA data standards);5214192;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5214192;5214192;5214192;5214192;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Duchesnea indica;30010;actual measurement (following LEDA data standards);184;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;184;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Duchesnea indica;30010;actual measurement (following LEDA data standards);138;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;138;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Duchesnea indica;30010;actual measurement (following LEDA data standards);170;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;170;;;;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;;;NETHERLANDS Echinochloa crus-galli;42222;actual measurement;40000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Echinochloa crus-galli;42222;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Echinochloa crus-galli;42222;unknown;350;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;500;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Echinochloa crus-galli;42222;actual measurement;145242.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;145242.25;;;;seednumber > 100,000;1;;91470.18006;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Echinochloa crus-galli;42222;estimation (following LEDA data standards);600;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;1000;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Echinochloa crus-galli;42222;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Echinochloa crus-galli;42222;laboratory/greenhouse/garden experiment;448.5;4;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);393.75;574;104;448.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Echinops exaltatus;3278;actual measurement (following LEDA data standards);185;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;186.2;229;149;185;100 < seednumber <= 1000;;;;counting ;;2005-08-18 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Echinops exaltatus;3278;actual measurement (following LEDA data standards);2873;4;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4529.75;10672;1701;2873;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Echium plantagineum;12090;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Piggin, C. M.(1982): no title given, publication in Journal of the Australian Institute for Agricultural Science issue: 48 pages: 3-16 [48]; Echium vulgare;12105;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Kunkhamer, P. G. L.(1990): no title given, publication in Oikos issue: 57 pages: 399-405 [57]; Echium vulgare;12105;actual measurement;115915;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;115915;;;;seednumber > 100,000;1;;51473.33222;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Echium vulgare;12105;estimation (following LEDA data standards);1250;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;2000;500;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Echium vulgare;12105;estimation (following LEDA data standards);3500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Echium vulgare;12105;estimation (following LEDA data standards);1650;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;2800;500;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Egeria densa;36334;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Elatine hexandra;19033;actual measurement (following LEDA data standards);15;10;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14.1;20;7;15;10 < seednumber <= 100;;;;counting ;;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Elatine hexandra;19033;estimation;72;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;72;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1967): no title given, publication in Kew Bulletin issue: 21 pages: 139-149 [21]; Elatine hydropiper;19010;actual measurement (following LEDA data standards);26;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32;74;10;26;10 < seednumber <= 100;;;;counting ;;2004-09-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Eleocharis acicularis;37636;actual measurement (following LEDA data standards);5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5;7;4;5;seednumber <= 10;;;;counting ;;2004-09-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Eleocharis multicaulis;37116;actual measurement (following LEDA data standards);13;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.67;28;8;13;10 < seednumber <= 100;;;;counting ;;2000-07-25 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Eleocharis multicaulis;37116;actual measurement (following LEDA data standards);18;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34.89;149;2;18;10 < seednumber <= 100;;;;counting ;;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Eleocharis palustris;37120;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Walters, S. M.(1949): no title given, publication in Journal of Ecology issue: 37 pages: 192-206 [37]; Eleocharis palustris;37120;actual measurement;73666.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;73666.66667;;;;10,000 < seednumber <= 100,000;1;;95584.16884;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);10;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10.8;18;5;10;seednumber <= 10;;;;counting ;;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);4;12;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3.75;5;2;4;seednumber <= 10;;;;counting ;;2004-06-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Eleusine indica;40688;actual measurement (following LEDA data standards);500;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;595.3;1737;70;500;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Elodea canadensis;36340;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Elodea nuttallii;36344;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Elymus caninus;42231;actual measurement;40;;per square meter;BIOPOP April 2005;;40;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Elymus caninus;42231;actual measurement;258;24;per ramet/tussock or individual plant ;BIOPOP April 2005;258;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Tripathi, R. S. (1973): The comparative biology of Agropyron repens (L.) Beauv. and A. caninum (L.) Beauv.; Elymus caninus;42231;actual measurement;17.3;;per multiple flower inflorescence ;BIOPOP April 2005;17.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Elymus caninus;42231;actual measurement;209;;per square meter;BIOPOP April 2005;;342;76;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Elymus caninus;42231;actual measurement;52.8;;per multiple flower inflorescence ;BIOPOP April 2005;52.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Elymus caninus;42231;actual measurement;52.1;;per multiple flower inflorescence ;BIOPOP April 2005;52.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Elymus caninus;42231;actual measurement;190;;per square meter;BIOPOP April 2005;;190;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Elymus caninus;42231;actual measurement;52;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;52;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Elymus caninus;42231;laboratory/greenhouse/garden experiment;141;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);223.2;464;38;141;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Elymus farctus;40994;actual measurement (following LEDA data standards);17;8;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.13;22;7;17;10 < seednumber <= 100;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);38;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;38;;;;10 < seednumber <= 100;;;;counting ;;2003-09-17 00:00:00.0;;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);29;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;29;;;;10 < seednumber <= 100;;;;counting ;;2003-09-17 00:00:00.0;;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);32;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;32;;;;10 < seednumber <= 100;;;;counting ;;2003-09-17 00:00:00.0;;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);25;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;25;;;;10 < seednumber <= 100;;;;counting ;;2003-09-17 00:00:00.0;;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);34;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;34;;;;10 < seednumber <= 100;;;;counting ;;2003-09-17 00:00:00.0;;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);31;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;31;;;;10 < seednumber <= 100;;;;counting ;;2003-09-17 00:00:00.0;;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);45;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;45;;;;10 < seednumber <= 100;;;;counting ;;2003-09-17 00:00:00.0;;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);36;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;36;;;;10 < seednumber <= 100;;;;counting ;;2003-09-17 00:00:00.0;;;NETHERLANDS Elymus pycnanthus;41771;actual measurement (following LEDA data standards);62;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;63.2;113;16;62;10 < seednumber <= 100;;;;counting ;;2004-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Elymus repens;40238;unknown;532.6;;per square meter;BIOPOP April 2005;532.6;886;116;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: 3 plots with no to high cultivation;Werner, P. A. (1977): The biology of Canadian weeds. 24. Agropyron repens.; Elymus repens;40238;unknown;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;400;;;100 < seednumber <= 1000;;;;unknown;unknown;;single ramet;Werner, P. A. (1977): The biology of Canadian weeds. 24. Agropyron repens.; Elymus repens;40238;unknown;21;;per ramet/tussock or individual plant ;BIOPOP April 2005;;30;12;;10 < seednumber <= 100;;;;unknown;unknown;;single ramet;Werner, P. A. (1977): The biology of Canadian weeds. 24. Agropyron repens.; Elymus repens;40238;unknown;32.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40;25;;10 < seednumber <= 100;;;;unknown;unknown;;single ramet;Werner, P. A. (1977): The biology of Canadian weeds. 24. Agropyron repens.; Elymus repens;40238;actual measurement;30;24;per ramet/tussock or individual plant ;BIOPOP April 2005;30;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Tripathi, R. S. (1973): The comparative biology of Agropyron repens (L.) Beauv. and A. caninum (L.) Beauv.; Elymus repens;40238;unknown;15;;per square meter;BIOPOP April 2005;;;15;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: small plant;Werner, P. A. (1977): The biology of Canadian weeds. 24. Agropyron repens.; Elymus repens;40238;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;400;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Elymus repens;40238;actual measurement;13714.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13714.5;;;;10,000 < seednumber <= 100,000;1;;8604.159479;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Elymus repens;40238;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Elymus repens;40238;actual measurement;15;;per ramet/tussock or individual plant ;BIOPOP April 2005;15;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Empetrum nigrum;19449;actual measurement;36.2;10;per ramet/tussock or individual plant ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;36.2;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;;Determination of individual size is often not possible, reasoned by the growth form,02.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Empetrum nigrum;19449;actual measurement;262.5;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;500;25;;100 < seednumber <= 1000;1;;;counting ;;1998-08-20 00:00:00.0;;;UNITED KINGDOM Empetrum nigrum;19449;actual measurement;6.7;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;6.7;;;;seednumber <= 10;1;;;counting ;unknown;;,02.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Empetrum nigrum;19449;actual measurement;7.6;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;7.6;;;;seednumber <= 10;1;;;counting ;unknown;;,04.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Empetrum nigrum;19449;actual measurement (following LEDA data standards);8;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.07;9;6;8;seednumber <= 10;;;;counting ;;2004-06-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Empetrum nigrum;19449;actual measurement (following LEDA data standards);42;4;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;47.5;98;8;42;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Empetrum nigrum;19449;actual measurement (following LEDA data standards);33;4;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;89.75;287;6;33;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Epilobium anagallidifolium;26073;actual measurement;45;70;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;45;;;;10 < seednumber <= 100;1;;;counting ;;1998-08-28 00:00:00.0;;;UNITED KINGDOM Epilobium anagallidifolium;26073;actual measurement;74.3;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;74.3;90;47;;10 < seednumber <= 100;1;;;counting ;unknown;;,13.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);115;4;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;120;195;55;115;100 < seednumber <= 1000;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Epilobium anagallidifolium;26073;actual measurement;156;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;156;;;;100 < seednumber <= 1000;1;;;counting ;single flower inflorescence ;;,13.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Epilobium anagallidifolium;26073;actual measurement;95.2;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;95.2;;;;10 < seednumber <= 100;1;;;counting ;single flower inflorescence ;;,01.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Epilobium anagallidifolium;26073;actual measurement;68;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;68;87;38;;10 < seednumber <= 100;1;;;counting ;unknown;;only full developed seeds,01.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Epilobium angustifolium;26075;actual measurement;2930166.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2930166.5;;;;seednumber > 100,000;1;;2531366.267;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Epilobium angustifolium;26075;actual measurement;450;2;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];450;470;441;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Epilobium angustifolium;26075;actual measurement;25803;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;29502.1;;;25803;10,000 < seednumber <= 100,000;1;4331.960897;13698.86317;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Epilobium angustifolium;26075;unknown;80000;;per ramet/tussock or individual plant ;BIOPOP April 2005;80000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: per year;Broderick, D.H. (1990): The biology of Canadian weeds. 93. Epilobium angustifolium L. (Onagraceae).; Epilobium angustifolium;26075;unknown;20000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;20000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Myerscough, P. J. (1980): Biological flora of the British Isles: Epilobium angustifolium L.; Epilobium angustifolium;26075;actual measurement;76000;;per ramet/tussock or individual plant ;BIOPOP April 2005;76000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Epilobium angustifolium;26075;unknown;400;;per single flower inflorescence ;BIOPOP April 2005;;500;300;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per capsule;Broderick, D.H. (1990): The biology of Canadian weeds. 93. Epilobium angustifolium L. (Onagraceae).; Epilobium angustifolium;26075;unknown;40;;per square meter;BIOPOP April 2005;;40;;;10 < seednumber <= 100;;;;unknown;unknown;;;Broderick, D.H. (1990): The biology of Canadian weeds. 93. Epilobium angustifolium L. (Onagraceae).;CANADA Epilobium angustifolium;26075;actual measurement;46800;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;49500;44100;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Epilobium angustifolium;26075;actual measurement;290745;;per square meter;BIOPOP April 2005;;290745;;;seednumber > 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Epilobium angustifolium;26075;estimation (following LEDA data standards);20000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;20000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;one ramet has often several stems;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Epilobium angustifolium;26075;actual measurement;13149;;per ramet/tussock or individual plant ;BIOPOP April 2005;13149;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Epilobium angustifolium;26075;actual measurement;19650;;per ramet/tussock or individual plant ;BIOPOP April 2005;;19650;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Epilobium angustifolium;26075;actual measurement;45600;;per ramet/tussock or individual plant ;BIOPOP April 2005;;45600;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Epilobium angustifolium;26075;actual measurement;9761;;per ramet/tussock or individual plant ;BIOPOP April 2005;9761;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Epilobium angustifolium;26075;estimation;500;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;500;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Epilobium brunnescens;62141;estimation;119;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;119;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 119;Davey, A. J.(1961): no title given, publication in Journal of Ecology issue: 49 pages: 753-759 [49]; Epilobium ciliatum;26518;actual measurement;3857070.667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3857070.667;;;;seednumber > 100,000;1;;699006.8261;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Epilobium ciliatum;26518;actual measurement (following LEDA data standards);1496;9;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2613.33;7425;1179;1496;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2001-07-17 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Epilobium collinum;26520;actual measurement;1215;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;6750;945;1215;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Epilobium collinum;26520;actual measurement;138;5;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];135;156;110;138;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Epilobium dodonaei;26526;actual measurement;991;4;per ramet/tussock or individual plant ;Stöcklin, Jürg(1997): Competition and the compensatory regulation of fruit and seed set in the perennial herb Epilobium dodonaei (Onagraceae) [84];991;;;;100 < seednumber <= 1000;1;356;712;unknown;unknown;;;Stöcklin, Jürg(1997): Competition and the compensatory regulation of fruit and seed set in the perennial herb Epilobium dodonaei (Onagraceae) [84];Europe Epilobium dodonaei;26526;actual measurement;1293;4;per ramet/tussock or individual plant ;Stöcklin, Jürg(1997): Competition and the compensatory regulation of fruit and seed set in the perennial herb Epilobium dodonaei (Onagraceae) [84];1293;;;;1000 < seednumber <= 10,000;1;173;346;unknown;unknown;;;Stöcklin, Jürg(1997): Competition and the compensatory regulation of fruit and seed set in the perennial herb Epilobium dodonaei (Onagraceae) [84];Europe Epilobium dodonaei;26526;actual measurement;1295;4;per ramet/tussock or individual plant ;Stöcklin, Jürg(1997): Competition and the compensatory regulation of fruit and seed set in the perennial herb Epilobium dodonaei (Onagraceae) [84];1295;;;;1000 < seednumber <= 10,000;1;123;246;unknown;unknown;;;Stöcklin, Jürg(1997): Competition and the compensatory regulation of fruit and seed set in the perennial herb Epilobium dodonaei (Onagraceae) [84];Europe Epilobium dodonaei;26526;actual measurement (following LEDA data standards);20700;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18723;31790;4907;20700;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Epilobium dodonaei;26526;actual measurement;1343;4;per ramet/tussock or individual plant ;Stöcklin, Jürg(1997): Competition and the compensatory regulation of fruit and seed set in the perennial herb Epilobium dodonaei (Onagraceae) [84];1343;;;;1000 < seednumber <= 10,000;1;138;276;unknown;unknown;;;Stöcklin, Jürg(1997): Competition and the compensatory regulation of fruit and seed set in the perennial herb Epilobium dodonaei (Onagraceae) [84];Europe Epilobium fleischeri;26533;actual measurement;750;10;per multiple flower stem;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];;1000;500;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Epilobium fleischeri;26533;actual measurement;109;10;per single flower inflorescence ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];109;;;;100 < seednumber <= 1000;1;8.854;28;counting ;single flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Epilobium hirsutum;26536;actual measurement (following LEDA data standards);184;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;191.87;266;145;184;100 < seednumber <= 1000;;;;counting ;;2003-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Epilobium hirsutum;26536;actual measurement;1343250;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1343250;;;;seednumber > 100,000;1;;1250041.899;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Epilobium hirsutum;26536;actual measurement (following LEDA data standards);23660;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20804.44;35905;3285;23660;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Epilobium lactiflorum;26539;actual measurement;50.1;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;50.1;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;;,18.08.04;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Epilobium lactiflorum;26539;actual measurement;65.9;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;65.9;83;40;;10 < seednumber <= 100;1;;;counting ;unknown;;only full developed seeds,03.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Epilobium lactiflorum;26539;actual measurement;50.1;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;50.1;;;;10 < seednumber <= 100;1;;;counting ;unknown;;,18.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Epilobium lactiflorum;26539;actual measurement;250.4;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;250.4;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;only full developed seeds, seed setting: 70%,03.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Epilobium montanum;26496;estimation;200;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;200;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Epilobium montanum;26496;actual measurement;2478960;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2478960;;;;seednumber > 100,000;1;;2937648.264;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Epilobium montanum;26496;actual measurement;679.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;783.7;;;679.5;100 < seednumber <= 1000;1;108.9691139;344.5905944;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Epilobium montanum;26496;estimation;2480;178;per ramet/tussock or individual plant ;BIOPOP April 2005;2480;2687;2273;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Epilobium montanum;26496;actual measurement;939.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;939.8;1797;156;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Epilobium montanum;26496;actual measurement;21318;;per square meter;BIOPOP April 2005;;21318;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Epilobium obscurum;26502;actual measurement;3750;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;4500;3000;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-13 00:00:00.0;;;UNITED KINGDOM Epilobium palustre;26504;unknown;13524;;per ramet/tussock or individual plant ;BIOPOP April 2005;13524;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kytövuori, J. (1969): Epilobium davuricum in Eastern Fennoscandia compared with Epilobium palustre. A morphological, ecological and distributional study.;RUSSIAN FEDERATION Epilobium palustre;26504;actual measurement;150;5;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];147;155;138;150;100 < seednumber <= 1000;1;;;counting ;unknown;;relativ ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Epilobium palustre;26504;actual measurement;13524;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];13524;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;relativ big individuum;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Epilobium tetragonum;26469;estimation;7230;164;per ramet/tussock or individual plant ;BIOPOP April 2005;7230;7903;6557;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Epilobium tetragonum;26469;estimation;153;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;153;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 153;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Epilobium tetragonum;26469;estimation;225;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;225;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Epipactis atrorubens;39603;actual measurement;15333333.33;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15333333.33;;;;seednumber > 100,000;1;;1527525.232;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Epipactis helleborine;39609;actual measurement (following LEDA data standards);19850;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19487.5;43200;1200;19850;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Epipactis helleborine;39609;actual measurement;13679277.6;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13679277.6;;;;seednumber > 100,000;1;;14115883.78;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Epipactis leptochila;39614;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Stewart, A.[1st editor](1994): Scarce Plants in Britain 1994 Joint Nature Conservation Committee, Peterborough []; Epipactis palustris;39624;estimation;18000;;per ramet/tussock or individual plant ;BIOPOP April 2005;18000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Epipactis palustris;39624;actual measurement;37500;15;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;50000;25000;;10,000 < seednumber <= 100,000;1;;;counting ;;1997-10-05 00:00:00.0;;;UNITED KINGDOM Eragrostis minor;41786;actual measurement;920875;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;920875;;;;seednumber > 100,000;1;;928712.045;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Eragrostis minor;41786;actual measurement (following LEDA data standards);265;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;264.2;378;158;265;100 < seednumber <= 1000;;;;counting ;;2004-07-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Eragrostis pilosa;40736;actual measurement (following LEDA data standards);348;9;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;314.33;576;98;348;100 < seednumber <= 1000;;;;counting ;;2004-08-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Eragrostis pilosa;40736;actual measurement (following LEDA data standards);527;4;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;494;798;124;527;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Erica erigena;19546;estimation;12;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;12;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Foss, P. J. (unknown e-mail address); Erica tetralix;19489;unknown;80;1;per single flower inflorescence ;Bannister, P.(1966): Biological flora of the british isles: Erica tetralix L. [54];;100;60;;10 < seednumber <= 100;1;;;unknown;unknown;;;Bannister, P.(1966): Biological flora of the british isles: Erica tetralix L. [54];UNITED KINGDOM Erica tetralix;19489;actual measurement (following LEDA data standards);78878;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;148106.1;449402;20709;78878;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Erica tetralix;19489;actual measurement (following LEDA data standards);3190000;15;per square meter;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4020100;14400000;693000;3190000;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Erigeron acer;3429;estimation;2147;161;per ramet/tussock or individual plant ;BIOPOP April 2005;2147;2329;1965;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Erigeron acer;3429;estimation;167;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;167;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Erigeron annuus;5070;laboratory/greenhouse/garden experiment;6963;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7179.4;12662;1969;6963;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Erigeron borealis;4210;actual measurement;147;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];147;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Erigeron borealis;4210;actual measurement;231;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;231;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-30 00:00:00.0;;;UNITED KINGDOM Eriophorum angustifolium;37550;actual measurement;40190.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40190.66667;;;;10,000 < seednumber <= 100,000;1;;32371.97957;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);51;7;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;77.71;260;4;51;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);8;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.87;58;2;8;seednumber <= 10;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Eriophorum latifolium;37555;actual measurement (following LEDA data standards);131;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;133.6;216;68;131;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-22 00:00:00.0;preaggregated value obtained from single record;;GERMANY Eriophorum latifolium;37555;actual measurement (following LEDA data standards);25;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.5;35;10;25;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2005-06-12 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Eriophorum scheuchzeri;37141;actual measurement;136;5;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;136;162;115;;100 < seednumber <= 1000;1;;;counting ;;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Eriophorum vaginatum;37560;actual measurement;6.35;5;per multiple flower inflorescence ;Molau, U.(1997): Controls on seed production and seed germinability in Eriophorum vaginatum [];6.35;;;;seednumber <= 10;4;1.53;3.42;counting ;multiple flower inflorescence ;;control plots in 1995, seeds per head;Molau, U.(1997): Controls on seed production and seed germinability in Eriophorum vaginatum [];SWEDEN Eriophorum vaginatum;37560;actual measurement;9.9;5;per multiple flower inflorescence ;Molau, U.(1997): Controls on seed production and seed germinability in Eriophorum vaginatum [];9.9;;;;seednumber <= 10;4;.75;1.68;counting ;multiple flower inflorescence ;;control plots in 1993, seeds per head;Molau, U.(1997): Controls on seed production and seed germinability in Eriophorum vaginatum [];SWEDEN Eriophorum vaginatum;37560;actual measurement;20.8;16;per multiple flower inflorescence ;Molau, U.(1997): Controls on seed production and seed germinability in Eriophorum vaginatum [];20.8;;;;10 < seednumber <= 100;2;11.9;47.6;counting ;multiple flower inflorescence ;;control plots in 1995;Molau, U.(1997): Controls on seed production and seed germinability in Eriophorum vaginatum [];UNITED STATES Eriophorum vaginatum;37560;actual measurement;14202.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14202.66667;;;;10,000 < seednumber <= 100,000;1;;4632.002735;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Eriophorum vaginatum;37560;actual measurement;65.4;25;per multiple flower inflorescence ;Wein, R. W.(1973): Biological flora of the british isles. Eriophorum vaginatum L. [61];65.4;;;;10 < seednumber <= 100;1;6.4;32;unknown;multiple flower inflorescence ;;;Wein, R. W.(1973): Biological flora of the british isles. Eriophorum vaginatum L. [61];CANADA Eriophorum vaginatum;37560;actual measurement;503.6;25;per ramet/tussock or individual plant ;Wein, R. W.(1973): Biological flora of the british isles. Eriophorum vaginatum L. [61];503.6;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;seed stalks per tussock: 7.7;Wein, R. W.(1973): Biological flora of the british isles. Eriophorum vaginatum L. [61];CANADA Eriophorum vaginatum;37560;actual measurement;5.68;5;per multiple flower inflorescence ;Molau, U.(1997): Controls on seed production and seed germinability in Eriophorum vaginatum [];5.68;;;;seednumber <= 10;4;1.23;2.75;counting ;multiple flower inflorescence ;;control plots in 1994, seeds per head;Molau, U.(1997): Controls on seed production and seed germinability in Eriophorum vaginatum [];SWEDEN Erodium cicutarium;22675;estimation (following LEDA data standards);400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;600;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Erodium cicutarium;22675;actual measurement;44525;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44525;;;;10,000 < seednumber <= 100,000;1;;40937.78817;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Erodium cicutarium;22675;estimation (following LEDA data standards);400;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;600;200;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Erodium lebelii;50011;actual measurement (following LEDA data standards);4;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4;;;;seednumber <= 10;;;;counting ;;2000-10-25 00:00:00.0;1 individual;;NETHERLANDS Erodium lebelii;50011;actual measurement (following LEDA data standards);5;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5;;;;seednumber <= 10;;;;counting ;;2000-10-25 00:00:00.0;1 individual;;NETHERLANDS Erodium lebelii;50011;actual measurement (following LEDA data standards);61;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;54;72;21;61;10 < seednumber <= 100;;;;counting ;;2004-06-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Erodium moschatum;22680;laboratory/greenhouse/garden experiment;4590;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4467;7020;1225;4590;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-07-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Erodium moschatum;22680;estimation;5445;13;per ramet/tussock or individual plant ;BIOPOP April 2005;5445;5887;5003;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Erophila glabrescens;13237;actual measurement;600;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;600;;;;100 < seednumber <= 1000;1;;;counting ;;1999-04-13 00:00:00.0;;;UNITED KINGDOM Erophila verna;14075;actual measurement;846;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;846;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Erophila verna;14075;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Erophila verna;14075;actual measurement;3836666.667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3836666.667;;;;seednumber > 100,000;1;;1587426.954;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Erophila verna;14075;actual measurement (following LEDA data standards);159;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;212.17;588;48;159;100 < seednumber <= 1000;;;;counting ;;2004-05-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Erophila verna;14075;actual measurement;1830;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;2400;1260;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Erophila verna;14075;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Erophila verna s. praecox;14082;actual measurement;288;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;288;;;;100 < seednumber <= 1000;1;;;counting ;;1998-03-27 00:00:00.0;;;UNITED KINGDOM Erophila verna s. praecox;14082;estimation;135;94;per ramet/tussock or individual plant ;BIOPOP April 2005;135;147;123;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Erophila verna s. spathulata;14494;estimation;557;25;per ramet/tussock or individual plant ;BIOPOP April 2005;557;609;505;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Erophila verna s. verna;12790;actual measurement;1237.5;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1350;1125;;1000 < seednumber <= 10,000;1;;;counting ;;1999-04-13 00:00:00.0;;;UNITED KINGDOM Erucastrum gallicum;13240;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Erucastrum gallicum;13240;actual measurement;70000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;70000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: exceptional plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Erucastrum gallicum;13240;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;150;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Erucastrum gallicum;13240;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Eryngium campestre;1324;actual measurement (following LEDA data standards);47;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;45.4;71;22;47;10 < seednumber <= 100;;;;counting ;multiple flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Eryngium maritimum;1328;laboratory/greenhouse/garden experiment;213;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;512.67;1248;77;213;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Eryngium maritimum;1328;actual measurement (following LEDA data standards);83;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;83;83;83;83;10 < seednumber <= 100;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Erysimum cheiranthoides;14097;estimation (following LEDA data standards);3500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;3500;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Erysimum cheiranthoides;14097;actual measurement;39053;;per ramet/tussock or individual plant ;BIOPOP April 2005;;39053;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Erysimum cheiranthoides;14097;actual measurement;23;3;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];23.7;27;21;23;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Erysimum cheiranthoides;14097;actual measurement;3500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Erysimum cheiranthoides;14097;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;3000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Erysimum cheiranthoides;14097;actual measurement;1863;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;2300;1426;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);3491.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6033.8;17597;1983;3491.5;1000 < seednumber <= 10,000;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Euonymus europaeus;18402;actual measurement (following LEDA data standards);3.5;4;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.75;6;2;3.5;seednumber <= 10;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Euonymus europaeus;18402;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Eupatorium cannabinum;3585;actual measurement;120596.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;120596.75;;;;seednumber > 100,000;1;;56403.49247;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Eupatorium cannabinum;3585;actual measurement;609;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;715.3;;;609;100 < seednumber <= 1000;1;66.85291484;211.4074791;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);539;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1062;3663;65;539;100 < seednumber <= 1000;;;;counting ;;2003-09-03 00:00:00.0;PREAGGREGATED! Raw record's comment: very light seeds fragmentarily recorded, 7 immature seeds;;GERMANY Euphorbia amygdaloides;20294;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Euphorbia amygdaloides;20294;estimation;690;16;per ramet/tussock or individual plant ;BIOPOP April 2005;690;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Euphorbia amygdaloides;20294;actual measurement;37.5;400;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;60;15;;10 < seednumber <= 100;1;;;counting ;;1997-07-26 00:00:00.0;;;UNITED KINGDOM Euphorbia brittingeri;20281;unknown;3960;;per square meter;BIOPOP April 2005;3960;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Euphorbia brittingeri;20281;actual measurement;43.8;10;per multiple flower inflorescence ;BIOPOP April 2005;43.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Euphorbia cyparissias;20238;actual measurement;51630;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51630;;;;10,000 < seednumber <= 100,000;1;;14590.0891;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Euphorbia cyparissias;20238;actual measurement;28.8;10;per multiple flower inflorescence ;BIOPOP April 2005;28.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Euphorbia cyparissias;20238;unknown;377;;per square meter;BIOPOP April 2005;377;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Euphorbia esula;20227;actual measurement (following LEDA data standards);2;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.13;3;1;2;seednumber <= 10;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Euphorbia esula;20227;actual measurement (following LEDA data standards);55;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;62.4;150;22;55;10 < seednumber <= 100;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Euphorbia esula;20227;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Best, K. F.(1980): no title given, publication in Canadian Journal of Plant Science issue: 60 pages: 651-663 [60]; Euphorbia esula;20227;actual measurement;51194.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51194.25;;;;10,000 < seednumber <= 100,000;1;;39941.80716;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Euphorbia exigua;20206;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Euphorbia helioscopia;20189;actual measurement;64566.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;64566.75;;;;10,000 < seednumber <= 100,000;1;;33631.78072;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Euphorbia helioscopia;20189;estimation (following LEDA data standards);450;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;800;100;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Euphorbia helioscopia;20189;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;400;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Euphorbia helioscopia;20189;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Euphorbia helioscopia;20189;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Euphorbia helioscopia;20189;estimation (following LEDA data standards);811;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;972;650;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Euphorbia lathyris;20168;actual measurement (following LEDA data standards);435;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;435;435;435;435;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Euphorbia palustris;20139;actual measurement (following LEDA data standards);2116.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4712.7;13695;558;2116.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Euphorbia paralias;20141;actual measurement (following LEDA data standards);54;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;80.1;240;42;54;10 < seednumber <= 100;;;;counting ;;2005-07-26 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Euphorbia peplus;20109;actual measurement;3600;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3600;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Euphorbia peplus;20109;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1200;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Euphorbia peplus;20109;actual measurement;450;;per ramet/tussock or individual plant ;BIOPOP April 2005;450;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Euphorbia peplus;20109;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;1200;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Euphorbia portlandica;20094;actual measurement;37.5;25;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;60;15;;10 < seednumber <= 100;1;;;counting ;;1998-10-08 00:00:00.0;;;UNITED KINGDOM Euphorbia segetalis;20079;laboratory/greenhouse/garden experiment;17;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17;17;17;17;10 < seednumber <= 100;;;;counting ;;2004-08-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Euphorbia serrulata;20055;actual measurement;3000;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;3000;;;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-22 00:00:00.0;;;UNITED KINGDOM Euphorbia serrulata;20055;actual measurement (following LEDA data standards);487;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;459;644;246;487;100 < seednumber <= 1000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Euphrasia anglica;33135;actual measurement;5;60;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;6;4;;seednumber <= 10;1;;;counting ;;1999-08-29 00:00:00.0;;;UNITED KINGDOM Euphrasia frigida;34486;actual measurement;104;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;130;78;;100 < seednumber <= 1000;1;;;counting ;;1998-08-20 00:00:00.0;;;UNITED KINGDOM Euphrasia frigida;34486;actual measurement (following LEDA data standards);10;3;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;11;19;4;10;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Euphrasia frigida;34486;actual measurement;44;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];44;;;;10 < seednumber <= 100;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Euphrasia nemorosa;33614;actual measurement;9.55;287;per ramet/tussock or individual plant ;BIOPOP April 2005;9.55;;;;seednumber <= 10;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Euphrasia nemorosa;33614;actual measurement;28.7;167;per ramet/tussock or individual plant ;BIOPOP April 2005;28.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Euphrasia nemorosa;33614;actual measurement;25;104;per ramet/tussock or individual plant ;BIOPOP April 2005;25;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Euphrasia officinalis;33149;actual measurement;18;;per square meter;BIOPOP April 2005;;;18;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Euphrasia officinalis;33149;actual measurement;141960;;per square meter;BIOPOP April 2005;;141960;;;seednumber > 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Euphrasia officinalis;33149;actual measurement;577250;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;577250;;;;seednumber > 100,000;1;;233269.6348;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Euphrasia officinalis;33149;actual measurement;221.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;221.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Euphrasia officinalis;33149;actual measurement;92092;;per square meter;BIOPOP April 2005;;141960;42224;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Euphrasia officinalis;33149;actual measurement;560;;per ramet/tussock or individual plant ;BIOPOP April 2005;;560;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Euphrasia stricta;33166;actual measurement;1096600;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1096600;;;;seednumber > 100,000;1;;813124.0988;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Euphrasia stricta;33166;actual measurement;102;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;102;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Euphrasia stricta;33166;actual measurement (following LEDA data standards);456;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1154.67;4710;266;456;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Euphrasia stricta;33166;actual measurement;5;67;per ramet/tussock or individual plant ;BIOPOP April 2005;5;;;;seednumber <= 10;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Euphrasia stricta;33166;actual measurement;17;33;per ramet/tussock or individual plant ;BIOPOP April 2005;17;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Euphrasia stricta;33166;actual measurement;20;50;per ramet/tussock or individual plant ;BIOPOP April 2005;20;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Euphrasia vigursii;33589;actual measurement;8;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;8;;;;seednumber <= 10;1;;;counting ;;1999-08-29 00:00:00.0;;;UNITED KINGDOM Fagopyrum tataricum;27706;estimation (following LEDA data standards);1000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1000;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Fagopyrum tataricum;27706;unknown;750;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1100;400;;100 < seednumber <= 1000;;;;unknown;unknown;;;Sharma, M. P. (1986): The biology of Canadian weeds. 74. Fagopyrum tataricum (L.) Gaertn.; Fagus sylvatica;22485;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Smith, C. J.(1980): Ecology of the English Chalk, Academic Press, London []; Fagus sylvatica;22485;actual measurement;43;1;per square meter;Piovesan, Gianluca(2001): Masting behaviour in beech: linking reproduction and climatic variation [79];;;43;;10 < seednumber <= 100;1;;;unknown;unknown;;the given data ist the "mean low seed production";Piovesan, Gianluca(2001): Masting behaviour in beech: linking reproduction and climatic variation [79];UNITED KINGDOM Fagus sylvatica;22485;actual measurement;85;1;per square meter;Piovesan, Gianluca(2001): Masting behaviour in beech: linking reproduction and climatic variation [79];;;85;;10 < seednumber <= 100;1;;;unknown;unknown;;the given data ist the "mean low seed production";Piovesan, Gianluca(2001): Masting behaviour in beech: linking reproduction and climatic variation [79];UNITED KINGDOM Fagus sylvatica;22485;actual measurement (following LEDA data standards);2;15;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2;2;2;2;seednumber <= 10;;;;counting ;;2004-10-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Fagus sylvatica;22485;unknown;18896.5;1;per ramet/tussock or individual plant ;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];;22046;15747;;10,000 < seednumber <= 100,000;1;;;total weight;unknown;;N unknown, seedweight from BIOLFLOR;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];GERMANY Fagus sylvatica;22485;categorized from original source;426;30;per square meter;Piovesan, Gianluca(2001): Masting behaviour in beech: linking reproduction and climatic variation [79];;840;12;;100 < seednumber <= 1000;1;;;unknown;unknown;1988-10-01 00:00:00.0;data are from 1980-1995. 250 seeds per sqm and more mark a full mast year;Hilton, G.M.(1997): A sixteen year record of regional and temporal variation in the fruiting of beech (Fagus sylvatica) L. in England (1980-1995) [70];UNITED KINGDOM Fagus sylvatica;22485;unknown;78303.5;1;per ramet/tussock or individual plant ;Mountford, Edward P.(2003): Natural regeneration of beech forests in Europe - UK: Approaches, problems, recent advances and recommendations, Report from research on approaches to naturally regenerate beech managed forests (D22) [];;138600;18007;;10,000 < seednumber <= 100,000;1;;;total weight;unknown;;N unknown, Matthews (1955), seedweight from BIOLFLOR;Mountford, Edward P.(2003): Natural regeneration of beech forests in Europe - UK: Approaches, problems, recent advances and recommendations, Report from research on approaches to naturally regenerate beech managed forests (D22) [];UNITED KINGDOM Falcaria vulgaris;2255;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Fallopia convolvulus;44736;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Fallopia convolvulus;44736;estimation (following LEDA data standards);170;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;200;140;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Fallopia convolvulus;44736;unknown;11900;;per ramet/tussock or individual plant ;BIOPOP April 2005;11900;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hume, L.(1983): The biology of Canadian weeds. 60. Polygonum convolvulus L.;UNITED STATES Fallopia convolvulus;44736;unknown;543;;per square meter;BIOPOP April 2005;543;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Hume, L.(1983): The biology of Canadian weeds. 60. Polygonum convolvulus L.;FINLAND Fallopia convolvulus;44736;unknown;810;;per square meter;BIOPOP April 2005;;810;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: coarse mineral soils;Hume, L.(1983): The biology of Canadian weeds. 60. Polygonum convolvulus L.;FINLAND Fallopia convolvulus;44736;unknown;15000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;15000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: planted on June 15th;Hume, L.(1983): The biology of Canadian weeds. 60. Polygonum convolvulus L.;UNITED STATES Fallopia convolvulus;44736;unknown;30000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;30000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: sown by 15. April;Hume, L.(1983): The biology of Canadian weeds. 60. Polygonum convolvulus L.;UNITED STATES Fallopia convolvulus;44736;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Fallopia convolvulus;44736;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Hume, L.(1983): no title given, publication in Canadian Journal of Plant Science issue: 63 pages: 959-971 [63]; Fallopia convolvulus;44736;actual measurement;12962.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12962.33333;;;;10,000 < seednumber <= 100,000;1;;2476.086899;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Fallopia convolvulus;44736;actual measurement;500;100;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;600;400;;100 < seednumber <= 1000;1;;;counting ;;1998-08-26 00:00:00.0;;;UNITED KINGDOM Fallopia convolvulus;44736;actual measurement;172;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;194;135;172;100 < seednumber <= 1000;1;;;counting ;unknown;;small individuums;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Fallopia convolvulus;44736;unknown;170;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;200;140;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Fallopia dumetorum;44738;actual measurement;15815.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15815.5;;;;10,000 < seednumber <= 100,000;1;;17095.59416;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Fallopia dumetorum;44738;actual measurement;3;;per square meter;BIOPOP April 2005;;;3;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fallopia dumetorum;44738;actual measurement;766.5;;per square meter;BIOPOP April 2005;;1365;168;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fallopia dumetorum;44738;actual measurement;20.6;;per multiple flower inflorescence ;BIOPOP April 2005;20.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fallopia dumetorum;44738;actual measurement;8.5;;per square meter;BIOPOP April 2005;;14;3;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fallopia dumetorum;44738;actual measurement;3.2;;per multiple flower inflorescence ;BIOPOP April 2005;3.2;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca altissima;41544;actual measurement (following LEDA data standards);134;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;158.5;300;101;134;100 < seednumber <= 1000;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Festuca altissima;41544;actual measurement;225;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;225;;;;100 < seednumber <= 1000;1;;;counting ;;1998-08-03 00:00:00.0;;;UNITED KINGDOM Festuca arundinacea;40254;actual measurement;116325.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;116325.3333;;;;seednumber > 100,000;1;;79784.57448;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Festuca arundinacea;40254;laboratory/greenhouse/garden experiment;3;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);3;3;3;3;seednumber <= 10;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Festuca brevipila;41305;actual measurement (following LEDA data standards);133;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;136.2;198;93;133;100 < seednumber <= 1000;;;;counting ;;2004-06-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Festuca gigantea;40761;actual measurement;37843.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37843.33333;;;;10,000 < seednumber <= 100,000;1;;24096.83449;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Festuca gigantea;40761;laboratory/greenhouse/garden experiment;261;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);261;261;261;261;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Festuca gigantea;40761;actual measurement;89;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;106.5;;;89;10 < seednumber <= 100;1;17.48475526;55.29165097;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Festuca gigantea;40761;actual measurement (following LEDA data standards);281;9;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;319.33;498;212;281;100 < seednumber <= 1000;;;;counting ;;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Festuca ovina;40171;actual measurement;7350;;per square meter;BIOPOP April 2005;;7350;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;122.5;;per square meter;BIOPOP April 2005;;210;35;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;46.4;;per multiple flower inflorescence ;BIOPOP April 2005;46.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;235.5;;per square meter;BIOPOP April 2005;;366;105;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;40.3;;per multiple flower inflorescence ;BIOPOP April 2005;40.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;75;;per multiple flower inflorescence ;BIOPOP April 2005;75;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;317;;per square meter;BIOPOP April 2005;;544;90;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement (following LEDA data standards);62;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;62.8;88;36;62;10 < seednumber <= 100;;;;counting ;;2005-05-29 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Festuca ovina;40171;actual measurement;49.6;;per multiple flower inflorescence ;BIOPOP April 2005;49.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;520;;per square meter;BIOPOP April 2005;;520;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;45.9;;per multiple flower inflorescence ;BIOPOP April 2005;45.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;977;;per square meter;BIOPOP April 2005;;977;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement;46.2;;per multiple flower inflorescence ;BIOPOP April 2005;46.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca ovina;40171;actual measurement (following LEDA data standards);1;1;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1;1;1;1;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Festuca ovina;40171;actual measurement;37.5;12;per multiple flower inflorescence ;BIOPOP April 2005;37.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Festuca ovina;40171;unknown;23;;per square meter;BIOPOP April 2005;23;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Festuca ovina;40171;unknown;1976;;per square meter;BIOPOP April 2005;1976;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Festuca ovina;40171;actual measurement;847;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;847;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Festuca ovina;40171;actual measurement;178024.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;178024.75;;;;seednumber > 100,000;1;;160859.1735;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Festuca ovina;40171;actual measurement;1.9;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;1.9;;;;seednumber <= 10;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 5% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Festuca pallens;40789;laboratory/greenhouse/garden experiment;330.9;30;per ramet/tussock or individual plant ;BIOPOP April 2005;330.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;tussock;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;166.9;30;per ramet/tussock or individual plant ;BIOPOP April 2005;166.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;tussock;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;125.1;30;per ramet/tussock or individual plant ;BIOPOP April 2005;125.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;tussock;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;284.4;30;per ramet/tussock or individual plant ;BIOPOP April 2005;284.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;tussock;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;18.4;30;per single flower inflorescence ;BIOPOP April 2005;18.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence General comment: trial 1;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;15;30;per single flower inflorescence ;BIOPOP April 2005;15;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence General comment: trial 2;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;18;30;per single flower inflorescence ;BIOPOP April 2005;18;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence General comment: trial 5;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;10.3;30;per single flower inflorescence ;BIOPOP April 2005;10.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence General comment: trial 3;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;16.3;30;per single flower inflorescence ;BIOPOP April 2005;16.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence General comment: trial 4;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pallens;40789;laboratory/greenhouse/garden experiment;397.5;30;per ramet/tussock or individual plant ;BIOPOP April 2005;397.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;tussock;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Festuca pratensis;41343;actual measurement;125630.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;125630.75;;;;seednumber > 100,000;1;;72749.00354;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Festuca rubra;40103;actual measurement;465;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;465;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Festuca rubra;40103;actual measurement;119776.8;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;119776.8;;;;seednumber > 100,000;1;;54081.32753;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Festuca rubra;40103;actual measurement;24;;per square meter;BIOPOP April 2005;;24;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Festuca rubra;40103;actual measurement;7.2;;per multiple flower inflorescence ;BIOPOP April 2005;7.2;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filaginella uliginosa;3719;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Filaginella uliginosa;3719;actual measurement;10308220.67;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10308220.67;;;;seednumber > 100,000;1;;6717199.122;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Filaginella uliginosa;3719;estimation (following LEDA data standards);300;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;500;100;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Filaginella uliginosa;3719;estimation (following LEDA data standards);300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;500;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Filaginella uliginosa;3719;laboratory/greenhouse/garden experiment;324;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;324;324;324;324;100 < seednumber <= 1000;;;;counting ;;2004-09-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Filago pyramidata;3396;laboratory/greenhouse/garden experiment;5105;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4826.11;7850;2020;5105;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Filago vulgaris;5888;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;300;100;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Filago vulgaris;5888;actual measurement;23.5;15;per multiple flower inflorescence ;Anagnostou, Christiana(2003): Ausgewählte Aspekte zur Ökologie von Filago vulgaris Lam. in Schleswig-Holstein: Bestäubung, Keimung und Populationsdynamik einer unscheinbaren Art [31];23.5;26;21;;10 < seednumber <= 100;1;;;counting ;unknown;;;Anagnostou, Christiana(2003): Ausgewählte Aspekte zur Ökologie von Filago vulgaris Lam. in Schleswig-Holstein: Bestäubung, Keimung und Populationsdynamik einer unscheinbaren Art [31];GERMANY Filago vulgaris;5888;actual measurement;14.5;12;per multiple flower inflorescence ;Anagnostou, Christiana(2003): Ausgewählte Aspekte zur Ökologie von Filago vulgaris Lam. in Schleswig-Holstein: Bestäubung, Keimung und Populationsdynamik einer unscheinbaren Art [31];14.5;19;10;;10 < seednumber <= 100;1;;;counting ;unknown;;free pollination;Anagnostou, Christiana(2003): Ausgewählte Aspekte zur Ökologie von Filago vulgaris Lam. in Schleswig-Holstein: Bestäubung, Keimung und Populationsdynamik einer unscheinbaren Art [31];GERMANY Filago vulgaris;5888;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;300;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Filago vulgaris;5888;unknown;2500;1;per ramet/tussock or individual plant ;Salisbury, S.E.(1964): Weeds & Aliens;2500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Filago vulgaris;5888;unknown;15;1;per multiple flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;;24;6;;10 < seednumber <= 100;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Filipendula ulmaria;29764;actual measurement;2117;;per square meter;BIOPOP April 2005;;2117;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;135459.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;135459.75;;;;seednumber > 100,000;1;;142400.7092;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Filipendula ulmaria;29764;actual measurement;2681;;per ramet/tussock or individual plant ;BIOPOP April 2005;2681;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;34827;;per square meter;BIOPOP April 2005;;34827;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;1297;;per ramet/tussock or individual plant ;BIOPOP April 2005;1297;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;33878;;per square meter;BIOPOP April 2005;;33878;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;2874;;per ramet/tussock or individual plant ;BIOPOP April 2005;2874;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;5746;;per square meter;BIOPOP April 2005;;5746;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;5755;;per ramet/tussock or individual plant ;BIOPOP April 2005;5755;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;estimation (following LEDA data standards);34500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;34500;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Filipendula ulmaria;29764;actual measurement;8.2;10;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];8.2;10;7;;seednumber <= 10;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Filipendula ulmaria;29764;actual measurement;15764;2;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;17216;14312;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Filipendula ulmaria;29764;actual measurement;2681;;per ramet/tussock or individual plant ;BIOPOP April 2005;2681;4573;696;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;11156;;per ramet/tussock or individual plant ;BIOPOP April 2005;;11156;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;40285;;per square meter;BIOPOP April 2005;;40285;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula ulmaria;29764;actual measurement;3950;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;3950;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Filipendula ulmaria;29764;actual measurement (following LEDA data standards);2930;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4148.13;10335;2073;2930;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-06 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Filipendula ulmaria;29764;actual measurement;651;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;643.1;;;651;100 < seednumber <= 1000;1;79.07822428;250.0673021;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Filipendula vulgaris;29429;actual measurement;421;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;421;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Filipendula vulgaris;29429;actual measurement;113;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;113;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Filipendula vulgaris;29429;actual measurement;410;;per square meter;BIOPOP April 2005;;410;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Filipendula vulgaris;29429;actual measurement;439.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;439.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fragaria moschata;30348;actual measurement;69750;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;69750;;;;10,000 < seednumber <= 100,000;1;;59845.11258;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Fragaria vesca;30633;actual measurement;510;;per square meter;BIOPOP April 2005;;510;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fragaria vesca;30633;actual measurement;243.9;;per multiple flower stem;BIOPOP April 2005;243.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fragaria vesca;30633;actual measurement;20592;;per square meter;BIOPOP April 2005;;20592;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fragaria vesca;30633;actual measurement;115.4;;per multiple flower stem;BIOPOP April 2005;115.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fragaria vesca;30633;actual measurement;324;;per square meter;BIOPOP April 2005;;324;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fragaria vesca;30633;actual measurement;164;;per multiple flower stem;BIOPOP April 2005;164;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Fragaria vesca;30633;actual measurement;341;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;341;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Fragaria vesca;30633;actual measurement;49966.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;49966.66667;;;;10,000 < seednumber <= 100,000;1;;12977.03099;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Fragaria vesca;30633;actual measurement;326;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;326;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Fragaria vesca;30633;actual measurement;225;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;300;150;;100 < seednumber <= 1000;1;;;counting ;;1999-07-07 00:00:00.0;;;UNITED KINGDOM Fragaria vesca;30633;actual measurement;270;120;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;500;40;;100 < seednumber <= 1000;1;;;counting ;;1999-06-10 00:00:00.0;;;UNITED KINGDOM Frangula alnus;28032;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Godwin, H. (1943): no title given, publication in Journal of Ecology issue: 31 pages: 66-92 [31]; Frangula alnus;28032;actual measurement;450;;per ramet/tussock or individual plant ;BIOPOP April 2005;;450;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Frankenia laevis;22690;estimation;14;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;14;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Brightmore, D.(1979): no title given, publication in Journal of Ecology issue: 67 pages: 1097-1107 [67]; Fraxinus excelsior;26381;estimation;50000;;per ramet/tussock or individual plant ;BIOPOP April 2005;50000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: 100000 every second year;Wardle, P. (1961): Biological flora of the British Isles: Fraxinus excelsior L.; Fraxinus excelsior;26381;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Gardner, G. (1977): The reproductive capacity of Fraxinus excelsior on the Derbyshire Limestone; Fritillaria meleagris;39121;actual measurement (following LEDA data standards);126;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;121.07;148;80;126;100 < seednumber <= 1000;;;;counting ;;2003-05-28 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Fritillaria meleagris;39121;actual measurement (following LEDA data standards);102;15;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;105.4;155;73;102;100 < seednumber <= 1000;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Fumaria densiflora;25449;actual measurement;95;15;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;150;40;;10 < seednumber <= 100;1;;;counting ;;1999-09-27 00:00:00.0;;;UNITED KINGDOM Fumaria occidentalis;25548;actual measurement;12;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;12;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-14 00:00:00.0;;;UNITED KINGDOM Fumaria officinalis;25549;actual measurement;27039.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27039.66667;;;;10,000 < seednumber <= 100,000;1;;15134.03847;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Fumaria officinalis;25549;actual measurement;100;10;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;100;;;;10 < seednumber <= 100;1;;;counting ;;1999-06-23 00:00:00.0;;;UNITED KINGDOM Fumaria officinalis;25549;actual measurement;100;15;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;160;40;;10 < seednumber <= 100;1;;;counting ;;1999-09-27 00:00:00.0;;;UNITED KINGDOM Fumaria officinalis;25549;estimation (following LEDA data standards);950;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;1600;300;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Fumaria officinalis;25549;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Fumaria officinalis;25549;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Fumaria parviflora;25553;laboratory/greenhouse/garden experiment;90690;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;90690;90690;90690;90690;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Fumaria vaillantii;25522;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Fumaria vaillantii;25522;actual measurement;17725.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17725.33333;;;;10,000 < seednumber <= 100,000;1;;2423.700752;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Gagea lutea;39025;actual measurement;90;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;90;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Gagea spathacea;38650;actual measurement (following LEDA data standards);17;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18.5;33;7;17;10 < seednumber <= 100;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galanthus nivalis;35672;estimation;15;;per ramet/tussock or individual plant ;BIOPOP April 2005;15;18;12;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Galanthus nivalis;35672;estimation;18;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;18;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Galanthus nivalis;35672;actual measurement;27.5;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;50;5;;10 < seednumber <= 100;1;;;counting ;;1998-05-08 00:00:00.0;;;UNITED KINGDOM Galega officinalis;21307;actual measurement (following LEDA data standards);91.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;102.1;170;33;91.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-07-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galeopsis angustifolia;23489;actual measurement;50;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;80;20;;10 < seednumber <= 100;1;;;counting ;;1997-09-24 00:00:00.0;;;UNITED KINGDOM Galeopsis angustifolia;23489;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis angustifolia;23489;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis angustifolia;23489;actual measurement;250;;per ramet/tussock or individual plant ;BIOPOP April 2005;;250;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis bifida;24586;actual measurement;47.5;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;84.7;;;47.5;10 < seednumber <= 100;1;28.80819714;91.09951823;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Galeopsis bifida;24586;actual measurement;94697.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;94697.66667;;;;10,000 < seednumber <= 100,000;1;;95313.43356;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galeopsis bifida;24586;actual measurement;550;250;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;600;500;;100 < seednumber <= 1000;1;;;counting ;;1997-08-22 00:00:00.0;;;UNITED KINGDOM Galeopsis bifida;24586;actual measurement;1250;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1268;1232;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;diaspores;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Galeopsis ladanum;24587;estimation (following LEDA data standards);300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;300;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galeopsis pubescens;24228;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >500;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis pubescens;24228;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis pubescens;24228;actual measurement;210133.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;210133.3333;;;;seednumber > 100,000;1;;250752.893;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galeopsis segetum;24230;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis speciosa;23861;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis speciosa;23861;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis speciosa;23861;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis speciosa;23861;estimation (following LEDA data standards);450;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;450;1000;200;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galeopsis speciosa;23861;actual measurement;38291;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38291;;;;10,000 < seednumber <= 100,000;1;;11180.71746;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galeopsis speciosa;23861;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;500;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Galeopsis speciosa;23861;actual measurement;2308;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];2308;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;diaspores;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Galeopsis tetrahit;24648;actual measurement;33;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;33;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Galeopsis tetrahit;24648;actual measurement;31650;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31650;;;;10,000 < seednumber <= 100,000;1;;20572.97985;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galeopsis tetrahit;24648;estimation (following LEDA data standards);2800;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;2800;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Galeopsis tetrahit;24648;unknown;350;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;600;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Galeopsis tetrahit;24648;estimation (following LEDA data standards);350;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;600;100;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galeopsis tetrahit;24648;estimation (following LEDA data standards);2800;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2800;8000;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galeopsis tetrahit;24648;estimation;2010;16;per ramet/tussock or individual plant ;BIOPOP April 2005;2010;2394;1626;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Galeopsis tetrahit;24648;actual measurement;8000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;8000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis tetrahit;24648;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis tetrahit;24648;actual measurement;600;;per ramet/tussock or individual plant ;BIOPOP April 2005;;600;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galeopsis tetrahit;24648;unknown;387;;per ramet/tussock or individual plant ;BIOPOP April 2005;387;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;O'Donovan, J.T. (1987): The biology of Canadian weeds. 78. Galeopsis tetrahit L.; Galeopsis tetrahit;24648;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Galinsoga ciliata;6801;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: max >5000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galinsoga ciliata;6801;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galinsoga parviflora;7147;estimation;12;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;12;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): 12/flower in greenhouse experiments;Haskell, G.(1952): no title given, publication in New Phytologist issue: 51 pages: 382-387 [51]; Galinsoga parviflora;7147;actual measurement;190368;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;190368;;;;seednumber > 100,000;1;;125115.8122;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galinsoga parviflora;7147;actual measurement;62500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;120000;5000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galinsoga parviflora;7147;actual measurement;30000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;30000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galinsoga parviflora;7147;actual measurement;300000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galinsoga parviflora;7147;unknown;7500;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;10000;5000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Galinsoga parviflora;7147;estimation (following LEDA data standards);17500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;30000;5000;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Galinsoga parviflora;7147;actual measurement;36851;;per ramet/tussock or individual plant ;BIOPOP April 2005;;36851;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galinsoga parviflora;7147;estimation (following LEDA data standards);300000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;300000;;;seednumber > 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galinsoga parviflora;7147;estimation (following LEDA data standards);4000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;3000;5000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galinsoga parviflora;7147;estimation (following LEDA data standards);170000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;170000;;;seednumber > 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galium aparine;31956;actual measurement;25180.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25180.33333;;;;10,000 < seednumber <= 100,000;1;;16165.88879;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galium aparine;31956;unknown;300;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;500;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Galium aparine;31956;estimation (following LEDA data standards);350;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;400;300;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Galium aparine;31956;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Galium aparine;31956;unknown;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Malik, N. (1988): The biology of Canadian weeds. 86. Galium aparine L. and Galium spurium L.; Galium aparine;31956;unknown;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Malik, N. (1988): The biology of Canadian weeds. 86. Galium aparine L. and Galium spurium L.; Galium aparine;31956;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galium aparine;31956;estimation (following LEDA data standards);730;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;1100;360;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galium aparine;31956;unknown;847;;per ramet/tussock or individual plant ;BIOPOP April 2005;847;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Cousens, R. (1995): Dynamics of weed populations []; Galium aparine;31956;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galium aparine;31956;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galium aparine;31956;unknown;350;;per ramet/tussock or individual plant ;BIOPOP April 2005;;400;300;;100 < seednumber <= 1000;;;;unknown;unknown;;;Taylor, K. (1999): Biological flora of the British Isles: Galium aparine L.;UNITED KINGDOM Galium aparine;31956;actual measurement;31;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39.2;;;31;10 < seednumber <= 100;1;9.312834632;29.44976891;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Galium boreale;31917;actual measurement;140;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;140;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Galium boreale;31917;actual measurement;192;;per square meter;BIOPOP April 2005;;192;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium boreale;31917;actual measurement;68;;per square meter;BIOPOP April 2005;;68;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium boreale;31917;actual measurement;103.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;103.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium boreale;31917;actual measurement;15.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;15.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium glaucum;31858;actual measurement (following LEDA data standards);535;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;642.89;1468;373;535;100 < seednumber <= 1000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galium mollugo;31782;actual measurement;111840.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;111840.75;;;;seednumber > 100,000;1;;45492.0332;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galium mollugo;31782;estimation (following LEDA data standards);20000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;20000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Galium mollugo;31782;actual measurement;1734;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1952;1516;;1000 < seednumber <= 10,000;1;;;counting ;unknown;;often only one fertile fruit per inflorescense;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Galium odoratum;31805;actual measurement (following LEDA data standards);26;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23.57;35;11;26;10 < seednumber <= 100;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galium odoratum;31805;actual measurement (following LEDA data standards);2;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2;3;1;2;seednumber <= 10;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galium odoratum;31805;actual measurement;10.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10.8;;;10.5;10 < seednumber <= 100;1;1.093414631;3.457680661;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Galium odoratum;31805;actual measurement (following LEDA data standards);9.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11.2;25;3;9.5;seednumber <= 10;;;;counting ;;2005-05-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Galium odoratum;31805;actual measurement;16412.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16412.5;;;;10,000 < seednumber <= 100,000;1;;13903.73901;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galium palustre;31813;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: palustre Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Galium palustre;31813;actual measurement;279;4;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];279;326;244;;100 < seednumber <= 1000;1;;;counting ;unknown;;often only one fertile fruit per inflorescense;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Galium palustre;31813;actual measurement;900;;per square meter;BIOPOP April 2005;;900;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium palustre;31813;actual measurement;17.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;17.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium parisiense;31817;laboratory/greenhouse/garden experiment;17605.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19963.1;41400;5278;17605.5;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galium rotundifolium;32103;actual measurement;14200;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14200;;;;10,000 < seednumber <= 100,000;1;;10474.7315;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galium saxatile;31769;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Galium saxatile;31769;actual measurement (following LEDA data standards);46;8;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;46.75;102;14;46;10 < seednumber <= 100;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Galium saxatile;31769;actual measurement (following LEDA data standards);96;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;118.27;276;50;96;10 < seednumber <= 100;;;;counting ;;2000-09-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Galium spurium;31775;unknown;670;;per ramet/tussock or individual plant ;BIOPOP April 2005;670;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Malik, N. (1988): The biology of Canadian weeds. 86. Galium aparine L. and Galium spurium L.; Galium spurium;31775;unknown;1520;;per ramet/tussock or individual plant ;BIOPOP April 2005;1520;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Malik, N. (1988): The biology of Canadian weeds. 86. Galium aparine L. and Galium spurium L.; Galium spurium;31775;unknown;600;;per ramet/tussock or individual plant ;BIOPOP April 2005;600;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Malik, N. (1988): The biology of Canadian weeds. 86. Galium aparine L. and Galium spurium L.; Galium spurium;31775;actual measurement;350;;per ramet/tussock or individual plant ;BIOPOP April 2005;350;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galium sterneri;31777;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Galium sterneri;31777;actual measurement;30;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;30;;;;10 < seednumber <= 100;1;;;counting ;;1999-09-02 00:00:00.0;;;UNITED KINGDOM Galium sylvaticum;31699;actual measurement (following LEDA data standards);850.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1052.6;2436;300;850.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galium sylvaticum;31699;actual measurement;37770;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37770;;;;10,000 < seednumber <= 100,000;1;;14249.86667;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galium tricornutum;31719;laboratory/greenhouse/garden experiment;1215;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1102.8;1560;504;1215;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galium tricornutum;31719;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galium tricornutum;31719;actual measurement;45;;per ramet/tussock or individual plant ;BIOPOP April 2005;45;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Galium uliginosum;31724;actual measurement;104990.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;104990.6667;;;;seednumber > 100,000;1;;47557.46273;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galium uliginosum;31724;actual measurement;524;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;534;406;524;100 < seednumber <= 1000;1;;;counting ;unknown;;often only one fertile fruit per inflorescense;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Galium uliginosum;31724;actual measurement;3;;per square meter;BIOPOP April 2005;;;3;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium uliginosum;31724;actual measurement;31.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;31.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium uliginosum;31724;actual measurement;118;;per square meter;BIOPOP April 2005;;176;60;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium uliginosum;31724;actual measurement;367;;per square meter;BIOPOP April 2005;;635;99;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium uliginosum;31724;actual measurement;8.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;8.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium uliginosum;31724;actual measurement;19.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;19.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium uliginosum;31724;actual measurement;350;;per square meter;BIOPOP April 2005;;350;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium verrucosum;32204;laboratory/greenhouse/garden experiment;240;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;247.78;480;80;240;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Galium verum;31730;actual measurement;550;3;per multiple flower inflorescence ;BIOPOP April 2005;550;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Galium verum;31730;unknown;1100;;per square meter;BIOPOP April 2005;1100;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Galium verum;31730;actual measurement;104.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;104.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium verum;31730;actual measurement;12.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;12.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium verum;31730;actual measurement;26;;per square meter;BIOPOP April 2005;;26;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium verum;31730;actual measurement;2704;;per square meter;BIOPOP April 2005;;3848;1560;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Galium verum;31730;actual measurement;45115;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45115;;;;10,000 < seednumber <= 100,000;1;;38020.23452;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Galium verum;31730;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Genista anglica;19775;estimation;12;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;12;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. []; Genista pilosa;20915;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;8;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. []; Genista tinctoria;21390;actual measurement;56652;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;56652;;;;10,000 < seednumber <= 100,000;1;;54760.58265;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Gentiana nivalis;22851;actual measurement;1287;13;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1716;858;;1000 < seednumber <= 10,000;1;;;counting ;;1997-08-30 00:00:00.0;;;UNITED KINGDOM Gentiana pneumonanthe;22875;estimation;1188;181;per ramet/tussock or individual plant ;BIOPOP April 2005;1188;1277;1099;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Gentiana pneumonanthe;22875;estimation;815;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;815;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Simmonds, N. W.(1946): no title given, publication in Journal of Ecology issue: 33 pages: 295-307 [33]; Gentiana pneumonanthe;22875;actual measurement (following LEDA data standards);348;9;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;387.67;656;246;348;100 < seednumber <= 1000;;;;counting ;;2004-06-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Gentiana verna;22708;actual measurement;164.4;10;per single flower inflorescence ;BIOPOP April 2005;164.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Gentiana verna;22708;unknown;2230;;per square meter;BIOPOP April 2005;2230;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Gentiana verna;22708;unknown;1640;;per square meter;BIOPOP April 2005;1640;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Gentianella amarella;23102;estimation;295;162;per ramet/tussock or individual plant ;BIOPOP April 2005;295;333;257;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Gentianella amarella;23102;estimation;73;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;73;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Gentianella amarella;23102;estimation;862;214;per ramet/tussock or individual plant ;BIOPOP April 2005;862;910;814;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Gentianella amarella;23102;actual measurement;56.9;55;per ramet/tussock or individual plant ;BIOPOP April 2005;56.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Gentianella amarella;23102;actual measurement;30.9;87;per ramet/tussock or individual plant ;BIOPOP April 2005;30.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Gentianella amarella;23102;actual measurement;82.4;22;per ramet/tussock or individual plant ;BIOPOP April 2005;82.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Gentianella anglica;23105;estimation;72;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;72;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Gentianella campestris;23049;actual measurement;500;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];500;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Gentianella campestris;23049;actual measurement;484;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;484;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Gentianella campestris s. baltica;23077;estimation;325;54;per ramet/tussock or individual plant ;BIOPOP April 2005;325;348;302;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Gentianella campestris s. baltica;23077;actual measurement;1025;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2000;50;;1000 < seednumber <= 10,000;1;;;counting ;;1998-10-22 00:00:00.0;;;UNITED KINGDOM Gentianella ciliata;23007;actual measurement;670;9;per single flower inflorescence ;Oostermeijer, J. G. B.(2002): Future prospects for the rare, late flowering Gentianella germanica and Gentianopsis ciliata in Dutch nutrient-poor calcareous grasslands [104];670;;;;100 < seednumber <= 1000;1;;;unknown;unknown;1998-08-01 00:00:00.0;;Oostermeijer, J. G. B.(2002): Future prospects for the rare, late flowering Gentianella germanica and Gentianopsis ciliata in Dutch nutrient-poor calcareous grasslands [104];NETHERLANDS Gentianella germanica;22958;field experiment;160;90;per ramet/tussock or individual plant ;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];160;;;;100 < seednumber <= 1000;1;60;569.21;unknown;unknown;;kept in a chamber, elevated CO2;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];SWITZERLAND Gentianella germanica;22958;estimation;99;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;99;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Gentianella germanica;22958;unknown;136;;per square meter;BIOPOP April 2005;136;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Gentianella germanica;22958;estimation;594;141;per ramet/tussock or individual plant ;BIOPOP April 2005;594;637;551;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Gentianella germanica;22958;field experiment;381;90;per ramet/tussock or individual plant ;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];381;;;;100 < seednumber <= 1000;1;105;996.117;unknown;unknown;;;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];SWITZERLAND Gentianella germanica;22958;field experiment;253;90;per ramet/tussock or individual plant ;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];253;;;;100 < seednumber <= 1000;1;84.9;805.432;unknown;unknown;;kept in a chamber;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];SWITZERLAND Geranium bohemicum;22580;actual measurement;87500;;per square meter;BIOPOP April 2005;;87500;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium bohemicum;22580;actual measurement;600;;per ramet/tussock or individual plant ;BIOPOP April 2005;600;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium bohemicum;22580;actual measurement;48550;;per square meter;BIOPOP April 2005;;87500;9600;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium bohemicum;22580;actual measurement;600;;per ramet/tussock or individual plant ;BIOPOP April 2005;600;2175;45;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium columbinum;22581;actual measurement;80;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;80;220;10;;10 < seednumber <= 100;1;;;counting ;;1999-06-29 00:00:00.0;;;UNITED KINGDOM Geranium columbinum;22581;actual measurement;12.5;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;15;10;;10 < seednumber <= 100;1;;;counting ;;1997-07-22 00:00:00.0;;;UNITED KINGDOM Geranium columbinum;22581;estimation;314;;per ramet/tussock or individual plant ;BIOPOP April 2005;314;369;259;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Geranium columbinum;22581;estimation;760;;per ramet/tussock or individual plant ;BIOPOP April 2005;;760;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Geranium dissectum;22583;estimation (following LEDA data standards);95;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;150;40;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Geranium dissectum;22583;actual measurement;1000;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;1000;;;;100 < seednumber <= 1000;1;;;counting ;;1997-07-18 00:00:00.0;;;UNITED KINGDOM Geranium dissectum;22583;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;;150;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >150;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Geranium dissectum;22583;actual measurement;11391.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11391.33333;;;;10,000 < seednumber <= 100,000;1;;2960.308317;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Geranium dissectum;22583;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Geranium dissectum;22583;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Geranium molle;22585;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Geranium molle;22585;actual measurement;100;15;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;80;;10 < seednumber <= 100;1;;;counting ;;2000-05-20 00:00:00.0;;;UNITED KINGDOM Geranium molle;22585;actual measurement (following LEDA data standards);3;8;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3;5;1;3;seednumber <= 10;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Geranium molle;22585;actual measurement (following LEDA data standards);16;15;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16;32;3;16;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Geranium molle;22585;actual measurement (following LEDA data standards);81;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;81;81;81;81;10 < seednumber <= 100;;;;counting ;;2004-09-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Geranium phaeum;22588;actual measurement (following LEDA data standards);43;2;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;43;52;34;43;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Geranium phaeum;22588;actual measurement (following LEDA data standards);120;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;117;190;80;120;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-22 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Geranium phaeum;22588;actual measurement;8840.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8840.666667;;;;1000 < seednumber <= 10,000;1;;2952.179082;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Geranium pratense;22589;actual measurement;8369.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8369.5;;;;1000 < seednumber <= 10,000;1;;8025.482644;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Geranium pratense;22589;actual measurement (following LEDA data standards);3;10;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.3;5;2;3;seednumber <= 10;;;;counting ;;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Geranium purpureum;22518;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Baker, H. G. (1957): no title given, publication in New Phytologist issue: 56 pages: 172-192 [56]; Geranium pusillum;22590;actual measurement;115545.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;115545.6667;;;;seednumber > 100,000;1;;35938.36483;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Geranium pusillum;22590;actual measurement;750;2;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;750;;;;100 < seednumber <= 1000;1;;;counting ;;1999-07-02 00:00:00.0;;;UNITED KINGDOM Geranium pusillum;22590;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Geranium robertianum;22592;actual measurement;132.5;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;126;;;132.5;100 < seednumber <= 1000;1;18.22391591;57.62908216;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Geranium robertianum;22592;actual measurement;12153.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12153.25;;;;10,000 < seednumber <= 100,000;1;;4495.602546;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Geranium robertianum;22592;actual measurement;30;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;30;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Geranium robertianum;22592;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Geranium robertianum;22592;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium robertianum;22592;actual measurement;68.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;68.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium robertianum;22592;actual measurement;3850;;per square meter;BIOPOP April 2005;;3850;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium sanguineum;22557;actual measurement;6405.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6405.666667;;;;1000 < seednumber <= 10,000;1;;3961.463913;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Geranium sanguineum;22557;actual measurement;90;48;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;150;30;;10 < seednumber <= 100;1;;;counting ;;1999-07-30 00:00:00.0;;;UNITED KINGDOM Geranium sanguineum;22557;actual measurement;256;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;500;12;;100 < seednumber <= 1000;1;;;counting ;;1998-07-10 00:00:00.0;;;UNITED KINGDOM Geranium sylvaticum;22559;actual measurement;220;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;325;115;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Geranium sylvaticum;22559;actual measurement;150;15;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;250;50;;100 < seednumber <= 1000;1;;;counting ;;1999-07-27 00:00:00.0;;;UNITED KINGDOM Geranium sylvaticum;22559;actual measurement;14;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;14;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Geranium sylvaticum;22559;actual measurement;300;15;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;500;100;;100 < seednumber <= 1000;1;;;counting ;;1999-07-27 00:00:00.0;;;UNITED KINGDOM Geranium sylvaticum;22559;actual measurement (following LEDA data standards);2;5;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;2;4;1;2;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Geranium sylvaticum;22559;actual measurement;9.9;20;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;9.9;;;;seednumber <= 10;1;;;counting and extrapolation ;single flower inflorescence ;;only full developed seeds,19.08.31;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Geranium sylvaticum;22559;actual measurement;2.3;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;2.3;5;0;;seednumber <= 10;1;;;counting ;unknown;;,24.08.31;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Geranium sylvaticum;22559;actual measurement;3.3;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;3.3;5;1;;seednumber <= 10;1;;;counting ;unknown;;,19.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Geranium sylvaticum;22559;actual measurement;3.3;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;3.3;5;0;;seednumber <= 10;1;;;counting ;unknown;;,18.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Geranium sylvaticum;22559;actual measurement;8.3;20;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;8.3;;;;seednumber <= 10;1;;;counting and extrapolation ;single flower inflorescence ;;only full developed seeds, seed seeting: 46%,24.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Geranium sylvaticum;22559;actual measurement;11.2;20;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;11.2;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;;only full developed seeds,19.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Geranium sylvaticum;22559;actual measurement;95;;per square meter;BIOPOP April 2005;;95;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium sylvaticum;22559;actual measurement;40;;per square meter;BIOPOP April 2005;;40;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium sylvaticum;22559;actual measurement;9.5;;per multiple flower stem;BIOPOP April 2005;9.5;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium sylvaticum;22559;actual measurement;18;;per multiple flower stem;BIOPOP April 2005;18;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium sylvaticum;22559;actual measurement;30.7;;per multiple flower stem;BIOPOP April 2005;30.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geranium sylvaticum;22559;actual measurement;105;;per square meter;BIOPOP April 2005;;105;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum rivale;29366;actual measurement;750;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1000;500;;100 < seednumber <= 1000;1;;;estimation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Geum rivale;29366;actual measurement;280;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;350;210;;100 < seednumber <= 1000;1;;;counting ;;1998-07-09 00:00:00.0;;;UNITED KINGDOM Geum rivale;29366;actual measurement;113;3;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;130;112;113;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Geum rivale;29366;actual measurement;229;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;229;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Geum rivale;29366;actual measurement;3772;;per square meter;BIOPOP April 2005;;3772;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum rivale;29366;actual measurement;218;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;218;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Geum rivale;29366;actual measurement;163.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;163.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum rivale;29366;actual measurement;254.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;254.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum rivale;29366;actual measurement;199.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;199.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum rivale;29366;actual measurement;229;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;249.9;;;229;100 < seednumber <= 1000;1;27.05239772;85.54719295;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Geum rivale;29366;actual measurement;231.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;231.7;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum rivale;29366;actual measurement;1729;;per square meter;BIOPOP April 2005;;1729;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum rivale;29366;actual measurement;2592;;per square meter;BIOPOP April 2005;;2592;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum rivale;29366;actual measurement;8395;;per square meter;BIOPOP April 2005;;8395;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Geum urbanum;30638;actual measurement;324.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;304.1;;;324.5;100 < seednumber <= 1000;1;27.50331293;86.97311206;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Geum urbanum;30638;actual measurement (following LEDA data standards);558;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1177.13;4050;336;558;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-06-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Geum urbanum;30638;actual measurement;38633.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38633.33333;;;;10,000 < seednumber <= 100,000;1;;21457.01129;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Geum urbanum;30638;actual measurement;172;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;172;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Gladiolus illyricus;36567;estimation;17;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;17;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean - 17 seeds/capsule;Stokes, J.(1987): The ecology of the wild gladiolus in the New Forest. MSc Thesis, University College, London. []; Glaucium corniculatum;25531;unknown;166;1;per single flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;166;400;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Glaucium flavum;25533;estimation;500;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;500;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Glaucium flavum;25533;laboratory/greenhouse/garden experiment;945;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1040.33;1927;196;945;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Glaux maritima;28861;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Glaux maritima;28861;estimation;178;;per square meter;BIOPOP April 2005;;;178;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Glaux maritima;28861;estimation;143.35;;per ramet/tussock or individual plant ;BIOPOP April 2005;;286.7;0;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Glaux maritima;28861;estimation;23135.84;;per square meter;BIOPOP April 2005;;23135.84;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Glaux maritima;28861;estimation;13606;;per square meter;BIOPOP April 2005;13606;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Glaux maritima;28861;actual measurement (following LEDA data standards);105;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;111.53;324;20;105;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Glechoma hederacea;24650;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Glechoma hederacea;24650;estimation (following LEDA data standards);50;1;per multiple flower stem;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;50;;;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Glechoma hederacea;24650;actual measurement;115800.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;115800.5;;;;seednumber > 100,000;1;;133316.9081;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Globularia punctata;25198;actual measurement (following LEDA data standards);136;5;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;126.8;147;83;136;100 < seednumber <= 1000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Glyceria declinata;42323;actual measurement;100;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;100;;;;10 < seednumber <= 100;1;;;counting ;;1998-08-13 00:00:00.0;;;UNITED KINGDOM Glyceria declinata;42323;laboratory/greenhouse/garden experiment;30;2;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);30;32;28;30;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Glyceria fluitans;40814;actual measurement;59211.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;59211.25;;;;10,000 < seednumber <= 100,000;1;;59745.58737;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Glyceria fluitans;40814;actual measurement;79.4;;per multiple flower stem;BIOPOP April 2005;79.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Glyceria fluitans;40814;actual measurement;50;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;60;40;;10 < seednumber <= 100;1;;;counting ;;1999-09-09 00:00:00.0;;;UNITED KINGDOM Glyceria fluitans;40814;actual measurement;2054;;per square meter;BIOPOP April 2005;;2054;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Glyceria fluitans;40814;laboratory/greenhouse/garden experiment;11;2;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);11;12;10;11;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Glyceria maxima;40135;actual measurement;214217;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;214217;;;;seednumber > 100,000;1;;261347.6605;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Glyceria plicata;40816;actual measurement;275;140;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;500;50;;100 < seednumber <= 1000;1;;;counting ;;1998-07-07 00:00:00.0;;;UNITED KINGDOM Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);1153.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1194.67;2286;155;1153.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-09-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);243;8;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;256.13;494;77;243;100 < seednumber <= 1000;;;;counting ;;2000-08-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Goodyera repens;39636;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Goodyera repens;39636;estimation;4000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4000;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Goodyera repens;39636;estimation;150000;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;150000;;;;seednumber > 100,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 150000;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Goodyera repens;39636;categorized from original source;25500;1;per ramet/tussock or individual plant ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];25500;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;from literature: Tournay, 1960, no mean!;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Groenlandia densa;43982;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Gymnadenia conopsea;39638;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Gymnadenia conopsea;39638;estimation;3960;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3960;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Gymnadenia conopsea;39638;actual measurement;2131361;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2131361;;;;seednumber > 100,000;1;;961485.5748;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Gymnadenia conopsea;39638;actual measurement;31699;159;per ramet/tussock or individual plant ;BIOPOP April 2005;31699;40508;22890;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Gypsophila muralis;16075;estimation (following LEDA data standards);550;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;800;300;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Gypsophila muralis;16075;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Gypsophila muralis;16075;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Gypsophila muralis;16075;estimation (following LEDA data standards);550;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;800;300;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Gypsophila perfoliata;16510;actual measurement (following LEDA data standards);3872.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4732;8359;2710;3872.5;1000 < seednumber <= 10,000;;;;counting ;;2004-08-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Gypsophila repens;17131;actual measurement (following LEDA data standards);34;7;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36.57;56;21;34;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Halimione pedunculata;17799;actual measurement (following LEDA data standards);23;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);80;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;80;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);93;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;93;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);10;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10;;;;seednumber <= 10;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);55;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;55;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);19;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);22;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);41;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;41;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);79;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;79;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);21;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);78;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;78;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione pedunculata;17799;actual measurement (following LEDA data standards);24;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24;;;;10 < seednumber <= 100;;;;counting ;;2004-10-01 00:00:00.0;;;NETHERLANDS Halimione portulacoides;17931;actual measurement (following LEDA data standards);101;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;101;149;53;101;100 < seednumber <= 1000;;;;counting ;;2003-09-27 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Halimione portulacoides;17931;actual measurement (following LEDA data standards);47;11;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;61.18;138;27;47;10 < seednumber <= 100;;;;counting ;;2004-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Halimione portulacoides;17931;actual measurement;155;;per ramet/tussock or individual plant ;BIOPOP April 2005;155;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Strutz-Fischer, H. (1990): Zur Populationsbiologie von Halimione portulacoides.; Halimione portulacoides;17931;observation (like obvious taxonomical traits);300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Strutz-Fischer, H. (1990): Zur Populationsbiologie von Halimione portulacoides.; Hedera helix;2449;actual measurement;5344;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5344;;;;1000 < seednumber <= 10,000;1;;7202.652845;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hedera helix;2449;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Helianthemum nummularium;18594;actual measurement;243;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;243;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Helianthemum nummularium;18594;unknown;180;;per square meter;BIOPOP April 2005;180;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Helianthemum nummularium;18594;actual measurement;15;11;per single flower inflorescence ;BIOPOP April 2005;15;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Helianthemum nummularium;18594;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Helianthemum nummularium s. glabrum;18610;actual measurement;156963;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;156963;;;;seednumber > 100,000;1;;6046.495431;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Helianthemum nummularium s. nummularium;18632;actual measurement (following LEDA data standards);113;14;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;106.21;162;65;113;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-20 00:00:00.0;preaggregated value obtained from single record;;FRANCE Helianthemum nummularium s. nummularium;18632;actual measurement (following LEDA data standards);38;11;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36.36;74;12;38;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Helianthus annuus;7986;actual measurement (following LEDA data standards);500;6;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;575;1200;300;500;100 < seednumber <= 1000;;;;counting ;;2005-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Helianthus tuberosus;7788;unknown;121;;per ramet/tussock or individual plant ;BIOPOP April 2005;;163;79;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: riverbank biotypes;Swanton, C. J.(1992): The biology of Canadian weeds. 101. Helianthus tuberosus L.; Helianthus tuberosus;7788;unknown;100.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;;154;47;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: weed biotypes;Swanton, C. J.(1992): The biology of Canadian weeds. 101. Helianthus tuberosus L.; Helianthus tuberosus;7788;unknown;12.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;;24;.4;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: cultivated biotypes;Swanton, C. J.(1992): The biology of Canadian weeds. 101. Helianthus tuberosus L.; Helichrysum arenarium;7066;actual measurement (following LEDA data standards);1613;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2099.1;3689;1089;1613;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-10 00:00:00.0;preaggregated value obtained from single record;;DENMARK Helichrysum arenarium;7066;actual measurement (following LEDA data standards);551;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;727.4;1641;247;551;100 < seednumber <= 1000;;;;counting ;;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Helleborus foetidus;27081;actual measurement;480;8;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;640;320;;100 < seednumber <= 1000;1;;;counting ;;1999-05-14 00:00:00.0;;;UNITED KINGDOM Helleborus foetidus;27081;actual measurement;750;15;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;900;600;;100 < seednumber <= 1000;1;;;counting ;;1997-06-30 00:00:00.0;;;UNITED KINGDOM Helleborus foetidus;27081;actual measurement (following LEDA data standards);332;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;324.33;473;168;332;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-06-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Helleborus foetidus;27081;estimation;1984;16;per ramet/tussock or individual plant ;BIOPOP April 2005;1984;2296;1672;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Helleborus viridis;27076;estimation;191;25;per ramet/tussock or individual plant ;BIOPOP April 2005;191;239;143;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Helleborus viridis;27076;actual measurement;42;5;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;48;36;;10 < seednumber <= 100;1;;;counting ;;1998-06-25 00:00:00.0;;;UNITED KINGDOM Helleborus viridis;27076;estimation;200;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;200;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 200;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hepatica nobilis;26984;actual measurement;20533.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20533.33333;;;;10,000 < seednumber <= 100,000;1;;11657.3296;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hepatica nobilis;26984;actual measurement;920;;per square meter;BIOPOP April 2005;;920;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;actual measurement;170;;per square meter;BIOPOP April 2005;;170;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;actual measurement;3612;;per square meter;BIOPOP April 2005;;3612;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;actual measurement;224;;per square meter;BIOPOP April 2005;;384;64;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;laboratory/greenhouse/garden experiment;71;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;102.5;288;12;71;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-05-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hepatica nobilis;26984;actual measurement;46.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;46.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;actual measurement;63.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;63.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;actual measurement;20.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;20.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;actual measurement;51.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;51.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;actual measurement;40.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;40.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hepatica nobilis;26984;actual measurement;455;;per square meter;BIOPOP April 2005;;455;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Heracleum mantegazzianum;1295;unknown;15000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;29000;1000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Tiley, G. E. D.(1996): Biological flora of the British Isles: Heracleum mantegazzianum Sommier & Levier. [84]; Heracleum mantegazzianum;1295;unknown;100000;;per ramet/tussock or individual plant ;BIOPOP April 2005;100000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Tiley, G. E. D.(1996): Biological flora of the British Isles: Heracleum mantegazzianum Sommier & Levier. [84]; Heracleum mantegazzianum;1295;unknown;20000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;20000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Tiley, G. E. D.(1996): Biological flora of the British Isles: Heracleum mantegazzianum Sommier & Levier. [84]; Heracleum mantegazzianum;1295;unknown;27000;;per ramet/tussock or individual plant ;BIOPOP April 2005;27000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Tiley, G. E. D.(1996): Biological flora of the British Isles: Heracleum mantegazzianum Sommier & Levier. [84]; Heracleum mantegazzianum;1295;unknown;16500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;18000;15000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Tiley, G. E. D.(1996): Biological flora of the British Isles: Heracleum mantegazzianum Sommier & Levier. [84]; Heracleum mantegazzianum;1295;unknown;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;5000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Tiley, G. E. D.(1996): Biological flora of the British Isles: Heracleum mantegazzianum Sommier & Levier. [84]; Heracleum mantegazzianum;1295;actual measurement;37679.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37679.5;;;;10,000 < seednumber <= 100,000;1;;19482.91603;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Heracleum sphondylium;1232;estimation (following LEDA data standards);6500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;8000;5000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Heracleum sphondylium;1232;unknown;10005;;per ramet/tussock or individual plant ;BIOPOP April 2005;;20000;10;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Sheppard, A. W. (1991): Biological flora of the British Isles: Heracleum sphondylium L.; Heracleum sphondylium;1232;unknown;850;;per ramet/tussock or individual plant ;BIOPOP April 2005;850;5000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Sheppard, A. W. (1991): Biological flora of the British Isles: Heracleum sphondylium L.; Heracleum sphondylium;1232;actual measurement;120128.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;120128.25;;;;seednumber > 100,000;1;;118761.383;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Heracleum sphondylium;1232;actual measurement;5800;12;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;5800;;;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-04 00:00:00.0;;;UNITED KINGDOM Heracleum sphondylium;1232;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Heracleum sphondylium;1232;estimation;2925;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;;5000;850;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 850, maximum 5000;Sheppard, A. W. (1991): Biological flora of the British Isles: Heracleum sphondylium L.; Herniaria glabra;16521;actual measurement;1428446;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1428446;;;;seednumber > 100,000;1;;990412.3409;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Herniaria glabra;16521;estimation (following LEDA data standards);1000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;1000;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Herniaria glabra;16521;actual measurement (following LEDA data standards);1009.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;927;1381;111;1009.5;1000 < seednumber <= 10,000;;;;counting ;;2003-08-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Herniaria glabra;16521;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Gaffney, J. E. (unknown e-mail address); Herniaria hirsuta;17001;laboratory/greenhouse/garden experiment;990;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4224;19800;396;990;100 < seednumber <= 1000;;;;counting ;;2004-10-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hibiscus trionum;25723;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Hibiscus trionum;25723;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;150;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);68.5;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;66.4;76;54;68.5;10 < seednumber <= 100;;;;counting ;;2004-07-29 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);1170;5;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1194.4;1782;640;1170;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);512.5;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;554.3;976;171;512.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hieracium caespitosum;8116;actual measurement (following LEDA data standards);612;7;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;786.86;1428;442;612;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hieracium echioides;6543;actual measurement (following LEDA data standards);225;12;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;477.08;1739;115;225;100 < seednumber <= 1000;;;;counting ;;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hieracium flagellare;7042;actual measurement;201;14;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;268;134;;100 < seednumber <= 1000;1;;;counting ;;1998-07-13 00:00:00.0;;;UNITED KINGDOM Hieracium lactucella;7271;actual measurement;13;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];13;;;;10 < seednumber <= 100;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Hieracium lactucella;7271;actual measurement (following LEDA data standards);324;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;338;651;62;324;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-06-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hieracium laevigatum;44220;actual measurement;49200;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;49200;;;;10,000 < seednumber <= 100,000;1;;23658.40231;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hieracium laevigatum;44220;actual measurement (following LEDA data standards);133.5;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;171.4;424;36;133.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-30 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hieracium maculatum;16770;actual measurement;150;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;150;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-08 00:00:00.0;;;UNITED KINGDOM Hieracium murorum;14443;actual measurement;59586.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;59586.66667;;;;10,000 < seednumber <= 100,000;1;;16427.31059;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hieracium pilosella;6658;laboratory/greenhouse/garden experiment;30.6;30;per ramet/tussock or individual plant ;BIOPOP April 2005;30.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 5;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Hieracium pilosella;6658;unknown;13000;;per square meter;BIOPOP April 2005;13000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: ungrazed;Bishop, G. F. (1994): Biological flora of the British Isles: Hieracium pilosella.; Hieracium pilosella;6658;unknown;500;;per square meter;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: moderately grazed;Bishop, G. F. (1994): Biological flora of the British Isles: Hieracium pilosella.; Hieracium pilosella;6658;unknown;68500;;per square meter;BIOPOP April 2005;;134000;3000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Bishop, G. F. (1994): Biological flora of the British Isles: Hieracium pilosella.; Hieracium pilosella;6658;laboratory/greenhouse/garden experiment;60.2;30;per ramet/tussock or individual plant ;BIOPOP April 2005;60.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 1;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Hieracium pilosella;6658;laboratory/greenhouse/garden experiment;36.4;30;per ramet/tussock or individual plant ;BIOPOP April 2005;36.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 4;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Hieracium pilosella;6658;laboratory/greenhouse/garden experiment;21;30;per ramet/tussock or individual plant ;BIOPOP April 2005;21;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 2;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Hieracium pilosella;6658;laboratory/greenhouse/garden experiment;66.4;30;per ramet/tussock or individual plant ;BIOPOP April 2005;66.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: trial 3;Jackel, A.-K. (1999): Strategien der Pflanzenarten einer fragmentierten Trockenrasengesellschaft.;GERMANY Hieracium pilosella;6658;actual measurement;75;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;75;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Hieracium pilosella;6658;actual measurement (following LEDA data standards);88;15;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;90.33;124;63;88;10 < seednumber <= 100;;;;counting ;;2000-06-27 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hieracium pilosella;6658;actual measurement (following LEDA data standards);55.5;2;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;55.5;74;37;55.5;10 < seednumber <= 100;;;;counting ;;2003-08-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hieracium prenanthoides;44002;actual measurement;450;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;450;;;;100 < seednumber <= 1000;1;;;counting ;;1999-08-24 00:00:00.0;;;UNITED KINGDOM Hieracium sabaudum;44218;actual measurement;99292;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;99292;;;;10,000 < seednumber <= 100,000;1;;75786.19568;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hieracium umbellatum;7093;actual measurement (following LEDA data standards);48;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;50.6;81;43;48;10 < seednumber <= 100;;;;counting ;;2003-09-26 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Hieracium umbellatum;7093;actual measurement;104689.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;104689.6667;;;;seednumber > 100,000;1;;49769.631;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hieracium umbellatum;7093;actual measurement;0;;per ramet/tussock or individual plant ;BIOPOP April 2005;0;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hieracium umbellatum;7093;actual measurement;0;;per square meter;BIOPOP April 2005;;0;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hieracium umbellatum;7093;actual measurement;1652;;per ramet/tussock or individual plant ;BIOPOP April 2005;1652;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hieracium umbellatum;7093;actual measurement;835.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;835.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hieracium umbellatum;7093;actual measurement;8280;;per square meter;BIOPOP April 2005;;8280;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hieracium umbellatum;7093;actual measurement;18632;;per square meter;BIOPOP April 2005;;19924;17340;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hieracium vulgatum;17779;actual measurement (following LEDA data standards);533;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1045.07;3652;132;533;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hierochloe australis;42515;actual measurement;227.5;;per square meter;BIOPOP April 2005;;360;95;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hierochloe australis;42515;actual measurement;3.1;;per multiple flower inflorescence ;BIOPOP April 2005;3.1;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hierochloe hirta;42516;actual measurement (following LEDA data standards);159;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;151.2;192;90;159;100 < seednumber <= 1000;;;;counting ;;2004-06-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hierochloe odorata;42519;actual measurement;.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;.4;;;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 2% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Hierochloe odorata;42519;actual measurement (following LEDA data standards);43;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;48.36;65;33;43;10 < seednumber <= 100;;;;counting ;;2004-06-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Himantoglossum hircinum;39644;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Summerhayes, V. S.(1968): Wild Orchids of Britain, 2nd edition, Collins, London. []; Himantoglossum hircinum;39644;unknown;28800;1;per ramet/tussock or individual plant ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];28800;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;Ziegenspeck, 1936, N unknown;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Hippocrepis comosa;21868;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Hippocrepis comosa;21868;unknown;462;;per square meter;BIOPOP April 2005;462;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Hippocrepis comosa;21868;unknown;68;;per square meter;BIOPOP April 2005;68;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Hippocrepis comosa;21868;actual measurement;120;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;120;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-12 00:00:00.0;;;UNITED KINGDOM Hippophae rhamnoides;19002;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Hippuris vulgaris;24425;actual measurement;350;300;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;350;;;;100 < seednumber <= 1000;1;;;counting ;;1998-09-01 00:00:00.0;;;UNITED KINGDOM Hippuris vulgaris;24425;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Arber, A.(1920): Water Plants, Cambridge University Press, London []; Hirschfeldia incana;14011;actual measurement (following LEDA data standards);5581.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10906.4;37332;79;5581.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Holcus lanatus;42613;actual measurement;112.2;10;per multiple flower inflorescence ;BIOPOP April 2005;112.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Holcus lanatus;42613;unknown;1053;;per square meter;BIOPOP April 2005;1053;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Holcus lanatus;42613;unknown;177000;;per ramet/tussock or individual plant ;BIOPOP April 2005;177000;240000;2000;;seednumber > 100,000;;;;unknown;unknown;;;Thompson, J.D. (1988): The biology of Canadian weeds. 82. Holcus lanatus L.; Holcus lanatus;42613;unknown;19000;;per square meter;BIOPOP April 2005;;19000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Thompson, J.D. (1988): The biology of Canadian weeds. 82. Holcus lanatus L.; Holcus lanatus;42613;actual measurement;588827;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;588827;;;;seednumber > 100,000;1;;228330.7071;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Holcus mollis;42614;actual measurement;212472.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;212472.3333;;;;seednumber > 100,000;1;;307808.2801;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Holcus mollis;42614;actual measurement;97.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;98.8;;;97.5;10 < seednumber <= 100;1;11.19206068;35.39240345;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Holcus mollis;42614;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Holcus mollis;42614;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Holcus mollis;42614;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Holosteum umbellatum;17010;actual measurement (following LEDA data standards);944;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;975.86;1360;496;944;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-04-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Holosteum umbellatum;17010;actual measurement (following LEDA data standards);253;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;236.14;395;93;253;100 < seednumber <= 1000;;;;counting ;;2004-04-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Holosteum umbellatum;17010;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Holosteum umbellatum;17010;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Homogyne alpina;9177;actual measurement (following LEDA data standards);48.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;49.2;60;38;48.5;10 < seednumber <= 100;;;;counting ;;2004-06-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Homogyne alpina;9177;actual measurement (following LEDA data standards);46;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;46;54;35;46;10 < seednumber <= 100;;;;counting ;;2004-06-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Homogyne alpina;9177;actual measurement;6300;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6300;;;;1000 < seednumber <= 10,000;1;;1800;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Honkenya peploides;16523;actual measurement (following LEDA data standards);108.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;127.2;313;15;108.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hordelymus europaeus;42617;actual measurement (following LEDA data standards);31.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33.7;54;22;31.5;10 < seednumber <= 100;;;;counting ;;2003-06-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum distichon;43701;laboratory/greenhouse/garden experiment;44;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;48.67;67;35;44;10 < seednumber <= 100;;;;counting ;;2004-11-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum distichon;43701;laboratory/greenhouse/garden experiment;718;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;695.4;932;467;718;100 < seednumber <= 1000;;;;counting ;;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum jubatum;43702;actual measurement;28612;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28612;;;;10,000 < seednumber <= 100,000;1;;18240.93287;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hordeum marinum;43180;laboratory/greenhouse/garden experiment;917;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);916.8;1098;570;917;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum marinum;43180;laboratory/greenhouse/garden experiment;40;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37.6;68;14;40;10 < seednumber <= 100;;;;counting ;;2005-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum murinum;42447;laboratory/greenhouse/garden experiment;269;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);387.4;638;225;269;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum murinum;42447;actual measurement;52691.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;52691.75;;;;10,000 < seednumber <= 100,000;1;;8710.361966;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hordeum murinum;42447;laboratory/greenhouse/garden experiment;19.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20;27;14;19.5;10 < seednumber <= 100;;;;counting ;;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum murinum;42447;actual measurement (following LEDA data standards);16;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16;25;10;16;10 < seednumber <= 100;;;;counting ;;2004-08-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum murinum;42447;laboratory/greenhouse/garden experiment;23.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25.3;37;19;23.5;10 < seednumber <= 100;;;;counting ;;2004-07-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hordeum secalinum;43182;actual measurement (following LEDA data standards);17.5;6;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22.67;40;12;17.5;10 < seednumber <= 100;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;BELGIUM Hordeum vulgare;42448;laboratory/greenhouse/garden experiment;231;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;240.33;432;58;231;100 < seednumber <= 1000;;;;counting ;;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hornungia petraea;14530;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Hornungia petraea;14530;estimation;1600;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1600;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hornungia petraea;14530;estimation;396;36;per ramet/tussock or individual plant ;BIOPOP April 2005;396;438;354;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hornungia petraea;14530;actual measurement;3400;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;3400;;;;1000 < seednumber <= 10,000;1;;;counting ;;1997-06-04 00:00:00.0;;;UNITED KINGDOM Hottonia palustris;28918;estimation;93;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;93;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Brock, T. C. M.(1989): no title given, publication in Aquatic Botany issue: 35 pages: 153-166 [35]; Humulus lupulus;14697;actual measurement (following LEDA data standards);23;3;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.67;31;17;23;10 < seednumber <= 100;;;;counting ;;2004-10-31 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Humulus lupulus;14697;actual measurement (following LEDA data standards);54.7;5;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51.94;100;12.7;54.7;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Huperzia selago;464;actual measurement (following LEDA data standards);35000;5;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;37600;70000;24000;35000;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Hyacinthoides non-scripta;38541;estimation;35;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;35;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Hyacinthoides non-scripta;38541;actual measurement;156;170;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;240;72;;100 < seednumber <= 1000;1;;;counting ;;1997-07-09 00:00:00.0;;;UNITED KINGDOM Hyacinthoides non-scripta;38541;estimation;50000;;per square meter;BIOPOP April 2005;;50000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hydrilla verticillata;36294;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Swarbrick, J. T.(1981): no title given, publication in Journal of the Australian Institute for Agricultural Science issue: 47 pages: 183-190 [47]; Hydrocharis morsus-ranae;36302;actual measurement (following LEDA data standards);0;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;0;0;0;0;seednumber <= 10;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hydrocotyle vulgaris;2206;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Hydrocotyle vulgaris;2206;actual measurement (following LEDA data standards);327.5;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;313;422;175;327.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hyoscyamus niger;34956;estimation;60000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;60000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hyoscyamus niger;34956;estimation;6278;458;per ramet/tussock or individual plant ;BIOPOP April 2005;6278;6800;5756;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hyoscyamus niger;34956;estimation (following LEDA data standards);12785;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;12785;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Hyoscyamus niger;34956;estimation (following LEDA data standards);8000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;8000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Hyoscyamus niger;34956;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: max >2000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Hyoscyamus niger;34956;estimation;513;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;513;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hyoscyamus niger;34956;actual measurement;388315.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;388315.6667;;;;seednumber > 100,000;1;;445773.6766;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hypericum androsaemum;23335;estimation;102567;26;per ramet/tussock or individual plant ;BIOPOP April 2005;102567;115248;89886;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum androsaemum;23335;estimation;1079;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1079;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum elodes;23279;estimation;209;;per single flower inflorescence ;BIOPOP April 2005;;228;190;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence General comment: 85 capsules;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum elodes;23279;actual measurement (following LEDA data standards);159;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;151;259;26;159;100 < seednumber <= 1000;;;;counting ;;2004-06-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hypericum elodes;23279;estimation;209;;per single flower inflorescence ;BIOPOP April 2005;209;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence General comment: 85 capsules;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum elodes;23279;estimation;75;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;75;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum hirsutum;23250;estimation;116;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;116;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum hirsutum;23250;actual measurement;25789;51;per ramet/tussock or individual plant ;BIOPOP April 2005;25789;28324;23254;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum humifusum;23252;estimation;6829;65;per ramet/tussock or individual plant ;BIOPOP April 2005;6829;7616;6042;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum humifusum;23252;laboratory/greenhouse/garden experiment;3528;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4161.6;7888;200;3528;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Hypericum humifusum;23252;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Hypericum humifusum;23252;estimation;99;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;99;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 99;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum humifusum;23252;estimation;181;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;181;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum maculatum;23226;actual measurement;5457;;per ramet/tussock or individual plant ;BIOPOP April 2005;5457;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypericum maculatum;23226;actual measurement;4050;;per square meter;BIOPOP April 2005;;4050;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypericum maculatum;23226;actual measurement;112480;;per square meter;BIOPOP April 2005;;112480;;;seednumber > 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypericum maculatum;23226;actual measurement;4160;;per ramet/tussock or individual plant ;BIOPOP April 2005;4160;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypericum maculatum;23226;actual measurement;10656;;per square meter;BIOPOP April 2005;;10656;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypericum maculatum;23226;actual measurement;9285;;per ramet/tussock or individual plant ;BIOPOP April 2005;9285;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypericum maculatum;23226;actual measurement;17280;;per square meter;BIOPOP April 2005;;17280;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypericum maculatum;23226;actual measurement;5457;;per ramet/tussock or individual plant ;BIOPOP April 2005;5457;10656;3552;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypericum maculatum;23226;actual measurement;943;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];943;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Hypericum maculatum;23226;actual measurement (following LEDA data standards);3125;10;per ramet/tussock or individual plant ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);3280;5600;1250;3125;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-09 00:00:00.0;preaggregated value obtained from single record;;NORWAY Hypericum maculatum;23226;actual measurement;1000;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;1000;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Hypericum montanum;23241;actual measurement;26424;9;per ramet/tussock or individual plant ;BIOPOP April 2005;26424;31583;21265;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum montanum;23241;actual measurement;1300;35;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2000;600;;1000 < seednumber <= 10,000;1;;;counting ;;1998-09-18 00:00:00.0;;;UNITED KINGDOM Hypericum montanum;23241;estimation;268;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;268;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum montanum;23241;actual measurement;3000;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;3000;;;;1000 < seednumber <= 10,000;1;;;counting ;;1998-10-07 00:00:00.0;;;UNITED KINGDOM Hypericum montanum;23241;actual measurement;6000;140;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;10680;1320;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-31 00:00:00.0;;;UNITED KINGDOM Hypericum perforatum;23212;estimation;30282;44;per ramet/tussock or individual plant ;BIOPOP April 2005;30282;33995;26569;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum perforatum;23212;unknown;15000;;per ramet/tussock or individual plant ;BIOPOP April 2005;15000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Crompton, C. W.(1988): The biology of Canadian weeds. 83. Hypericum perforatum.;UNITED STATES Hypericum perforatum;23212;unknown;33000;;per ramet/tussock or individual plant ;BIOPOP April 2005;33000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Crompton, C. W.(1988): The biology of Canadian weeds. 83. Hypericum perforatum.; Hypericum perforatum;23212;unknown;451;6;per single flower inflorescence ;BIOPOP April 2005;451;502;400;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per capsule;Crompton, C. W.(1988): The biology of Canadian weeds. 83. Hypericum perforatum.; Hypericum perforatum;23212;unknown;23350;;per ramet/tussock or individual plant ;BIOPOP April 2005;23350;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Crompton, C. W.(1988): The biology of Canadian weeds. 83. Hypericum perforatum.;UNITED STATES Hypericum perforatum;23212;actual measurement;3036;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3036;;;;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Hypericum perforatum;23212;actual measurement (following LEDA data standards);56;5;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;59.6;88;33;56;10 < seednumber <= 100;;;;counting ;;2000-08-17 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hypericum perforatum;23212;actual measurement;1282800;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1282800;;;;seednumber > 100,000;1;;948419.3201;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hypericum perforatum;23212;estimation;127;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;127;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum pulchrum;23219;estimation;110;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;110;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum pulchrum;23219;actual measurement;4449;84;per ramet/tussock or individual plant ;BIOPOP April 2005;4449;4967;3931;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum tetrapterum;23203;actual measurement;27962;33;per ramet/tussock or individual plant ;BIOPOP April 2005;27962;32578;23346;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypericum tetrapterum;23203;estimation;150;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;150;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 150;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum tetrapterum;23203;estimation;279;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;279;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypericum undulatum;23176;estimation;338;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;338;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Hypochaeris glabra;7007;actual measurement;87.5;180;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;105;70;;10 < seednumber <= 100;1;;;counting ;;1997-06-12 00:00:00.0;;;UNITED KINGDOM Hypochaeris glabra;7007;actual measurement;60;560;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;60;;;;10 < seednumber <= 100;1;;;counting ;;1997-06-17 00:00:00.0;;;UNITED KINGDOM Hypochaeris glabra;7007;actual measurement (following LEDA data standards);45.5;6;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;46.33;69;25;45.5;10 < seednumber <= 100;;;;counting ;;2000-08-04 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hypochaeris glabra;7007;estimation;50;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;50;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Hypochaeris glabra;7007;estimation;138;26;per ramet/tussock or individual plant ;BIOPOP April 2005;138;154;122;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypochaeris glabra;7007;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Hypochaeris glabra;7007;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Hypochaeris maculata;8386;actual measurement;135;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;135;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Hypochaeris maculata;8386;actual measurement;155.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;155.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypochaeris maculata;8386;actual measurement;315;;per square meter;BIOPOP April 2005;;465;165;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Hypochaeris maculata;8386;estimation;272;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;272;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Wells, T. C. E.(1976): no title given, publication in Journal of Ecology issue: 64 pages: 757-774 [64]; Hypochoeris radicata;6499;estimation;136;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;136;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Turkington, R.(1983): no title given, publication in Journal of Ecology issue: 71 pages: 999-1022 [71]; Hypochoeris radicata;6499;actual measurement;59746;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;59746;;;;10,000 < seednumber <= 100,000;1;;10864.51416;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Hypochoeris radicata;6499;estimation;85;;per multiple flower inflorescence ;BIOPOP April 2005;;92;78;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per capitulum General comment: in mid-May;Turkington, R. A. (1983): Biological flora of the British Isles: Hypochoeris radicata L.; Hypochoeris radicata;6499;estimation;143.5;;per multiple flower inflorescence ;BIOPOP April 2005;;150;137;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per capitulum General comment: in mid-June;Turkington, R. A. (1983): Biological flora of the British Isles: Hypochoeris radicata L.; Hypochoeris radicata;6499;estimation;970;;per ramet/tussock or individual plant ;BIOPOP April 2005;970;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Hypochoeris radicata;6499;unknown;2329;;per ramet/tussock or individual plant ;BIOPOP April 2005;2329;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: over a 27-day period;Aarssen, L.W. (1981): The biology of Canadian weeds. 50. Hypochoeris radicata L.;CANADA Hypochoeris radicata;6499;unknown;880;;per ramet/tussock or individual plant ;BIOPOP April 2005;880;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Aarssen, L.W. (1981): The biology of Canadian weeds. 50. Hypochoeris radicata L.; Hypochoeris radicata;6499;actual measurement (following LEDA data standards);82;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;90.43;126;68;82;10 < seednumber <= 100;;;;counting ;;2003-06-01 00:00:00.0;PREAGGREGATED! Raw record's comment: some immature;;GERMANY Hyssopus officinalis;24658;actual measurement (following LEDA data standards);90;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;94.5;130;60;90;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Hyssopus officinalis;24658;actual measurement (following LEDA data standards);400;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;404;600;240;400;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-19 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Iberis umbellata;14042;laboratory/greenhouse/garden experiment;532.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;555.9;1040;198;532.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ilex aquifolium;2439;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Ilex aquifolium;2439;unknown;120000;;per ramet/tussock or individual plant ;BIOPOP April 2005;120000;;;;seednumber > 100,000;;;;unknown;unknown;;;Peterken, G. F. (1967): Biological flora of the British Isles: Ilex aquifolium L. [55]; Illecebrum verticillatum;17139;actual measurement (following LEDA data standards);46;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;50.4;95;23;46;10 < seednumber <= 100;;;;counting ;;2004-08-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Illecebrum verticillatum;17139;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Stewart, A.[1st editor](1994): Scarce Plants in Britain 1994 Joint Nature Conservation Committee, Peterborough []; Illecebrum verticillatum;17139;actual measurement;45;300;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;50;40;;10 < seednumber <= 100;1;;;counting ;;1998-07-27 00:00:00.0;;;UNITED KINGDOM Impatiens capensis;11747;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Impatiens glandulifera;11749;actual measurement;7977.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7977.666667;;;;1000 < seednumber <= 10,000;1;;4836.041391;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Impatiens glandulifera;11749;estimation;16;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;16;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Beerling, D. J.(1993): no title given, publication in Journal of Ecology issue: 81 pages: 367-382 [81]; Impatiens noli-tangere;11751;actual measurement;8458.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8458.333333;;;;1000 < seednumber <= 10,000;1;;6452.147575;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Impatiens noli-tangere;11751;actual measurement;8;;per square meter;BIOPOP April 2005;;;8;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Impatiens noli-tangere;11751;actual measurement;7038;;per square meter;BIOPOP April 2005;;11628;2448;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Impatiens noli-tangere;11751;actual measurement;11.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;11.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Impatiens noli-tangere;11751;actual measurement;27;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26.6;;;27;10 < seednumber <= 100;1;1.910206504;6.040603355;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Impatiens noli-tangere;11751;actual measurement (following LEDA data standards);1.5;12;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.58;3;1;1.5;seednumber <= 10;;;;counting ;;2004-06-30 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Impatiens parviflora;11752;observation (like obvious taxonomical traits);1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;1000;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Trepl, C. (1984): Über Impatiens parviflora P.C. als Agriophyt in Mitteleuropa. Dissertationes Botanicae; Impatiens parviflora;11752;actual measurement (following LEDA data standards);10;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10.38;16;6;10;seednumber <= 10;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Impatiens parviflora;11752;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Impatiens parviflora;11752;actual measurement;28932.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28932.33333;;;;10,000 < seednumber <= 100,000;1;;18092.88635;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Impatiens parviflora;11752;unknown;5000.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;1;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Coombe, D. E. (1956): Biological flora of the British Isles: Impatiens parviflora DC. [44(2)]; Impatiens parviflora;11752;unknown;5002.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;5;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Coombe, D. E. (1956): Biological flora of the British Isles: Impatiens parviflora DC. [44(2)]; Impatiens parviflora;11752;actual measurement;20;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21;;;20;10 < seednumber <= 100;1;1.795054936;5.676462122;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Inula britannica;8741;actual measurement (following LEDA data standards);1620;15;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1775.33;4114;464;1620;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Inula britannica;8741;actual measurement (following LEDA data standards);932;3;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;950.67;1354;566;932;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Inula britannica;8741;actual measurement (following LEDA data standards);472.5;6;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;475.33;566;389;472.5;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Inula conyza;8404;estimation;90;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;90;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 90 achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Inula conyza;8404;estimation;160;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;160;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Inula conyza;8404;estimation;47010;10;per ramet/tussock or individual plant ;BIOPOP April 2005;47010;51791;42229;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Inula helenium;7875;actual measurement;17000;;per ramet/tussock or individual plant ;BIOPOP April 2005;17000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Iris pseudacorus;36664;estimation;60;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;60;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Iris pseudacorus;36664;actual measurement;32;45;per single flower inflorescence ;BIOPOP April 2005;32;33;31;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per capsule;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Iris pseudacorus;36664;actual measurement;7306.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7306.666667;;;;1000 < seednumber <= 10,000;1;;8224.51879;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Iris pumila;36669;actual measurement;6553.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6553.333333;;;;1000 < seednumber <= 10,000;1;;823.7313478;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Isatis tinctoria;14558;actual measurement (following LEDA data standards);5684.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6750.5;14892;825;5684.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-05-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Isatis tinctoria;14558;estimation;25500;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;50000;1000;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;number of fruits quite variable;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Isopyrum thalictroides;27101;actual measurement;13016.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13016.66667;;;;10,000 < seednumber <= 100,000;1;;2451.70009;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Iva xanthifolia;8135;laboratory/greenhouse/garden experiment;7589.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9299.8;28289;2590;7589.5;1000 < seednumber <= 10,000;;;;counting ;;2004-10-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Iva xanthifolia;8135;actual measurement;310131;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;310131;;;;seednumber > 100,000;1;;231863.9567;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Jasione montana;14880;actual measurement;4017000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4017000;;;;seednumber > 100,000;1;;2177816.108;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Jasione montana;14880;estimation;23;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;23;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Parnell, J. A. N.(1985): no title given, publication in Journal of Ecology issue: 73 pages: 341-358 [73]; Jasione montana;14880;actual measurement;11200;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;16000;6400;;10,000 < seednumber <= 100,000;1;;;counting ;;1998-07-08 00:00:00.0;;;UNITED KINGDOM Juncus acutiflorus;35974;actual measurement (following LEDA data standards);496;3;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;559;746;435;496;100 < seednumber <= 1000;;;;counting ;;2003-09-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus alpinus s. alpinus;35907;actual measurement (following LEDA data standards);1259;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1431.1;2557;756;1259;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-06 00:00:00.0;preaggregated value obtained from single record;;FRANCE Juncus alpinus s. alpinus;35907;actual measurement (following LEDA data standards);525;10;per ramet/tussock or individual plant ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);812.8;2268;300;525;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-09 00:00:00.0;preaggregated value obtained from single record;;NORWAY Juncus anceps;35959;actual measurement (following LEDA data standards);3975;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4440;7750;2850;3975;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus articulatus;35965;actual measurement;1212964.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1212964.75;;;;seednumber > 100,000;1;;936746.7227;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Juncus balticus;35943;actual measurement;99;26;per multiple flower inflorescence ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;99;;;;10 < seednumber <= 100;1;;;counting ;;1997-09-02 00:00:00.0;;;UNITED KINGDOM Juncus balticus;35943;actual measurement;868;10;per multiple flower inflorescence ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;868;;;;100 < seednumber <= 1000;1;;;counting ;;1997-09-09 00:00:00.0;;;UNITED KINGDOM Juncus biglumis;35947;actual measurement;71.8;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;71.8;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;1931-08-01 00:00:00.0;as a rule two fruits per single shoot;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus biglumis;35947;actual measurement;68;51;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;68;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-12 00:00:00.0;;;UNITED KINGDOM Juncus biglumis;35947;actual measurement;35.9;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;35.9;43;30;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus bufonius;36128;estimation;50000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;50000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Juncus bufonius;36128;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;100;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Juncus bufonius;36128;actual measurement;106.5;4;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];106.5;120;97;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Juncus bufonius;36128;actual measurement;5476147.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5476147.75;;;;seednumber > 100,000;1;;4465799.742;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Juncus bufonius;36128;estimation;34000;;per ramet/tussock or individual plant ;BIOPOP April 2005;34000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Juncus bufonius;36128;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Juncus bulbosus;36026;actual measurement (following LEDA data standards);7515;7;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8426.57;20231;1226;7515;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus castaneus;35925;actual measurement;124.8;18;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;124.8;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-19 00:00:00.0;;;UNITED KINGDOM Juncus castaneus;35925;actual measurement;243.2;18;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;243.2;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-30 00:00:00.0;;;UNITED KINGDOM Juncus compressus;36003;estimation;126;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;126;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 126;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Juncus compressus;36003;estimation;168;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;168;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Juncus compressus;36003;estimation;3927;;per multiple flower stem;BIOPOP April 2005;3927;4624;3230;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: per inflorescence;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Juncus conglomeratus;36007;actual measurement;4213583.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4213583.333;;;;seednumber > 100,000;1;;2168316.892;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Juncus conglomeratus;36007;actual measurement;615600;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;673056;558144;;seednumber > 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Juncus conglomeratus;36007;actual measurement;16416;5;per multiple flower stem;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];16416;20460;15264;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Juncus conglomeratus;36007;actual measurement;114.6;5;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];114.6;124;106;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Juncus conglomeratus;36007;estimation (following LEDA data standards);4500;1;per multiple flower stem;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Juncus effusus;36014;actual measurement;211694.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;204074.1;;;211694.5;seednumber > 100,000;1;23294.62281;73664.06531;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Juncus effusus;36014;actual measurement;10319711.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10319711.75;;;;seednumber > 100,000;1;;9466031.253;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Juncus effusus;36014;estimation (following LEDA data standards);6000;1;per multiple flower stem;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Juncus filiformis;36023;actual measurement;735;10;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];735;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Juncus filiformis;36023;actual measurement;105;1;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];105;;;;100 < seednumber <= 1000;1;;;counting ;unknown;;N unknown;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Juncus filiformis;36023;actual measurement (following LEDA data standards);461.5;12;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;522.75;1017;302;461.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-15 00:00:00.0;preaggregated value obtained from single record;;FINLAND Juncus filiformis;36023;estimation;125;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;125;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 125;Richards, P. W.(1943): no title given, publication in Journal of Ecology issue: 31 pages: 60-65 [31]; Juncus filiformis;36023;estimation;165;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;165;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Richards, P. W.(1943): no title given, publication in Journal of Ecology issue: 31 pages: 60-65 [31]; Juncus gerardi;36081;actual measurement (following LEDA data standards);47.5;10;per ramet/tussock or individual plant ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);72.9;189;24;47.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-09-24 00:00:00.0;preaggregated value obtained from single record;;NORWAY Juncus gerardi;36081;actual measurement (following LEDA data standards);1501;15;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1623.2;3215;947;1501;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus gerardi;36081;actual measurement (following LEDA data standards);900;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1061.93;2665;418;900;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Juncus gerardi;36081;actual measurement (following LEDA data standards);1820;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1820;1820;1820;1820;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus inflexus;36061;estimation;98;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;98;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Juncus maritimus;36160;actual measurement (following LEDA data standards);6960;9;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8282.22;12846;4356;6960;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus sphaerocarpus;36141;laboratory/greenhouse/garden experiment;12584;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13348.67;21510;5952;12584;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-10-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus squarrosus;36142;actual measurement;1955881.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1955881.333;;;;seednumber > 100,000;1;;1566572.208;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Juncus squarrosus;36142;estimation;80;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;80;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Welch, D.(1966): no title given, publication in Journal of Ecology issue: 54 pages: 535-548 [54]; Juncus squarrosus;36142;actual measurement (following LEDA data standards);11070;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11070;11070;11070;11070;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus subnodulosus;36148;actual measurement;385;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;420;350;;100 < seednumber <= 1000;1;;;counting ;;1999-08-23 00:00:00.0;;;UNITED KINGDOM Juncus tenageia;36111;actual measurement (following LEDA data standards);107;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;119.11;217;33;107;100 < seednumber <= 1000;;;;counting ;single flower inflorescence ;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Juncus tenuis;36112;actual measurement;5538677.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5538677.333;;;;seednumber > 100,000;1;;4089049.872;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Juncus tenuis;36112;estimation;400;1;per multiple flower stem;ECOFLORA - database of the ecological flora of the british isles;;400;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Juncus trifidus;36209;actual measurement (following LEDA data standards);13;4;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;15.5;25;11;13;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Juncus trifidus;36209;actual measurement;24.8;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;24.8;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;1929-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement;15.1;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;15.1;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement;15.4;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;15.4;21;12;;10 < seednumber <= 100;1;;;counting ;unknown;1929-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement;11.3;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;11.3;19;6;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement;12;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;12;19;7;;10 < seednumber <= 100;1;;;counting ;;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement;13.8;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;13.8;20;5;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement;10.8;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;10.8;15;8;;10 < seednumber <= 100;1;;;counting ;unknown;1929-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement;18.6;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;18.6;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement;11.3;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;11.3;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juncus trifidus;36209;actual measurement (following LEDA data standards);5;4;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;6;11;3;5;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Juncus trifidus;36209;actual measurement;36.9;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;36.9;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;1929-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Juniperus communis;741;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;1;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): 1-3 is usual, source no. 944;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Juniperus communis;741;actual measurement;37500;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;50000;25000;;10,000 < seednumber <= 100,000;1;;;counting ;;1998-09-18 00:00:00.0;;;UNITED KINGDOM Kerria japonica;30016;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Kickxia elatine;33123;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Kickxia elatine;33123;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Kickxia elatine;33123;estimation;1798;83;per ramet/tussock or individual plant ;BIOPOP April 2005;1798;2050;1546;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Kickxia elatine;33123;estimation;27;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;27;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Kickxia spuria;33129;estimation;38;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;38;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Kickxia spuria;33129;estimation;2282;82;per ramet/tussock or individual plant ;BIOPOP April 2005;2282;2725;1839;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Kickxia spuria;33129;actual measurement;1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;1500;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Kickxia spuria;33129;actual measurement;2700;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2700;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Knautia arvensis;19058;actual measurement;192;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;192;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Knautia arvensis;19058;actual measurement;25239;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25239;;;;10,000 < seednumber <= 100,000;1;;12382.66331;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Knautia arvensis;19058;estimation (following LEDA data standards);2000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;2000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Knautia arvensis;19058;actual measurement;58.7;10;per multiple flower inflorescence ;BIOPOP April 2005;58.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Knautia arvensis;19058;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Knautia arvensis;19058;actual measurement;1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;1500;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Knautia arvensis;19058;unknown;71;;per square meter;BIOPOP April 2005;71;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Knautia arvensis;19058;actual measurement;225;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;228;204;225;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Knautia arvensis;19058;actual measurement;1312.5;;per square meter;BIOPOP April 2005;;1855;770;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Knautia arvensis;19058;actual measurement;118.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;118.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Knautia arvensis;19058;actual measurement;3240;;per square meter;BIOPOP April 2005;;3240;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Knautia arvensis;19058;actual measurement;98.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;98.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Knautia arvensis;19058;actual measurement;68.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;68.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Knautia arvensis;19058;estimation (following LEDA data standards);2000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Knautia arvensis;19058;actual measurement;66;;per ramet/tussock or individual plant ;BIOPOP April 2005;66;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Knautia arvensis;19058;actual measurement;550;;per square meter;BIOPOP April 2005;;550;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Knautia arvensis;19058;actual measurement;193.5;;per square meter;BIOPOP April 2005;;288;99;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Knautia dipsacifolia;19339;actual measurement (following LEDA data standards);108;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;147.4;322;48;108;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Knautia maxima;59877;actual measurement;75965.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;75965.33333;;;;10,000 < seednumber <= 100,000;1;;114662.8254;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Kobresia simpliciuscula;37154;actual measurement;12;60;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;12;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-13 00:00:00.0;;;UNITED KINGDOM Koeleria glauca;43022;actual measurement (following LEDA data standards);237.5;12;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;236.42;380;109;237.5;100 < seednumber <= 1000;;;;counting ;;2004-06-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Koeleria glauca;43022;actual measurement (following LEDA data standards);269.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;277.2;429;181;269.5;100 < seednumber <= 1000;;;;counting ;;2004-07-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Koeleria macrantha;42831;actual measurement;49580;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;49580;;;;10,000 < seednumber <= 100,000;1;;4644.265281;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Koeleria pyramidata;42453;actual measurement;224555.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;224555.6667;;;;seednumber > 100,000;1;;249932.7015;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Koeleria pyramidata;42453;actual measurement (following LEDA data standards);209.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;203.2;302;118;209.5;100 < seednumber <= 1000;;;;counting ;;2003-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Koenigia islandica;27709;actual measurement;17;110;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;30;4;;10 < seednumber <= 100;1;;;counting ;;1998-09-05 00:00:00.0;;;UNITED KINGDOM Laburnum anagyroides;20994;actual measurement (following LEDA data standards);11.5;4;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;29.5;92;3;11.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lactuca serriola;6360;actual measurement;182712.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;182712.6667;;;;seednumber > 100,000;1;;79103.8917;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lactuca virosa;7940;laboratory/greenhouse/garden experiment;1877;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1877;1877;1877;1877;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lactuca virosa;7940;estimation;19;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;19;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/head;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Lactuca virosa;7940;actual measurement (following LEDA data standards);2830;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3116.78;6570;950;2830;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lagarosiphon major;36304;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Lamiastrum galeobdolon;24666;actual measurement;37600;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37600;;;;10,000 < seednumber <= 100,000;1;;35624.71053;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lamiastrum galeobdolon;24666;actual measurement;5628;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5628;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Lamiastrum galeobdolon;24666;estimation;797;;per ramet/tussock or individual plant ;BIOPOP April 2005;797;958;636;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Lamiastrum galeobdolon;24666;laboratory/greenhouse/garden experiment;12;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11.22;17;4;12;10 < seednumber <= 100;;;;counting ;;2004-06-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lamiastrum galeobdolon;24666;actual measurement;51;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;54;;;51;10 < seednumber <= 100;1;3.898717738;12.32882801;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Lamiastrum galeobdolon s. argentatum;59328;actual measurement;52;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;52;;;;10 < seednumber <= 100;1;;;counting ;;1998-06-11 00:00:00.0;;;UNITED KINGDOM Lamiastrum galeobdolon s. argentatum;59328;actual measurement;84;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;112;56;;10 < seednumber <= 100;1;;;counting ;;1999-06-16 00:00:00.0;;;UNITED KINGDOM Lamium album;24182;actual measurement (following LEDA data standards);87.5;4;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;72.75;115;1;87.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lamium album;24182;actual measurement;53106.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;53106.75;;;;10,000 < seednumber <= 100,000;1;;34225.73139;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lamium album;24182;actual measurement;264;75;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;288;240;;100 < seednumber <= 1000;1;;;counting ;;1998-10-11 00:00:00.0;;;UNITED KINGDOM Lamium album;24182;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Lamium album;24182;estimation (following LEDA data standards);140;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;140;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lamium album;24182;actual measurement (following LEDA data standards);17;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19.82;34;8;17;10 < seednumber <= 100;;;;counting ;;2004-09-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lamium amplexicaule;23573;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lamium amplexicaule;23573;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;200;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lamium amplexicaule;23573;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lamium amplexicaule;23573;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant General comment: max >2000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lamium amplexicaule;23573;actual measurement;75435;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;75435;;;;10,000 < seednumber <= 100,000;1;;76315.16019;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lamium amplexicaule;23573;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;200;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Lamium amplexicaule;23573;actual measurement;170;90;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;200;140;;100 < seednumber <= 1000;1;;;counting ;;1999-05-10 00:00:00.0;;;UNITED KINGDOM Lamium maculatum;24189;actual measurement (following LEDA data standards);597;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;597;597;597;597;100 < seednumber <= 1000;;;;counting ;;2005-05-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lamium maculatum;24189;actual measurement;100012;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;100012;;;;seednumber > 100,000;1;;86231.6162;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lamium purpureum;25103;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lamium purpureum;25103;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lamium purpureum;25103;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Lamium purpureum;25103;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;200;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lamium purpureum;25103;actual measurement;26835.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26835.33333;;;;10,000 < seednumber <= 100,000;1;;11960.0228;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lamium purpureum;25103;unknown;180;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;300;60;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Lamium purpureum;25103;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;200;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Lappula deflexa;12048;laboratory/greenhouse/garden experiment;494;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;950.7;3594;345;494;100 < seednumber <= 1000;;;;counting ;;2004-10-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lappula squarrosa;12063;laboratory/greenhouse/garden experiment;344;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;457.6;1260;160;344;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lapsana communis;6629;actual measurement;203;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;203;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Lapsana communis;6629;actual measurement;459;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;515.7;;;459;100 < seednumber <= 1000;1;94.85908262;299.9707578;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Lapsana communis;6629;estimation;930;122;per ramet/tussock or individual plant ;BIOPOP April 2005;930;1015;845;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Lapsana communis;6629;estimation;21;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;21;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Lapsana communis;6629;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lapsana communis;6629;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lapsana communis;6629;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lapsana communis;6629;actual measurement;833;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];833;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Lapsana communis;6629;estimation (following LEDA data standards);650;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;700;600;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Lapsana communis;6629;actual measurement;204931.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;204931.25;;;;seednumber > 100,000;1;;257958.7388;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lapsana communis;6629;estimation (following LEDA data standards);650;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;650;40650;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Larix decidua;653;unknown;94400;1;per ramet/tussock or individual plant ;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];94400;;;;10,000 < seednumber <= 100,000;1;;;total weight;unknown;;N unknown, seedweight from BIOLFLOR;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];GERMANY Lathraea squamaria;34252;actual measurement;675059.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;675059.5;;;;seednumber > 100,000;1;;348905.9108;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lathraea squamaria;34252;estimation;110;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;110;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Lathraea squamaria;34252;actual measurement;7756;6;per ramet/tussock or individual plant ;BIOPOP April 2005;7756;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Lathraea squamaria;34252;estimation;16700;;per ramet/tussock or individual plant ;BIOPOP April 2005;;16700;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Lathyrus aphaca;21294;estimation;7;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;7;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Lathyrus aphaca;21294;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lathyrus aphaca;21294;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lathyrus japonicus;21925;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Brightmore, D.(1963): no title given, publication in Journal of Ecology issue: 51 pages: 795-801 [51]; Lathyrus japonicus;21925;actual measurement (following LEDA data standards);41;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;42.4;60;30;41;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2003-09-26 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Lathyrus latifolius;21002;actual measurement (following LEDA data standards);5;4;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6;10;4;5;seednumber <= 10;;;;counting ;;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lathyrus latifolius;21002;actual measurement (following LEDA data standards);15;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.8;20;10;15;10 < seednumber <= 100;;;;counting ;;2005-08-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lathyrus latifolius;21002;actual measurement (following LEDA data standards);44;1;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44;44;44;44;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lathyrus montanus;20503;actual measurement;6.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;6.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus montanus;20503;actual measurement;.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;.8;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus montanus;20503;actual measurement;5;;per ramet/tussock or individual plant ;BIOPOP April 2005;5;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus montanus;20503;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Lathyrus montanus;20503;actual measurement;25.5;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;42;9;;10 < seednumber <= 100;1;;;counting ;;1999-08-17 00:00:00.0;;;UNITED KINGDOM Lathyrus montanus;20503;actual measurement;90;;per square meter;BIOPOP April 2005;;90;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus montanus;20503;actual measurement;.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;.5;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus montanus;20503;actual measurement;25;;per square meter;BIOPOP April 2005;;25;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus montanus;20503;actual measurement;49;;per square meter;BIOPOP April 2005;;49;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus montanus;20503;actual measurement;1.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;1.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus montanus;20503;actual measurement;8;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8;;;;seednumber <= 10;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Lathyrus montanus;20503;actual measurement;8;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;8;seednumber <= 10;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Lathyrus nissolia;21360;laboratory/greenhouse/garden experiment;224;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;267.4;507;180;224;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-07-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lathyrus odoratus;20506;laboratory/greenhouse/garden experiment;40;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;49.43;120;3;40;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lathyrus palustris;21816;actual measurement (following LEDA data standards);5;1;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5;5;5;5;seednumber <= 10;;;;counting ;;2005-07-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lathyrus palustris;21816;estimation;6.5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;12;1;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): up to 12;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge []; Lathyrus pratensis;21355;actual measurement;38;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Lathyrus pratensis;21355;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Lathyrus pratensis;21355;actual measurement;58;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;60;56;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Lathyrus pratensis;21355;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lathyrus pratensis;21355;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lathyrus pratensis;21355;actual measurement;14.9;;per multiple flower inflorescence ;BIOPOP April 2005;14.9;57;5;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;462;;per square meter;BIOPOP April 2005;;462;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;6.2;;per multiple flower inflorescence ;BIOPOP April 2005;6.2;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;48;;per square meter;BIOPOP April 2005;;48;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;14;;per multiple flower inflorescence ;BIOPOP April 2005;14;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;4.8;;per multiple flower inflorescence ;BIOPOP April 2005;4.8;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;90;;per square meter;BIOPOP April 2005;;90;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;168;;per square meter;BIOPOP April 2005;;168;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;14.9;;per multiple flower inflorescence ;BIOPOP April 2005;14.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;12;;per square meter;BIOPOP April 2005;;12;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;18.8;;per multiple flower inflorescence ;BIOPOP April 2005;18.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus pratensis;21355;actual measurement;7850.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7850.75;;;;1000 < seednumber <= 10,000;1;;2364.866927;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lathyrus sylvestris;20898;actual measurement;175;;per square meter;BIOPOP April 2005;;175;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus sylvestris;20898;estimation;14;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;14;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Lathyrus sylvestris;20898;actual measurement;52.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;52.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus sylvestris;20898;actual measurement;5732;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5732;;;;1000 < seednumber <= 10,000;1;;7858.606556;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lathyrus tuberosus;19845;actual measurement (following LEDA data standards);2;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.6;5;2;2;seednumber <= 10;;;;counting ;;2000-08-21 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lathyrus tuberosus;19845;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lathyrus tuberosus;19845;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lathyrus vernus;19847;actual measurement;320;;per square meter;BIOPOP April 2005;;320;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;20.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;20.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;116;;per square meter;BIOPOP April 2005;;116;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;84;;per square meter;BIOPOP April 2005;;84;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;16;;per ramet/tussock or individual plant ;BIOPOP April 2005;16;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;22.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;22.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;5.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;5.4;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement (following LEDA data standards);4.5;4;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4.5;6;3;4.5;seednumber <= 10;;;;counting ;;2003-06-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lathyrus vernus;19847;actual measurement;13.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;13.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;260;;per square meter;BIOPOP April 2005;;260;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;130;;per square meter;BIOPOP April 2005;;130;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lathyrus vernus;19847;actual measurement;32100;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32100;;;;10,000 < seednumber <= 100,000;1;;6634.003316;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lavatera arborea;25729;actual measurement;18000;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;18000;;;;10,000 < seednumber <= 100,000;1;;;counting ;;1997-07-11 00:00:00.0;;;UNITED KINGDOM Lavatera arborea;25729;estimation;9;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;9;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Malloch, A. J. M. (unknown e-mail address); Ledum palustre;19499;actual measurement (following LEDA data standards);6;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6;6;6;6;seednumber <= 10;;;;counting ;;2003-08-15 00:00:00.0;preaggregated value obtained from single record;;FINLAND Legousia hybrida;14896;estimation;538;169;per ramet/tussock or individual plant ;BIOPOP April 2005;538;615;461;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Legousia hybrida;14896;estimation;81;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;81;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Legousia hybrida;14896;laboratory/greenhouse/garden experiment;12.5;4;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13.25;23;5;12.5;10 < seednumber <= 100;;;;counting ;;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Legousia hybrida;14896;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mean >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Legousia speculum-veneris;14838;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Legousia speculum-veneris;14838;actual measurement (following LEDA data standards);153;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;435.63;1518;12;153;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lembotropis nigricans;21830;actual measurement;3770.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3770.333333;;;;1000 < seednumber <= 10,000;1;;3253.373685;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Leontodon autumnalis;7298;actual measurement (following LEDA data standards);55;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;83.67;180;16;55;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Leontodon autumnalis;7298;estimation;60;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;60;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Leontodon autumnalis;7298;actual measurement;59550;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;59550;;;;10,000 < seednumber <= 100,000;1;;20266.53646;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Leontodon autumnalis;7298;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1200;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Leontodon autumnalis;7298;actual measurement (following LEDA data standards);443;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;415.91;676;127;443;100 < seednumber <= 1000;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Leontodon hispidus;6638;actual measurement;36956.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36956.25;;;;10,000 < seednumber <= 100,000;1;;22962.24261;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Leontodon hispidus;6638;actual measurement;67.7;10;per multiple flower inflorescence ;BIOPOP April 2005;67.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Leontodon hispidus;6638;unknown;435;;per square meter;BIOPOP April 2005;435;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Leontodon hispidus;6638;unknown;7140;;per square meter;BIOPOP April 2005;7140;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Leontodon hispidus;6638;actual measurement (following LEDA data standards);71;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;63.5;103;9;71;10 < seednumber <= 100;;;;counting ;;2004-07-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Leontodon hispidus;6638;actual measurement (following LEDA data standards);66;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;72;109;46;66;10 < seednumber <= 100;;;;counting ;;2003-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Leontodon pyrenaicus;6519;actual measurement (following LEDA data standards);45;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43.9;64;22;45;10 < seednumber <= 100;;;;counting ;;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;SWITZERLAND Leonurus cardiaca;23833;actual measurement;69732;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;69732;;;;10,000 < seednumber <= 100,000;1;;48126.82695;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lepidium campestre;13495;actual measurement;1242;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];1242;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Lepidium campestre;13495;actual measurement;110133.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;110133.6667;;;;seednumber > 100,000;1;;63826.25322;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lepidium campestre;13495;estimation (following LEDA data standards);400;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;600;200;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Lepidium campestre;13495;estimation (following LEDA data standards);400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;600;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lepidium campestre;13495;laboratory/greenhouse/garden experiment;866;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1239;2678;468;866;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lepidium densiflorum;14562;laboratory/greenhouse/garden experiment;23076;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25237.88;66296;3146;23076;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lepidium heterophyllum;13940;estimation (following LEDA data standards);1700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1700;2400;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lepidium latifolium;13501;actual measurement (following LEDA data standards);2370.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2957.2;7645;952;2370.5;1000 < seednumber <= 10,000;;;;counting ;;2005-07-28 00:00:00.0;preaggregated value obtained from single record;;DENMARK Lepidium ruderale;13947;actual measurement;339348.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;339348.75;;;;seednumber > 100,000;1;;398292.2922;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lepidium ruderale;13947;estimation (following LEDA data standards);1300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1300;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lepidium ruderale;13947;actual measurement (following LEDA data standards);995;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1082;2318;100;995;100 < seednumber <= 1000;;;;counting ;;2004-06-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lepidium ruderale;13947;estimation (following LEDA data standards);1300;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;1300;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Lepidium sativum;13505;laboratory/greenhouse/garden experiment;613;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;634.3;918;222;613;100 < seednumber <= 1000;;;;counting ;;2005-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lepidium virginicum;13952;laboratory/greenhouse/garden experiment;8569;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8970;22990;740;8569;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Leucanthemum ircutianum;61197;actual measurement;45886.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45886.33333;;;;10,000 < seednumber <= 100,000;1;;20012.00291;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Leucanthemum vulgare;9651;actual measurement;1940;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;45500;970;1940;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Leucanthemum vulgare;9651;actual measurement;69;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;69;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Leucanthemum vulgare;9651;actual measurement;80;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];80;;;;10 < seednumber <= 100;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Leucanthemum vulgare;9651;actual measurement;80;10;per multiple flower inflorescence ;BIOPOP April 2005;80;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Leucanthemum vulgare;9651;actual measurement;71.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;71.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Leucanthemum vulgare;9651;actual measurement;288;;per square meter;BIOPOP April 2005;;288;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Leucanthemum vulgare;9651;actual measurement;138;;per ramet/tussock or individual plant ;BIOPOP April 2005;138;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Leucanthemum vulgare;9651;actual measurement;170;;per square meter;BIOPOP April 2005;;170;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Leucanthemum vulgare;9651;actual measurement;66.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;66.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Leucanthemum vulgare;9651;actual measurement;1800;;per square meter;BIOPOP April 2005;;1800;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Leucanthemum vulgare;9651;unknown;2650;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4000;1300;;1000 < seednumber <= 10,000;;;;unknown;unknown;;ramet with 14 inflorescences;Howarth, S. E. (1968): Biological flora of the British Isles: Chrysanthemum leucanthemum L. [56(2)]; Leucanthemum vulgare;9651;unknown;26000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;26000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;ramet with 14 inflorescences;Howarth, S. E. (1968): Biological flora of the British Isles: Chrysanthemum leucanthemum L. [56(2)]; Leucanthemum vulgare;9651;estimation;2723;100;per ramet/tussock or individual plant ;BIOPOP April 2005;2723;3195;2251;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Leucanthemum vulgare;9651;estimation;290;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;290;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Howarth, S. E.(1968): no title given, publication in Journal of Ecology issue: 56 pages: 585-595 [56]; Leucanthemum vulgare;9651;estimation (following LEDA data standards);2000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Leucanthemum vulgare;9651;unknown;368;;per square meter;BIOPOP April 2005;368;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Leucojum aestivum;35586;actual measurement (following LEDA data standards);53;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;60.27;106;27;53;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Leucojum vernum;35768;actual measurement (following LEDA data standards);16;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15;22;8;16;10 < seednumber <= 100;;;;counting ;;2004-05-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Leucojum vernum;35768;actual measurement;5211;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5211;;;;1000 < seednumber <= 10,000;1;;2607.903948;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Leucojum vernum;35768;actual measurement;25;270;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;30;20;;10 < seednumber <= 100;1;;;counting ;;1997-05-21 00:00:00.0;;;UNITED KINGDOM Levisticum officinale;2151;actual measurement (following LEDA data standards);6044.5;2;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6044.5;6392;5697;6044.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Levisticum officinale;2151;actual measurement (following LEDA data standards);6970;9;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7686.11;15807;2480;6970;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-08-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ligusticum scoticum;1141;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Palin, M. A.(1988): no title given, publication in Journal of Ecology issue: 76 pages: 889-902 [76]; Ligustrum vulgare;26363;actual measurement (following LEDA data standards);26.5;6;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25;33;14;26.5;10 < seednumber <= 100;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ligustrum vulgare;26363;actual measurement (following LEDA data standards);18;7;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21.57;35;15;18;10 < seednumber <= 100;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ligustrum vulgare;26363;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Lilium martagon;39063;actual measurement (following LEDA data standards);101;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;126.25;266;37;101;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lilium martagon;39063;actual measurement;46825;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;46825;;;;10,000 < seednumber <= 100,000;1;;24165.8678;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lilium martagon;39063;actual measurement (following LEDA data standards);207;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;206.67;264;149;207;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Limonium humile;28390;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Boorman, L. A.(1967): no title given, publication in Journal of Ecology issue: 55 pages: 221-232 [55]; Limonium humile;28390;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Stewart, A.[1st editor](1994): Scarce Plants in Britain 1994 Joint Nature Conservation Committee, Peterborough []; Limonium vulgare;28293;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Boorman, L. A.(1967): no title given, publication in Journal of Ecology issue: 55 pages: 221-232 [55]; Limonium vulgare;28293;actual measurement (following LEDA data standards);911;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;830.4;1258;376;911;100 < seednumber <= 1000;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Limosella aquatica;33604;estimation;196;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;196;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1967): no title given, publication in Annals of Botany issue: 31 pages: 147-162 [31]; Limosella aquatica;33604;estimation;4236;63;per ramet/tussock or individual plant ;BIOPOP April 2005;4236;4560;3912;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Linaria alpina;34452;actual measurement;140;10;per multiple flower stem;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];;160;120;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Linaria alpina;34452;actual measurement;41;10;per single flower inflorescence ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];41;;;;10 < seednumber <= 100;1;1.26;4;counting ;single flower inflorescence ;;collection period: 1985, maximum in large genets:6,000;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Linaria genistifolia;33054;actual measurement;742675.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;742675.75;;;;seednumber > 100,000;1;;658839.0573;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Linaria purpurea;33748;estimation;6085;7;per ramet/tussock or individual plant ;BIOPOP April 2005;6085;7770;4400;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Linaria purpurea;33748;estimation;15;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;15;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 15;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Linaria repens;33754;estimation;5328;7;per ramet/tussock or individual plant ;BIOPOP April 2005;5328;6637;4019;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Linaria repens;33754;estimation;30;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;30;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Linaria vulgaris;33091;actual measurement;187666.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;187666.6667;;;;seednumber > 100,000;1;;56888.78038;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Linaria vulgaris;33091;estimation;31386;;per ramet/tussock or individual plant ;BIOPOP April 2005;31386;35213;27559;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;problematic value - seed production of a clone with several shoots!;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Linaria vulgaris;33091;estimation;166;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;166;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Linaria vulgaris;33091;estimation (following LEDA data standards);9000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;10000;8000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Linnaea borealis;15394;actual measurement;175;;per square meter;BIOPOP April 2005;;175;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Linnaea borealis;15394;actual measurement;0;1;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;0;;;;seednumber <= 10;1;;;counting ;unknown;1931-08-03 00:00:00.0;only fully developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;SWEDEN Linnaea borealis;15394;actual measurement;1;;per multiple flower inflorescence ;BIOPOP April 2005;1;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Linnaea borealis;15394;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Stockholm University, Dept. Of Botany, SE, (Eriksson), E-Mail: ove.eriksson@botan.su.se; Linum austriacum;25949;actual measurement (following LEDA data standards);1045;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;959.2;1715;328;1045;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Linum catharticum;25925;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Linum catharticum;25925;unknown;2927;;per square meter;BIOPOP April 2005;2927;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Linum catharticum;25925;actual measurement;20;20;per ramet/tussock or individual plant ;BIOPOP April 2005;20;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Linum catharticum;25925;actual measurement;15;66;per ramet/tussock or individual plant ;BIOPOP April 2005;15;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Linum catharticum;25925;actual measurement;14.5;126;per ramet/tussock or individual plant ;BIOPOP April 2005;14.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Linum catharticum;25925;actual measurement;11.4;162;per ramet/tussock or individual plant ;BIOPOP April 2005;11.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Linum catharticum;25925;actual measurement;115;22;per ramet/tussock or individual plant ;BIOPOP April 2005;115;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Linum catharticum;25925;actual measurement;96;150;per ramet/tussock or individual plant ;BIOPOP April 2005;96;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Linum catharticum;25925;actual measurement;128;39;per ramet/tussock or individual plant ;BIOPOP April 2005;128;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Linum catharticum;25925;actual measurement;78;100;per ramet/tussock or individual plant ;BIOPOP April 2005;78;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Linum catharticum;25925;unknown;1608;;per square meter;BIOPOP April 2005;1608;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Linum catharticum;25925;actual measurement;136.5;152;per ramet/tussock or individual plant ;BIOPOP April 2005;136.5;150;123;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Linum catharticum;25925;actual measurement;183;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;183;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Linum catharticum;25925;actual measurement (following LEDA data standards);97.5;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;122.2;385;48;97.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2003-08-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Linum perenne;25878;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Ockendon, D. J.(1968): no title given, publication in Journal of Ecology issue: 56 pages: 871-882 [56]; Linum perenne s. alpinum;25915;actual measurement;216;40;per ramet/tussock or individual plant ;BIOPOP April 2005;216;243;189;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Linum usitatissimum;25866;actual measurement (following LEDA data standards);9;7;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.29;10;7;9;seednumber <= 10;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;BELGIUM Linum usitatissimum;25866;actual measurement;100000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;100000;;;;10,000 < seednumber <= 100,000;1;;78102.49676;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Listera ovata;39948;estimation;21000;29;per ramet/tussock or individual plant ;BIOPOP April 2005;21000;22000;20000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Listera ovata;39948;actual measurement;840000;;per square meter;BIOPOP April 2005;;840000;;;seednumber > 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Listera ovata;39948;actual measurement;150000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;150000;;;seednumber > 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lithospermum arvense;12012;actual measurement;36537;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36537;;;;10,000 < seednumber <= 100,000;1;;19185.57914;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lithospermum arvense;12012;unknown;150;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;250;50;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Lithospermum arvense;12012;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lithospermum arvense;12012;actual measurement;175;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;150;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lithospermum arvense;12012;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;200;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lithospermum arvense;12012;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Lithospermum officinale;12411;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Littorella uniflora;27852;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Arts, G. H. P.(1990): no title given, publication in Aquatic Botany issue: 37 pages: 139-151 [37]; Littorella uniflora;27852;estimation;20;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;20;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 20, non-British recording;Arts, G. H. P.(1990): no title given, publication in Aquatic Botany issue: 37 pages: 139-151 [37]; Littorella uniflora;27852;actual measurement (following LEDA data standards);4;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4;4;4;4;seednumber <= 10;;;;counting ;;2004-06-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Littorella uniflora;27852;estimation;20;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;20;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): ca 20;Preston, C. . D.(1997): Aquatic Plants in Britain and Ireland Harley Books Colchester, Essex []; Littorella uniflora;27852;unknown;20;1;per ramet/tussock or individual plant ;Preston, C. . D.(1997): Aquatic Plants in Britain and Ireland Harley Books Colchester, Essex [];;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;;Preston, C. . D.(1997): Aquatic Plants in Britain and Ireland Harley Books Colchester, Essex [];UNITED KINGDOM Lobelia dortmanna;14841;estimation;700;;per ramet/tussock or individual plant ;BIOPOP April 2005;;700;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Lobelia dortmanna;14841;estimation;236;;per ramet/tussock or individual plant ;BIOPOP April 2005;236;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Lobelia dortmanna;14841;estimation;302;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;302;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Farmer, A. M.(1987): no title given, publication in Journal of Ecology issue: 75 pages: 1065-1076 [75]; Lobelia urens;14843;estimation;475;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;475;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Brightmore, D.(1968): no title given, publication in Journal of Ecology issue: 56 pages: 613-620 [56]; Logfia arvensis;11506;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Logfia arvensis;11506;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Logfia minima;11400;actual measurement (following LEDA data standards);470;4;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;430;580;200;470;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-21 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Logfia minima;11400;actual measurement (following LEDA data standards);328;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;334.67;589;87;328;100 < seednumber <= 1000;;;;counting ;;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Loiseleuria procumbens;19506;actual measurement;1336;15;per ramet/tussock or individual plant ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;1336;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;only full developed seeds was counted,02.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);500;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1086;2370;388;500;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);620;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;494;800;62;620;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Loiseleuria procumbens;19506;actual measurement;50.8;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;50.8;67;30;;10 < seednumber <= 100;1;;;counting ;unknown;;,02.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Lolium multiflorum;43196;actual measurement;16833.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16833.33333;;;;10,000 < seednumber <= 100,000;1;;2362.907813;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lolium multiflorum;43196;laboratory/greenhouse/garden experiment;1509;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1425.8;2304;233;1509;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lolium perenne;43540;actual measurement;63191.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;63191.5;;;;10,000 < seednumber <= 100,000;1;;52414.76098;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lolium perenne;43540;unknown;62750;;per square meter;BIOPOP April 2005;;62750;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Beddows, A. R. (1967): Biological flora of the British Isles: Lolium perenne L.; Lolium remotum;42844;laboratory/greenhouse/garden experiment;1328;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1330;2848;53;1328;1000 < seednumber <= 10,000;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lolium temulentum;43200;laboratory/greenhouse/garden experiment;207.5;4;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);213.5;313;126;207.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-31 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lolium temulentum;43200;estimation (following LEDA data standards);300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;300;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lolium temulentum;43200;actual measurement (following LEDA data standards);4143.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5150.9;8145;3268;4143.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-10 00:00:00.0;PREAGGREGATED! Raw record's comment: spike;;GERMANY Lonicera alpigena;15395;actual measurement (following LEDA data standards);3;3;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3;4;2;3;seednumber <= 10;;;;counting ;;2005-05-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lonicera caprifolium;15368;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Lonicera periclymenum;15385;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;8;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Lonicera xylosteum;15356;actual measurement;3000;1;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;3500;2500;;1000 < seednumber <= 10,000;1;;;counting ;;1997-07-09 00:00:00.0;;;UNITED KINGDOM Lonicera xylosteum;15356;actual measurement;19000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;19000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lotus angustissimus;19855;actual measurement;387.5;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;475;300;;100 < seednumber <= 1000;1;;;counting ;;1997-07-28 00:00:00.0;;;UNITED KINGDOM Lotus corniculatus;21886;actual measurement;641;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;641;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Lotus corniculatus;21886;actual measurement;18000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;18000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Jones, D. A. (1986): Biological flora of the British Isles: Lotus corniculatus L.;UNITED KINGDOM Lotus corniculatus;21886;unknown;62;;per square meter;BIOPOP April 2005;62;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Lotus corniculatus;21886;actual measurement;345;;per ramet/tussock or individual plant ;BIOPOP April 2005;345;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Jones, D. A. (1986): Biological flora of the British Isles: Lotus corniculatus L.;UNITED KINGDOM Lotus corniculatus;21886;unknown;276;;per square meter;BIOPOP April 2005;276;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Lotus corniculatus;21886;actual measurement;40962;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40962;;;;10,000 < seednumber <= 100,000;1;;21713.80913;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lotus parviflorus;21443;actual measurement;1200;60;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2000;400;;1000 < seednumber <= 10,000;1;;;counting ;;1997-07-31 00:00:00.0;;;UNITED KINGDOM Lotus tenuis;20976;actual measurement (following LEDA data standards);135;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;135;143;127;135;100 < seednumber <= 1000;;;;counting ;;2005-07-26 00:00:00.0;preaggregated value obtained from single record;;DENMARK Lotus tenuis;20976;actual measurement (following LEDA data standards);14.5;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15.75;26;4;14.5;10 < seednumber <= 100;;;;counting ;;2005-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lotus tenuis;20976;actual measurement (following LEDA data standards);135;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;135;143;127;135;100 < seednumber <= 1000;;;;counting ;;2005-07-26 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;DENMARK Lotus tenuis;20976;actual measurement (following LEDA data standards);14.5;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15.75;26;4;14.5;10 < seednumber <= 100;;;;counting ;;2005-08-09 00:00:00.0;PREAGGREGATED! Raw record's comment: partly immature;;DENMARK Lotus uliginosus;21448;actual measurement (following LEDA data standards);75;9;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;70.44;108;36;75;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ludwigia palustris;26480;estimation;120;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;120;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): partially submerged;Salisbury, E. J. (1972): no title given, publication in Watsonia issue: 9 pages: 33-37 [9]; Ludwigia palustris;26480;laboratory/greenhouse/garden experiment;27623.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28624.75;47025;17528;27623.5;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lunaria annua;13513;actual measurement (following LEDA data standards);391;6;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;417.83;684;203;391;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lunaria annua;13513;actual measurement (following LEDA data standards);1339;3;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1278.33;1404;1092;1339;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-29 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lunaria rediviva;13960;actual measurement;9228.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9228.333333;;;;1000 < seednumber <= 10,000;1;;7931.986405;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lunaria rediviva;13960;actual measurement (following LEDA data standards);116;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;109.43;168;48;116;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lunaria rediviva;13960;actual measurement (following LEDA data standards);35.5;2;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;35.5;62;9;35.5;10 < seednumber <= 100;;;;counting ;;2004-07-29 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lupinus albus;21901;laboratory/greenhouse/garden experiment;99.5;12;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;99.58;169;44;99.5;10 < seednumber <= 100;;;;counting ;;2004-10-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lupinus angustifolius;21449;actual measurement (following LEDA data standards);254.5;14;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;275.21;663;42;254.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lupinus luteus;22239;actual measurement (following LEDA data standards);300;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;385;648;207;300;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lupinus polyphyllus;22241;actual measurement;13950.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13950.33333;;;;10,000 < seednumber <= 100,000;1;;6066.08608;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lupinus polyphyllus;22241;actual measurement (following LEDA data standards);5;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.93;7;2;5;seednumber <= 10;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lupinus polyphyllus;22241;actual measurement (following LEDA data standards);1078.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1133.8;2093;326;1078.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-06-17 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Luronium natans;35649;actual measurement (following LEDA data standards);168;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;207.87;456;72;168;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Luzula arcuata;36198;actual measurement;22.5;300;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;30;15;;10 < seednumber <= 100;1;;;counting ;;1998-09-12 00:00:00.0;;;UNITED KINGDOM Luzula campestris;36280;actual measurement;476;49;per ramet/tussock or individual plant ;BIOPOP April 2005;476;521;431;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Luzula campestris;36280;actual measurement (following LEDA data standards);768;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1534.2;6075;243;768;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-05-28 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Luzula campestris;36280;actual measurement;51;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Luzula campestris;36280;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Luzula campestris;36280;actual measurement;172875;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;172875;;;;seednumber > 100,000;1;;50934.29591;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Luzula forsteri;36181;estimation;233;10;per ramet/tussock or individual plant ;BIOPOP April 2005;233;285;181;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Luzula luzuloides;36273;actual measurement (following LEDA data standards);316;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;348.36;768;184;316;100 < seednumber <= 1000;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Luzula luzuloides;36273;actual measurement;153200;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;153200;;;;seednumber > 100,000;1;;57675.99154;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Luzula multiflora;36245;actual measurement;9900;;per square meter;BIOPOP April 2005;;9900;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula multiflora;36245;actual measurement;36;82;per multiple flower inflorescence ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;36;;;;10 < seednumber <= 100;1;;;counting ;;1997-07-15 00:00:00.0;;;UNITED KINGDOM Luzula multiflora;36245;actual measurement;246;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];246;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;small individuum;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Luzula multiflora;36245;actual measurement;183066.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;183066.6667;;;;seednumber > 100,000;1;;140350.1455;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Luzula multiflora;36245;actual measurement;312;;per ramet/tussock or individual plant ;BIOPOP April 2005;312;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula multiflora;36245;actual measurement;529;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;633.4;;;529;100 < seednumber <= 1000;1;129.4463595;409.345331;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Luzula multiflora;36245;actual measurement;6534;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6534;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Luzula multiflora;36245;actual measurement;90;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;90;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: small plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Luzula multiflora;36245;estimation;1245;26;per ramet/tussock or individual plant ;BIOPOP April 2005;1245;1453;1037;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Luzula multiflora;36245;actual measurement (following LEDA data standards);180;4;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;183.5;311;63;180;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Luzula multiflora subsp. congesta;36251;actual measurement (following LEDA data standards);16;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16;16;16;16;10 < seednumber <= 100;;;;counting ;;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Luzula pallescens;36262;actual measurement;228;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];228;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;small individuum;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Luzula pilosa;36230;actual measurement;30;;per multiple flower inflorescence ;BIOPOP April 2005;30;54;12;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;275;;per square meter;BIOPOP April 2005;;275;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;72.5;;per square meter;BIOPOP April 2005;;120;25;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;576;;per square meter;BIOPOP April 2005;;576;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;4201.5;;per square meter;BIOPOP April 2005;;8325;78;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;704.5;;per square meter;BIOPOP April 2005;;1334;75;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;383.5;;per square meter;BIOPOP April 2005;;740;27;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;25.5;;per multiple flower inflorescence ;BIOPOP April 2005;25.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;72;;per square meter;BIOPOP April 2005;;108;36;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;20;;per multiple flower inflorescence ;BIOPOP April 2005;20;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;50.5;;per square meter;BIOPOP April 2005;;86;15;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;25.8;;per multiple flower inflorescence ;BIOPOP April 2005;25.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;2772;;per square meter;BIOPOP April 2005;;2772;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;25.3;;per multiple flower inflorescence ;BIOPOP April 2005;25.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;1100;;per square meter;BIOPOP April 2005;;1100;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;28.9;;per multiple flower inflorescence ;BIOPOP April 2005;28.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;30;;per multiple flower inflorescence ;BIOPOP April 2005;30;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;27.1;;per multiple flower inflorescence ;BIOPOP April 2005;27.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;25.4;;per multiple flower inflorescence ;BIOPOP April 2005;25.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;23.5;;per multiple flower inflorescence ;BIOPOP April 2005;23.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;44.7;;per multiple flower inflorescence ;BIOPOP April 2005;44.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;522;;per square meter;BIOPOP April 2005;;522;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;45.9;;per multiple flower inflorescence ;BIOPOP April 2005;45.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Luzula pilosa;36230;actual measurement;56239;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;56239;;;;10,000 < seednumber <= 100,000;1;;47326.01488;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Luzula pilosa;36230;estimation;198;50;per ramet/tussock or individual plant ;BIOPOP April 2005;198;217;179;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Luzula pilosa;36230;actual measurement;24;50;per multiple flower inflorescence ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;24;;;;10 < seednumber <= 100;1;;;counting ;;1998-07-09 00:00:00.0;;;UNITED KINGDOM Luzula pilosa;36230;actual measurement;73;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;73;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Luzula pilosa;36230;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Luzula pilosa;36230;actual measurement;128.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;143.4;;;128.5;100 < seednumber <= 1000;1;31.97366972;101.1096215;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Luzula spicata;36240;actual measurement;37.1;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;37.1;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Luzula spicata;36240;actual measurement;180;64;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;180;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-08 00:00:00.0;;;UNITED KINGDOM Luzula spicata;36240;actual measurement;2.7;15;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;2.7;3;2;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Luzula spicata;36240;actual measurement (following LEDA data standards);142.5;6;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;149.83;315;22;142.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Luzula sudetica;36244;actual measurement (following LEDA data standards);78;4;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;75;117;27;78;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Luzula sudetica;36244;actual measurement (following LEDA data standards);81;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;80.6;121;42;81;10 < seednumber <= 100;;;;counting ;;2004-06-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Luzula sylvatica;36284;actual measurement (following LEDA data standards);190;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;200;566;34;190;100 < seednumber <= 1000;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Luzula sylvatica;36284;actual measurement;32703.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32703.33333;;;;10,000 < seednumber <= 100,000;1;;25228.31808;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Luzula wahlenbergii;36291;actual measurement;45.5;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;45.5;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Luzula wahlenbergii;36291;actual measurement;2.6;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;2.6;3;1;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;only viable seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Lychnis alpina;17455;actual measurement;295.2;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;295.2;;;;100 < seednumber <= 1000;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Lychnis alpina;17455;actual measurement;41;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;41;63;20;;10 < seednumber <= 100;1;;;counting ;;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Lychnis flos-cuculi;16589;actual measurement;715538;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;715538;;;;seednumber > 100,000;1;;478399.4038;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lychnis flos-cuculi;16589;actual measurement;8134;4;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;42164;4980;8134;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Lychnis flos-cuculi;16589;actual measurement;165.8;4;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];165.8;170;160;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Lychnis flos-cuculi;16589;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;500;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lychnis flos-cuculi;16589;estimation;110;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;110;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 110;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Lychnis flos-cuculi;16589;estimation;151;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;151;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Lychnis viscaria;16593;actual measurement;1910;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1910;;;;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Lychnis viscaria;16593;actual measurement;22041;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];22041;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Lychnis viscaria;16593;estimation (following LEDA data standards);400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;400;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Lychnis viscaria;16593;actual measurement;239;3;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];237;246;226;239;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Lychnis viscaria;16593;estimation;185;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;360;10;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): up to 360 seeds/capsule have been found in plants from an experimental field;Whittington, W. J. (unknown e-mail address); Lychnis viscaria;16593;actual measurement;375558;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;375558;;;;seednumber > 100,000;1;;324883.0303;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lychnis viscaria;16593;estimation;121;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;121;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Whittington, W. J. (unknown e-mail address); Lycium barbarum;35086;estimation;29;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;29;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Lycopodium clavatum;479;actual measurement (following LEDA data standards);2736000;9;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2921333.33;4500000;2208000;2736000;seednumber > 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lycopus europaeus;24606;actual measurement;87752.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;87752.66667;;;;10,000 < seednumber <= 100,000;1;;41827.69084;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lycopus europaeus;24606;actual measurement (following LEDA data standards);2078;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2279.9;4045;898;2078;1000 < seednumber <= 10,000;;;;counting ;;2003-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Lysimachia nemorum;28927;actual measurement;7.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9.3;;;7.5;seednumber <= 10;1;1.738773514;5.49848464;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Lysimachia nummularia;28922;actual measurement;8156.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8156.666667;;;;1000 < seednumber <= 10,000;1;;5266.74789;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lysimachia punctata;28929;actual measurement (following LEDA data standards);52.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;70.9;160;38;52.5;10 < seednumber <= 100;;;;estimation ;single flower inflorescence ;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lysimachia thyrsiflora;28789;actual measurement;92.4;33;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;92.4;;;;10 < seednumber <= 100;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Lysimachia vulgaris;28980;actual measurement;592;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;592;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Lysimachia vulgaris;28980;actual measurement;972.5;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;1141.4;;;972.5;100 < seednumber <= 1000;1;250.6437578;792.605156;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Lysimachia vulgaris;28980;actual measurement;1134;;per ramet/tussock or individual plant ;BIOPOP April 2005;1134;7000;140;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lysimachia vulgaris;28980;actual measurement;126667;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;126667;;;;seednumber > 100,000;1;;99782.58944;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lysimachia vulgaris;28980;actual measurement;888;;per square meter;BIOPOP April 2005;;888;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lysimachia vulgaris;28980;actual measurement;51660;;per square meter;BIOPOP April 2005;;51660;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lysimachia vulgaris;28980;actual measurement;7000;;per square meter;BIOPOP April 2005;;7000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lysimachia vulgaris;28980;actual measurement;1134;;per ramet/tussock or individual plant ;BIOPOP April 2005;1134;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lysimachia vulgaris;28980;actual measurement;508.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;508.6;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Lythrum hyssopifolia;26029;estimation;75000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;75000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Callaghan, D. A. (1998): Biological flora of the British Isles: Lythrum hyssopifolium L.; Lythrum hyssopifolia;26029;estimation;1843;16;per ramet/tussock or individual plant ;BIOPOP April 2005;1843;2179;1507;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Lythrum hyssopifolia;26029;estimation;3200;;per ramet/tussock or individual plant ;BIOPOP April 2005;3200;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Callaghan, D. A. (1998): Biological flora of the British Isles: Lythrum hyssopifolium L.; Lythrum portula;26036;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mean >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Lythrum salicaria;26038;actual measurement;20191.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16881;;;20191.5;10,000 < seednumber <= 100,000;1;2701.881507;7642.074943;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Lythrum salicaria;26038;actual measurement (following LEDA data standards);93;10;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;92.6;103;81;93;10 < seednumber <= 100;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Lythrum salicaria;26038;actual measurement;1085505.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1085505.333;;;;seednumber > 100,000;1;;1282034.656;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Lythrum salicaria;26038;actual measurement;84000;23;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;84000;;;;10,000 < seednumber <= 100,000;1;;;counting ;;1997-09-05 00:00:00.0;;;UNITED KINGDOM Mahonia aquifolium;11687;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Maianthemum bifolium;39069;actual measurement;8883.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8883.333333;;;;1000 < seednumber <= 10,000;1;;10612.76747;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Maianthemum bifolium;39069;actual measurement;2;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;2;seednumber <= 10;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Maianthemum bifolium;39069;actual measurement;2;;per square meter;BIOPOP April 2005;;;2;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;202;;per square meter;BIOPOP April 2005;;202;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;5.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;5.1;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;5.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;5.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;2.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;2.4;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;6;;per square meter;BIOPOP April 2005;;6;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;2.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;2.9;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;16;;per square meter;BIOPOP April 2005;;16;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;.2;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;2;;per square meter;BIOPOP April 2005;;2;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;10;;per square meter;BIOPOP April 2005;;10;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Maianthemum bifolium;39069;actual measurement;106;;per square meter;BIOPOP April 2005;;106;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Malus sylvestris;29369;actual measurement;2500;2;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;2500;;;;1000 < seednumber <= 10,000;1;;;counting ;;1998-09-20 00:00:00.0;;;UNITED KINGDOM Malva moschata;25717;actual measurement (following LEDA data standards);3230;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2758.2;4230;985;3230;1000 < seednumber <= 10,000;;;;counting ;;2003-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Malva neglecta;25718;estimation (following LEDA data standards);400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;500;300;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Malva neglecta;25718;actual measurement;50482.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;50482.66667;;;;10,000 < seednumber <= 100,000;1;;26284.56013;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Malva neglecta;25718;estimation (following LEDA data standards);400;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;500;300;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Malva pusilla;25668;unknown;5376;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5632;5120;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Makowski, R. M. D. (1989): The biology of Canadian weeds. 91. Malva pusilla Sm. (=M. rotundifolia L.).;LITHUANIA Malva pusilla;25668;unknown;324;;per ramet/tussock or individual plant ;BIOPOP April 2005;324;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: in competition with wheat;Makowski, R. M. D. (1989): The biology of Canadian weeds. 91. Malva pusilla Sm. (=M. rotundifolia L.).; Malva pusilla;25668;laboratory/greenhouse/garden experiment;3952;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4653.25;9450;1519;3952;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Malva pusilla;25668;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;500;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Malva pusilla;25668;unknown;5376;1;per ramet/tussock or individual plant ;Makowski, R. M. D. (1989): The biology of Canadian weeds. 91. Malva pusilla Sm. (=M. rotundifolia L.).;;5632;5120;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;from literature (Pyasyatskene, 1978), number of samples and replicates unknown, average of 512 capsules per plant;Makowski, R. M. D. (1989): The biology of Canadian weeds. 91. Malva pusilla Sm. (=M. rotundifolia L.).;LITHUANIA Malva pusilla;25668;unknown;10.5;1;per single flower inflorescence ;Makowski, R. M. D. (1989): The biology of Canadian weeds. 91. Malva pusilla Sm. (=M. rotundifolia L.).;;11;10;;10 < seednumber <= 100;1;;;unknown;single flower inflorescence ;;from literature (Pyasyatskene, 1978), number of samples and replicates unknown;Makowski, R. M. D. (1989): The biology of Canadian weeds. 91. Malva pusilla Sm. (=M. rotundifolia L.).;LITHUANIA Malva pusilla;25668;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;500;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Malva sylvestris;25674;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Malva sylvestris;25674;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Malva verticillata;25681;laboratory/greenhouse/garden experiment;2767.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3782;11155;1397;2767.5;1000 < seednumber <= 10,000;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Matricaria maritima;9565;estimation (following LEDA data standards);34000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;34000;210000;10000;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Matricaria perforata;10535;estimation (following LEDA data standards);105000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;200000;10000;;seednumber > 100,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Meconopsis cambrica;25542;actual measurement;7310;102;per ramet/tussock or individual plant ;BIOPOP April 2005;7310;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Meconopsis cambrica;25542;estimation;750;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;750;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Medicago arabica;19824;laboratory/greenhouse/garden experiment;13.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13.63;23;5;13.5;10 < seednumber <= 100;;;;counting ;single flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Medicago lupulina;20595;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Duke, J. A.(1981): Handbook of Legumes of World Economic Importance, Plenum Press, New York []; Medicago lupulina;20595;actual measurement;177542.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;177542.75;;;;seednumber > 100,000;1;;138462.9677;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Medicago lupulina;20595;unknown;192;;per square meter;BIOPOP April 2005;192;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Medicago lupulina;20595;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Medicago lupulina;20595;unknown;1720;;per ramet/tussock or individual plant ;BIOPOP April 2005;1720;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Turkington, R. A. (1979): The biology of Canadian weeds. 33: Medicago lupulina L.;UNITED STATES Medicago lupulina;20595;unknown;2510;;per ramet/tussock or individual plant ;BIOPOP April 2005;2510;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Turkington, R. A. (1979): The biology of Canadian weeds. 33: Medicago lupulina L.;UNITED STATES Medicago lupulina;20595;unknown;1450;;per ramet/tussock or individual plant ;BIOPOP April 2005;1450;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Turkington, R. A. (1979): The biology of Canadian weeds. 33: Medicago lupulina L.;UNITED STATES Medicago lupulina;20595;unknown;2800;;per ramet/tussock or individual plant ;BIOPOP April 2005;2800;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Turkington, R. A. (1979): The biology of Canadian weeds. 33: Medicago lupulina L.;UNITED STATES Medicago lupulina;20595;unknown;1445;;per ramet/tussock or individual plant ;BIOPOP April 2005;1445;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Turkington, R. A. (1979): The biology of Canadian weeds. 33: Medicago lupulina L.;UNITED STATES Medicago lupulina;20595;unknown;6600;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6600;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Turkington, R. A. (1979): The biology of Canadian weeds. 33: Medicago lupulina L.;UNITED KINGDOM Medicago lupulina;20595;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Medicago lupulina;20595;unknown;3990;;per square meter;BIOPOP April 2005;3990;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Medicago lupulina;20595;actual measurement;15.7;10;per multiple flower inflorescence ;BIOPOP April 2005;15.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Medicago minima;21911;estimation;150;50;per ramet/tussock or individual plant ;BIOPOP April 2005;150;182;118;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Medicago minima;21911;actual measurement (following LEDA data standards);28.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28.5;34;24;28.5;10 < seednumber <= 100;;;;counting ;;2004-05-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Medicago minima;21911;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Medicago polymorpha;20650;laboratory/greenhouse/garden experiment;15;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15;15;15;15;10 < seednumber <= 100;;;;counting ;;2005-07-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Medicago polymorpha;20650;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Medicago sativa;21975;actual measurement;91144.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;91144.66667;;;;10,000 < seednumber <= 100,000;1;;52292.39701;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Medicago sativa s. falcata;19911;actual measurement (following LEDA data standards);42;7;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;89.14;241;24;42;10 < seednumber <= 100;;;;counting ;;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Melampyrum arvense;34460;actual measurement;40;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Melampyrum arvense;34460;actual measurement;10;;per ramet/tussock or individual plant ;BIOPOP April 2005;10;;;;seednumber <= 10;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Melampyrum arvense;34460;actual measurement (following LEDA data standards);24;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24.64;38;11;24;10 < seednumber <= 100;;;;counting ;;2004-07-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Melampyrum arvense;34460;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Kwak, M. M.(1988): no title given, publication in Acta Botanica Neerlandica issue: 37 pages: 153-163 [37]; Melampyrum cristatum;33028;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Horrill, A. D.(1972): no title given, publication in Journal of Ecology issue: 60 pages: 235-244 [60]; Melampyrum nemorosum;33034;actual measurement;14532.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14532.25;;;;10,000 < seednumber <= 100,000;1;;1990.165885;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Melampyrum nemorosum;33034;actual measurement;438;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];438;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Melampyrum nemorosum;33034;actual measurement (following LEDA data standards);12;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20.33;77;5;12;10 < seednumber <= 100;;;;counting ;;2004-08-09 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Melampyrum pratense;33526;actual measurement;67;60;per ramet/tussock or individual plant ;BIOPOP April 2005;67;72.9;61.1;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Melampyrum pratense;33526;actual measurement;13.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;13.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;552;;per square meter;BIOPOP April 2005;;1092;12;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;6;;per ramet/tussock or individual plant ;BIOPOP April 2005;6;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;27;;per square meter;BIOPOP April 2005;;48;6;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;1.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;1.5;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;6;;per square meter;BIOPOP April 2005;;10;2;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;23.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;23.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;592;;per square meter;BIOPOP April 2005;;1176;8;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;1;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;1;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;46;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;46.4;;;46;10 < seednumber <= 100;1;11.05863162;34.97046373;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Melampyrum pratense;33526;actual measurement;6.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;6.5;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;60.5;;per square meter;BIOPOP April 2005;;115;6;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;23.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;23.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;1337;;per square meter;BIOPOP April 2005;;2660;14;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;29.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;29.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;1957;;per square meter;BIOPOP April 2005;;3900;14;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;5.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;5.1;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;31;;per square meter;BIOPOP April 2005;;52;10;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;22.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;22.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;1330;;per square meter;BIOPOP April 2005;;2640;20;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;173;;per ramet/tussock or individual plant ;BIOPOP April 2005;;173;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;1;;per square meter;BIOPOP April 2005;;;1;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;3900;;per square meter;BIOPOP April 2005;;3900;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;91;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;91;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Melampyrum pratense;33526;actual measurement;29;;per ramet/tussock or individual plant ;BIOPOP April 2005;29;173;2;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum pratense;33526;actual measurement;9388.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9388.333333;;;;1000 < seednumber <= 10,000;1;;5435.752784;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Melampyrum pratense;33526;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Melampyrum sylvaticum;33044;actual measurement;14;250;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;24;4;;10 < seednumber <= 100;1;;;counting ;;1998-08-09 00:00:00.0;;;UNITED KINGDOM Melampyrum sylvaticum;33044;actual measurement;18.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;18.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;4054;;per square meter;BIOPOP April 2005;;8100;8;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;14.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;14.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;1337.5;;per square meter;BIOPOP April 2005;;2670;5;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;23.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;23.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;1746;;per square meter;BIOPOP April 2005;;3450;42;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;9.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;9.4;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;1494.5;;per square meter;BIOPOP April 2005;;2975;14;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;10.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;10.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;235;;per square meter;BIOPOP April 2005;;400;70;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;76;;per ramet/tussock or individual plant ;BIOPOP April 2005;;76;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;8100;;per square meter;BIOPOP April 2005;;8100;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melampyrum sylvaticum;33044;actual measurement;2;;per square meter;BIOPOP April 2005;;;2;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica ciliata;42479;actual measurement (following LEDA data standards);24;11;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27.64;50;13;24;10 < seednumber <= 100;;;;counting ;;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Melica nutans;43206;actual measurement;30000;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30000;;;;10,000 < seednumber <= 100,000;1;;13366.6251;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Melica nutans;43206;actual measurement;8;700;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;10;6;;seednumber <= 10;1;;;counting ;;1997-07-18 00:00:00.0;;;UNITED KINGDOM Melica nutans;43206;actual measurement;40;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;40;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Melica nutans;43206;actual measurement;5.5;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;5.5;;;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 76% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Melica nutans;43206;actual measurement;817.5;;per square meter;BIOPOP April 2005;;1625;10;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;1278;;per square meter;BIOPOP April 2005;;1278;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;10.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;10.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;1150;;per square meter;BIOPOP April 2005;;1150;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;6.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;6.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;9.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;9.8;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;10.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;10.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;119;;per square meter;BIOPOP April 2005;;119;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;12;;per ramet/tussock or individual plant ;BIOPOP April 2005;12;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica nutans;43206;actual measurement;1404;;per square meter;BIOPOP April 2005;;1404;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Melica picta;42485;laboratory/greenhouse/garden experiment;5;2;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);5;5;5;5;seednumber <= 10;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Melica transsilvanica;42653;actual measurement;48852;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;48852;;;;10,000 < seednumber <= 100,000;1;;40557.95498;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Melica uniflora;43550;actual measurement (following LEDA data standards);14;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14;22;9;14;10 < seednumber <= 100;;;;counting ;;2004-05-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Melilotus alba;21420;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Melilotus alba;21420;unknown;275000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;350000;200000;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plants General comment: growing in the open with little competition;Turkington, R. A. (1978): The biology of Canadian weeds. 29. Melilotus alba Desr. and M. officinalis (L.) Lam.; Melilotus alba;21420;estimation;350000;;per ramet/tussock or individual plant ;BIOPOP April 2005;350000;;;;seednumber > 100,000;;;;unknown;unknown;;;Turkington, R. A. (1978): The biology of Canadian weeds. 29. Melilotus alba Desr. and M. officinalis (L.) Lam.; Melilotus alba;21420;estimation;14235;;per ramet/tussock or individual plant ;BIOPOP April 2005;14235;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Turkington, R. A. (1978): The biology of Canadian weeds. 29. Melilotus alba Desr. and M. officinalis (L.) Lam.; Melilotus alba;21420;actual measurement;48168;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;48168;;;;10,000 < seednumber <= 100,000;1;;30490.563;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Melilotus alba;21420;actual measurement (following LEDA data standards);4287.5;4;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4522.25;6395;3119;4287.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Melilotus altissima;22213;actual measurement (following LEDA data standards);856;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;828.1;1260;315;856;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Melilotus officinalis;22218;actual measurement;46917.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;46917.33333;;;;10,000 < seednumber <= 100,000;1;;52475.96118;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Melilotus officinalis;22218;unknown;100000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plants General comment: large plants;Turkington, R. A. (1978): The biology of Canadian weeds. 29. Melilotus alba Desr. and M. officinalis (L.) Lam.; Melilotus officinalis;22218;unknown;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: plants in sterile soil;Turkington, R. A. (1978): The biology of Canadian weeds. 29. Melilotus alba Desr. and M. officinalis (L.) Lam.; Melilotus officinalis;22218;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Turkington, R. A. (1978): no title given, publication in Canadian Journal of Plant Science issue: 58 pages: 523-537 [58]; Melilotus officinalis;22218;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Turkington, R. A. (1978): no title given, publication in Canadian Journal of Plant Science issue: 58 pages: 523-537 [58]; Melittis melissophyllum;24619;actual measurement;48;9;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;48;;;;10 < seednumber <= 100;1;;;counting ;;1999-07-03 00:00:00.0;;;UNITED KINGDOM Mentha aquatica;24622;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Mentha arvensis;23905;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Mentha arvensis;23905;actual measurement;250505;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;250505;;;;seednumber > 100,000;1;;239507.8341;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Mentha arvensis;23905;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Mentha arvensis;23905;actual measurement (following LEDA data standards);19.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29.5;97;3;19.5;10 < seednumber <= 100;;;;counting ;;2003-09-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Mentha arvensis;23905;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;200;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Mentha longifolia;24632;actual measurement (following LEDA data standards);1;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2.67;10;1;1;seednumber <= 10;;;;counting ;;2003-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Mentha pulegium;24284;actual measurement (following LEDA data standards);516.5;6;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;541.5;1113;221;516.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Mentha suaveolens;23642;actual measurement;56512;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;56512;;;;10,000 < seednumber <= 100,000;1;;64970.93538;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Menyanthes trifoliata;26352;actual measurement;210;;per multiple flower stem;BIOPOP April 2005;;220;200;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Menyanthes trifoliata;26352;actual measurement;210;;per multiple flower stem;BIOPOP April 2005;210;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Menyanthes trifoliata;26352;actual measurement;12.7;;per single flower inflorescence ;BIOPOP April 2005;12.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per capsule;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Menyanthes trifoliata;26352;actual measurement;96;250;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;72;;10 < seednumber <= 100;1;;;counting ;;1998-06-12 00:00:00.0;;;UNITED KINGDOM Menyanthes trifoliata;26352;actual measurement;1625.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1625.666667;;;;1000 < seednumber <= 10,000;1;;1762.420589;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Menyanthes trifoliata;26352;actual measurement;1.8;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;1.8;3;1;;seednumber <= 10;1;;;counting ;unknown;;,05.09.1933;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Menyanthes trifoliata;26352;actual measurement;.9;10;per ramet/tussock or individual plant ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;.9;;;;seednumber <= 10;1;;;counting and extrapolation ;single flower inflorescence ;;very low seed setting per inflorescence/ramet,05.09.1933;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Menyanthes trifoliata;26352;actual measurement;12.7;;per single flower inflorescence ;BIOPOP April 2005;;13.4;12;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per capsule;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Menyanthes trifoliata;26352;actual measurement (following LEDA data standards);130;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;137.67;224;75;130;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Menyanthes trifoliata;26352;estimation;31;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;31;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Mercurialis annua;20019;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Mercurialis annua;20019;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Mercurialis annua;20019;actual measurement (following LEDA data standards);144;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;215.56;660;34;144;100 < seednumber <= 1000;;;;counting ;;2004-07-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Mercurialis annua;20019;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Mercurialis perennis;19987;estimation;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Mercurialis perennis;19987;actual measurement;1726.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1726.333333;;;;1000 < seednumber <= 10,000;1;;1016.405595;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Mercurialis perennis;19987;actual measurement;14;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;16;12;;10 < seednumber <= 100;1;;;counting ;;1999-05-12 00:00:00.0;;;UNITED KINGDOM Mercurialis perennis;19987;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Martin, M. H. (unknown e-mail address); Mercurialis perennis;19987;actual measurement;3.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3.4;;;3.5;seednumber <= 10;1;.452155332;1.429840706;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Mertensia maritima;12418;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Scott, G. A. M.(1963): no title given, publication in Journal of Ecology issue: 51 pages: 733-742 [51]; Mespilus germanica;30357;actual measurement (following LEDA data standards);5;5;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5;5;5;5;seednumber <= 10;;;;counting ;;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Meum athamanticum;1148;actual measurement;2700;65;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;2700;;;;1000 < seednumber <= 10,000;1;;;counting ;;1997-08-15 00:00:00.0;;;UNITED KINGDOM Mibora minima;42486;actual measurement;525;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;525;;;;100 < seednumber <= 1000;1;;;counting ;;1998-05-15 00:00:00.0;;;UNITED KINGDOM Mibora minima;42486;laboratory/greenhouse/garden experiment;1536;4;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1910;4560;8;1536;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Milium effusum;43212;actual measurement;278.4;;per multiple flower inflorescence ;BIOPOP April 2005;278.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Milium effusum;43212;actual measurement;209.1;;per multiple flower inflorescence ;BIOPOP April 2005;209.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Milium effusum;43212;actual measurement;209.1;;per multiple flower inflorescence ;BIOPOP April 2005;209.1;446;107;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Milium effusum;43212;actual measurement;450;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;450;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Milium effusum;43212;estimation;73;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;;136;10;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): up to 136;Bennett, S. T. (unknown e-mail address); Milium effusum;43212;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Bennett, S. T. (unknown e-mail address); Milium effusum;43212;actual measurement;3112.5;;per square meter;BIOPOP April 2005;;5904;321;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Milium effusum;43212;actual measurement;282.5;;per multiple flower inflorescence ;BIOPOP April 2005;282.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Milium effusum;43212;actual measurement;349.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;365.8;;;349.5;100 < seednumber <= 1000;1;51.44075341;162.6699453;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Milium effusum;43212;actual measurement;63794.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;63794.33333;;;;10,000 < seednumber <= 100,000;1;;34134.4935;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Milium vernale;42491;actual measurement;36;54;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;48;24;;10 < seednumber <= 100;1;;;counting ;;1998-05-01 00:00:00.0;;;UNITED KINGDOM Mimulus guttatus;34136;actual measurement;1041626.667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1041626.667;;;;seednumber > 100,000;1;;262384.6378;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Mimulus guttatus;34136;laboratory/greenhouse/garden experiment;9109;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21774.8;71977;5918;9109;1000 < seednumber <= 10,000;;;;counting and weighing ;;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Mimulus guttatus;34136;estimation;150;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;150;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c.150;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Minuartia hybrida;16496;estimation;35;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;35;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Minuartia hybrida;16496;actual measurement (following LEDA data standards);24;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19;29;4;24;10 < seednumber <= 100;;;;counting ;;2004-05-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Minuartia hybrida;16496;estimation;1569;48;per ramet/tussock or individual plant ;BIOPOP April 2005;1569;1747;1391;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Minuartia sedoides;17489;actual measurement;1950;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2100;1800;;1000 < seednumber <= 10,000;1;;;counting ;;1997-08-06 00:00:00.0;;;UNITED KINGDOM Minuartia verna;17060;actual measurement (following LEDA data standards);21.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25.6;67;5;21.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Misopates orontium;34219;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant General comment: max >10000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Misopates orontium;34219;actual measurement;1200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1200;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Misopates orontium;34219;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;800;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Misopates orontium;34219;laboratory/greenhouse/garden experiment;3809;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5127.75;11051;1842;3809;1000 < seednumber <= 10,000;;;;counting ;;2004-10-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Moehringia trinervia;16247;estimation;2500;;per ramet/tussock or individual plant ;BIOPOP April 2005;2500;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Moehringia trinervia;16247;estimation;17;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;17;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Moehringia trinervia;16247;actual measurement;9430;;per square meter;BIOPOP April 2005;;9430;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moehringia trinervia;16247;actual measurement;422.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;422.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moehringia trinervia;16247;actual measurement;172.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;172.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moehringia trinervia;16247;actual measurement;23;;per ramet/tussock or individual plant ;BIOPOP April 2005;23;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moehringia trinervia;16247;actual measurement;205.5;;per square meter;BIOPOP April 2005;;395;16;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moehringia trinervia;16247;actual measurement;4776.5;;per square meter;BIOPOP April 2005;;9430;123;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moehringia trinervia;16247;actual measurement;813;;per square meter;BIOPOP April 2005;;1276;350;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moehringia trinervia;16247;actual measurement;816;;per ramet/tussock or individual plant ;BIOPOP April 2005;;816;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moehringia trinervia;16247;estimation;12;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;12;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 12;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Moehringia trinervia;16247;actual measurement;46;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;46;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Moehringia trinervia;16247;actual measurement;29;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44.8;;;29;10 < seednumber <= 100;1;13.11216568;41.46430861;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Moehringia trinervia;16247;actual measurement;8;;per square meter;BIOPOP April 2005;;;8;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Moenchia erecta;16558;estimation;128;217;per ramet/tussock or individual plant ;BIOPOP April 2005;128;136;120;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Moenchia erecta;16558;estimation;60;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;60;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Molinia caerulea;42495;actual measurement;68878.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;68878.66667;;;;10,000 < seednumber <= 100,000;1;;61052.87127;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Molinia caerulea;42495;actual measurement;1120;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1072.4;;;1120;1000 < seednumber <= 10,000;1;131.2398314;415.0167868;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Molinia caerulea s. caerulea;43044;laboratory/greenhouse/garden experiment;7;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);7;7;7;7;seednumber <= 10;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-31 00:00:00.0;preaggregated value obtained from single record;;GERMANY Moneses uniflora;28798;actual measurement;1155439.667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1155439.667;;;;seednumber > 100,000;1;;214375.5348;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Moneses uniflora;28798;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Monotropa hypopitys;28803;estimation;16000;;per ramet/tussock or individual plant ;BIOPOP April 2005;16000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Monotropa hypopitys;28803;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Montia fontana;27478;actual measurement;9;800;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;9;;;;seednumber <= 10;1;;;counting ;;1999-09-01 00:00:00.0;;;UNITED KINGDOM Montia fontana subsp. chondrosperma;27489;actual measurement (following LEDA data standards);7;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19.46;80;3;7;seednumber <= 10;;;;counting ;;2003-05-07 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Muscari botryoides;38961;actual measurement (following LEDA data standards);43;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;48.3;89;38;43;10 < seednumber <= 100;;;;counting ;;2004-05-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Myagrum perfoliatum;14601;laboratory/greenhouse/garden experiment;144;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;144;192;96;144;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-07-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Mycelis muralis;11510;estimation;14;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;14;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Mycelis muralis;11510;actual measurement;160;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;160;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Mycelis muralis;11510;actual measurement;3150;;per square meter;BIOPOP April 2005;;3150;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Mycelis muralis;11510;actual measurement;44286.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44286.66667;;;;10,000 < seednumber <= 100,000;1;;9507.807756;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Mycelis muralis;11510;actual measurement;27.5;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;50;5;;10 < seednumber <= 100;1;;;counting ;;1998-08-10 00:00:00.0;;;UNITED KINGDOM Mycelis muralis;11510;actual measurement;192.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;194.5;;;192.5;100 < seednumber <= 1000;1;8.770214745;27.73385416;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Mycelis muralis;11510;actual measurement;828.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;828.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Mycelis muralis;11510;actual measurement;9005;;per square meter;BIOPOP April 2005;;9005;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Myosotis alpestris;12022;actual measurement;50;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;80;20;;10 < seednumber <= 100;1;;;counting ;;1997-08-30 00:00:00.0;;;UNITED KINGDOM Myosotis alpestris;12022;actual measurement;70;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;20;;10 < seednumber <= 100;1;;;counting ;;1999-08-19 00:00:00.0;;;UNITED KINGDOM Myosotis alpestris;12022;actual measurement;72;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;104;40;;10 < seednumber <= 100;1;;;counting ;;1997-08-11 00:00:00.0;;;UNITED KINGDOM Myosotis alpestris;12022;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Elkington, T. T.(1964): no title given, publication in Journal of Ecology issue: 52 pages: 709-722 [52]; Myosotis alpestris;12022;estimation;65;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;;120;10;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): up to 120;Elkington, T. T.(1964): no title given, publication in Journal of Ecology issue: 52 pages: 709-722 [52]; Myosotis arvensis;12027;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Myosotis arvensis;12027;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Myosotis arvensis;12027;actual measurement;1400;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];1400;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;diaspores!;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Myosotis arvensis;12027;estimation (following LEDA data standards);700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;700;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Myosotis arvensis;12027;actual measurement;116196.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;116196.5;;;;seednumber > 100,000;1;;144588.9232;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Myosotis arvensis;12027;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Myosotis discolor;11975;actual measurement (following LEDA data standards);24;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23.67;35;12;24;10 < seednumber <= 100;;;;counting ;;2004-05-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Myosotis laxa;11988;laboratory/greenhouse/garden experiment;469;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;486.2;650;232;469;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Myosotis laxa;11988;actual measurement (following LEDA data standards);66;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;82.3;151;44;66;10 < seednumber <= 100;;;;counting ;;2004-06-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Myosotis nemorosa;11994;actual measurement;33859.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33859.33333;;;;10,000 < seednumber <= 100,000;1;;15257.52802;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Myosotis ramosissima;11938;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Myosotis ramosissima;11938;actual measurement;379;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;379;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Myosotis rehsteineri;11945;actual measurement (following LEDA data standards);892.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1038;2688;70;892.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Myosotis scorpioides;11951;actual measurement;51257;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51257;;;;10,000 < seednumber <= 100,000;1;;49896.34786;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Myosotis scorpioides;11951;actual measurement;59.5;10;per ramet/tussock or individual plant ;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;60.3;;;59.5;10 < seednumber <= 100;1;4.939748082;15.62085501;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Myosotis scorpioides;11951;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Myosotis sparsiflora;11960;actual measurement;49477.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;49477.33333;;;;10,000 < seednumber <= 100,000;1;;34529.34319;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Myosotis stricta;11964;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Myosotis stricta;11964;actual measurement;28;;per multiple flower inflorescence ;BIOPOP April 2005;28;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Myosotis stricta;11964;actual measurement (following LEDA data standards);85.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;271.1;1284;39;85.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-05-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Myosotis stricta;11964;actual measurement;11200;;per square meter;BIOPOP April 2005;;11200;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Myosotis stricta;11964;actual measurement;56;;per multiple flower inflorescence ;BIOPOP April 2005;;56;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Myosotis stricta;11964;actual measurement;6440;;per square meter;BIOPOP April 2005;;11200;1680;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Myosotis stricta;11964;actual measurement;14;;per square meter;BIOPOP April 2005;;;14;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Myosotis sylvatica;11966;actual measurement;192;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;192;;;;100 < seednumber <= 1000;1;;;counting ;;1997-06-30 00:00:00.0;;;UNITED KINGDOM Myosoton aquaticum;15865;actual measurement;692356.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;692356.75;;;;seednumber > 100,000;1;;824044.6408;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Myosurus minimus;27104;estimation;345;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;345;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Myosurus minimus;27104;actual measurement (following LEDA data standards);2328;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3004.07;6417;1610;2328;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-04-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Myosurus minimus;27104;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Myosurus minimus;27104;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Myosurus minimus;27104;estimation;1100;100;per ramet/tussock or individual plant ;BIOPOP April 2005;1100;1260;940;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Myrica gale;25316;actual measurement (following LEDA data standards);14370;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15943;22730;10729;14370;10,000 < seednumber <= 100,000;;;;counting ;;2003-09-11 00:00:00.0;PREAGGREGATED! Raw record's comment: 2: empty infructescence;;GERMANY Myriophyllum spicatum;25232;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): /schizocarp;Arber, A.(1920): Water Plants, Cambridge University Press, London []; Myrrhis odorata;1152;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Najas marina;39411;actual measurement (following LEDA data standards);27;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28.5;52;13;27;10 < seednumber <= 100;;;;counting ;;2005-08-25 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Narcissus pseudonarcissus;35717;estimation;89;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;89;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Caldwell, J.(1955): no title given, publication in Journal of Ecology issue: 43 pages: 331-341 [43]; Narcissus pseudonarcissus;35717;actual measurement;40;350;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;50;30;;10 < seednumber <= 100;1;;;counting ;;1999-05-23 00:00:00.0;;;UNITED KINGDOM Narcissus pseudonarcissus;35717;actual measurement;100;45;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;80;;10 < seednumber <= 100;1;;;counting ;;1999-05-12 00:00:00.0;;;UNITED KINGDOM Nardus stricta;43217;actual measurement (following LEDA data standards);15;4;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;15.75;20;13;15;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Nardus stricta;43217;actual measurement (following LEDA data standards);13;5;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;13.4;14;13;13;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Nardus stricta;43217;actual measurement;.7;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;.7;3;0;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 4% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Nardus stricta;43217;actual measurement;658;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];658;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Nardus stricta;43217;actual measurement;14;10;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];14;16;12;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Nardus stricta;43217;actual measurement;13121.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13121.66667;;;;10,000 < seednumber <= 100,000;1;;2750.165147;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Narthecium ossifragum;38170;actual measurement;225;6;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;300;150;;100 < seednumber <= 1000;1;;;counting ;;1998-10-21 00:00:00.0;;;UNITED KINGDOM Narthecium ossifragum;38170;estimation;607;100;per ramet/tussock or individual plant ;BIOPOP April 2005;607;626;588;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Narthecium ossifragum;38170;actual measurement (following LEDA data standards);80;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;76.67;85;65;80;10 < seednumber <= 100;;;;counting ;;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Nasturtium microphyllum;12669;estimation;30;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;30;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 30;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Nasturtium microphyllum;12669;actual measurement;550;25;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;600;500;;100 < seednumber <= 1000;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Nepeta cataria;24784;actual measurement (following LEDA data standards);236;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;253.6;580;48;236;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-06-19 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Neslia paniculata;13116;actual measurement;214912.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;214912.5;;;;seednumber > 100,000;1;;166843.5114;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Neslia paniculata;13116;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Neslia paniculata;13116;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;150;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Neslia paniculata;13116;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Nicandra physalodes;34982;laboratory/greenhouse/garden experiment;68068;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;68485;69919;67468;68068;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Nicotiana rustica;34935;laboratory/greenhouse/garden experiment;204;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;204;204;204;204;100 < seednumber <= 1000;;;;counting ;;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Nicotiana rustica;34935;laboratory/greenhouse/garden experiment;7357.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7393.9;13245;2584;7357.5;1000 < seednumber <= 10,000;;;;counting ;;2005-09-22 00:00:00.0;preaggregated value obtained from single record;;GERMANY Nigella arvensis;27106;actual measurement;420;;per ramet/tussock or individual plant ;BIOPOP April 2005;;420;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Nigella arvensis;27106;laboratory/greenhouse/garden experiment;298.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;371.9;932;77;298.5;100 < seednumber <= 1000;;;;counting ;;2004-10-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Nigella arvensis;27106;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;300;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Nigella arvensis;27106;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;100;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Nigella damascena;27114;actual measurement (following LEDA data standards);173;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;184.3;345;58;173;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Nonea pulla;11903;actual measurement (following LEDA data standards);25.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23.8;47;7;25.5;10 < seednumber <= 100;;;;counting ;;2004-07-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Nuphar lutea;25253;actual measurement (following LEDA data standards);380;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;475.67;1113;228;380;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Nymphaea alba;25260;actual measurement (following LEDA data standards);878;4;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;988;1862;334;878;100 < seednumber <= 1000;;;;counting and weighing ;;2005-08-25 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Nymphaea alba;25260;estimation;1700;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1700;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Heslop-Harrison, Y.(1955): no title given, publication in Journal of Ecology issue: 43 pages: 719-734 [43]; Nymphoides peltata;26354;actual measurement (following LEDA data standards);231;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;253.9;539;125;231;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Odontites lutea;33000;actual measurement;165255;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;165255;;;;seednumber > 100,000;1;;120369.2863;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Odontites verna;33007;actual measurement;952098;6;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;952098;;;;seednumber > 100,000;1;;771072.5185;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Odontites verna;33007;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Odontites verna;33007;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Odontites verna;33007;actual measurement (following LEDA data standards);2580;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2580;;;;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);1436;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1436;;;;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);675;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;675;;;;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);1653;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1653;;;;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);1193;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1193;;;;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);901;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;901;;;;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);672;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;672;;;;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);169;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;169;;;;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);530;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;530;;;;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna;33007;actual measurement (following LEDA data standards);162;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;162;;;;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-07 00:00:00.0;;;NETHERLANDS Odontites verna subsp. litoralis;33008;laboratory/greenhouse/garden experiment;283;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;333.5;713;120;283;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Oenanthe aquatica;1156;actual measurement;47100;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;47100;;;;10,000 < seednumber <= 100,000;1;;42792.87324;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Oenanthe crocata;1659;actual measurement (following LEDA data standards);1475;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1475;1475;1475;1475;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-06 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Oenanthe fistulosa;1660;actual measurement (following LEDA data standards);150;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;144;240;60;150;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-08-02 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Oenanthe fistulosa;1660;actual measurement (following LEDA data standards);178;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;235.4;628;57;178;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-24 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Oenanthe lachenalii;2104;actual measurement (following LEDA data standards);3331;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5942;32815;490;3331;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-12 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Oenothera ammophila;26491;actual measurement;4580.2;5;per ramet/tussock or individual plant ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];4580.2;;;;1000 < seednumber <= 10,000;10;944.11;2111.1;counting and extrapolation ;single flower inflorescence ;2000-11-15 00:00:00.0;capsules per plant: 146.8;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera ammophila;26491;actual measurement;31.2;5;per single flower inflorescence ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];31.2;;;;10 < seednumber <= 100;10;1.713;3.83;counting ;single flower inflorescence ;2000-11-15 00:00:00.0;;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera biennis;26442;actual measurement;15000.8;5;per ramet/tussock or individual plant ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];15000.8;;;;10,000 < seednumber <= 100,000;10;6082.86;13601.7;counting and extrapolation ;single flower inflorescence ;2000-11-15 00:00:00.0;capsules per plant: 89.3;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera biennis;26442;actual measurement;588803.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;588803.6667;;;;seednumber > 100,000;1;;52308.04279;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Oenothera biennis;26442;estimation;242;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;242;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Oenothera biennis;26442;unknown;27500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;50000;5000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hall, I. V.(1988): The biology of Canadian weeds. 84. Oenothera biennis L.;UNITED STATES Oenothera biennis;26442;unknown;118500;;per ramet/tussock or individual plant ;BIOPOP April 2005;118500;;;;seednumber > 100,000;;;;unknown;unknown;;;Hall, I. V.(1988): The biology of Canadian weeds. 84. Oenothera biennis L.;UNITED STATES Oenothera biennis;26442;unknown;25200;;per ramet/tussock or individual plant ;BIOPOP April 2005;25200;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hall, I. V.(1988): The biology of Canadian weeds. 84. Oenothera biennis L.;UNITED KINGDOM Oenothera biennis;26442;actual measurement;158;5;per single flower inflorescence ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];158;;;;100 < seednumber <= 1000;10;26.28;58.76;counting ;single flower inflorescence ;2000-11-15 00:00:00.0;;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera chicagoensis;26438;actual measurement;32629.6;5;per ramet/tussock or individual plant ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];32629.6;;;;10,000 < seednumber <= 100,000;10;4575;10230;counting and extrapolation ;single flower inflorescence ;2000-11-15 00:00:00.0;capsules per plant: 105.5;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera chicagoensis;26438;actual measurement;309.3;5;per single flower inflorescence ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];309.3;;;;100 < seednumber <= 1000;10;10.912;24.4;counting ;single flower inflorescence ;2000-11-15 00:00:00.0;;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera erythrosepala;26448;actual measurement;52629.2;5;per ramet/tussock or individual plant ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];52629.2;;;;10,000 < seednumber <= 100,000;10;5085.44;11371.4;counting and extrapolation ;single flower inflorescence ;2000-11-15 00:00:00.0;Oenothera coronifera, capsules per plant: 139.6;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera erythrosepala;26448;laboratory/greenhouse/garden experiment;25264;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25059.3;40106;6442;25264;10,000 < seednumber <= 100,000;;;;counting ;;2004-10-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Oenothera erythrosepala;26448;actual measurement;156.2;5;per single flower inflorescence ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];156.2;;;;100 < seednumber <= 1000;1;12.893;28.83;counting ;single flower inflorescence ;2000-11-15 00:00:00.0;;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera erythrosepala;26448;actual measurement;377;5;per single flower inflorescence ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];377;;;;100 < seednumber <= 1000;10;29.44;65.83;counting ;single flower inflorescence ;2000-11-15 00:00:00.0;Oenothera coronifera;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera erythrosepala;26448;actual measurement;22466.3;5;per ramet/tussock or individual plant ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];22466.3;;;;10,000 < seednumber <= 100,000;1;5912.52;13220.8;counting and extrapolation ;single flower inflorescence ;2000-11-15 00:00:00.0;capsules per plant: 140.3;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera issleri;26451;actual measurement;14956.4;5;per ramet/tussock or individual plant ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];14956.4;;;;10,000 < seednumber <= 100,000;10;4227.06;9452;counting and extrapolation ;single flower inflorescence ;2000-11-15 00:00:00.0;capsules per plant: 139.0;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera issleri;26451;actual measurement;107.6;5;per single flower inflorescence ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];107.6;;;;100 < seednumber <= 1000;10;12.723;28.45;counting ;single flower inflorescence ;2000-11-15 00:00:00.0;;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera parviflora;26459;actual measurement;7481.2;5;per ramet/tussock or individual plant ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];7481.2;;;;1000 < seednumber <= 10,000;10;1340.12;2996.6;counting and extrapolation ;single flower inflorescence ;2000-11-15 00:00:00.0;capsules per plant: 59.0;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera parviflora;26459;actual measurement;126.8;5;per single flower inflorescence ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];126.8;;;;100 < seednumber <= 1000;10;7.518;16.81;counting ;single flower inflorescence ;2000-11-15 00:00:00.0;;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera parviflora;26459;actual measurement (following LEDA data standards);173.5;10;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;174.5;216;143;173.5;100 < seednumber <= 1000;;;;counting ;;2003-08-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Oenothera parviflora;26459;laboratory/greenhouse/garden experiment;5094;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5033.33;6237;4148;5094;1000 < seednumber <= 10,000;;;;counting ;;2004-10-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Oenothera rosea;26462;actual measurement;8075.8;5;per ramet/tussock or individual plant ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];8075.8;;;;1000 < seednumber <= 10,000;10;823.81;1842.1;counting and extrapolation ;single flower inflorescence ;2000-11-15 00:00:00.0;capsules per plant: 64.4;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Oenothera rosea;26462;actual measurement;125.4;5;per single flower inflorescence ;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];125.4;;;;100 < seednumber <= 1000;10;12.307;27.52;counting ;single flower inflorescence ;2000-11-15 00:00:00.0;;Mihulka, Stanislav(2003): Invasiveness of Oenothera congeners in Europe related to seed characteristics [];CZECH REPUBLIC Omalotheca norvegica;11511;actual measurement;421.2;10;per ramet/tussock or individual plant ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;421.2;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;2005-03-24 00:00:00.0;seeds per ramet (one single shoot is one ramet);Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Omalotheca norvegica;11511;actual measurement;30.3;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;30.3;38;13;;10 < seednumber <= 100;1;;;counting ;unknown;2005-03-24 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Omalotheca norvegica;11511;actual measurement;816;17;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;816;;;;100 < seednumber <= 1000;1;;;counting ;;1998-08-28 00:00:00.0;;;UNITED KINGDOM Omalotheca supina;10537;actual measurement;69.4;10;per ramet/tussock or individual plant ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;69.4;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;multiple flower inflorescence ;2006-07-24 00:00:00.0;seeds per ramet (one shoot per ramet);Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Omalotheca supina;10537;actual measurement;17.8;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;17.8;40;0;;10 < seednumber <= 100;1;;;counting ;unknown;2006-07-24 00:00:00.0;only full developed seeds per head, seed setting: 46% of number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Omalotheca supina;10537;actual measurement;60;250;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;90;30;;10 < seednumber <= 100;1;;;counting ;;1997-08-08 00:00:00.0;;;UNITED KINGDOM Omalotheca supina;10537;actual measurement;92;17;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;161;23;;10 < seednumber <= 100;1;;;counting ;;1999-08-06 00:00:00.0;;;UNITED KINGDOM Omalotheca supina;10537;actual measurement (following LEDA data standards);13;3;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;15;31;1;13;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Omalotheca supina;10537;actual measurement (following LEDA data standards);16;7;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;32.86;102;3;16;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Omalotheca sylvatica;11311;estimation;9042;41;per ramet/tussock or individual plant ;BIOPOP April 2005;9042;10033;8051;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Omalotheca sylvatica;11311;actual measurement;16683;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;28469;4897;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Omalotheca sylvatica;11311;actual measurement;1281;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1281;;;;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Omalotheca sylvatica;11311;estimation;11500;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;15000;8000;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Omalotheca sylvatica;11311;actual measurement;1004711;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1004711;;;;seednumber > 100,000;1;;18753.80129;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Omalotheca sylvatica;11311;estimation;106;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;106;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Omphalodes scorpioides;11922;actual measurement;39866.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39866.66667;;;;10,000 < seednumber <= 100,000;1;;28611.41963;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Onobrychis viciifolia;21874;actual measurement;10616.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10616.66667;;;;10,000 < seednumber <= 100,000;1;;1303.920371;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Onobrychis viciifolia;21874;actual measurement;16;10;per multiple flower inflorescence ;BIOPOP April 2005;16;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Onobrychis viciifolia;21874;unknown;208;;per square meter;BIOPOP April 2005;208;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Onobrychis viciifolia;21874;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Ononis reclinata;21955;estimation;15;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;15;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Ononis repens;20645;actual measurement;1;10;per single flower inflorescence ;BIOPOP April 2005;1;;;;seednumber <= 10;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Ononis repens;20645;unknown;60;;per square meter;BIOPOP April 2005;60;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Ononis repens;20645;unknown;4;;per square meter;BIOPOP April 2005;4;;;;seednumber <= 10;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Ononis repens;20645;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Ononis spinosa;21958;actual measurement;300;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;300;;;;100 < seednumber <= 1000;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Ononis spinosa;21958;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Onopordum acanthium;9350;estimation (following LEDA data standards);8000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;8000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Onopordum acanthium;9350;actual measurement (following LEDA data standards);21112;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27944;46649;16071;21112;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Onopordum acanthium;9350;laboratory/greenhouse/garden experiment;769;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;769;769;769;769;100 < seednumber <= 1000;;;;counting ;;2005-08-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Onopordum acanthium;9350;actual measurement;12751;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12751;;;;10,000 < seednumber <= 100,000;1;;7567.618053;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ophrys apifera;39669;estimation;40000;;per ramet/tussock or individual plant ;BIOPOP April 2005;40000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Ophrys apifera;39669;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Orchis morio;39762;estimation;32000;24;per ramet/tussock or individual plant ;BIOPOP April 2005;32000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Orchis morio;39762;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Summerhayes, V. S.(1968): Wild Orchids of Britain, 2nd edition, Collins, London. []; Orchis morio;39762;categorized from original source;32000;1;per ramet/tussock or individual plant ;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];32000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;from literature: Tournay, 1960, no mean!;Arditti, Joseph(2000): Tansley Review No. 110: Numerical and physical properties of orchid seeds and their biological implications [145];UNITED STATES Orchis purpurea;40052;estimation;6000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;6000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 6000;Rose, F.(1948): no title given, publication in Journal of Ecology issue: 36 pages: 366-377 [36]; Origanum vulgare;23973;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Origanum vulgare;23973;actual measurement;217339.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;217339.6667;;;;seednumber > 100,000;1;;225304.7894;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Orlaya grandiflora;2113;actual measurement;70;;per ramet/tussock or individual plant ;BIOPOP April 2005;70;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Orlaya grandiflora;2113;laboratory/greenhouse/garden experiment;510;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;633.5;1528;144;510;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ornithogalum nutans;39001;unknown;6;1;per single flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;;8;4;;seednumber <= 10;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Ornithogalum orthophyllum subsp. kochii;38897;unknown;95;1;per ramet/tussock or individual plant ;Herrmann, Nick(2002): Biological Flora of Central Europe: "Ornithogalum angustifolium" nom. prov. Syn. p.p. O. orthophyllum ssp. kochii = O. kochii PARL., O. gussonei TEN. [197];;140;50;;10 < seednumber <= 100;1;;;unknown;unknown;;;Herrmann, Nick(2002): Biological Flora of Central Europe: "Ornithogalum angustifolium" nom. prov. Syn. p.p. O. orthophyllum ssp. kochii = O. kochii PARL., O. gussonei TEN. [197];Europe Ornithogalum orthophyllum subsp. kochii;38897;unknown;15;1;per single flower inflorescence ;Herrmann, Nick(2002): Biological Flora of Central Europe: "Ornithogalum angustifolium" nom. prov. Syn. p.p. O. orthophyllum ssp. kochii = O. kochii PARL., O. gussonei TEN. [197];15;35;8;;10 < seednumber <= 100;1;;;unknown;unknown;;seeds per capsule;Herrmann, Nick(2002): Biological Flora of Central Europe: "Ornithogalum angustifolium" nom. prov. Syn. p.p. O. orthophyllum ssp. kochii = O. kochii PARL., O. gussonei TEN. [197];Europe Ornithogalum pyrenaicum;38908;estimation;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Ornithogalum pyrenaicum;38908;estimation;16;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;16;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 16;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Ornithogalum pyrenaicum;38908;actual measurement;60;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;60;;;;10 < seednumber <= 100;1;;;counting ;;1997-09-07 00:00:00.0;;;UNITED KINGDOM Ornithogalum pyrenaicum;38908;actual measurement;60;22;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;96;24;;10 < seednumber <= 100;1;;;counting ;;1997-08-28 00:00:00.0;;;UNITED KINGDOM Ornithogalum pyrenaicum;38908;estimation;21;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;21;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Ornithogalum umbellatum;39006;actual measurement (following LEDA data standards);450;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;530;1050;300;450;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ornithopus pinnatus;21023;actual measurement;64;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;64;;;;10 < seednumber <= 100;1;;;counting ;;1998-07-03 00:00:00.0;;;UNITED KINGDOM Orobanche alba;26302;actual measurement;3600;11;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;3600;;;;1000 < seednumber <= 10,000;1;;;counting ;;1997-08-07 00:00:00.0;;;UNITED KINGDOM Orobanche elatior;26270;estimation;270000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;270000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Orobanche elatior;26270;actual measurement (following LEDA data standards);77;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;65;88;30;77;10 < seednumber <= 100;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Orobanche elatior;26270;estimation;98000;46;per ramet/tussock or individual plant ;BIOPOP April 2005;98000;102000;94000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Orobanche elatior;26270;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Orobanche hederae;26288;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Orobanche hederae;26288;estimation;25000;40;per ramet/tussock or individual plant ;BIOPOP April 2005;25000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Orobanche loricata;26187;estimation;350000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;350000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Orobanche loricata;26187;estimation;105000;31;per ramet/tussock or individual plant ;BIOPOP April 2005;105000;116000;94000;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Orobanche minor;26203;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Orobanche minor;26203;estimation;2000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2000;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Orobanche minor;26203;estimation;35000;;per ramet/tussock or individual plant ;BIOPOP April 2005;35000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Orobanche minor;26203;actual measurement;135000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;135000;;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Orobanche reticulata;26159;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Hughes, M.(1996): no title given, publication in The Naturalist issue: 121 pages: 3-10 [121]; Orthilia secunda;28809;estimation;515;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;515;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Orthilia secunda;28809;estimation;3558;45;per ramet/tussock or individual plant ;BIOPOP April 2005;3558;4061;3055;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Osmunda regalis;295;actual measurement (following LEDA data standards);930800;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;829656;1211040;310200;930800;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Oxalis acetosella;25842;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Oxalis acetosella;25842;actual measurement;14.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;14.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;1552.5;;per square meter;BIOPOP April 2005;;3098;7;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;3;;per square meter;BIOPOP April 2005;;;3;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;363.5;;per square meter;BIOPOP April 2005;;640;87;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;5184;;per square meter;BIOPOP April 2005;;5184;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;67.5;;per square meter;BIOPOP April 2005;;111;24;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;8.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8.3;;;8.5;seednumber <= 10;1;.760847481;2.406010991;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Oxalis acetosella;25842;actual measurement;5;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;5;seednumber <= 10;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Oxalis acetosella;25842;actual measurement;4178.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4178.666667;;;;1000 < seednumber <= 10,000;1;;2137.607385;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Oxalis acetosella;25842;actual measurement;11.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;11.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;48;;per square meter;BIOPOP April 2005;;48;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;11;;per ramet/tussock or individual plant ;BIOPOP April 2005;11;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;13.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;13.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis acetosella;25842;actual measurement;12;;per ramet/tussock or individual plant ;BIOPOP April 2005;12;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Oxalis stricta;25827;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Oxalis stricta;25827;actual measurement;96800;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;96800;;;;10,000 < seednumber <= 100,000;1;;68773.39602;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Oxyria digyna;27715;actual measurement;63.4;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;63.4;124;21;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Oxyria digyna;27715;actual measurement;93.8;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;93.8;156;33;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Oxyria digyna;27715;actual measurement;120;10;per multiple flower stem;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];;150;90;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection period: 1985, maximum in large genets: 3,000;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Oxyria digyna;27715;actual measurement;60;10;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;60;;;;10 < seednumber <= 100;1;;;counting ;;1998-10-14 00:00:00.0;;;UNITED KINGDOM Oxyria digyna;27715;actual measurement;1;10;per single flower inflorescence ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];1;;;;seednumber <= 10;1;0;0;counting ;single flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Paeonia officinalis;25406;actual measurement (following LEDA data standards);42.5;8;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41.13;47;28;42.5;10 < seednumber <= 100;;;;counting ;;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Papaver argemone;25500;actual measurement;2142;227;per ramet/tussock or individual plant ;BIOPOP April 2005;2142;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Papaver argemone;25500;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Papaver argemone;25500;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Papaver argemone;25500;estimation;674;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;674;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Papaver argemone;25500;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Papaver argemone;25500;unknown;10;;per single flower inflorescence ;BIOPOP April 2005;;10;;;seednumber <= 10;;;;unknown;unknown;;Value comment: per capsule;McNaughton, I. H. (1964): Biological flora of the British Isles: Papaver rhoeas L., P. dubium (L.).; Papaver argemone;25500;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;3000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Papaver dubium;25513;estimation (following LEDA data standards);60000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;60000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Papaver dubium;25513;estimation (following LEDA data standards);18000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;18000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Papaver dubium;25513;actual measurement;877824.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;877824.5;;;;seednumber > 100,000;1;;151757.3932;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Papaver dubium;25513;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: dubium Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Papaver dubium;25513;estimation;13700;529;per ramet/tussock or individual plant ;BIOPOP April 2005;13700;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Papaver dubium;25513;actual measurement;18000;;per ramet/tussock or individual plant ;BIOPOP April 2005;18000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Papaver dubium;25513;unknown;80005;;per ramet/tussock or individual plant ;BIOPOP April 2005;;160000;10;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: favourable conditions;McNaughton, I. H. (1964): Biological flora of the British Isles: Papaver rhoeas L., P. dubium (L.).; Papaver dubium;25513;actual measurement;60000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;60000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Papaver dubium;25513;estimation (following LEDA data standards);18000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;18000;;;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Papaver hybridum;25595;actual measurement;1680;277;per ramet/tussock or individual plant ;BIOPOP April 2005;1680;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Papaver hybridum;25595;estimation;615;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;615;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Papaver nudicaule;25608;actual measurement;5040;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];5040;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Papaver nudicaule;25608;actual measurement;846;1;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];846;;;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Papaver rhoeas;25577;estimation;170000;401;per ramet/tussock or individual plant ;BIOPOP April 2005;170000;;;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Papaver rhoeas;25577;actual measurement;20000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;20000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Papaver rhoeas;25577;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;10000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Papaver rhoeas;25577;estimation (following LEDA data standards);20000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;20000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Papaver rhoeas;25577;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Papaver rhoeas;25577;estimation;2556;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2556;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Papaver rhoeas;25577;unknown;1500;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;2000;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Papaver rhoeas;25577;estimation (following LEDA data standards);50000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;50000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Papaver rhoeas;25577;estimation (following LEDA data standards);20000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;20000;;;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Papaver rhoeas;25577;actual measurement;683950;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;683950;;;;seednumber > 100,000;1;;173864.8038;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Papaver rhoeas;25577;actual measurement;50000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;50000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Papaver rhoeas;25577;unknown;4;;per single flower inflorescence ;BIOPOP April 2005;4;;;;seednumber <= 10;;;;unknown;unknown;;Value comment: per capsule;McNaughton, I. H. (1964): Biological flora of the British Isles: Papaver rhoeas L., P. dubium (L.).; Papaver somniferum;25589;actual measurement (following LEDA data standards);5367.5;4;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5162.75;6498;3418;5367.5;1000 < seednumber <= 10,000;;;;counting and weighing ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Papaver somniferum;25589;actual measurement (following LEDA data standards);761;4;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;795.25;1380;279;761;100 < seednumber <= 1000;;;;counting ;;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Parapholis filiformis;42869;laboratory/greenhouse/garden experiment;3988.5;4;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);4962;10135;1736;3988.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Parapholis strigosa;42872;actual measurement (following LEDA data standards);588;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;588;588;588;588;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Parapholis strigosa;42872;actual measurement (following LEDA data standards);8;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.8;17;6;8;seednumber <= 10;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Parapholis strigosa;42872;actual measurement (following LEDA data standards);265;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;266;360;174;265;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Parentucellia viscosa;33509;estimation;483;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;483;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Parentucellia viscosa;33509;estimation;28000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;28000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Parentucellia viscosa;33509;estimation;7227;172;per ramet/tussock or individual plant ;BIOPOP April 2005;7227;7673;6781;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Parietaria judaica;44662;actual measurement (following LEDA data standards);114;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;145;222;95;114;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;BELGIUM Parietaria officinalis;35137;actual measurement (following LEDA data standards);127.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;179.9;717;74;127.5;100 < seednumber <= 1000;;;;counting ;;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Paris quadrifolia;38073;actual measurement;20;;per single flower inflorescence ;BIOPOP April 2005;20;32;8;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per fruit;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Paris quadrifolia;38073;actual measurement;21.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;21.4;55;5;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;126;;per square meter;BIOPOP April 2005;;126;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;80;;per square meter;BIOPOP April 2005;;80;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;18;;per ramet/tussock or individual plant ;BIOPOP April 2005;18;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;90;;per square meter;BIOPOP April 2005;;90;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;25.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;25.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;19.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;19.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;642;;per square meter;BIOPOP April 2005;;642;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;18.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;18.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;735;;per square meter;BIOPOP April 2005;;735;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;26.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;26.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;1848;;per square meter;BIOPOP April 2005;;1848;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;21.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;21.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Paris quadrifolia;38073;actual measurement;22.5;62;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;20;25;;10 < seednumber <= 100;1;;;counting ;;1998-09-29 00:00:00.0;;;UNITED KINGDOM Paris quadrifolia;38073;actual measurement;14;0;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;14;;;;10 < seednumber <= 100;1;;;counting ;;1998-07-13 00:00:00.0;;;UNITED KINGDOM Paris quadrifolia;38073;actual measurement;14;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13.6;;;14;10 < seednumber <= 100;1;.763034876;2.412928143;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Paris quadrifolia;38073;estimation;28;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;28;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 28;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Parnassia palustris;25636;estimation;1792;100;per ramet/tussock or individual plant ;BIOPOP April 2005;1792;1995;1589;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Parnassia palustris;25636;estimation;1338;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1338;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Parnassia palustris;25636;actual measurement;500;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;500;;;;100 < seednumber <= 1000;1;;;counting ;;1998-09-24 00:00:00.0;;;UNITED KINGDOM Parthenocissus quinquefolia;34514;actual measurement (following LEDA data standards);72;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;99.9;225;36;72;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-09-22 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pastinaca sativa;1183;actual measurement;141172;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;141172;;;;seednumber > 100,000;1;;110117.7486;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pastinaca sativa;1183;actual measurement;1578;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];1578;;;;1000 < seednumber <= 10,000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Pedicularis oederi;33763;actual measurement (following LEDA data standards);50.5;2;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;50.5;74;27;50.5;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Pedicularis palustris;33771;actual measurement;1980;;per ramet/tussock or individual plant ;BIOPOP April 2005;1980;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Pedicularis palustris;33771;actual measurement (following LEDA data standards);3220;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3514.8;4987;2240;3220;1000 < seednumber <= 10,000;;;;counting ;;2005-07-15 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Pedicularis palustris;33771;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Pedicularis palustris;33771;actual measurement;637;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;763;189;637;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Pedicularis sylvatica;32992;actual measurement;41490.2;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41490.2;;;;10,000 < seednumber <= 100,000;1;;29155.92187;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pedicularis sylvatica;32992;actual measurement (following LEDA data standards);161.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;161.3;249;91;161.5;100 < seednumber <= 1000;;;;counting ;;2004-06-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pedicularis verticillata;34203;actual measurement;27440;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27440;;;;10,000 < seednumber <= 100,000;1;;16309.5984;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pentaglottis sempervirens;11832;actual measurement (following LEDA data standards);147;6;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;182.5;448;90;147;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Petasites albus;11005;actual measurement (following LEDA data standards);1193;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1271.44;1914;928;1193;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Petasites hybridus;10476;estimation (following LEDA data standards);1500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;The typical case of the species is one multiple flower inflorescence per ramet;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Petasites hybridus;10476;actual measurement (following LEDA data standards);23;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26;42;12;23;10 < seednumber <= 100;;;;counting ;;2004-05-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Petasites hybridus;10476;actual measurement;10839;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10839;;;;10,000 < seednumber <= 100,000;1;;6092.946414;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Petasites spurius;9658;actual measurement (following LEDA data standards);3606;10;per ramet/tussock or individual plant ;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3471;5210;2368;3606;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Petrorhagia prolifera;16636;actual measurement (following LEDA data standards);1015.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1168.75;2605;69;1015.5;1000 < seednumber <= 10,000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Peucedanum cervaria;1621;actual measurement (following LEDA data standards);750;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1018.8;3171;238;750;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-31 00:00:00.0;preaggregated value obtained from single record;;GERMANY Peucedanum officinale;1112;estimation;500000;;per ramet/tussock or individual plant ;BIOPOP April 2005;500000;;;;seednumber > 100,000;;;;unknown;unknown;;large individual with 50 flower stems ;Randall(1996): Biological flora of the British Isles: Peucedanum officinale L.;UNITED KINGDOM Peucedanum oreoselinum;2070;actual measurement (following LEDA data standards);486;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;521.56;1034;291;486;100 < seednumber <= 1000;;;;counting ;;2004-08-31 00:00:00.0;preaggregated value obtained from single record;;GERMANY Peucedanum palustre;2071;actual measurement;102608.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;102608.3333;;;;seednumber > 100,000;1;;58994.00805;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Phacelia tanacetifolia;25220;laboratory/greenhouse/garden experiment;2414;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2523.5;6343;114;2414;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phalaris arundinacea;42396;actual measurement;29828.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29828.66667;;;;10,000 < seednumber <= 100,000;1;;40140.96293;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Phalaris arundinacea;42396;actual measurement;3000;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];3000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;N unknown;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Phalaris canariensis;42881;actual measurement (following LEDA data standards);655;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;782.2;2868;80;655;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phaseolus vulgaris;22039;laboratory/greenhouse/garden experiment;17;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18.57;39;7;17;10 < seednumber <= 100;;;;counting ;single flower inflorescence ;2004-08-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phippsia algida;43579;actual measurement;14.1;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;14.1;24;9;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 74% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Phleum alpinum;42401;actual measurement (following LEDA data standards);88;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;80.33;120;33;88;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Phleum alpinum;42401;actual measurement (following LEDA data standards);37;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;36.33;60;12;37;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Phleum alpinum;42401;actual measurement (following LEDA data standards);45;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;55;76;44;45;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Phleum arenarium;42667;actual measurement (following LEDA data standards);164;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;164.38;252;72;164;100 < seednumber <= 1000;;;;counting ;;2004-06-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phleum paniculatum;43581;laboratory/greenhouse/garden experiment;2899;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);2078.6;3374;577;2899;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phleum phleoides;43239;actual measurement (following LEDA data standards);707;10;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;729.1;1029;411;707;100 < seednumber <= 1000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phleum pratense;42408;actual measurement;45789.8;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45789.8;;;;10,000 < seednumber <= 100,000;1;;55812.05593;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Phleum pratense;42408;actual measurement (following LEDA data standards);677;11;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;776;1990;508;677;100 < seednumber <= 1000;;;;counting ;;2004-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phragmites australis;42412;actual measurement;63199.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;63199.5;;;;10,000 < seednumber <= 100,000;1;;60120.20041;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Phragmites australis;42412;actual measurement;1680;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1892;1468;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Phragmites australis;42412;actual measurement;4;1;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];4;;;;seednumber <= 10;1;;;counting ;unknown;;N unknown;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Phragmites australis;42412;estimation (following LEDA data standards);5;1;per multiple flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;5;;;;seednumber <= 10;1;;;unknown;unknown;;one spikelet;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Phragmites australis;42412;estimation (following LEDA data standards);12450;1;per multiple flower stem;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;12450;;;;10,000 < seednumber <= 100,000;1;;;unknown;multiple flower inflorescence ;;a single shoot with the whole inflorescence, unbranched;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);400;5;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;490;900;300;400;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);44;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;54.67;90;30;44;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Phyllodoce caerulea;19512;estimation;25;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;25;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Coker, P. D.(1973): no title given, publication in Journal of Ecology issue: 61 pages: 901-913 [61]; Phyteuma nigrum;14815;actual measurement (following LEDA data standards);636;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;600.78;946;254;636;100 < seednumber <= 1000;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phyteuma nigrum;14815;actual measurement;162585;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;162585;;;;seednumber > 100,000;1;;145237.6368;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Phyteuma orbiculare;14818;estimation;16;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;16;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Phyteuma spicatum;14784;actual measurement (following LEDA data standards);522;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;468.67;841;99;522;100 < seednumber <= 1000;;;;counting ;;2003-06-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Phytolacca esculenta;27873;actual measurement (following LEDA data standards);352;1;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;352;352;352;352;100 < seednumber <= 1000;;;;counting ;;2003-09-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Picea abies;670;unknown;80374.5;1;per ramet/tussock or individual plant ;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];;92256;68493;;10,000 < seednumber <= 100,000;1;;;total weight;unknown;;N unknown, seedweight from BIOLFLOR;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];GERMANY Picris echioides;10896;actual measurement (following LEDA data standards);56;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;53.2;87;15;56;10 < seednumber <= 100;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;BELGIUM Picris echioides;10896;actual measurement (following LEDA data standards);3.5;2;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.5;4;3;3.5;seednumber <= 10;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;BELGIUM Picris hieracioides;9660;laboratory/greenhouse/garden experiment;17952;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17952;17952;17952;17952;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Picris hieracioides;9660;actual measurement (following LEDA data standards);949.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1445.9;4984;252;949.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Picris hieracioides;9660;actual measurement (following LEDA data standards);477;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;441.7;760;164;477;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pilularia globulifera;12;actual measurement (following LEDA data standards);79;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;79;79;79;79;10 < seednumber <= 100;;;;counting ;;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pimpinella major;1134;actual measurement (following LEDA data standards);14341;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14341;14341;14341;14341;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Pimpinella major;1134;actual measurement (following LEDA data standards);9813;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15797;29010;8568;9813;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pimpinella major;1134;actual measurement;76436.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;76436.66667;;;;10,000 < seednumber <= 100,000;1;;60014.09862;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pimpinella saxifraga;1643;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Pimpinella saxifraga;1643;actual measurement;145816;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;145816;;;;seednumber > 100,000;1;;72228.50274;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pimpinella saxifraga;1643;actual measurement;268;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;268;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Pimpinella saxifraga;1643;actual measurement;122.5;10;per multiple flower inflorescence ;BIOPOP April 2005;122.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Pimpinella saxifraga;1643;actual measurement;1652;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1652;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pimpinella saxifraga;1643;actual measurement;1523;;per ramet/tussock or individual plant ;BIOPOP April 2005;1523;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pimpinella saxifraga;1643;actual measurement;716;;per square meter;BIOPOP April 2005;;716;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pimpinella saxifraga;1643;actual measurement;304.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;304.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pimpinella saxifraga;1643;actual measurement;275.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;275.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pimpinella saxifraga;1643;actual measurement;2478;;per square meter;BIOPOP April 2005;;3304;1652;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pimpinella saxifraga;1643;actual measurement;9566;;per ramet/tussock or individual plant ;BIOPOP April 2005;;9566;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pimpinella saxifraga;1643;unknown;4200;;per square meter;BIOPOP April 2005;4200;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Pinguicula alpina;26120;actual measurement;197;7;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;197;255;147;;100 < seednumber <= 1000;1;;;counting ;unknown;1931-08-03 00:00:00.0;only fully developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;SWEDEN Pinguicula vulgaris;26085;actual measurement;107.3;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;107.3;154;54;;100 < seednumber <= 1000;1;;;counting ;unknown;2005-02-24 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);105;1;per single flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;105;105;105;105;100 < seednumber <= 1000;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Pinus sylvestris;624;estimation;40;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;40;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Carlisle, A.(1968): no title given, publication in Journal of Ecology issue: 56 pages: 269-307 [56]; Pinus sylvestris;624;unknown;22353;1;per ramet/tussock or individual plant ;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];;25882;18824;;10,000 < seednumber <= 100,000;1;;;total weight;unknown;;N unknown, seedweight from BIOLFLOR;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];GERMANY Plantago arenaria;27863;laboratory/greenhouse/garden experiment;239;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;239;239;239;239;100 < seednumber <= 1000;;;;counting ;;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago arenaria;27863;actual measurement (following LEDA data standards);212;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;248.9;489;25;212;100 < seednumber <= 1000;;;;counting ;;2004-07-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago arenaria;27863;actual measurement (following LEDA data standards);302.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;654.63;2760;84;302.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago coronopus;27899;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Dodds, J. C.(1953): no title given, publication in Journal of Ecology issue: 41 pages: 447-478 [41]; Plantago coronopus;27899;laboratory/greenhouse/garden experiment;706;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;911.4;2392;144;706;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago coronopus;27899;actual measurement (following LEDA data standards);563;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;563;563;563;563;100 < seednumber <= 1000;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago lanceolata;27860;actual measurement;26.2;10;per multiple flower inflorescence ;BIOPOP April 2005;26.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Plantago lanceolata;27860;actual measurement;28.4;;per multiple flower inflorescence ;BIOPOP April 2005;28.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Plantago lanceolata;27860;unknown;127;10;unknown;BIOPOP April 2005;127;261;35;;100 < seednumber <= 1000;;;;unknown;unknown;;;Löve, A. (1961): Chromosome numbers of central and northwest European plant species.; Plantago lanceolata;27860;unknown;60;;unknown;BIOPOP April 2005;60;89;29;;10 < seednumber <= 100;;;;unknown;unknown;;;Löve, A. (1961): Chromosome numbers of central and northwest European plant species.; Plantago lanceolata;27860;estimation (following LEDA data standards);1500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Plantago lanceolata;27860;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1200;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Plantago lanceolata;27860;actual measurement;33.6;;per multiple flower inflorescence ;BIOPOP April 2005;33.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Plantago lanceolata;27860;actual measurement;249;;per square meter;BIOPOP April 2005;;486;12;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Plantago lanceolata;27860;actual measurement;24;;per multiple flower inflorescence ;BIOPOP April 2005;24;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Plantago lanceolata;27860;actual measurement;1296.5;;per square meter;BIOPOP April 2005;;2560;33;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Plantago lanceolata;27860;actual measurement;1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;1500;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Plantago lanceolata;27860;unknown;759;;per square meter;BIOPOP April 2005;759;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Plantago lanceolata;27860;unknown;650;;per square meter;BIOPOP April 2005;650;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Plantago lanceolata;27860;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: max >10000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Plantago lanceolata;27860;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Plantago lanceolata;27860;actual measurement;160997.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;160997.25;;;;seednumber > 100,000;1;;75050.14518;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Plantago lanceolata;27860;estimation (following LEDA data standards);1500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;1500;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Plantago lanceolata;27860;actual measurement;585;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;585;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Plantago major;27829;actual measurement;21500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;21500;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Plantago major;27829;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Plantago major;27829;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Plantago major;27829;actual measurement;850566.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;850566.6667;;;;seednumber > 100,000;1;;644419.6795;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Plantago major;27829;actual measurement;8118;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];8118;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Plantago major;27829;estimation;12000;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;15000;8000;12000;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Plantago major;27829;actual measurement;2030;4;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];2030;2358;1719;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Plantago major;27829;estimation (following LEDA data standards);21500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;21500;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Plantago major;27829;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: major Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Plantago major;27829;estimation;28;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;28;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Sagar, G. R. (1964): no title given, publication in Journal of Ecology issue: 52 pages: 189-221 [52]; Plantago major;27829;unknown;53675;;per square meter;BIOPOP April 2005;53675;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hawthorn, W. R. (1974): The biology of Canadian weeds. 4. Plantago major and P. rugelii. [54];CANADA Plantago major;27829;unknown;40000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa; Plantago major;27829;unknown;565;;per ramet/tussock or individual plant ;BIOPOP April 2005;565;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Hawthorn, W. R. (1974): The biology of Canadian weeds. 4. Plantago major and P. rugelii. [54]; Plantago major subsp. intermedia;27835;laboratory/greenhouse/garden experiment;333.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;333.5;469;198;333.5;100 < seednumber <= 1000;;;;counting ;;2004-10-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago major subsp. intermedia;27835;actual measurement (following LEDA data standards);2730;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3101;5604;1159;2730;1000 < seednumber <= 10,000;;;;counting ;;2004-09-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago maritima;27843;actual measurement (following LEDA data standards);994;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1286.53;2716;100;994;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Plantago maritima s. maritima;27848;actual measurement (following LEDA data standards);3511.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3210.9;6177;566;3511.5;1000 < seednumber <= 10,000;;;;counting ;;2003-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago maritima s. maritima;27848;actual measurement (following LEDA data standards);716;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1368.67;2830;560;716;100 < seednumber <= 1000;;;;counting ;;2003-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Plantago media;27756;estimation;7;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;7;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Plantago media;27756;actual measurement;960;106;per ramet/tussock or individual plant ;BIOPOP April 2005;960;1092;828;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Plantago media;27756;actual measurement;282;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;282;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Plantago media;27756;unknown;21;;per square meter;BIOPOP April 2005;21;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Plantago media;27756;unknown;2.78;300;per single flower inflorescence ;BIOPOP April 2005;2.78;7;1;;seednumber <= 10;;;;unknown;unknown;;Value comment: per capsule;Sagar, G. R. (1964): Biological flora of the British Isles: Plantago major L., P. media L. and P. lanceolata L.; Plantago media;27756;unknown;2940;;per square meter;BIOPOP April 2005;2940;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Plantago media;27756;estimation;7440;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7440;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Platanthera bifolia;39786;actual measurement;7.52;100;per multiple flower inflorescence ;Maad, J.(2004): Variable selection in Platanthera bifolia (Orchidaceae): phenotypic selection differed between sex functions in a drought year [17];7.52;;;;seednumber <= 10;1;.529;5.29;unknown;unknown;;fruit sets per inflorescence;Maad, J.(2004): Variable selection in Platanthera bifolia (Orchidaceae): phenotypic selection differed between sex functions in a drought year [17];SWEDEN Platanthera bifolia;39786;actual measurement;.47;100;per multiple flower inflorescence ;Maad, J.(2004): Variable selection in Platanthera bifolia (Orchidaceae): phenotypic selection differed between sex functions in a drought year [17];.47;;;;seednumber <= 10;1;.098;.98;unknown;unknown;;fruit set per inflorescence;Maad, J.(2004): Variable selection in Platanthera bifolia (Orchidaceae): phenotypic selection differed between sex functions in a drought year [17];SWEDEN Platanthera bifolia;39786;actual measurement;4.51;84;per multiple flower inflorescence ;Maad, J.(2004): Variable selection in Platanthera bifolia (Orchidaceae): phenotypic selection differed between sex functions in a drought year [17];4.51;;;;seednumber <= 10;1;.433;3.97;unknown;unknown;;fruit sets per inflorescence;Maad, J.(2004): Variable selection in Platanthera bifolia (Orchidaceae): phenotypic selection differed between sex functions in a drought year [17];SWEDEN Poa alpina;42327;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Harmer, R. (unknown e-mail address); Poa alpina;42327;actual measurement;16.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;16.4;38;5;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 20% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Poa alpina;42327;actual measurement (following LEDA data standards);10.5;2;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;10.5;14;7;10.5;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Poa alpina;42327;laboratory/greenhouse/garden experiment;34;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);34;34;34;34;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-31 00:00:00.0;preaggregated value obtained from single record;;GERMANY Poa angustifolia;42678;actual measurement;314;;per square meter;BIOPOP April 2005;;314;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa angustifolia;42678;actual measurement;806;;per square meter;BIOPOP April 2005;;806;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa angustifolia;42678;actual measurement;138.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;138.6;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa angustifolia;42678;actual measurement;303;;per ramet/tussock or individual plant ;BIOPOP April 2005;303;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa angustifolia;42678;actual measurement;275;;per square meter;BIOPOP April 2005;;275;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa angustifolia;42678;actual measurement (following LEDA data standards);53.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;53.5;89;32;53.5;10 < seednumber <= 100;;;;counting ;;2004-07-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Poa angustifolia;42678;actual measurement;395.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;395.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa annua;43060;actual measurement;140;;per single flower inflorescence ;BIOPOP April 2005;140;;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per panicle;Hutchinson, C. S. (1982): Biological flora of the British Isles: Poa annua L.; Poa annua;43060;laboratory/greenhouse/garden experiment;95;;per single flower inflorescence ;BIOPOP April 2005;;140;50;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per panicle;Hutchinson, C. S. (1982): Biological flora of the British Isles: Poa annua L.; Poa annua;43060;estimation (following LEDA data standards);450;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;450;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Poa annua;43060;laboratory/greenhouse/garden experiment;20000;;per single flower inflorescence ;BIOPOP April 2005;;20000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant General comment: ideal conditions;Hutchinson, C. S. (1982): Biological flora of the British Isles: Poa annua L.; Poa annua;43060;actual measurement;50;;per single flower inflorescence ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per panicle;Hutchinson, C. S. (1982): Biological flora of the British Isles: Poa annua L.; Poa annua;43060;actual measurement;91230.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;91230.25;;;;10,000 < seednumber <= 100,000;1;;24455.38919;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Poa annua;43060;laboratory/greenhouse/garden experiment;3821;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);4726;6995;2836;3821;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Poa annua;43060;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: very variable;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Poa annua;43060;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Poa annua;43060;actual measurement;13000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;13000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: exceptional plant General comment: very variable;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Poa bulbosa;42340;actual measurement (following LEDA data standards);53;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;56.11;79;33;53;10 < seednumber <= 100;;;;counting ;;2004-06-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Poa bulbosa;42340;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Poa bulbosa;42340;laboratory/greenhouse/garden experiment;347;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);471.6;984;272;347;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Poa compressa;42683;actual measurement (following LEDA data standards);822;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;959.4;1879;140;822;100 < seednumber <= 1000;;;;counting ;;2003-06-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Poa compressa;42683;actual measurement;222987.6;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;222987.6;;;;seednumber > 100,000;1;;235481.8196;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Poa glauca;43601;actual measurement;1.7;15;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;1.7;;;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;only viable seeds, seed setting: 13% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Poa nemoralis;42334;actual measurement;113115.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;113115.6667;;;;seednumber > 100,000;1;;45914.83355;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Poa nemoralis;42334;actual measurement;169;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;169;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Poa nemoralis;42334;actual measurement;6398;;per square meter;BIOPOP April 2005;;10164;2632;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;150;;per multiple flower inflorescence ;BIOPOP April 2005;150;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;10971;;per square meter;BIOPOP April 2005;;21312;630;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;33450;;per square meter;BIOPOP April 2005;;33450;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;93.6;;per multiple flower inflorescence ;BIOPOP April 2005;93.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;223.2;;per multiple flower inflorescence ;BIOPOP April 2005;223.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;122.2;;per multiple flower inflorescence ;BIOPOP April 2005;122.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;laboratory/greenhouse/garden experiment;2774;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);2702.2;4261;473;2774;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-06-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Poa nemoralis;42334;actual measurement;125.3;;per multiple flower inflorescence ;BIOPOP April 2005;125.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;1683;;per square meter;BIOPOP April 2005;;3000;366;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;90.2;;per multiple flower inflorescence ;BIOPOP April 2005;90.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;1080;;per square meter;BIOPOP April 2005;;1620;540;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa nemoralis;42334;actual measurement;5734;;per square meter;BIOPOP April 2005;;10980;488;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Poa pratensis;42677;actual measurement;208;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;208;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Poa pratensis;42677;actual measurement;136086;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;136086;;;;seednumber > 100,000;1;;77130.91461;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Poa trivialis;43077;actual measurement;299.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;287.7;;;299.5;100 < seednumber <= 1000;1;30.47769676;96.37893961;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Polemonium caeruleum;28181;actual measurement;30000;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];30000;;;;10,000 < seednumber <= 100,000;1;;;estimation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Polemonium caeruleum;28181;actual measurement;2712;3;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];2976;3624;2592;2712;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Polemonium caeruleum;28181;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Pigott, C. D.(1958): no title given, publication in Journal of Ecology issue: 46 pages: 507-525 [46]; Polygala amarella;28146;actual measurement (following LEDA data standards);28;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26.2;32;18;28;10 < seednumber <= 100;;;;counting ;;2004-07-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Polygala amarella;28146;unknown;2025;;per square meter;BIOPOP April 2005;2025;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Polygala amarella;28146;unknown;297;;per square meter;BIOPOP April 2005;297;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Polygala comosa;28115;unknown;189;;per square meter;BIOPOP April 2005;189;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Polygala comosa;28115;unknown;65;;per square meter;BIOPOP April 2005;65;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Polygala comosa;28115;actual measurement (following LEDA data standards);18;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18;28;10;18;10 < seednumber <= 100;;;;counting ;;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Polygala serpyllifolia;28082;actual measurement (following LEDA data standards);45;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;72.9;240;10;45;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2004-06-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Polygala serpyllifolia;28082;actual measurement;12;50;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;20;4;;10 < seednumber <= 100;1;;;counting ;;1999-10-04 00:00:00.0;;;UNITED KINGDOM Polygala vulgaris;28062;actual measurement;188;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;188;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Polygala vulgaris;28062;actual measurement (following LEDA data standards);23;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26;42;12;23;10 < seednumber <= 100;;;;counting ;;2004-06-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Polygala vulgaris;28062;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Polygonatum multiflorum;38075;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Polygonatum multiflorum;38075;actual measurement;72;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;63.9;;;72;10 < seednumber <= 100;1;6.649060084;21.02617416;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Polygonatum multiflorum;38075;actual measurement (following LEDA data standards);49;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;48.13;73;20;49;10 < seednumber <= 100;;;;counting ;;2003-06-02 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Polygonatum odoratum;38076;actual measurement;9300;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9300;;;;1000 < seednumber <= 10,000;1;;1374.772708;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Polygonatum odoratum;38076;estimation;7;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;7;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Polygonatum odoratum;38076;actual measurement;1244.5;;per square meter;BIOPOP April 2005;;2470;19;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;18.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;18.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;4.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;4.5;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;17;;per ramet/tussock or individual plant ;BIOPOP April 2005;17;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;368;;per square meter;BIOPOP April 2005;;368;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;16;;per ramet/tussock or individual plant ;BIOPOP April 2005;16;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;250;;per square meter;BIOPOP April 2005;;250;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;17.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;17.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;496;;per square meter;BIOPOP April 2005;;496;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum odoratum;38076;actual measurement;36;;per square meter;BIOPOP April 2005;;36;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Polygonatum verticillatum;38518;actual measurement (following LEDA data standards);198.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;205.5;360;113;198.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Polygonum amphibium;27725;actual measurement;40.5;4;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;49;32;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Polygonum aviculare;27740;actual measurement;120367.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;120367.6667;;;;seednumber > 100,000;1;;97833.02631;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Polygonum aviculare;27740;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;100;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum aviculare;27740;actual measurement;6000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: max >6000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum aviculare;27740;estimation (following LEDA data standards);162.5;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;200;125;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Polygonum bistorta;27743;actual measurement;80;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;80;;;;10 < seednumber <= 100;1;;;counting ;;1998-07-16 00:00:00.0;;;UNITED KINGDOM Polygonum bistorta;27743;estimation (following LEDA data standards);225;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;250;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Polygonum hydropiper;27636;actual measurement;3300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3300;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum hydropiper;27636;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum hydropiper;27636;estimation (following LEDA data standards);454;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;523;385;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Polygonum hydropiper;27636;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Timson, J.(1966): no title given, publication in Journal of Ecology issue: 54 pages: 815-821 [54]; Polygonum hydropiper;27636;actual measurement;44640.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44640.33333;;;;10,000 < seednumber <= 100,000;1;;26876.26984;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Polygonum lapathifolium;27747;actual measurement;37591;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37591;;;;10,000 < seednumber <= 100,000;1;;37001.33137;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Polygonum lapathifolium;27747;estimation (following LEDA data standards);825;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;850;800;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Polygonum lapathifolium;27747;actual measurement;553;5;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1074;170;553;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Polygonum lapathifolium;27747;unknown;825;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;850;800;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Polygonum lapathifolium;27747;actual measurement;1700;2;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;1700;;;;1000 < seednumber <= 10,000;1;;;counting ;;1999-10-07 00:00:00.0;;;UNITED KINGDOM Polygonum lapathifolium;27747;actual measurement;19300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;19300;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum lapathifolium;27747;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum lapathifolium;27747;estimation;825;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;850;800;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Polygonum minus;27653;actual measurement (following LEDA data standards);122;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;134.14;265;77;122;100 < seednumber <= 1000;;;;counting ;;2004-09-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Polygonum mite;27654;actual measurement (following LEDA data standards);29;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;29.2;42;12;29;10 < seednumber <= 100;;;;counting ;;2005-08-27 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Polygonum neglectum;27655;estimation (following LEDA data standards);162.5;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;200;125;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Polygonum persicaria;27673;actual measurement;5970;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5970;;;;1000 < seednumber <= 10,000;1;;5762.091634;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Polygonum persicaria;27673;actual measurement;4400;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4400;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum persicaria;27673;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;800;200;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Polygonum persicaria;27673;unknown;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;5000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Wehsarg, O. (1954): Ackerunkräuter. Biologie. Allgemeine Bekämpfung und Einzelbekämpfung []; Polygonum persicaria;27673;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum persicaria;27673;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;800;200;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Polygonum persicaria;27673;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Polygonum polystachyum;27675;actual measurement (following LEDA data standards);21;3;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;64;160;11;21;10 < seednumber <= 100;;;;counting ;;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Polygonum viviparum;27573;actual measurement (following LEDA data standards);4;5;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;5.8;13;3;4;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Polygonum viviparum;27573;actual measurement;.2;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;.2;;;;seednumber <= 10;1;;;counting ;unknown;1931-09-01 00:00:00.0;often no seeds, but bulbils;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Polypodium vulgare;71;actual measurement (following LEDA data standards);1011745;3;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;996624.33;1225728;752400;1011745;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pontederia cordata;44064;actual measurement (following LEDA data standards);200;3;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;192.67;206;172;200;100 < seednumber <= 1000;;;;counting ;;2005-09-04 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Populus nigra;32673;actual measurement;203918.4;14;per ramet/tussock or individual plant ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];203918.4;;;;seednumber > 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per plant;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Populus nigra;32673;actual measurement;428.4;10;per multiple flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];428.4;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;Collection: spring 2000, ovules per catkin! 42 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Populus nigra;32673;actual measurement;10.2;12;per single flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];10.2;;;;10 < seednumber <= 100;1;.4;1.386;counting ;single flower inflorescence ;;collection: spring 2000, ovules per fruit!;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Portulaca oleracea;27501;unknown;242540;1;per ramet/tussock or individual plant ;Miyanishi, K. (1980): The biology of Canadian weeds. 40. Portulaca oleracea L.;;242540;;;seednumber > 100,000;1;;;unknown;unknown;;From literature (Zimmerman, 1969), Number of samples and replicates unknown;Miyanishi, K. (1980): The biology of Canadian weeds. 40. Portulaca oleracea L.;UNITED STATES Portulaca oleracea;27501;unknown;72;30;per single flower inflorescence ;Miyanishi, K. (1980): The biology of Canadian weeds. 40. Portulaca oleracea L.;72;107;36;;10 < seednumber <= 100;10;;;unknown;single flower inflorescence ;;;Miyanishi, K. (1980): The biology of Canadian weeds. 40. Portulaca oleracea L.;CANADA Portulaca oleracea;27501;actual measurement;995306.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;995306.75;;;;seednumber > 100,000;1;;367713.5408;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Portulaca oleracea;27501;actual measurement;193000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;193000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant General comment: max >193000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Portulaca oleracea;27501;unknown;242540;;per ramet/tussock or individual plant ;BIOPOP April 2005;;242540;;;seednumber > 100,000;;;;unknown;unknown;;;Miyanishi, K. (1980): The biology of Canadian weeds. 40. Portulaca oleracea L.;CANADA Portulaca oleracea;27501;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Potamogeton crispus;43966;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Potamogeton gramineus;43975;actual measurement (following LEDA data standards);938;7;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;776.86;1320;246;938;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potamogeton lucens;43923;actual measurement (following LEDA data standards);52;9;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;74.89;160;34;52;10 < seednumber <= 100;;;;counting ;;2005-08-25 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Potamogeton natans;43926;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);0;5;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;0;0;0;0;seednumber <= 10;;;;counting ;;2004-09-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potamogeton obtusifolius;43936;actual measurement (following LEDA data standards);0;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;0;0;0;0;seednumber <= 10;;;;counting ;;2003-07-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potamogeton pectinatus;43938;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Guo, Y. -. H.(1989): no title given, publication in Aquatic Botany issue: 34 pages: 381-384 [34]; Potamogeton pectinatus;43938;actual measurement;275.6666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;275.6666667;;;;100 < seednumber <= 1000;1;;76.00219295;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Potamogeton perfoliatus;43943;actual measurement;1680;8;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];1680;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Potamogeton polygonifolius;43944;actual measurement;150;0;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;250;50;;100 < seednumber <= 1000;1;;;counting ;;1998-06-25 00:00:00.0;;;UNITED KINGDOM Potamogeton polygonifolius;43944;actual measurement (following LEDA data standards);0;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;0;0;0;0;seednumber <= 10;;;;counting ;;2003-09-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potentilla anserina;29712;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;;150;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Potentilla anserina;29712;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Potentilla anserina;29712;unknown;9.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;9.7;13;1;;seednumber <= 10;;;;unknown;unknown;;single ramet;Miyanishi, K.(1991): The biology of Canadian weeds. 98. Potentilla anserina L.; Potentilla anserina;29712;estimation (following LEDA data standards);22.5;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;25;20;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Potentilla anserina;29712;estimation;50;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;50;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Potentilla argentea;30642;actual measurement;166;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;166;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Potentilla argentea;30642;actual measurement;16125;;per square meter;BIOPOP April 2005;;20400;11850;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla argentea;30642;actual measurement;3300;;per square meter;BIOPOP April 2005;;3300;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla argentea;30642;actual measurement;1717;;per ramet/tussock or individual plant ;BIOPOP April 2005;1717;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla argentea;30642;actual measurement;30912;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;50816;11008;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Potentilla argentea;30642;actual measurement;131;5;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];128.6;149;93;131;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Potentilla argentea;30642;actual measurement;1053959.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1053959.75;;;;seednumber > 100,000;1;;865060.8476;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Potentilla aurea;29716;actual measurement (following LEDA data standards);117.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;134.3;237;64;117.5;100 < seednumber <= 1000;;;;counting ;;2004-07-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potentilla crantzii;29387;actual measurement;22.8;20;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;22.8;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Potentilla crantzii;29387;actual measurement;11.4;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;11.4;23;1;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Potentilla crantzii;29387;actual measurement;14.5;20;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;14.5;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Potentilla crantzii;29387;actual measurement;405;;per square meter;BIOPOP April 2005;;765;45;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla crantzii;29387;actual measurement (following LEDA data standards);9;2;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;9;13;5;9;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Potentilla crantzii;29387;actual measurement;5.8;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;5.8;9;2;;seednumber <= 10;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Potentilla crantzii;29387;actual measurement;20.8;;per multiple flower stem;BIOPOP April 2005;20.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla crantzii;29387;actual measurement;108;38;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;108;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-06 00:00:00.0;;;UNITED KINGDOM Potentilla erecta;30927;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;8;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Potentilla erecta;30927;actual measurement;1350;;per square meter;BIOPOP April 2005;;1350;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;345;;per square meter;BIOPOP April 2005;;600;90;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;33;;per multiple flower stem;BIOPOP April 2005;33;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;283.5;;per square meter;BIOPOP April 2005;;496;71;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;12.4;;per multiple flower stem;BIOPOP April 2005;12.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;304;;per square meter;BIOPOP April 2005;;304;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;8.1;;per multiple flower stem;BIOPOP April 2005;8.1;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;53.5;;per square meter;BIOPOP April 2005;;84;23;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;2.4;;per multiple flower stem;BIOPOP April 2005;2.4;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;20;;per square meter;BIOPOP April 2005;;20;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;29.7;;per multiple flower stem;BIOPOP April 2005;29.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;9;;per multiple flower stem;BIOPOP April 2005;9;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;150;;per square meter;BIOPOP April 2005;;150;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;8;;per multiple flower stem;BIOPOP April 2005;8;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;160;;per square meter;BIOPOP April 2005;;160;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;24.9;;per multiple flower stem;BIOPOP April 2005;24.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Potentilla erecta;30927;actual measurement;293;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;293;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Potentilla erecta;30927;actual measurement;54771.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;54771.33333;;;;10,000 < seednumber <= 100,000;1;;54366.54914;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Potentilla heptaphylla;29728;actual measurement (following LEDA data standards);39;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;138.33;353;23;39;10 < seednumber <= 100;;;;counting ;;2005-05-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potentilla intermedia;30887;laboratory/greenhouse/garden experiment;20720;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30484.25;70000;4443;20720;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potentilla nivea;29993;actual measurement;1.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;1.4;;;;seednumber <= 10;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed fruits, year of low crop;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Potentilla norvegica;29685;unknown;13150;;per ramet/tussock or individual plant ;BIOPOP April 2005;13150;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Werner, P. A. (1976): The biology of Canadian weeds. 18. Potentilla recta L., P.norvegica L. and P.argentea L. [56]; Potentilla norvegica;29685;laboratory/greenhouse/garden experiment;3820;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7779.2;28556;642;3820;1000 < seednumber <= 10,000;;;;counting ;;2004-10-31 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potentilla norvegica;29685;actual measurement;17160;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;34190;7410;17160;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Potentilla norvegica;29685;actual measurement;130.75;12;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];130.75;162;100;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Potentilla palustris;30328;actual measurement (following LEDA data standards);848;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;918.67;1696;636;848;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Potentilla recta;29349;actual measurement;107025.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;107025.5;;;;seednumber > 100,000;1;;130076.7104;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Potentilla recta;29349;unknown;1650;;per ramet/tussock or individual plant ;BIOPOP April 2005;1650;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Werner, P. A. (1976): The biology of Canadian weeds. 18. Potentilla recta L., P.norvegica L. and P.argentea L. [56]; Potentilla reptans;30622;actual measurement;26171.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26171.66667;;;;10,000 < seednumber <= 100,000;1;;22603.6815;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Potentilla rupestris;29693;unknown;3040;;per ramet/tussock or individual plant ;BIOPOP April 2005;3040;21164;180;;1000 < seednumber <= 10,000;;;;unknown;unknown;;cultivated, up to 26 flowering shoots per plant;Wilson, G. B.(1995): Biological flora of the British Isles: Potentilla rupestris L. (Potentilla corsica Sieber ex Lehm).;UNITED KINGDOM Potentilla rupestris;29693;estimation;201;;per ramet/tussock or individual plant ;BIOPOP April 2005;201;774;8;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: Introduced on to West Crags;Wilson, G. B.(1995): Biological flora of the British Isles: Potentilla rupestris L. (Potentilla corsica Sieber ex Lehm).;UNITED KINGDOM Potentilla rupestris;29693;estimation;38;;per ramet/tussock or individual plant ;BIOPOP April 2005;38;124;15;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: Introduced into quarry;Wilson, G. B.(1995): Biological flora of the British Isles: Potentilla rupestris L. (Potentilla corsica Sieber ex Lehm).;UNITED KINGDOM Potentilla rupestris;29693;estimation;84;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;84;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Whittington, W. J. (unknown e-mail address); Potentilla sterilis;30583;actual measurement (following LEDA data standards);56.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;55.3;83;30;56.5;10 < seednumber <= 100;;;;counting ;;2004-05-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potentilla sterilis;30583;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;20;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 20;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Potentilla supina;31183;actual measurement;191666;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;191666;;;;seednumber > 100,000;1;;55131.50797;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Potentilla tabernaemontani;30295;actual measurement (following LEDA data standards);138;5;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;203;490;87;138;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-05-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potentilla tabernaemontani;30295;actual measurement (following LEDA data standards);171;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;232.67;461;66;171;100 < seednumber <= 1000;;;;counting ;;2005-05-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Potentilla tabernaemontani;30295;unknown;954;;per square meter;BIOPOP April 2005;954;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Potentilla tabernaemontani;30295;actual measurement;177833.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;177833.3333;;;;seednumber > 100,000;1;;117224.4997;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Potentilla tabernaemontani;30295;actual measurement;1650;12;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;1650;;;;1000 < seednumber <= 10,000;1;;;counting ;;1997-07-04 00:00:00.0;;;UNITED KINGDOM Prenanthes purpurea;9532;actual measurement;43092.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43092.66667;;;;10,000 < seednumber <= 100,000;1;;23569.94615;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Primula elatior;29086;estimation;881;28;per ramet/tussock or individual plant ;BIOPOP April 2005;881;1111;651;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Primula elatior;29086;estimation;61;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;61;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Primula elatior;29086;actual measurement;50400;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;50400;;;;10,000 < seednumber <= 100,000;1;;13362.63447;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Primula elatior;29086;actual measurement (following LEDA data standards);288;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;324.33;564;69;288;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-05-26 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Primula elatior;29086;actual measurement (following LEDA data standards);195;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;191.4;264;43;195;100 < seednumber <= 1000;;;;counting ;;2003-10-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Primula farinosa;28915;estimation;199;127;per ramet/tussock or individual plant ;BIOPOP April 2005;199;204;194;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Primula farinosa;28915;actual measurement (following LEDA data standards);472;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;496.7;885;153;472;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Primula farinosa;28915;actual measurement;59.7;120;per single flower inflorescence ;Baker, Kathleen(1994): Fitness constraints on flower number, seed number and seed size in the dimorphic species Primula farinosa L. and Armeria maritima (Miller) Willd. [128];59.7;111;28;;10 < seednumber <= 100;1;1.89;20.7;counting and extrapolation ;unknown;;;Baker, Kathleen(1994): Fitness constraints on flower number, seed number and seed size in the dimorphic species Primula farinosa L. and Armeria maritima (Miller) Willd. [128];UNITED KINGDOM Primula farinosa;28915;actual measurement;502.9;120;per ramet/tussock or individual plant ;Baker, Kathleen(1994): Fitness constraints on flower number, seed number and seed size in the dimorphic species Primula farinosa L. and Armeria maritima (Miller) Willd. [128];502.9;1221;93.4;;100 < seednumber <= 1000;1;30.69;336.2;counting and extrapolation ;single flower inflorescence ;;;Baker, Kathleen(1994): Fitness constraints on flower number, seed number and seed size in the dimorphic species Primula farinosa L. and Armeria maritima (Miller) Willd. [128];UNITED KINGDOM Primula scotica;28898;actual measurement;492;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;492;;;;100 < seednumber <= 1000;1;;;counting ;;1997-09-07 00:00:00.0;;;UNITED KINGDOM Primula veris;28858;actual measurement;271;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;271;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Primula veris;28858;actual measurement;240;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;240;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Primula veris;28858;estimation;50;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;50;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 50;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Primula veris;28858;actual measurement;72800;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;72800;;;;10,000 < seednumber <= 100,000;1;;18641.88832;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Primula veris;28858;actual measurement;14.2;10;per single flower inflorescence ;BIOPOP April 2005;14.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Primula veris;28858;unknown;115;;per square meter;BIOPOP April 2005;115;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Primula vulgaris;28981;estimation;58;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;58;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Piper, J. G.(1986): no title given, publication in Heredity issue: 56 pages: 207-217 [56]; Prunella grandiflora;23985;unknown;774;;per square meter;BIOPOP April 2005;774;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Prunella grandiflora;23985;unknown;32;;per square meter;BIOPOP April 2005;32;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Prunella grandiflora;23985;actual measurement (following LEDA data standards);58;8;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;53.88;78;6;58;10 < seednumber <= 100;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Prunella vulgaris;24350;actual measurement;73690.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;73690.66667;;;;10,000 < seednumber <= 100,000;1;;57228.23465;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Prunella vulgaris;24350;actual measurement;192;3;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;216;120;192;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Prunella vulgaris;24350;actual measurement;68;;per ramet/tussock or individual plant ;BIOPOP April 2005;68;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Prunella vulgaris;24350;actual measurement;272;;per square meter;BIOPOP April 2005;;272;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Prunella vulgaris;24350;actual measurement;74.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;74.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Prunella vulgaris;24350;actual measurement;720;;per square meter;BIOPOP April 2005;;720;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Prunella vulgaris;24350;actual measurement;43.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;43.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Prunella vulgaris;24350;actual measurement;220;;per square meter;BIOPOP April 2005;;220;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Prunella vulgaris;24350;actual measurement;744;;per square meter;BIOPOP April 2005;;744;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Prunella vulgaris;24350;actual measurement;124.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;124.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Prunella vulgaris;24350;estimation (following LEDA data standards);350;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;350;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Prunella vulgaris;24350;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Prunella vulgaris;24350;estimation;854;;per ramet/tussock or individual plant ;BIOPOP April 2005;854;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Prunella vulgaris;24350;actual measurement;800;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1000;600;;100 < seednumber <= 1000;1;;;estimation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Prunella vulgaris;24350;actual measurement;285;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;285;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Prunus avium;31189;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Prunus laurocerasus;29962;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Prunus padus;30306;actual measurement;8000;15;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;8000;;;;1000 < seednumber <= 10,000;1;;;counting ;;1998-10-01 00:00:00.0;;;UNITED KINGDOM Prunus padus;30306;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Prunus serotina;29315;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Mulligan, G. A. (1981): The biology of Canadian weeds. 51. Prunus virginiana L. and P. serotina Ehrh.; Prunus spinosa;29316;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Pseudofumaria lutea;45589;actual measurement;30014.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30014.66667;;;;10,000 < seednumber <= 100,000;1;;33871.82082;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);46;6;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;47.83;70;32;46;10 < seednumber <= 100;;;;counting ;;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Pteridium aquilinum;250;unknown;300000000;1;per ramet/tussock or individual plant ;Cody, W. J.(1975): The biology of canadian weeds. 15. Pteridium aquilinum (L.) Kuhn [55];;300000000;;;seednumber > 100,000;1;;;unknown;unknown;;from literature (Conway, 1952), spores per frond, number of samples and replicates unknown;Cody, W. J.(1975): The biology of canadian weeds. 15. Pteridium aquilinum (L.) Kuhn [55];CANADA Puccinellia distans;42706;actual measurement;222518.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;222518.6667;;;;seednumber > 100,000;1;;201581.3103;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Puccinellia distans;42706;actual measurement (following LEDA data standards);45;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;50.7;85;20;45;10 < seednumber <= 100;;;;counting ;;2005-07-04 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);1895;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3397.8;12960;270;1895;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Pulicaria vulgaris;10384;actual measurement (following LEDA data standards);12710;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16101.1;51436;5490;12710;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pulicaria vulgaris;10384;estimation;342;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;342;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1967): no title given, publication in Annals of Botany issue: 31 pages: 699-712 [31]; Pulmonaria longifolia;11849;estimation;150;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;150;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 150;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Pulmonaria obscura;11795;actual measurement (following LEDA data standards);8;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7.25;11;2;8;seednumber <= 10;;;;counting ;;2004-05-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pulmonaria officinalis;11796;actual measurement;1;;per square meter;BIOPOP April 2005;;;1;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pulmonaria officinalis;11796;actual measurement;11.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;11.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pulmonaria officinalis;11796;actual measurement;10.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;10.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pulmonaria officinalis;11796;actual measurement;445;;per square meter;BIOPOP April 2005;;445;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pulmonaria officinalis;11796;actual measurement;7.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;7.1;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pulmonaria officinalis;11796;actual measurement;163;;per square meter;BIOPOP April 2005;;318;8;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pulmonaria officinalis;11796;actual measurement;996;;per square meter;BIOPOP April 2005;;996;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pulmonaria officinalis;11796;actual measurement;11.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;11.5;22;2;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Pulmonaria officinalis;11796;actual measurement;17402.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17402.66667;;;;10,000 < seednumber <= 100,000;1;;10247.57636;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pulsatilla pratensis;27054;actual measurement (following LEDA data standards);125;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;140.5;330;50;125;100 < seednumber <= 1000;;;;counting ;;2005-06-12 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Pulsatilla vulgaris;27065;actual measurement (following LEDA data standards);96;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;93.4;126;64;96;10 < seednumber <= 100;;;;counting ;;2004-04-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pulsatilla vulgaris;27065;estimation;150;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;150;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Pulsatilla vulgaris;27065;actual measurement;65;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;65;;;;10 < seednumber <= 100;1;;;counting ;;1999-06-18 00:00:00.0;;;UNITED KINGDOM Pulsatilla vulgaris s. grandis;27070;actual measurement;8400;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8400;;;;1000 < seednumber <= 10,000;1;;4036.396908;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pyrola media;28773;estimation;2742;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2742;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Pyrola media;28773;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Pyrola minor;28775;actual measurement (following LEDA data standards);5990;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5516.67;7000;3560;5990;1000 < seednumber <= 10,000;;;;counting ;;2004-05-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Pyrola minor;28775;actual measurement;0;1;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;0;;;;seednumber <= 10;1;;;counting ;unknown;1933-08-03 00:00:00.0;only fully developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;SWEDEN Pyrola minor;28775;actual measurement;9400000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9400000;;;;seednumber > 100,000;1;;3340658.618;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Pyrola minor;28775;actual measurement (following LEDA data standards);5000;3;per ramet/tussock or individual plant ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7000;12000;4000;5000;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Pyrola minor;28775;actual measurement (following LEDA data standards);10500;4;per ramet/tussock or individual plant ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;13250;24000;8000;10500;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Quercus petraea;22445;unknown;75;;per square meter;BIOPOP April 2005;75;175;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 160 years old;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM Quercus petraea;22445;unknown;50000;;per ramet/tussock or individual plant ;BIOPOP April 2005;50000;90000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM Quercus petraea;22445;unknown;20500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;21000;20000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: 500 to 600 years old;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.; Quercus petraea;22445;unknown;64545;1;per ramet/tussock or individual plant ;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];64545;;;;10,000 < seednumber <= 100,000;1;;;total weight;unknown;;N unknown, seedweight from BIOLFLOR;Rohmeder, Ernst(1972): Das Saatgut in der Forstwirtschaft [];GERMANY Quercus petraea;22445;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Jones, E. W. (1959): no title given, publication in Journal of Ecology issue: 47 pages: 169-222 [47]; Quercus petraea;22445;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Jones, E. W. (1959): no title given, publication in Journal of Ecology issue: 47 pages: 169-222 [47]; Quercus petraea;22445;unknown;100;;per square meter;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 300 years old;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;GERMANY Quercus petraea;22445;unknown;50;;per square meter;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM Quercus petraea;22445;unknown;844;;per square meter;BIOPOP April 2005;;844;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM Quercus petraea;22445;unknown;147.5;;per square meter;BIOPOP April 2005;;170;125;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: more prolific trees;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM Quercus robur;22457;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Jones, E. W. (1959): no title given, publication in Journal of Ecology issue: 47 pages: 169-222 [47]; Quercus robur;22457;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Jones, E. W. (1959): no title given, publication in Journal of Ecology issue: 47 pages: 169-222 [47]; Quercus robur;22457;unknown;147.5;;per square meter;BIOPOP April 2005;;170;125;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: more prolific trees;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM Quercus robur;22457;unknown;50000;;per ramet/tussock or individual plant ;BIOPOP April 2005;50000;90000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM Quercus robur;22457;unknown;50;;per square meter;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM Radiola linoides;25873;actual measurement;120;1200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;160;80;;100 < seednumber <= 1000;1;;;counting ;;1997-07-29 00:00:00.0;;;UNITED KINGDOM Radiola linoides;25873;actual measurement (following LEDA data standards);245;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;245;245;245;245;100 < seednumber <= 1000;;;;counting ;;2003-08-27 00:00:00.0;PREAGGREGATED! Raw record's comment: many seeds lost before collecting;;GERMANY Radiola linoides;25873;actual measurement (following LEDA data standards);4640;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4630;6480;2760;4640;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Radiola linoides;25873;estimation;768;84;per ramet/tussock or individual plant ;BIOPOP April 2005;768;837.6;698.4;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Ranunculus aconitifolius;26864;actual measurement (following LEDA data standards);783;5;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;866.6;1543;421;783;100 < seednumber <= 1000;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ranunculus acris;26865;actual measurement (following LEDA data standards);1312;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1268.8;2448;225;1312;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-06-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ranunculus acris;26865;actual measurement (following LEDA data standards);4;3;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;11.67;29;2;4;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Ranunculus acris;26865;actual measurement;489;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;489;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Ranunculus acris;26865;estimation;40;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;40;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Ranunculus acris;26865;actual measurement;411;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;411;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Ranunculus acris;26865;actual measurement;33800;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33800;;;;10,000 < seednumber <= 100,000;1;;10762.43123;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ranunculus acris;26865;actual measurement;868;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];868;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Ranunculus acris;26865;actual measurement;49.9;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;49.9;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Ranunculus acris;26865;actual measurement;27;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;27;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Ranunculus acris;26865;actual measurement;360;;per square meter;BIOPOP April 2005;;360;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;294;;per square meter;BIOPOP April 2005;;550;38;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;56.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;56.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;48;;per square meter;BIOPOP April 2005;;48;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;34;;per ramet/tussock or individual plant ;BIOPOP April 2005;34;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;33;;per square meter;BIOPOP April 2005;;33;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;94.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;94.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;1170;;per square meter;BIOPOP April 2005;;1170;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;22.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;22.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;22;;per square meter;BIOPOP April 2005;;22;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;3.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;3.6;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;4;;per square meter;BIOPOP April 2005;;4;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;34.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;34.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;estimation (following LEDA data standards);449;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;449;742;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Ranunculus acris;26865;estimation (following LEDA data standards);525;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;900;150;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Ranunculus acris;26865;estimation (following LEDA data standards);500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;500;1000;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Ranunculus acris;26865;actual measurement;45;;per ramet/tussock or individual plant ;BIOPOP April 2005;45;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;34.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;34.5;77;22;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus acris;26865;actual measurement;57.8;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;57.8;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Ranunculus acris;26865;unknown;20;;per single flower inflorescence ;BIOPOP April 2005;;40;0;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per flower;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.; Ranunculus acris;26865;actual measurement;31;4;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];31;36;26;31;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Ranunculus aquatilis;27005;actual measurement;88203.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;88203.66667;;;;10,000 < seednumber <= 100,000;1;;142369.6653;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ranunculus aquatilis;27005;actual measurement (following LEDA data standards);273;3;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;246.67;279;188;273;100 < seednumber <= 1000;;;;counting ;;2004-06-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ranunculus arvensis;27014;estimation (following LEDA data standards);525;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;900;150;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Ranunculus arvensis;27014;unknown;250;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;300;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Ranunculus arvensis;27014;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;8;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Ranunculus arvensis;27014;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant General comment: max >500;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ranunculus arvensis;27014;actual measurement;30;;per ramet/tussock or individual plant ;BIOPOP April 2005;30;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ranunculus arvensis;27014;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ranunculus auricomus;27000;actual measurement;6212.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6212.333333;;;;1000 < seednumber <= 10,000;1;;3970.594456;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ranunculus auricomus;27000;actual measurement;29;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;29;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Ranunculus auricomus;27000;actual measurement (following LEDA data standards);420;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;562.13;1845;86;420;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-05-19 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ranunculus auricomus;27000;actual measurement;22.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22.4;;;22.5;10 < seednumber <= 100;1;2.793643579;8.834276679;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Ranunculus bulbosus;26809;unknown;23;;per ramet/tussock or individual plant ;BIOPOP April 2005;23;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1950, herbs dominant with Festuca ovina;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;unknown;69.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;69.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1949, Festuca rubra dominant, Bartonbury;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;unknown;32.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;32.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1948, herbs dominant with Festuca ovina;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;unknown;30.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;30.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1949, herbs dominant with Festuca ovina;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;unknown;65;;per ramet/tussock or individual plant ;BIOPOP April 2005;65;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1948, Festuca rubra dominant, Bartonbury;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;unknown;85.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;85.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1949, Festuca rubra dominant, College Farm Cirencester;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;unknown;69;;per ramet/tussock or individual plant ;BIOPOP April 2005;69;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1949, Lolium perenne dominant, Steadings Farm;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;actual measurement;124;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;124;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Ranunculus bulbosus;26809;unknown;581;;per square meter;BIOPOP April 2005;581;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Ranunculus bulbosus;26809;actual measurement;22.8;5;per single flower inflorescence ;BIOPOP April 2005;22.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Ranunculus bulbosus;26809;unknown;133.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;133.6;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: 1948, Lolium perenne dominant, Steadings Farm;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;unknown;71.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;71.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1948, Festuca rubra dominant, College Farm Cirencester;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus bulbosus;26809;unknown;73;;per ramet/tussock or individual plant ;BIOPOP April 2005;73;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: 1950, Festuca rubra dominant, College Farm Cirencester;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;UNITED KINGDOM Ranunculus circinatus;26945;actual measurement (following LEDA data standards);182;4;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;239.25;456;137;182;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ranunculus ficaria;26860;estimation;70;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;70;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: ficaria Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Ranunculus ficaria;26860;estimation;49;1;per ramet/tussock or individual plant ;ECOFLORA - database of the ecological flora of the british isles;;75;23;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): ssp ficaria - mean 75/plant, ssp bulbifer - mean 23/plant, source no 552;Bierzychudek, P.(1982): no title given, publication in New Phytologist issue: 90 pages: 757-776 [90]; Ranunculus ficaria;26860;actual measurement;3;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3.1;;;3;seednumber <= 10;1;.48189441;1.523883927;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Ranunculus ficaria;26860;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: bulbifer Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Marsden-Jones, E. M.(1935): no title given, publication in Botanical Journal of the Linnean Society issue: 50 pages: 39-55 [50]; Ranunculus ficaria;26860;actual measurement;9;116;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;9;;;;seednumber <= 10;1;;;counting ;;1998-05-28 00:00:00.0;;;UNITED KINGDOM Ranunculus ficaria;26860;actual measurement;135;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;240;30;;100 < seednumber <= 1000;1;;;counting ;;1999-05-19 00:00:00.0;;;UNITED KINGDOM Ranunculus ficaria;26860;actual measurement;62;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;4;;10 < seednumber <= 100;1;;;counting ;;1999-04-30 00:00:00.0;;;UNITED KINGDOM Ranunculus ficaria;26860;actual measurement;73;20;per ramet/tussock or individual plant ;BIOPOP April 2005;73;78.8;67.2;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Ranunculus ficaria;26860;estimation (following LEDA data standards);35;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;40;30;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Ranunculus flammula;26624;estimation;50;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;50;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Ranunculus flammula;26624;actual measurement;202380.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;202380.3333;;;;seednumber > 100,000;1;;325263.8374;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ranunculus lingua;26743;actual measurement (following LEDA data standards);127.5;2;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;127.5;177;78;127.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ranunculus nivalis;26708;actual measurement;17;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;17;;;;10 < seednumber <= 100;1;;;counting ;;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Ranunculus parviflorus;26692;actual measurement;32;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;48;16;;10 < seednumber <= 100;1;;;counting ;;1999-05-23 00:00:00.0;;;UNITED KINGDOM Ranunculus parviflorus;26692;estimation;18;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;18;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Ranunculus peltatus s. baudotii;45465;actual measurement (following LEDA data standards);340;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;523.6;1326;136;340;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-06-08 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Ranunculus penicillatus;45469;estimation;80;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;80;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Ranunculus polyanthemos;26780;actual measurement (following LEDA data standards);104;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;104;104;104;104;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ranunculus pygmaeus;26647;actual measurement;39.2;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;39.2;67;16;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Ranunculus pygmaeus;26647;actual measurement;46.9;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;46.9;75;20;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Ranunculus repens;26770;estimation (following LEDA data standards);125;1;per multiple flower stem;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;150;100;;100 < seednumber <= 1000;1;;;estimation ;multiple flower stem or single stem;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Ranunculus repens;26770;estimation;50;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;50;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Harper, J. L.(1957): no title given, publication in Journal of Ecology issue: 45 pages: 289-342 [45]; Ranunculus repens;26770;actual measurement;215.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;215.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus repens;26770;actual measurement;2315;;per square meter;BIOPOP April 2005;;2315;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus repens;26770;actual measurement;110.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;110.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus repens;26770;actual measurement;5600;;per square meter;BIOPOP April 2005;;5600;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus repens;26770;actual measurement;46.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;46.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus repens;26770;actual measurement;1247;;per square meter;BIOPOP April 2005;;1247;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus repens;26770;actual measurement;70.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;70.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus repens;26770;actual measurement;280;;per square meter;BIOPOP April 2005;;280;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ranunculus repens;26770;unknown;20;;per ramet/tussock or individual plant ;BIOPOP April 2005;20;77;;;10 < seednumber <= 100;;;;unknown;unknown;;;Lovett Doust, J.(1990): The biology of Canadian weeds. 95. Ranunculus repens.; Ranunculus repens;26770;actual measurement;99;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;105.5;;;99;10 < seednumber <= 100;1;10.67837899;33.76799932;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Ranunculus repens;26770;estimation (following LEDA data standards);140;1;per multiple flower stem;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;140;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Ranunculus repens;26770;actual measurement;140;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;140;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ranunculus repens;26770;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ranunculus repens;26770;actual measurement;98;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;98;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Ranunculus repens;26770;estimation;150;100;per ramet/tussock or individual plant ;BIOPOP April 2005;150;160;140;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Ranunculus repens;26770;estimation;30;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;30;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 30;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Ranunculus reptans;26623;actual measurement (following LEDA data standards);34.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34.5;56;13;34.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ranunculus reptans;26623;actual measurement;11.5;10;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];11.5;17;6;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Ranunculus reptans;26623;unknown;15;1;per single flower inflorescence ;Prati, D.(2000): Biological flora of Central Europe: Ranunculus reptans L. [195];;20;10;;10 < seednumber <= 100;1;;;unknown;unknown;;carpels per flower;Prati, D.(2000): Biological flora of Central Europe: Ranunculus reptans L. [195];Europe Ranunculus sardous;26637;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;;50;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ranunculus sardous;26637;actual measurement;30;;per ramet/tussock or individual plant ;BIOPOP April 2005;30;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Ranunculus sardous;26637;actual measurement (following LEDA data standards);80;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;103.71;301;32;80;10 < seednumber <= 100;;;;counting ;;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ranunculus sceleratus;26717;estimation;26494;22;per ramet/tussock or individual plant ;BIOPOP April 2005;26494;28956;24032;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Ranunculus sceleratus;26717;actual measurement;262977;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;262977;;;;seednumber > 100,000;1;;75484.92689;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Ranunculus serpens;26706;actual measurement (following LEDA data standards);71;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;97.33;155;66;71;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-07-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Raphanus raphanistrum;13549;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Raphanus raphanistrum;13549;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;150;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Raphanus raphanistrum;13549;actual measurement;12000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;12000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Raphanus raphanistrum;13549;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: raphanistrum Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Raphanus raphanistrum;13549;actual measurement;882;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];882;4653;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Raphanus raphanistrum;13549;actual measurement;9;7;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];9;10;7;9;seednumber <= 10;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Raphanus raphanistrum;13549;unknown;200;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;300;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Raphanus raphanistrum;13549;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: maritimus Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Rich, T.(1989): no title given, publication in BSBI News issue: 51 pages: 13-15 [51]; Raphanus raphanistrum;13549;actual measurement;27175;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27175;;;;10,000 < seednumber <= 100,000;1;;11902.91456;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Raphanus sativus;13125;laboratory/greenhouse/garden experiment;334.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;334.5;364;305;334.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rapistrum rugosum;13886;actual measurement (following LEDA data standards);5476;5;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8003.2;14260;3380;5476;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-06 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Reseda alba;27957;laboratory/greenhouse/garden experiment;426;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;581.7;1550;56;426;100 < seednumber <= 1000;;;;counting ;;2004-10-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Reseda lutea;27974;actual measurement;420666.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;420666.6667;;;;seednumber > 100,000;1;;268777.4792;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Reseda lutea;27974;estimation;24;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;24;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Reseda lutea;27974;estimation;14;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;14;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c.14;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Reseda lutea;27974;actual measurement (following LEDA data standards);4285;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4928.4;10033;2181;4285;1000 < seednumber <= 10,000;;;;counting ;;2003-08-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Reseda lutea;27974;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mean >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Reseda luteola;27977;laboratory/greenhouse/garden experiment;14086;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15104;26436;6178;14086;10,000 < seednumber <= 100,000;;;;counting and weighing ;;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Reseda luteola;27977;actual measurement;176878;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;176878;;;;seednumber > 100,000;1;;173343.1413;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rhamnus catharticus;28012;unknown;4500;;per ramet/tussock or individual plant ;BIOPOP April 2005;4500;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Godwin, H. (1943): Biological flora of the British Isles: Rhamnus cathartica L.; Rhinanthus alectorolophus;33445;actual measurement;350;;per ramet/tussock or individual plant ;BIOPOP April 2005;;350;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rhinanthus alectorolophus;33445;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rhinanthus alectorolophus;33445;actual measurement (following LEDA data standards);124.5;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;205.5;684;9;124.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2000-08-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rhinanthus angustifolius;33452;actual measurement;8;;per square meter;BIOPOP April 2005;;;8;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus angustifolius;33452;actual measurement;44246.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44246.66667;;;;10,000 < seednumber <= 100,000;1;;17860.08212;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rhinanthus angustifolius;33452;actual measurement;336;;per square meter;BIOPOP April 2005;;336;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus angustifolius;33452;actual measurement;130.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;130.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus angustifolius;33452;actual measurement;186;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;318;114;186;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Rhinanthus angustifolius;33452;actual measurement;63.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;63.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus angustifolius;33452;actual measurement;2307.5;;per square meter;BIOPOP April 2005;;2860;1755;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus angustifolius;33452;actual measurement;1225;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1225;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus angustifolius;33452;estimation (following LEDA data standards);449;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;449;742;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rhinanthus angustifolius;33452;estimation (following LEDA data standards);350;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;350;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rhinanthus glacialis;50039;actual measurement;14.5;10;per single flower inflorescence ;BIOPOP April 2005;14.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Rhinanthus glacialis;50039;unknown;19500;;per square meter;BIOPOP April 2005;19500;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Rhinanthus minor;32892;actual measurement;40936.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40936.33333;;;;10,000 < seednumber <= 100,000;1;;31171.30479;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rhinanthus minor;32892;actual measurement;108;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;156;84;108;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Rhinanthus minor;32892;actual measurement;187;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;187;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Rhinanthus minor;32892;actual measurement;168;171;per ramet/tussock or individual plant ;BIOPOP April 2005;168;179;157;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Rhinanthus minor;32892;actual measurement;30.2;142;per ramet/tussock or individual plant ;BIOPOP April 2005;30.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Rhinanthus minor;32892;actual measurement;19.4;122;per ramet/tussock or individual plant ;BIOPOP April 2005;19.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Rhinanthus minor;32892;actual measurement;47.5;113;per ramet/tussock or individual plant ;BIOPOP April 2005;47.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;Kelly, D. (1989): Demography of short-lived plants in chalk grassland. I. Life cycle variation in annuals and strict biennials. [77];UNITED KINGDOM Rhinanthus minor;32892;actual measurement;28.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;28.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus minor;32892;actual measurement;770;;per square meter;BIOPOP April 2005;;1500;40;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus minor;32892;actual measurement;10;;per square meter;BIOPOP April 2005;;;10;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rhinanthus minor;32892;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;10;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 10;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Rhinanthus minor;32892;estimation;16;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;16;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Rhinanthus minor;32892;unknown;1642;;per square meter;BIOPOP April 2005;1642;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Rhinanthus minor;32892;actual measurement;16.5;10;per single flower inflorescence ;BIOPOP April 2005;16.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Rhinanthus pulcher;32902;actual measurement;22748.4;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22748.4;;;;10,000 < seednumber <= 100,000;1;;4621.462193;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rhodiola rosea;18168;actual measurement;440;26;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;800;80;;100 < seednumber <= 1000;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Rhododendron ponticum;19459;estimation;250;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;250;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 250;Cross, J. R.(1975): no title given, publication in Journal of Ecology issue: 63 pages: 345-364 [63]; Rhynchospora alba;37156;actual measurement (following LEDA data standards);28.5;8;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;30.13;43;19;28.5;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rhynchospora alba;37156;actual measurement (following LEDA data standards);1933.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2026.8;3514;538;1933.5;1000 < seednumber <= 10,000;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rhynchospora fusca;37574;actual measurement (following LEDA data standards);15;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14.67;31;2;15;10 < seednumber <= 100;;;;counting ;;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rhynchospora fusca;37574;actual measurement (following LEDA data standards);26;12;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;27.83;46;3;26;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower inflorescence ;2003-09-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ribes alpinum;23116;actual measurement;3120;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3120;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ribes alpinum;23116;actual measurement;1250;3;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1750;750;;1000 < seednumber <= 10,000;1;;;counting ;;1997-07-30 00:00:00.0;;;UNITED KINGDOM Ribes nigrum;23122;actual measurement (following LEDA data standards);12;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21.6;75;6;12;10 < seednumber <= 100;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ribes rubrum;23126;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Ribes rubrum;23126;actual measurement (following LEDA data standards);39.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39.6;51;29;39.5;10 < seednumber <= 100;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Ribes spicatum;23132;actual measurement;3200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3200;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Ribes uva-crispa;23138;actual measurement (following LEDA data standards);10;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.67;14;2;10;seednumber <= 10;;;;counting ;;2004-07-18 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Ribes uva-crispa;23138;estimation;16;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;16;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): average 16;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Ribes uva-crispa;23138;actual measurement;650;3;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;700;600;;100 < seednumber <= 1000;1;;;counting ;;1998-07-11 00:00:00.0;;;UNITED KINGDOM Ribes uva-crispa;23138;estimation;25;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;25;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rorippa amphibia;13138;actual measurement (following LEDA data standards);84;4;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;82;104;56;84;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rorippa austriaca;13904;estimation;5375;10;per ramet/tussock or individual plant ;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];;10000;750;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;number of fruit sets;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];GERMANY Rorippa austriaca;13904;estimation;575;10;per multiple flower inflorescence ;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];;1000;150;;100 < seednumber <= 1000;1;;;counting ;multiple flower inflorescence ;;number of fruit sets;Keil, Peter(1999): Ökologie der gewässerbegleitenden Agriophyten Angelica archangelica ssp. litoralis, Bidens frondosa und Rorippa austriaca im Ruhrgebiet [321];GERMANY Rorippa islandica;13905;actual measurement;950;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;950;;;;100 < seednumber <= 1000;1;;;counting ;;1997-07-31 00:00:00.0;;;UNITED KINGDOM Rorippa palustris;14626;actual measurement;396175;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;396175;;;;seednumber > 100,000;1;;129558.9851;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rorippa palustris;14626;actual measurement;13021.5;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;13065;12978;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Rorippa palustris;14626;actual measurement;64;2;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;71;57;;10 < seednumber <= 100;3;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Rorippa palustris;14626;actual measurement (following LEDA data standards);52;10;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;52.6;67;39;52;10 < seednumber <= 100;;;;counting ;;2004-09-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rorippa palustris;14626;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rorippa palustris;14626;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rorippa sylvestris;13910;actual measurement;1469342;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1469342;;;;seednumber > 100,000;1;;947116.1587;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rorippa sylvestris;13910;estimation (following LEDA data standards);13000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;13000;;;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Rorippa sylvestris;13910;actual measurement;13000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;13000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rorippa sylvestris;13910;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;10000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rorippa sylvestris;13910;estimation (following LEDA data standards);112;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;112;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rorippa sylvestris;13910;estimation (following LEDA data standards);13000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;13000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rorippa sylvestris;13910;estimation (following LEDA data standards);31700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;31700;;;;10,000 < seednumber <= 100,000;1;;;unknown;single flower inflorescence ;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rorippa sylvestris;13910;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;8;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Curran, P. L.(1984): no title given, publication in Irish Naturalist's Journal issue: 21 pages: 296-298 [21]; Rorippa sylvestris;13910;estimation (following LEDA data standards);2436;1;per multiple flower stem;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2436;;;;1000 < seednumber <= 10,000;1;;;unknown;single flower inflorescence ;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rorippa sylvestris;13910;estimation (following LEDA data standards);8700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;8700;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rosa agrestis;29667;actual measurement (following LEDA data standards);3071.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3071.5;5647;496;3071.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rosa agrestis;29667;actual measurement (following LEDA data standards);2078.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2078.5;3367;790;2078.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rosa arvensis;31158;estimation;15;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;15;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): average 14.5;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rosa arvensis;31158;estimation;24;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;24;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rosa caesia;30273;actual measurement;588;;per ramet/tussock or individual plant ;BIOPOP April 2005;;588;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rosa canina;29295;estimation;17;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;17;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): average 16.5;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rosa canina;29295;estimation;28;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;28;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rosa glauca;29258;actual measurement;2070;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2070;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rosa micrantha;30571;actual measurement (following LEDA data standards);181;1;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;181;181;181;181;100 < seednumber <= 1000;;;;counting ;;2003-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rosa multiflora;29985;actual measurement (following LEDA data standards);7;4;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7;8;6;7;seednumber <= 10;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);1047;15;per square meter;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1307.93;3124;39;1047;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rosa rubiginosa;29291;actual measurement (following LEDA data standards);33;9;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38.67;61;24;33;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-09-01 00:00:00.0;PREAGGREGATED! Raw record's comment: """bottle""";;GERMANY Rosa rubiginosa;29291;estimation;17;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;17;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): average 16.5;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rosa rubiginosa;29291;estimation;23;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;23;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rosa rugosa;30857;actual measurement (following LEDA data standards);50;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;50;50;50;50;10 < seednumber <= 100;;;;counting ;;2005-07-21 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rosa rugosa;30857;actual measurement (following LEDA data standards);11.5;10;per single flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25.5;61;6;11.5;10 < seednumber <= 100;;;;counting ;;2004-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rosa rugosa;30857;actual measurement (following LEDA data standards);4450;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4450;4450;4450;4450;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rosa sherardii;31137;actual measurement;425;29;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;750;100;;100 < seednumber <= 1000;1;;;counting ;;1998-09-28 00:00:00.0;;;UNITED KINGDOM Rosa sherardii;31137;actual measurement (following LEDA data standards);2095;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3789.2;9507;1003;2095;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rosa tomentosa;29878;actual measurement;3000;2;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;5100;900;;1000 < seednumber <= 10,000;1;;;counting ;;1999-10-11 00:00:00.0;;;UNITED KINGDOM Rubia peregrina;31737;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rubia tinctorium;32061;actual measurement (following LEDA data standards);97.5;2;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;97.5;110;85;97.5;10 < seednumber <= 100;;;;counting ;;2005-07-19 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rubus caesius;30108;actual measurement;250;;per ramet/tussock or individual plant ;BIOPOP April 2005;;250;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rubus caesius;30108;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rubus caesius;30108;actual measurement;168;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;300;36;;100 < seednumber <= 1000;1;;;counting ;;1999-08-25 00:00:00.0;;;UNITED KINGDOM Rubus chamaemorus;30071;actual measurement;12;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;12;19;7;;10 < seednumber <= 100;1;;;counting ;;1931-08-01 00:00:00.0;one single flower per shoot;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Rubus chamaemorus;30071;actual measurement;11.4;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];11.4;;;;10 < seednumber <= 100;1;;;counting ;unknown;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];SWEDEN Rubus chamaemorus;30071;actual measurement;12.4;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];12.4;;;;10 < seednumber <= 100;1;;;counting ;single flower inflorescence ;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];SWEDEN Rubus chamaemorus;30071;actual measurement;9.9;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];9.9;;;;seednumber <= 10;1;;;counting ;unknown;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];SWEDEN Rubus chamaemorus;30071;actual measurement;10.3;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];10.3;;;;10 < seednumber <= 100;1;;;counting ;unknown;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];SWEDEN Rubus chamaemorus;30071;actual measurement;10.5;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];10.5;;;;10 < seednumber <= 100;1;;;counting ;single flower inflorescence ;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];SWEDEN Rubus chamaemorus;30071;actual measurement;13.3;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];13.3;;;;10 < seednumber <= 100;1;;;counting ;unknown;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];SWEDEN Rubus chamaemorus;30071;actual measurement;16.2;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];16.2;;;;10 < seednumber <= 100;1;;;counting ;unknown;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];FINLAND Rubus chamaemorus;30071;actual measurement;14;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];14;;;;10 < seednumber <= 100;1;;;counting ;unknown;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];SWEDEN Rubus chamaemorus;30071;actual measurement;10.1;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];10.1;;;;10 < seednumber <= 100;1;;;counting ;unknown;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];SWEDEN Rubus chamaemorus;30071;actual measurement;7.3;30;per single flower inflorescence ;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];7.3;;;;seednumber <= 10;1;;;counting ;unknown;;;Agren, J.(1989): Seed size and number in Rubus chamaemorus: Between-habitat variation, and effects of defoliation and supplemental pollination [77];FINLAND Rubus chamaemorus;30071;estimation;11;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;11;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): average 11;Taylor, K. (1971): no title given, publication in Journal of Ecology issue: 59 pages: 293-306 [59]; Rubus chamaemorus;30071;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Taylor, K. (1971): no title given, publication in Journal of Ecology issue: 59 pages: 293-306 [59]; Rubus fruticosus ag. L.;58698;estimation;30;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;30;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): average 30;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Rubus idaeus;29604;actual measurement (following LEDA data standards);97;5;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;94.4;110;80;97;10 < seednumber <= 100;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rubus idaeus;29604;actual measurement;2679;;per square meter;BIOPOP April 2005;;2679;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus idaeus;29604;actual measurement;60;;per ramet/tussock or individual plant ;BIOPOP April 2005;60;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus idaeus;29604;actual measurement;1095;;per ramet/tussock or individual plant ;BIOPOP April 2005;1095;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus idaeus;29604;actual measurement;10716;;per square meter;BIOPOP April 2005;;10716;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus idaeus;29604;actual measurement;558.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;558.9;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus idaeus;29604;actual measurement;3753;;per square meter;BIOPOP April 2005;;3753;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus idaeus;29604;actual measurement;14080;;per square meter;BIOPOP April 2005;;14080;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus idaeus;29604;actual measurement;646.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;646.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus saxatilis;29888;actual measurement;12;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;12;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Rubus saxatilis;29888;actual measurement;1;;per square meter;BIOPOP April 2005;;;1;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus saxatilis;29888;actual measurement;0;1;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;0;;;;seednumber <= 10;1;;;counting ;unknown;1933-09-04 00:00:00.0;only fully developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;SWEDEN Rubus saxatilis;29888;actual measurement;12;;per square meter;BIOPOP April 2005;;12;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus saxatilis;29888;actual measurement;240;;per square meter;BIOPOP April 2005;;240;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus saxatilis;29888;actual measurement;10.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;10.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rubus saxatilis;29888;actual measurement;14.9;;per ramet/tussock or individual plant ;BIOPOP April 2005;14.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rudbeckia hirta;11072;actual measurement (following LEDA data standards);220;11;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;241.82;340;180;220;100 < seednumber <= 1000;;;;counting ;;2005-09-06 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Rumex acetosa;27593;actual measurement;332;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;332;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Rumex acetosa;27593;actual measurement (following LEDA data standards);147.5;4;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;122.5;170;25;147.5;100 < seednumber <= 1000;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Rumex acetosa;27593;actual measurement;64.5;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;64.5;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;Rumex acetosa ssp. lapponica;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Rumex acetosa;27593;actual measurement;2020;;per square meter;BIOPOP April 2005;;2020;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex acetosa;27593;actual measurement;151.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;151.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex acetosa;27593;actual measurement;103.6;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;103.6;175;40;;100 < seednumber <= 1000;1;;;counting ;unknown;1931-09-01 00:00:00.0;Rumex actosa ssp. lapponica;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Rumex acetosa;27593;actual measurement;94.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;94.4;126;43;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;Rumex acetosa ssp. lapponica, only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Rumex acetosa;27593;actual measurement;540;;per square meter;BIOPOP April 2005;;540;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex acetosa;27593;actual measurement;350;;per square meter;BIOPOP April 2005;;350;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex acetosa;27593;actual measurement;151.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;151.5;302;80;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex acetosa;27593;actual measurement;45.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;45.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex acetosa;27593;actual measurement;442.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;442.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex acetosa;27593;estimation (following LEDA data standards);2100;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2100;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rumex acetosella;27601;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;;1000;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rumex acetosella;27601;actual measurement;10020;;per square meter;BIOPOP April 2005;;10020;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex acetosella;27601;estimation (following LEDA data standards);1000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;1000;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Rumex acetosella;27601;estimation (following LEDA data standards);1000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1000;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rumex acetosella;27601;estimation (following LEDA data standards);10000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;10000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rumex acetosella;27601;actual measurement;334;;per ramet/tussock or individual plant ;BIOPOP April 2005;334;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex alpestris;44762;actual measurement (following LEDA data standards);2266.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2238.3;4415;685;2266.5;1000 < seednumber <= 10,000;;;;counting ;;2004-07-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rumex alpinus;27602;actual measurement (following LEDA data standards);4090;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4246.67;7250;1420;4090;1000 < seednumber <= 10,000;;;;counting ;;2004-07-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rumex aquaticus;27607;actual measurement (following LEDA data standards);4477;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4575.4;7249;2400;4477;1000 < seednumber <= 10,000;;;;counting and weighing ;;2004-08-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rumex conglomeratus;27623;actual measurement (following LEDA data standards);336;4;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;336;357;315;336;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;BELGIUM Rumex crispus;27506;estimation;30000;;per ramet/tussock or individual plant ;BIOPOP April 2005;30000;40000;25000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Rumex crispus;27506;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rumex crispus;27506;actual measurement;40000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rumex crispus;27506;actual measurement;1050;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;100;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rumex crispus;27506;actual measurement;2092;;per ramet/tussock or individual plant ;BIOPOP April 2005;2092;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex crispus;27506;unknown;20050;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40000;100;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Cavers, P. B. (1964): Biological flora of the British Isles: Rumex obtusifolius und Rumex crispus. [52(3)]; Rumex crispus;27506;estimation (following LEDA data standards);3700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3700;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rumex crispus;27506;estimation (following LEDA data standards);3711;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3711;5126;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rumex crispus;27506;actual measurement;59206.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;59206.66667;;;;10,000 < seednumber <= 100,000;1;;54146.02602;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rumex crispus;27506;estimation (following LEDA data standards);3500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;4000;3000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Rumex longifolius;27534;actual measurement;17640;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];17640;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Rumex longifolius;27534;actual measurement;1367;;per ramet/tussock or individual plant ;BIOPOP April 2005;1367;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Rumex longifolius;27534;estimation (following LEDA data standards);9000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;9000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rumex longifolius;27534;actual measurement (following LEDA data standards);600;10;per ramet/tussock or individual plant ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);615;750;500;600;100 < seednumber <= 1000;;;;counting ;multiple flower inflorescence ;2004-09-24 00:00:00.0;preaggregated value obtained from single record;;NORWAY Rumex maritimus;27537;actual measurement;41738.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41738.66667;;;;10,000 < seednumber <= 100,000;1;;47633.98876;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rumex obtusifolius;27542;actual measurement;37574.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37574.33333;;;;10,000 < seednumber <= 100,000;1;;39387.16727;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Rumex obtusifolius;27542;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rumex obtusifolius;27542;actual measurement;7000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rumex obtusifolius;27542;actual measurement;60000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;60000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Rumex obtusifolius;27542;estimation (following LEDA data standards);7000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;7000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Rumex obtusifolius;27542;estimation (following LEDA data standards);13000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;13000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rumex obtusifolius;27542;unknown;30050;;per ramet/tussock or individual plant ;BIOPOP April 2005;;60000;100;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Cavers, P. B. (1964): Biological flora of the British Isles: Rumex obtusifolius und Rumex crispus. [52(3)]; Rumex obtusifolius;27542;estimation (following LEDA data standards);7000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;7000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Rumex palustris;27549;laboratory/greenhouse/garden experiment;26147;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40757.63;109312;5631;26147;10,000 < seednumber <= 100,000;;;;counting and weighing ;multiple flower stem or single stem;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rumex palustris;27549;estimation;200000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200000;;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Rumex palustris;27549;estimation;64000;5;per ramet/tussock or individual plant ;BIOPOP April 2005;64000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Rumex sanguineus;27450;actual measurement (following LEDA data standards);450.5;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;596.75;1224;262;450.5;100 < seednumber <= 1000;;;;counting ;;2004-08-26 00:00:00.0;preaggregated value obtained from single record;;GERMANY Rumex sanguineus;27450;actual measurement;727;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;711.4;;;727;100 < seednumber <= 1000;1;82.86082039;262.0289212;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Rumex scutatus;27451;actual measurement;300;10;per ramet/tussock or individual plant ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];;400;200;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection period: 1985, maximum in large genets: 25,000;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Rumex scutatus;27451;actual measurement;1;10;per single flower inflorescence ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];1;;;;seednumber <= 10;1;0;0;counting ;single flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Rumex thyrsiflorus;27457;actual measurement (following LEDA data standards);1385;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1436;2567;807;1385;1000 < seednumber <= 10,000;;;;counting and weighing ;;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sagina maritima;17033;actual measurement (following LEDA data standards);1160;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1216;2600;440;1160;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sagina nivalis;15578;actual measurement;777;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1260;294;;100 < seednumber <= 1000;1;;;counting ;;1999-08-19 00:00:00.0;;;UNITED KINGDOM Sagina nivalis;15578;actual measurement;832.5;27;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1480;185;;100 < seednumber <= 1000;1;;;counting ;;1998-08-21 00:00:00.0;;;UNITED KINGDOM Sagina nodosa;16644;actual measurement;140;60;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;160;120;;100 < seednumber <= 1000;1;;;counting ;;1998-09-23 00:00:00.0;;;UNITED KINGDOM Sagina procumbens;16230;actual measurement;6185083.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6185083.333;;;;seednumber > 100,000;1;;1727263.376;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sagina procumbens;16230;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;;800;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sagina procumbens;16230;estimation;135;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;135;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Sagina procumbens;16230;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sagina procumbens;16230;actual measurement (following LEDA data standards);901;3;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1116.33;1598;850;901;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sagina saginoides;16651;actual measurement;1305;25;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1980;630;;1000 < seednumber <= 10,000;1;;;counting ;;1997-08-11 00:00:00.0;;;UNITED KINGDOM Sagina saginoides;16651;actual measurement;199.9;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;199.9;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sagina saginoides;16651;actual measurement;83.3;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;83.3;128;68;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sagittaria sagittifolia;35605;actual measurement (following LEDA data standards);1690;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1608.9;2560;582;1690;1000 < seednumber <= 10,000;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Salicornia dolichostachya;18004;estimation;7000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Salicornia dolichostachya;18004;estimation;1440;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1440;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Salicornia europaea;18012;actual measurement (following LEDA data standards);866;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;863.67;1030;695;866;100 < seednumber <= 1000;;;;counting and weighing ;;2004-10-03 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Salicornia pusilla;18025;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Dalby, D. H.(1963): no title given, publication in Nature issue: 199 pages: 197-198 [199]; Salix alba;32638;actual measurement;148288;10;per ramet/tussock or individual plant ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];148288;;;;seednumber > 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per plant, 331 catkins per plant, 56 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix alba;32638;actual measurement;8;12;per single flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];8;;;;seednumber <= 10;1;.1;.346;counting ;single flower inflorescence ;;collection: spring 2000, ovules per fruit;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix alba;32638;actual measurement;448;10;per multiple flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];448;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per catkin! 56 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix arbuscula;32652;actual measurement;55800;9;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;74400;37200;;10,000 < seednumber <= 100,000;1;;;counting ;;1997-06-28 00:00:00.0;;;UNITED KINGDOM Salix aurita;32563;actual measurement (following LEDA data standards);2039099;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2406574.33;3913236;1267388;2039099;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-04-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Salix caprea;32596;actual measurement (following LEDA data standards);8903450.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8903450.5;15706958;2099943;8903450.5;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Salix cinerea;32565;actual measurement (following LEDA data standards);7434009;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9087942;14485350;5344467;7434009;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-04-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Salix daphnoides;32605;actual measurement;67482;22;per ramet/tussock or individual plant ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];67482;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per plant! 69 catkins per plant, 163 fruit per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix daphnoides;32605;actual measurement;978;10;per multiple flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];978;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per catkin! 163 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix daphnoides;32605;actual measurement;6;12;per single flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];6;;;;seednumber <= 10;1;0;0;counting ;single flower inflorescence ;;collection: spring 2000, ovules per fruit;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix elaeagnos;32607;actual measurement;62944;22;per ramet/tussock or individual plant ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];62944;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per plant! 562 catkins per plant, 56 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix elaeagnos;32607;actual measurement;2;12;per single flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];2;;;;seednumber <= 10;1;0;0;counting ;single flower inflorescence ;;collection: spring 2000, ovules per fruit!;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix elaeagnos;32607;actual measurement;112;10;per multiple flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];112;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per catkin! 56 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix glauca;32573;actual measurement (following LEDA data standards);225;2;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;225;315;135;225;100 < seednumber <= 1000;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Salix herbacea;32589;actual measurement (following LEDA data standards);93.5;6;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;130.33;274;22;93.5;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Salix myrsinifolia;32559;actual measurement;1071;3;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];1071;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Salix myrsinites;32555;actual measurement (following LEDA data standards);154;1;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;154;154;154;154;100 < seednumber <= 1000;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Salix pentandra;32567;actual measurement (following LEDA data standards);1245;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1257;1395;1080;1245;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Salix pentandra;32567;actual measurement;850;1;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];850;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;small individuum, N unknown;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Salix pentandra;32567;actual measurement;280000;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;300000;260000;;seednumber > 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;small individuum, N unknown;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Salix purpurea;32526;actual measurement;21996;10;per ramet/tussock or individual plant ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];21996;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per plant! 94 catkins per plant, 39 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix purpurea;32526;actual measurement;6;12;per single flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];6;;;;seednumber <= 10;1;0;0;counting ;single flower inflorescence ;;collection: spring 2000, ovules per fruit! low viability because of insect herbivory and fungal attack?;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix purpurea;32526;actual measurement;234;10;per multiple flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];234;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per catkin! 39 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix reticulata;32535;actual measurement;3060;11;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;6000;120;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-07 00:00:00.0;;;UNITED KINGDOM Salix reticulata;32535;actual measurement (following LEDA data standards);136;2;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;136;138;134;136;100 < seednumber <= 1000;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Salix triandra;32478;actual measurement;737352;16;per ramet/tussock or individual plant ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];737352;;;;seednumber > 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per plant! 588 catkins per plant, 57 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix triandra;32478;actual measurement;22;12;per single flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];22;;;;10 < seednumber <= 100;1;0;0;counting ;single flower inflorescence ;;collection: spring 2000, ovules per fruit!;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix triandra;32478;actual measurement;1254;12;per multiple flower inflorescence ;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];1254;;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;collection: spring 2000, ovules per catkin! 57 fruits per catkin;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];ITALY Salix viminalis;32486;actual measurement (following LEDA data standards);12410000;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13485176.33;19310952;8734577;12410000;seednumber > 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-05-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Salsola kali;18036;estimation (following LEDA data standards);300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;500;100;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Salsola kali;18036;actual measurement (following LEDA data standards);41;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41;41;41;41;10 < seednumber <= 100;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Salsola kali;18036;actual measurement (following LEDA data standards);897.5;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1215.5;3445;245;897.5;100 < seednumber <= 1000;;;;estimation ;;2004-09-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Salsola kali;18036;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Salvia officinalis;23945;actual measurement (following LEDA data standards);23.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24.2;34;11;23.5;10 < seednumber <= 100;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Salvia pratensis;24299;estimation;4605;9;per ramet/tussock or individual plant ;BIOPOP April 2005;4605;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Salvia pratensis;24299;actual measurement;35.7;10;per single flower inflorescence ;BIOPOP April 2005;35.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Salvia pratensis;24299;actual measurement;2100;6;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;4000;200;;1000 < seednumber <= 10,000;1;;;counting ;;1999-07-30 00:00:00.0;;;UNITED KINGDOM Salvia pratensis;24299;actual measurement;33458.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33458.75;;;;10,000 < seednumber <= 100,000;1;;11050.30345;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Salvia pratensis;24299;actual measurement (following LEDA data standards);95;11;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;110.09;181;61;95;10 < seednumber <= 100;;;;counting ;;;PREAGGREGATED! Raw record's comment: wide spectrum of sizes, partly seized with parasites, smaler ones might be steril 1/3;;GERMANY Salvia pratensis;24299;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Scott, A.(1989): The ecology and conservation of Meadow Clary (Salvia pratensis L.), MSc Thesis, University College, London. []; Salvia verbenaca;23951;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Salvia verbenaca;23951;actual measurement;803;32;per ramet/tussock or individual plant ;BIOPOP April 2005;803;939;667;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Salvinia natans;17;actual measurement (following LEDA data standards);45.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;55;189;5;45.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sambucus ebulus;15361;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1975): no title given, publication in Watsonia issue: 10 pages: 293 [10]; Sambucus ebulus;15361;actual measurement;20000;80;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;30000;10000;;10,000 < seednumber <= 100,000;1;;;counting ;;1999-09-09 00:00:00.0;;;UNITED KINGDOM Sambucus ebulus;15361;actual measurement;415;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;800;30;;100 < seednumber <= 1000;1;;;counting ;;1999-08-28 00:00:00.0;;;UNITED KINGDOM Sambucus ebulus;15361;actual measurement;304.5;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;600;9;;100 < seednumber <= 1000;1;;;counting ;;1998-09-03 00:00:00.0;;;UNITED KINGDOM Sambucus nigra;15363;estimation;5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;5;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Sambucus racemosa;15364;actual measurement (following LEDA data standards);202;4;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;202;221;183;202;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sambucus racemosa;15364;actual measurement (following LEDA data standards);21926;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24288.13;54230;1806;21926;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Samolus valerandi;28974;estimation;3031;55;per ramet/tussock or individual plant ;BIOPOP April 2005;3031;3523;2539;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Sanguisorba minor;29153;actual measurement;10255;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10255;;;;10,000 < seednumber <= 100,000;1;;2492.002207;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sanguisorba minor;29153;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Sanguisorba minor;29153;unknown;120;;per square meter;BIOPOP April 2005;120;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Sanguisorba minor;29153;unknown;3;;per square meter;BIOPOP April 2005;3;;;;seednumber <= 10;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Sanguisorba officinalis;30139;actual measurement (following LEDA data standards);69;8;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;71.38;94;52;69;10 < seednumber <= 100;;;;counting ;;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sanguisorba officinalis;30139;actual measurement;84622;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;84622;;;;10,000 < seednumber <= 100,000;1;;62697.72801;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sanguisorba officinalis;30139;actual measurement;5150;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;10000;300;;1000 < seednumber <= 10,000;1;;;counting ;;1999-08-13 00:00:00.0;;;UNITED KINGDOM Sanicula europaea;2102;actual measurement;32;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30.3;;;32;10 < seednumber <= 100;1;1.513274595;4.785394446;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Sanicula europaea;2102;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Sanicula europaea;2102;actual measurement;28977.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28977.66667;;;;10,000 < seednumber <= 100,000;1;;25966.04507;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sanicula europaea;2102;actual measurement;34;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;34;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Saponaria officinalis;17539;actual measurement;57324;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;57324;;;;10,000 < seednumber <= 100,000;1;;34641.66066;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Saponaria officinalis;17539;actual measurement (following LEDA data standards);848;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;826.2;1231;13;848;100 < seednumber <= 1000;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sarracenia purpurea;31302;actual measurement (following LEDA data standards);653;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;932;1610;533;653;100 < seednumber <= 1000;;;;counting ;;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Satureja hortensis;25007;laboratory/greenhouse/garden experiment;332;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;763.4;2654;25;332;100 < seednumber <= 1000;;;;counting ;;2005-08-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Saussurea alpina;9535;actual measurement (following LEDA data standards);45;2;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;45;57;33;45;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Saussurea alpina;9535;actual measurement;97.5;29;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;97.5;150;45;;10 < seednumber <= 100;1;;;counting ;;1998-09-12 00:00:00.0;;;UNITED KINGDOM Saussurea alpina;9535;actual measurement;140;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;140;;;;100 < seednumber <= 1000;1;;;counting ;;1999-09-02 00:00:00.0;;;UNITED KINGDOM Saussurea alpina;9535;actual measurement;23.9;20;per ramet/tussock or individual plant ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;23.9;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;multiple flower inflorescence ;2005-03-24 00:00:00.0;seeds per single ramet (one single stem);Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saussurea alpina;9535;actual measurement;5.2;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;5.2;12;0;;seednumber <= 10;1;;;counting ;unknown;2005-03-24 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga aizoides;31321;actual measurement;1000;10;per multiple flower stem;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];;1500;500;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Saxifraga aizoides;31321;actual measurement;1296;14;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2304;288;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Saxifraga aizoides;31321;actual measurement;207.5;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;207.5;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga aizoides;31321;actual measurement;176;10;per single flower inflorescence ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];176;;;;100 < seednumber <= 1000;1;18.974;60;counting ;single flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Saxifraga aizoides;31321;actual measurement;83;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;83;145;13;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga granulata;31381;actual measurement;554;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;554;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Saxifraga granulata;31381;actual measurement;1334666.667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1334666.667;;;;seednumber > 100,000;1;;1272454.845;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Saxifraga granulata;31381;estimation;600;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;600;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Saxifraga hypnoides;31390;actual measurement;250;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;300;200;;100 < seednumber <= 1000;1;;;counting ;;1998-07-07 00:00:00.0;;;UNITED KINGDOM Saxifraga hypnoides;31390;actual measurement;255;20;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;480;30;;100 < seednumber <= 1000;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Saxifraga nivalis;31524;actual measurement;620;18;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;620;1400;200;;100 < seednumber <= 1000;1;;;counting ;;1998-09-13 00:00:00.0;;;UNITED KINGDOM Saxifraga nivalis;31524;actual measurement;339.7;7;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;339.7;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga nivalis;31524;actual measurement;87.1;7;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;87.1;165;31;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga oppositifolia;31526;estimation;274;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;274;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Jones, V.(1956): no title given, publication in Journal of Ecology issue: 44 pages: 300-316 [44]; Saxifraga oppositifolia;31526;actual measurement;300;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;500;100;;100 < seednumber <= 1000;1;;;counting ;;1998-07-04 00:00:00.0;;;UNITED KINGDOM Saxifraga oppositifolia;31526;actual measurement;850;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1500;200;;100 < seednumber <= 1000;1;;;counting ;;1998-08-07 00:00:00.0;;;UNITED KINGDOM Saxifraga rivularis;31573;actual measurement;62.7;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;62.7;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-09-01 00:00:00.0;but two flowers per single stem are rare;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga rivularis;31573;actual measurement;59.7;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;59.7;129;11;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga rosacea;31574;estimation;172;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;172;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Webb, D. A.(1950): no title given, publication in Journal of Ecology issue: 38 pages: 185-213 [38]; Saxifraga stellaris;31429;actual measurement;1400;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2400;400;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Saxifraga stellaris;31429;actual measurement;355;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;355;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;;1931-09-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga stellaris;31429;actual measurement;394;;per single flower inflorescence ;BIOPOP April 2005;394;490;298;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Saxifraga stellaris;31429;actual measurement;131.5;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;131.5;213;79;;100 < seednumber <= 1000;1;;;counting ;unknown;1931-09-01 00:00:00.0;seed number per fruit;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Saxifraga stellaris;31429;estimation;160;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;160;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Saxifraga tridactylites;31616;actual measurement (following LEDA data standards);236;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;227.4;354;123;236;100 < seednumber <= 1000;;;;counting ;;2004-05-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Saxifraga tridactylites;31616;actual measurement;210;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;400;20;;100 < seednumber <= 1000;1;;;counting ;;1997-06-18 00:00:00.0;;;UNITED KINGDOM Saxifraga tridactylites;31616;estimation;287;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;287;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Saxifraga tridactylites;31616;estimation;1106;;per ramet/tussock or individual plant ;BIOPOP April 2005;1106;2319;1008;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Scabiosa atropurpurea;19064;laboratory/greenhouse/garden experiment;612.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;713.8;1502;370;612.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scabiosa columbaria;19381;actual measurement;311;89;per ramet/tussock or individual plant ;BIOPOP April 2005;311;358;264;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Scabiosa columbaria;19381;unknown;1178;;per square meter;BIOPOP April 2005;1178;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Scabiosa columbaria;19381;actual measurement;24;6;per ramet/tussock or individual plant ;BIOPOP April 2005;24;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Scabiosa columbaria;19381;actual measurement;27;6;per ramet/tussock or individual plant ;BIOPOP April 2005;27;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Scabiosa columbaria;19381;actual measurement;30;20;per ramet/tussock or individual plant ;BIOPOP April 2005;30;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: per plant;During, H. J.(1985): Demography of short-lived forbs in chalk grassland in relation to vegetation structure. The population structure of vegetation. J. White. Dordrecht, Dr. W.;NETHERLANDS Scabiosa columbaria;19381;unknown;3008;;per square meter;BIOPOP April 2005;3008;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Scabiosa ochroleuca;19228;actual measurement (following LEDA data standards);115.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;117.2;202;51;115.5;100 < seednumber <= 1000;;;;counting ;;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scandix pecten-veneris;1087;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;;150;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Scandix pecten-veneris;1087;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Scheuchzeria palustris;43986;actual measurement (following LEDA data standards);26;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24.47;34;11;26;10 < seednumber <= 100;;;;counting ;;2003-09-06 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Scheuchzeria palustris;43986;actual measurement;0;139;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;0;;;;seednumber <= 10;1;;;counting ;;1998-08-27 00:00:00.0;;;UNITED KINGDOM Schoenus ferrugineus;37576;actual measurement (following LEDA data standards);505.4;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;475.52;600.6;158.4;505.4;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-05-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Schoenus nigricans;37577;actual measurement (following LEDA data standards);913.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1069.6;2160;285;913.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-06-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Schoenus nigricans;37577;actual measurement (following LEDA data standards);18;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21.87;54;5;18;10 < seednumber <= 100;;;;counting ;;2003-08-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Scilla autumnalis;38085;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Lovatt, C. M.(1982): The history, ecology and status of the rare plants and the vegetation of the Avon Gorge, Bristol. PhD thesis, University of Bristol. []; Scilla autumnalis;38085;actual measurement;39;60;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;54;24;;10 < seednumber <= 100;1;;;counting ;;1997-09-13 00:00:00.0;;;UNITED KINGDOM Scilla autumnalis;38085;actual measurement;35;76;per ramet/tussock or individual plant ;BIOPOP April 2005;35;36;33;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Scilla bifolia;38937;actual measurement (following LEDA data standards);16;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17.5;38;4;16;10 < seednumber <= 100;;;;counting ;;2004-05-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scilla sibirica;38091;laboratory/greenhouse/garden experiment;11;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12.8;27;3;11;10 < seednumber <= 100;;;;counting ;;2004-05-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scilla verna;38950;estimation;12;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;12;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Hawker, D. M. (unknown e-mail address); Scirpus cespitosus;37472;actual measurement;2.2;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;2.2;3;1;;seednumber <= 10;1;;;counting ;unknown;1931-08-01 00:00:00.0;only full developed seeds, seed setting: 79% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Scirpus cespitosus;37472;actual measurement;1200;15;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1500;900;;1000 < seednumber <= 10,000;1;;;counting ;;1998-07-09 00:00:00.0;;;UNITED KINGDOM Scirpus cespitosus;37472;actual measurement (following LEDA data standards);9;3;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9.33;11;8;9;seednumber <= 10;;;;counting ;;2005-05-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus cespitosus;37472;actual measurement (following LEDA data standards);4;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3.8;5;2;4;seednumber <= 10;;;;counting ;;2004-07-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus cespitosus;37472;actual measurement;8;50;per multiple flower inflorescence ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;8;;;;seednumber <= 10;1;;;counting ;;1998-08-04 00:00:00.0;;;UNITED KINGDOM Scirpus fluitans;37478;actual measurement (following LEDA data standards);30;15;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30.73;54;11;30;10 < seednumber <= 100;;;;counting ;single flower inflorescence ;2004-08-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus fluitans;37478;actual measurement (following LEDA data standards);4;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4.25;11;1;4;seednumber <= 10;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus hudsonianus;37482;actual measurement (following LEDA data standards);7;10;per ramet/tussock or individual plant ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);7.5;12;4;7;seednumber <= 10;;;;counting and extrapolation ;single flower inflorescence ;2004-10-03 00:00:00.0;preaggregated value obtained from single record;;NORWAY Scirpus lacustris;37486;actual measurement (following LEDA data standards);167;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;160.4;280;79;167;100 < seednumber <= 1000;;;;counting ;;2003-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Scirpus lacustris;37486;actual measurement;4900;250;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;4900;;;;1000 < seednumber <= 10,000;1;;;counting ;;1998-09-01 00:00:00.0;;;UNITED KINGDOM Scirpus lacustris;37486;actual measurement (following LEDA data standards);76.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;102.3;213;27;76.5;10 < seednumber <= 100;;;;counting ;;2003-07-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus lacustris s. tabernaemontani;37488;actual measurement (following LEDA data standards);35;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39;81;22;35;10 < seednumber <= 100;;;;counting ;;2005-07-22 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Scirpus lacustris s. tabernaemontani;37488;actual measurement;90;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;60;;10 < seednumber <= 100;1;;;counting ;;1998-09-01 00:00:00.0;;;UNITED KINGDOM Scirpus maritimus;37054;actual measurement (following LEDA data standards);117;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;146;351;27;117;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-10-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Scirpus maritimus;37054;actual measurement (following LEDA data standards);16.5;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19.63;41;1;16.5;10 < seednumber <= 100;;;;counting ;;2004-09-28 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus maritimus;37054;actual measurement (following LEDA data standards);30;3;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;77;180;21;30;10 < seednumber <= 100;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus setaceus;37063;actual measurement (following LEDA data standards);23;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34.4;87;7;23;10 < seednumber <= 100;;;;counting ;;2004-07-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus setaceus;37063;actual measurement (following LEDA data standards);14;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15.38;26;9;14;10 < seednumber <= 100;;;;counting ;;2004-09-19 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scirpus setaceus;37063;actual measurement (following LEDA data standards);7760.5;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11240.2;31160;1216;7760.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Scirpus sylvaticus;37067;actual measurement;5250;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5260;;;5250;1000 < seednumber <= 10,000;1;493.5964951;1480.789485;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Scirpus sylvaticus;37067;actual measurement;5000;12;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;6400;3600;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Scirpus sylvaticus;37067;actual measurement;15;8;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];15;18;12;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Scirpus sylvaticus;37067;actual measurement;11610;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];11610;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Scirpus sylvaticus;37067;actual measurement;693015.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;693015.25;;;;seednumber > 100,000;1;;424926.8871;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Scirpus triqueter;37508;actual measurement;6.6;4;per multiple flower inflorescence ;Deegan, B.M.(2004): The distribution and ecology of Schoenoplectus triqueter in the shannon estuary [104];6.6;;;;seednumber <= 10;1;;;counting ;unknown;;seeds per spikelet;Deegan, B.M.(2004): The distribution and ecology of Schoenoplectus triqueter in the shannon estuary [104];DENMARK Scirpus triqueter;37508;actual measurement;6.6;10;per single flower inflorescence ;Deegan, B.M.(2004): The distribution and ecology of Schoenoplectus triqueter in the shannon estuary [104];6.6;;;;seednumber <= 10;1;.538;1.7;counting ;unknown;1999-08-23 00:00:00.0;seeds per spikelet;Deegan, B.M.(2004): The distribution and ecology of Schoenoplectus triqueter in the shannon estuary [104];UNITED KINGDOM Scirpus triqueter;37508;actual measurement (following LEDA data standards);62;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;65.7;171;8;62;10 < seednumber <= 100;;;;counting ;;2003-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scleranthus annuus;17086;actual measurement;1299.5;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;2500;99;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Scleranthus annuus;17086;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Scleranthus annuus;17086;laboratory/greenhouse/garden experiment;1040;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3050.4;9600;150;1040;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scleranthus annuus;17086;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;;100;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Scleranthus annuus;17086;estimation (following LEDA data standards);100;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;100;;;10 < seednumber <= 100;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Scleranthus annuus s. annuus;17085;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Scleranthus annuus s. annuus;17085;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Scleranthus perennis;17092;actual measurement (following LEDA data standards);11.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.1;28;9;11.5;10 < seednumber <= 100;;;;counting ;;2005-05-28 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Scleranthus perennis;17092;actual measurement (following LEDA data standards);659;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;696.63;1363;178;659;100 < seednumber <= 1000;;;;counting and weighing ;;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sclerochloa dura;42375;laboratory/greenhouse/garden experiment;709;4;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);720;1290;172;709;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scolochloa festucacea;42941;actual measurement;181.5;4;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;207;156;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Scolochloa festucacea;42941;actual measurement;3;1;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];3;;;;seednumber <= 10;1;;;counting ;unknown;;N unknown;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Scorzonera humilis;9541;actual measurement;2946.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2946.666667;;;;1000 < seednumber <= 10,000;1;;1870.436669;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Scorzonera laciniata;10007;actual measurement (following LEDA data standards);15.5;6;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20.17;39;12;15.5;10 < seednumber <= 100;;;;counting ;;2004-08-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scorzonera laciniata;10007;actual measurement (following LEDA data standards);138;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;163.33;259;73;138;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-23 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scrophularia auriculata;33429;actual measurement;1400;5;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1800;1000;;1000 < seednumber <= 10,000;1;;;counting ;;1998-10-15 00:00:00.0;;;UNITED KINGDOM Scrophularia nodosa;32862;actual measurement;744;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;744;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Scrophularia nodosa;32862;actual measurement;4903;;per ramet/tussock or individual plant ;BIOPOP April 2005;4903;14070;804;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Scrophularia nodosa;32862;actual measurement;4903;;per ramet/tussock or individual plant ;BIOPOP April 2005;4903;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Scrophularia nodosa;32862;actual measurement;4120;;per ramet/tussock or individual plant ;BIOPOP April 2005;4120;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Scrophularia nodosa;32862;actual measurement;9650;;per ramet/tussock or individual plant ;BIOPOP April 2005;9650;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Scrophularia nodosa;32862;actual measurement;17852.5;;per square meter;BIOPOP April 2005;;28950;6755;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Scrophularia nodosa;32862;actual measurement;20916;;per square meter;BIOPOP April 2005;;20916;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Scrophularia nodosa;32862;actual measurement;14070;;per ramet/tussock or individual plant ;BIOPOP April 2005;;14070;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Scrophularia nodosa;32862;actual measurement;36448;;per square meter;BIOPOP April 2005;;36448;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Scrophularia nodosa;32862;actual measurement;2998;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3014.2;;;2998;1000 < seednumber <= 10,000;1;406.9126524;1286.77079;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Scrophularia nodosa;32862;actual measurement;7140;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;7980;6300;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;small individuum;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Scrophularia nodosa;32862;estimation;48500;61;per ramet/tussock or individual plant ;BIOPOP April 2005;;54000;43000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Scrophularia nodosa;32862;actual measurement;435474;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;435474;;;;seednumber > 100,000;1;;11388.31102;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Scrophularia nodosa;32862;estimation;272;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;272;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Scrophularia vernalis;33383;estimation;45600;;per ramet/tussock or individual plant ;BIOPOP April 2005;45600;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Scrophularia vernalis;33383;laboratory/greenhouse/garden experiment;118672;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;117102.5;156258;74808;118672;seednumber > 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-07-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Scrophularia vernalis;33383;estimation;38;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;38;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 38;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Scutellaria galericulata;24386;actual measurement;17866.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17866.66667;;;;10,000 < seednumber <= 100,000;1;;9938.477415;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Scutellaria galericulata;24386;actual measurement;288;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;352;160;288;100 < seednumber <= 1000;1;;;estimation ;unknown;;diaspores!;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Scutellaria minor;23967;actual measurement (following LEDA data standards);40;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;42.4;80;24;40;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-07-11 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sedum acre;18178;actual measurement;9421.5;;per square meter;BIOPOP April 2005;;17595;1248;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Sedum acre;18178;actual measurement;36;5;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];36.8;39;35;36;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Sedum acre;18178;actual measurement;618365.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;618365.6667;;;;seednumber > 100,000;1;;410736.0322;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sedum acre;18178;actual measurement;115.2;;per multiple flower stem;BIOPOP April 2005;115.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Sedum acre;18178;actual measurement;1060000;4;per square meter;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];1060000;;;;seednumber > 100,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Sedum album;18182;actual measurement (following LEDA data standards);80;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;85.9;167;41;80;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sedum cepaea;18212;laboratory/greenhouse/garden experiment;980;14;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1054.29;1900;360;980;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sedum rubens;18260;laboratory/greenhouse/garden experiment;280;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;473.33;1020;120;280;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sedum sexangulare;18275;actual measurement (following LEDA data standards);148;11;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;163.55;284;80;148;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sedum telephium;18283;actual measurement;2277;;per ramet/tussock or individual plant ;BIOPOP April 2005;2277;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Sedum telephium;18283;actual measurement;225456;;per square meter;BIOPOP April 2005;;225456;;;seednumber > 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Sedum telephium;18283;actual measurement;4125;;per square meter;BIOPOP April 2005;;4125;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Sedum telephium;18283;actual measurement (following LEDA data standards);1341.5;2;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1341.5;1745;938;1341.5;1000 < seednumber <= 10,000;;;;counting ;;2004-08-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sedum telephium s. maximum;18293;actual measurement (following LEDA data standards);7600;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7800;10800;5600;7600;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-10-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sedum telephium s. maximum;18293;actual measurement;2000;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;2000;;;;1000 < seednumber <= 10,000;1;;;counting ;;1999-10-07 00:00:00.0;;;UNITED KINGDOM Sedum villosum;18303;actual measurement;383;37;per ramet/tussock or individual plant ;BIOPOP April 2005;383;418;348;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Selinum carvifolia;1092;actual measurement;264367.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;264367.3333;;;;seednumber > 100,000;1;;118394.0134;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Selinum carvifolia;1092;actual measurement (following LEDA data standards);120;3;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;250;510;120;120;100 < seednumber <= 1000;;;;counting ;;2004-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Selinum carvifolia;1092;actual measurement (following LEDA data standards);3004.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3681.9;7715;724;3004.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sempervivum tectorum;18351;actual measurement (following LEDA data standards);14364;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14523.6;15960;11172;14364;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-08-18 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sempervivum tectorum;18351;actual measurement (following LEDA data standards);20736;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;20736;20736;20736;20736;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Senecio aquaticus;9544;actual measurement;57083.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;57083.33333;;;;10,000 < seednumber <= 100,000;1;;22782.02874;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Senecio aquaticus;9544;actual measurement (following LEDA data standards);158;9;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;151.22;164;125;158;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Senecio aquaticus s. barbareifolius;11409;actual measurement (following LEDA data standards);46648.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44795.83;65978;18361;46648.5;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Senecio erucifolius;11230;actual measurement (following LEDA data standards);1151.5;4;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1367.75;2108;1060;1151.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Senecio erucifolius;11230;actual measurement (following LEDA data standards);2075;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2620;5000;1400;2075;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-26 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Senecio integrifolius s. integrifolius;10152;estimation;255;49;per ramet/tussock or individual plant ;BIOPOP April 2005;255;270;240;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Senecio jacobaea;10452;estimation;100000;;per ramet/tussock or individual plant ;BIOPOP April 2005;100000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;NEW ZEALAND Senecio jacobaea;10452;unknown;62580;;per ramet/tussock or individual plant ;BIOPOP April 2005;;120400;4760;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Harper, J. L. (1957): Biological flora of the British Isles: Senecio jacobea. [45(2)]; Senecio jacobaea;10452;estimation (following LEDA data standards);2100;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2100;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Senecio jacobaea;10452;unknown;935;;per square meter;BIOPOP April 2005;935;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Senecio jacobaea;10452;estimation;63000;;per ramet/tussock or individual plant ;BIOPOP April 2005;63000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Senecio jacobaea;10452;actual measurement (following LEDA data standards);4462.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5722.5;15750;1050;4462.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Senecio nemorensis;9809;actual measurement;48946.4;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;48946.4;;;;10,000 < seednumber <= 100,000;1;;29979.07612;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Senecio nemorensis subsp. fuchsii;9810;actual measurement (following LEDA data standards);1541;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1666.9;2657;992;1541;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Senecio rivularis;9636;actual measurement;27990;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27990;;;;10,000 < seednumber <= 100,000;1;;2416.257437;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Senecio squalidus;9306;laboratory/greenhouse/garden experiment;6880.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6748.3;15327;2408;6880.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Senecio squalidus;9306;estimation;120;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;120;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/head;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Senecio sylvaticus;9889;actual measurement;92466.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;92466.66667;;;;10,000 < seednumber <= 100,000;1;;69065.28313;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Senecio sylvaticus;9889;estimation;10638;66;per ramet/tussock or individual plant ;BIOPOP April 2005;10638;11592;9684;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Senecio sylvaticus;9889;estimation;66;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;66;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/head;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Senecio vernalis;11179;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;5000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Senecio vernalis;11179;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;4000;2000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Senecio viscosus;10121;actual measurement;86844.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;86844.33333;;;;10,000 < seednumber <= 100,000;1;;83633.43109;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Senecio viscosus;10121;estimation (following LEDA data standards);3500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Senecio vulgaris;10456;actual measurement;334264.4;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;334264.4;;;;seednumber > 100,000;1;;106386.5839;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Senecio vulgaris;10456;estimation;101;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;101;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Abbott, R. (unknown e-mail address); Senecio vulgaris;10456;estimation;1127;448;per ramet/tussock or individual plant ;BIOPOP April 2005;1127;1187;1067;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Senecio vulgaris;10456;actual measurement;1100;;per ramet/tussock or individual plant ;BIOPOP April 2005;1100;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Senecio vulgaris;10456;actual measurement;7200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;7200;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Senecio vulgaris;10456;actual measurement;38000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;38000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Senecio vulgaris;10456;estimation (following LEDA data standards);4300;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;7200;1400;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Senecio vulgaris;10456;actual measurement (following LEDA data standards);720;1;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;720;720;720;720;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Serratula tinctoria s. macrocephala;10289;actual measurement;400;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;400;;;;100 < seednumber <= 1000;1;;;counting ;;1998-08-05 00:00:00.0;;;UNITED KINGDOM Seseli libanotis;1044;actual measurement;41846;;per ramet/tussock or individual plant ;BIOPOP April 2005;;41846;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Seseli libanotis;1044;actual measurement;103281.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;103281.3333;;;;seednumber > 100,000;1;;40547.87597;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Seseli libanotis;1044;actual measurement;13202;;per ramet/tussock or individual plant ;BIOPOP April 2005;13202;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: medium plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Seseli libanotis;1044;actual measurement;1222;;per ramet/tussock or individual plant ;BIOPOP April 2005;1222;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: small plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Sesleria albicans;43301;laboratory/greenhouse/garden experiment;31;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31.2;45;11;31;10 < seednumber <= 100;;;;counting ;;2004-06-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sesleria albicans;43301;actual measurement (following LEDA data standards);23;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23.9;53;6;23;10 < seednumber <= 100;;;;counting ;;2003-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sesleria caerulea;42378;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Dixon, J. M. (unknown e-mail address); Sesleria caerulea;42378;laboratory/greenhouse/garden experiment;1950;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1950;1950;1950;1950;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Setaria italica;42741;actual measurement (following LEDA data standards);26916;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26302.2;58112;474;26916;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Setaria italica;42741;laboratory/greenhouse/garden experiment;1152;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1152;1152;1152;1152;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Setaria pumila;43456;actual measurement;8460;;per ramet/tussock or individual plant ;BIOPOP April 2005;;8460;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Setaria pumila;43456;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Setaria pumila;43456;actual measurement;1500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Setaria pumila;43456;estimation (following LEDA data standards);850;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;1500;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Setaria pumila;43456;laboratory/greenhouse/garden experiment;1088;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1080.25;2016;129;1088;1000 < seednumber <= 10,000;;;;counting ;;2004-09-30 00:00:00.0;preaggregated value obtained from single record;;GERMANY Setaria pumila;43456;actual measurement;121574.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;121574.3333;;;;seednumber > 100,000;1;;54140.43384;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Setaria pumila;43456;laboratory/greenhouse/garden experiment;1894;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);1854.8;2573;1228;1894;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Setaria pumila;43456;unknown;4500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;8460;540;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;CANADA Setaria pumila;43456;unknown;180;1;per multiple flower inflorescence ;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;180;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature (Peters et al., 1963), number of samples and replicates unknown;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;CANADA Setaria pumila;43456;unknown;4500;1;per ramet/tussock or individual plant ;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;;8460;540;;1000 < seednumber <= 10,000;1;;;unknown;multiple flower inflorescence ;;from literature (Peters et al., 1963), number of samples and replicates unknown, 3-47 heads per plant;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;CANADA Setaria verticillata;43457;laboratory/greenhouse/garden experiment;188;1;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);188;188;188;188;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Setaria verticillata;43457;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Setaria verticillata;43457;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Setaria verticillata;43457;unknown;2560;1;per ramet/tussock or individual plant ;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;;5000;120;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature (S.M. Lee, unpubl. data), number of samples and replicates unknown;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;CANADA Setaria verticillata;43457;unknown;120;1;per multiple flower inflorescence ;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;120;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature (S.M. Lee, unpubl. data), number of samples and replicates unknown, seeds per head;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;CANADA Setaria verticillata;43457;unknown;2560;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;120;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Steel, M. G.(1983): The biology of Canadian weeds. 59. Setaria glauca (L.) Beauv. and S. verticillata (L.) Beauv.;CANADA Setaria viridis;42743;laboratory/greenhouse/garden experiment;1341;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);2749;7760;1090;1341;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Setaria viridis;42743;actual measurement;12000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;12000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Setaria viridis;42743;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;5000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Setaria viridis;42743;laboratory/greenhouse/garden experiment;7974;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13172.7;32284;2987;7974;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sherardia arvensis;31967;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Sherardia arvensis;31967;actual measurement;260;;per ramet/tussock or individual plant ;BIOPOP April 2005;;260;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sherardia arvensis;31967;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);6;1;per multiple flower inflorescence ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;6;6;6;6;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Sibbaldia procumbens;30472;actual measurement;27.4;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;27.4;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;;,24.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sibbaldia procumbens;30472;actual measurement;63.8;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;63.8;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;;,01.09.31;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sibbaldia procumbens;30472;actual measurement;32;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];32;;;;10 < seednumber <= 100;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Sibbaldia procumbens;30472;actual measurement;7.8;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;7.8;14;4;;seednumber <= 10;1;;;counting ;single flower inflorescence ;2006-11-20 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sibbaldia procumbens;30472;actual measurement;7.5;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;7.5;14;3;;seednumber <= 10;1;;;counting ;unknown;2005-01-20 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sibbaldia procumbens;30472;actual measurement;4.9;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;4.9;9;1;;seednumber <= 10;1;;;counting ;unknown;2006-12-20 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sibbaldia procumbens;30472;actual measurement;7;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;7;;;;seednumber <= 10;1;;;counting ;unknown;;,26.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sibbaldia procumbens;30472;actual measurement;66.3;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;66.3;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;;,13.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sibbaldia procumbens;30472;actual measurement;56;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;56;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;;,26.08.1929;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sibbaldia procumbens;30472;actual measurement;96;33;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;72;;10 < seednumber <= 100;1;;;counting ;;1997-08-06 00:00:00.0;;;UNITED KINGDOM Sigesbeckia orientalis;11602;laboratory/greenhouse/garden experiment;1084;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1552.9;3851;206;1084;1000 < seednumber <= 10,000;;;;counting ;;2005-08-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Silaum silaus;993;actual measurement;186016.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;186016.6667;;;;seednumber > 100,000;1;;111500.5867;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Silene acaulis;17102;actual measurement (following LEDA data standards);6;3;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;6;9;3;6;seednumber <= 10;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Silene acaulis;17102;actual measurement;494.5;31;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;494.5;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-06 00:00:00.0;;;UNITED KINGDOM Silene acaulis;17102;actual measurement;77;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];77;;;;10 < seednumber <= 100;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Silene acaulis s. acaulis;16606;estimation;11;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;11;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 11;Jones, V.(1962): no title given, publication in Journal of Ecology issue: 50 pages: 475-487 [50]; Silene acaulis s. acaulis;16606;estimation;19;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;19;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Jones, V.(1962): no title given, publication in Journal of Ecology issue: 50 pages: 475-487 [50]; Silene armeria;17110;actual measurement (following LEDA data standards);1560;7;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1631.43;3245;250;1560;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Silene chlorantha;15554;actual measurement (following LEDA data standards);4751;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4683;9167;414;4751;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Silene conica;16631;estimation;98;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;98;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Silene conica;16631;actual measurement;784;613;per ramet/tussock or individual plant ;BIOPOP April 2005;784;868;700;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Silene conica;16631;actual measurement (following LEDA data standards);274;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;341.78;950;59;274;100 < seednumber <= 1000;;;;counting ;;2004-07-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Silene conica;16631;actual measurement;70;120;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;100;40;;10 < seednumber <= 100;1;;;counting ;;1997-06-18 00:00:00.0;;;UNITED KINGDOM Silene cretica;16289;laboratory/greenhouse/garden experiment;1164.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2130.1;5563;133;1164.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Silene dichotoma;15776;estimation (following LEDA data standards);1000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;1000;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Silene dichotoma;15776;estimation (following LEDA data standards);1100;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1100;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Silene dichotoma;15776;laboratory/greenhouse/garden experiment;5300;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11540.33;44621;3104;5300;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Silene dioica;17578;estimation (following LEDA data standards);2100;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2100;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Silene dioica;17578;estimation;288;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;288;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Silene dioica;17578;actual measurement;220;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];220;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Silene dioica;17578;estimation;200;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;200;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 200;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Silene dioica;17578;actual measurement;108957.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;108957.3333;;;;seednumber > 100,000;1;;10596.48344;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Silene dioica;17578;estimation;7193;53;per ramet/tussock or individual plant ;BIOPOP April 2005;7193;8317;6069;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Silene dioica;17578;unknown;9300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;17850;750;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Baker, H. G. (1947): Biological flora of the British Isles: Melandrium diocum (L. emend.) Coss. & Germ.; Silene dioica;17578;actual measurement;651.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;651.6;1267;362;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Silene gallica;16298;actual measurement;811;;per ramet/tussock or individual plant ;BIOPOP April 2005;811;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Silene gallica;16298;estimation;923;289;per ramet/tussock or individual plant ;BIOPOP April 2005;923;1205;821;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Silene gallica;16298;actual measurement (following LEDA data standards);10290;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11130;18780;6000;10290;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Silene latifolia;17283;estimation;430;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;430;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Silene latifolia;17283;actual measurement;6000;;per ramet/tussock or individual plant ;BIOPOP April 2005;6000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Silene latifolia;17283;estimation (following LEDA data standards);6000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Silene latifolia;17283;actual measurement;301569.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;301569.3333;;;;seednumber > 100,000;1;;253851.7292;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Silene latifolia;17283;estimation (following LEDA data standards);6000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;6000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Silene linicola;17593;laboratory/greenhouse/garden experiment;811;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;916.8;2106;466;811;100 < seednumber <= 1000;;;;counting ;single flower inflorescence ;2004-08-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Silene noctiflora;17252;actual measurement;800;;per ramet/tussock or individual plant ;BIOPOP April 2005;800;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Silene noctiflora;17252;unknown;2587;;per ramet/tussock or individual plant ;BIOPOP April 2005;2587;;;;1000 < seednumber <= 10,000;;;206;unknown;unknown;;;McNeill, J. (1980): The biology of Canadian weeds. 46. Silene noctiflora L.;UNITED KINGDOM Silene nutans;16673;actual measurement;393.5;;per square meter;BIOPOP April 2005;;476;311;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Silene nutans;16673;actual measurement;103500;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;103500;;;;seednumber > 100,000;1;;43809.2456;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Silene nutans;16673;actual measurement;255.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;255.8;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Silene otites;15749;actual measurement;2186;17;per ramet/tussock or individual plant ;BIOPOP April 2005;2186;2485;1887;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Silene otites;15749;estimation;39;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;39;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Silene vulgaris;16657;actual measurement (following LEDA data standards);68;7;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;64.71;89;35;68;10 < seednumber <= 100;;;;counting ;;2004-07-12 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Silene vulgaris;16657;estimation;99;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;99;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: vulgaris Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Marsden-Jones, E. M.(1957): The Bladder Campions, The Ray Society, London []; Silene vulgaris;16657;estimation (following LEDA data standards);8000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;8000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Silene vulgaris;16657;estimation (following LEDA data standards);40;1;per single flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;45;35;;10 < seednumber <= 100;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Silene vulgaris;16657;actual measurement (following LEDA data standards);111;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;145.46;369;3;111;100 < seednumber <= 1000;;;;counting ;;2004-07-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sinapis alba;13450;estimation (following LEDA data standards);1800;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1800;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sinapis alba;13450;laboratory/greenhouse/garden experiment;67;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;74.8;138;14;67;10 < seednumber <= 100;;;;counting ;;2005-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sinapis alba;13450;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;8;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Sinapis alba;13450;actual measurement;33088;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33088;;;;10,000 < seednumber <= 100,000;1;;13146.91131;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sinapis arvensis;13454;actual measurement;4000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;4000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sinapis arvensis;13454;actual measurement;37745.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37745.66667;;;;10,000 < seednumber <= 100,000;1;;18880.03393;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sinapis arvensis;13454;actual measurement;2250;4;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;2500;2000;;1000 < seednumber <= 10,000;1;;;counting ;;1998-07-28 00:00:00.0;;;UNITED KINGDOM Sinapis arvensis;13454;unknown;25000;;per ramet/tussock or individual plant ;BIOPOP April 2005;25000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa; Sinapis arvensis;13454;unknown;20000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;20000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Wehsarg, O. (1954): Ackerunkräuter. Biologie. Allgemeine Bekämpfung und Einzelbekämpfung []; Sinapis arvensis;13454;unknown;4500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;4000;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Wehsarg, O. (1954): Ackerunkräuter. Biologie. Allgemeine Bekämpfung und Einzelbekämpfung []; Sinapis arvensis;13454;unknown;150;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;250;50;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Sinapis arvensis;13454;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;1200;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sinapis arvensis;13454;estimation (following LEDA data standards);12680;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;21360;4000;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sinapis arvensis;13454;estimation (following LEDA data standards);1200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;1200;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Sinapis arvensis;13454;estimation;18;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;18;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Mulligan, G. A. (1975): The biology of Canadian weeds. 8. Sinapis arvensis L.; Sinapis arvensis;13454;unknown;2750;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3500;2000;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Mulligan, G. A. (1975): The biology of Canadian weeds. 8. Sinapis arvensis L.;CANADA Sinapis arvensis;13454;actual measurement;1200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1200;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sinapis arvensis;13454;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sisymbrium altissimum;13034;laboratory/greenhouse/garden experiment;10333;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10333;10333;10333;10333;10,000 < seednumber <= 100,000;;;;counting ;;2004-10-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sisymbrium altissimum;13034;actual measurement;981874;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;981874;;;;seednumber > 100,000;1;;1390789.95;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sisymbrium loeselii;13930;actual measurement;749902.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;749902.6667;;;;seednumber > 100,000;1;;237461.1865;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sisymbrium officinale;13041;actual measurement;348055.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;348055.3333;;;;seednumber > 100,000;1;;265913.4632;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sisymbrium officinale;13041;actual measurement;2700;;per ramet/tussock or individual plant ;BIOPOP April 2005;2700;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sisymbrium officinale;13041;estimation (following LEDA data standards);2700;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;2700;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Sisymbrium officinale;13041;estimation (following LEDA data standards);2700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2700;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sisymbrium officinale;13041;estimation;15;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;15;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c.15;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Sisymbrium officinale;13041;estimation;18;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;18;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Sium latifolium;1536;actual measurement (following LEDA data standards);528;3;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;547.67;607;508;528;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Smyrnium perfoliatum;2032;actual measurement (following LEDA data standards);436;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;452.67;592;330;436;100 < seednumber <= 1000;;;;counting ;;2005-07-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Smyrnium perfoliatum;2032;actual measurement (following LEDA data standards);404;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;953.33;2126;330;404;100 < seednumber <= 1000;;;;counting ;;2004-05-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Solanum dulcamara;35041;estimation;63;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;63;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Solanum dulcamara;35041;estimation;25;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;25;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 25;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Solanum dulcamara;35041;actual measurement (following LEDA data standards);25;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.07;35;15;25;10 < seednumber <= 100;;;;counting ;;2003-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Solanum dulcamara;35041;actual measurement;53459;36;per ramet/tussock or individual plant ;BIOPOP April 2005;53459;67281;39637;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Solanum dulcamara;35041;actual measurement;30636.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30636.66667;;;;10,000 < seednumber <= 100,000;1;;21967.54955;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Solanum luteum s. alatum;35070;actual measurement (following LEDA data standards);4668;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4181.5;5753;1637;4668;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-09-02 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Solanum nigrum;34958;estimation;52;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;52;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Solanum nigrum;34958;estimation;60;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;60;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): non-British data;Bassett, I. J. (1985): The biology of Canadian weeds. 67. Solanum ptycanthum Dun., S. nigrum L. and S. sarrachoides Sendt.; Solanum nigrum;34958;estimation (following LEDA data standards);40000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;40000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Solanum nigrum;34958;actual measurement;61352;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;61352;;;;10,000 < seednumber <= 100,000;1;;23573.45354;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Solanum nigrum;34958;actual measurement;286794;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;286794;;;;seednumber > 100,000;1;;194053.5995;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Solanum nigrum;34958;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;100;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Solanum nigrum;34958;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Solanum nigrum;34958;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Solanum nigrum;34958;actual measurement;130000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;130000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: exceptional plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Solanum nigrum;34958;actual measurement;8039;68;per ramet/tussock or individual plant ;BIOPOP April 2005;8039;8883;7195;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Solanum tuberosum;34915;actual measurement (following LEDA data standards);3900;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3540;6240;1200;3900;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-07-23 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Soldanella montana;28961;actual measurement;26666.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26666.66667;;;;10,000 < seednumber <= 100,000;1;;4434.124303;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Solidago canadensis;9491;estimation;12;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;12;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): 12 achenes/capitulum, non-British recording;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.; Solidago canadensis;9491;actual measurement;11520;1;per ramet/tussock or individual plant ;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;11520;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;achenes per head as subunit;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;CANADA Solidago canadensis;9491;actual measurement;11760;1;per ramet/tussock or individual plant ;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;11760;;;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;achenes per head;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;CANADA Solidago canadensis;9491;actual measurement;1100;1;per ramet/tussock or individual plant ;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;1100;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;UNITED STATES Solidago canadensis;9491;actual measurement;19034;1;per ramet/tussock or individual plant ;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;19034;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;a single stem was defined as single ramet = one individual;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;UNITED STATES Solidago canadensis;9491;actual measurement;3070;1;per ramet/tussock or individual plant ;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;3070;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;a single shoot was defined as a single ramet = one individual;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;UNITED STATES Solidago canadensis;9491;actual measurement;13000;1;per ramet/tussock or individual plant ;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;13000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;one single shoot was defined as single ramet;Werner, P. A.(1980): The biology of Canadian weeds. 45: Solidago canadensis L.;UNITED STATES Solidago gigantea;10023;actual measurement;899445;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;899445;;;;seednumber > 100,000;1;;767022.8993;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Solidago virgaurea;9820;estimation;4000;;per ramet/tussock or individual plant ;BIOPOP April 2005;4000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Solidago virgaurea;9820;actual measurement;31.3;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;31.3;37;26;;10 < seednumber <= 100;1;;;counting ;unknown;2005-03-24 00:00:00.0;full and half-full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Solidago virgaurea;9820;actual measurement;28.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;28.4;34;21;;10 < seednumber <= 100;1;;;counting ;unknown;2005-03-24 00:00:00.0;full and half-full developed fruits (seeds);Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Solidago virgaurea;9820;actual measurement;150300;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;150300;;;;seednumber > 100,000;1;;97517.53688;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Solidago virgaurea;9820;estimation;35;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;35;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Solidago virgaurea;9820;actual measurement;1020;;per ramet/tussock or individual plant ;BIOPOP April 2005;1020;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;1020;;per square meter;BIOPOP April 2005;;1020;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;313.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;313.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;630;;per square meter;BIOPOP April 2005;;630;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;3346;;per ramet/tussock or individual plant ;BIOPOP April 2005;3346;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;16920;;per square meter;BIOPOP April 2005;;16920;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;1679;;per ramet/tussock or individual plant ;BIOPOP April 2005;1679;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;12000;;per square meter;BIOPOP April 2005;;12000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;2872;;per ramet/tussock or individual plant ;BIOPOP April 2005;2872;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;2020;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;2020;1000 < seednumber <= 10,000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Solidago virgaurea;9820;actual measurement;6204;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;10056;2352;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Solidago virgaurea;9820;estimation (following LEDA data standards);11000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;11000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Solidago virgaurea;9820;actual measurement;9440;;per square meter;BIOPOP April 2005;;9440;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;3346;;per ramet/tussock or individual plant ;BIOPOP April 2005;3346;9440;640;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;3163;;per square meter;BIOPOP April 2005;;3163;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;3439;;per ramet/tussock or individual plant ;BIOPOP April 2005;3439;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;6664;;per square meter;BIOPOP April 2005;;6664;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;1220;;per ramet/tussock or individual plant ;BIOPOP April 2005;1220;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;1215;;per square meter;BIOPOP April 2005;;1215;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;1223;;per ramet/tussock or individual plant ;BIOPOP April 2005;1223;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;1221;;per square meter;BIOPOP April 2005;;1221;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;2946;;per ramet/tussock or individual plant ;BIOPOP April 2005;2946;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Solidago virgaurea;9820;actual measurement;29.9;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;29.9;38;24;;10 < seednumber <= 100;1;;;counting ;unknown;2007-06-24 00:00:00.0;full and half-developed fruits (seeds);Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Solidago virgaurea;9820;actual measurement;31.1;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;31.1;48;23;;10 < seednumber <= 100;1;;;counting ;unknown;2006-12-24 00:00:00.0;full and half-full developed seeds (fruits);Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Solidago virgaurea;9820;actual measurement;230.1;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;230.1;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;2006-12-24 00:00:00.0;seeds per single stem, sometimes branched;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Solidago virgaurea;9820;actual measurement;378.7;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;378.7;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;2005-03-24 00:00:00.0;seeds per single stem, sometimes branched;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Solidago virgaurea;9820;actual measurement;272.6;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;272.6;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;2005-03-24 00:00:00.0;seeds per one single stem, sometimes branched;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Solidago virgaurea;9820;actual measurement;209.3;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;209.3;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;2007-06-24 00:00:00.0;seeds per single stem, sometimes branched;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Sonchus arvensis;10586;estimation;13297;11;per ramet/tussock or individual plant ;BIOPOP April 2005;13297;14797;11797;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Sonchus arvensis;10586;actual measurement;92882.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;92882.66667;;;;10,000 < seednumber <= 100,000;1;;27420.88002;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sonchus arvensis;10586;estimation;191;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;191;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Sonchus arvensis;10586;actual measurement;6000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sonchus arvensis;10586;estimation (following LEDA data standards);175;1;per multiple flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;200;150;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sonchus arvensis;10586;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sonchus arvensis;10586;estimation (following LEDA data standards);6400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;6400;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sonchus arvensis;10586;estimation (following LEDA data standards);19000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;19000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sonchus arvensis;10586;estimation (following LEDA data standards);17680;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;17680;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sonchus arvensis;10586;estimation (following LEDA data standards);5508;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;5508;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sonchus asper;9413;estimation;600000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;600000;;;seednumber > 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Sonchus asper;9413;unknown;20738;;per ramet/tussock or individual plant ;BIOPOP April 2005;20738;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Lewin, R. A. (1948): Biological Flora of the British Isles. Sonchus L. (Sonchus oleraceus L. and S. asper (L. ) Hill).; Sonchus asper;9413;unknown;1120;;per ramet/tussock or individual plant ;BIOPOP April 2005;1120;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: low density (50 seeds per plot), unfertilized;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;520;;per ramet/tussock or individual plant ;BIOPOP April 2005;520;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: low density (50 seeds per plot), fertilized;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;650;;per ramet/tussock or individual plant ;BIOPOP April 2005;650;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: high density (250 seeds per plot), unfertilized;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;330;;per ramet/tussock or individual plant ;BIOPOP April 2005;330;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: high density (250 seeds per plot), fertilized;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;18800;;per square meter;BIOPOP April 2005;18800;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: low density (50 seeds per plot), unfertilized;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;5800;;per square meter;BIOPOP April 2005;5800;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: low density (50 seeds per plot), fertilized;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;14500;;per square meter;BIOPOP April 2005;14500;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: high density (250 seeds per plot), unfertilized;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;35400;;per square meter;BIOPOP April 2005;35400;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: high density (250 seeds per plot), fertilized;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;23000;25;per ramet/tussock or individual plant ;BIOPOP April 2005;23000;;;;10,000 < seednumber <= 100,000;;;2600;unknown;unknown;;;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus asper;9413;unknown;3500;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;6000;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Sonchus asper;9413;estimation (following LEDA data standards);4700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4700;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sonchus asper;9413;estimation (following LEDA data standards);5000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;5000;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Sonchus asper;9413;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sonchus asper;9413;actual measurement;6000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sonchus asper;9413;actual measurement;20000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;20000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant General comment: max >20000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sonchus asper;9413;actual measurement;2500;;per ramet/tussock or individual plant ;BIOPOP April 2005;2500;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sonchus asper;9413;estimation;23000;25;per ramet/tussock or individual plant ;BIOPOP April 2005;23000;25627;20373;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Sonchus oleraceus;10587;estimation;40000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;40000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Sonchus oleraceus;10587;unknown;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;10000;200000;200;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Lewin, R. A. (1948): Biological Flora of the British Isles. Sonchus L. (Sonchus oleraceus L. and S. asper (L. ) Hill).; Sonchus oleraceus;10587;estimation;6136;65;per ramet/tussock or individual plant ;BIOPOP April 2005;6136;6882;5390;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Sonchus oleraceus;10587;actual measurement;250916;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;250916;;;;seednumber > 100,000;1;;223508.2795;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sonchus oleraceus;10587;estimation;200;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;200;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Sonchus oleraceus;10587;unknown;6100;65;per ramet/tussock or individual plant ;BIOPOP April 2005;6100;;;;1000 < seednumber <= 10,000;;;750;unknown;unknown;;;Hutchinson, I.(1984): The biology of Canadian weeds. 63. Sonchus asper (L.) Hill and S. oleraceus L.; Sonchus oleraceus;10587;estimation (following LEDA data standards);4700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;4700;25000;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Sonchus oleraceus;10587;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sonchus oleraceus;10587;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Sonchus palustris;9894;actual measurement (following LEDA data standards);5586;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6856.07;16335;2139;5586;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sonchus palustris;9894;estimation;5810;11;per ramet/tussock or individual plant ;BIOPOP April 2005;5810;7007;4613;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Sonchus palustris;9894;estimation;122;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;122;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): achenes/capitulum;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Sorbus aria;30087;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Sorbus aucuparia;29162;actual measurement;488;4;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];488;620;383;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;seednumber per berry from Raspe et al. (2000);Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Sorbus aucuparia;29162;actual measurement;24750;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;27000;22500;;10,000 < seednumber <= 100,000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Sorbus aucuparia;29162;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Sorbus torminalis;29551;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Sorbus torminalis;29551;unknown;105;1;per multiple flower inflorescence ;Kjorup Rasmussen, Kristine (2004): Poor sexual reproduction on the distribution limit of the rare tree Sorbus torminalis [25];;150;60;;100 < seednumber <= 1000;1;;;unknown;single flower inflorescence ;;Kutzelnigg, 1995, N unknown;Kjorup Rasmussen, Kristine (2004): Poor sexual reproduction on the distribution limit of the rare tree Sorbus torminalis [25];DENMARK Sorbus torminalis;29551;unknown;2.5;1;per single flower inflorescence ;Kjorup Rasmussen, Kristine (2004): Poor sexual reproduction on the distribution limit of the rare tree Sorbus torminalis [25];2.5;;;;seednumber <= 10;1;;;unknown;unknown;;Kutzelnigg, 1995, N unknown, mature seeds per flower;Kjorup Rasmussen, Kristine (2004): Poor sexual reproduction on the distribution limit of the rare tree Sorbus torminalis [25];DENMARK Sorbus torminalis;29551;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Roper, P. (unknown e-mail address); Sorbus torminalis;29551;unknown;5;1;per single flower inflorescence ;Kjorup Rasmussen, Kristine (2004): Poor sexual reproduction on the distribution limit of the rare tree Sorbus torminalis [25];5;;;;seednumber <= 10;1;;;unknown;unknown;;Kutzelnigg, 1995, N unknown, ovules per flower;Kjorup Rasmussen, Kristine (2004): Poor sexual reproduction on the distribution limit of the rare tree Sorbus torminalis [25];DENMARK Sorghum halepense;43116;unknown;28000;;per ramet/tussock or individual plant ;BIOPOP April 2005;28000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Warwick, S. I. (1983): The biology of Canadian weeds. 61. Sorghum halepense (L.) Pers.;ISRAEL Sparganium emersum;43992;actual measurement (following LEDA data standards);201;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;300.6;1110;112;201;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-09-16 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sparganium erectum;43993;estimation;80;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;80;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: neglectum Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Cook, C. D. K.(1962): no title given, publication in Journal of Ecology issue: 50 pages: 247-255 [50]; Sparganium erectum;43993;estimation;20;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;20;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: oocarpum Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/capitulum;Cook, C. D. K.(1962): no title given, publication in Journal of Ecology issue: 50 pages: 247-255 [50]; Sparganium erectum;43993;actual measurement (following LEDA data standards);1197;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1271.4;2364;602;1197;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Sparganium erectum;43993;actual measurement;10626.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10626.66667;;;;10,000 < seednumber <= 100,000;1;;7547.856208;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Sparganium minimum;43999;actual measurement (following LEDA data standards);61;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;72.44;145;17;61;10 < seednumber <= 100;;;;counting ;;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Sparganium minimum;43999;actual measurement (following LEDA data standards);40;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41.55;97;8;40;10 < seednumber <= 100;;;;counting ;;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Spartina anglica;43117;actual measurement (following LEDA data standards);78;15;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;81.67;158;22;78;10 < seednumber <= 100;;;;counting ;;2004-09-11 00:00:00.0;preaggregated value obtained from single record;;GERMANY Spergula arvensis;16731;actual measurement;352675.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;352675.3333;;;;seednumber > 100,000;1;;357230.5589;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Spergula arvensis;16731;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;3000;10000;1000;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Spergula arvensis;16731;estimation;25;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;25;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 25;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Spergula arvensis;16731;actual measurement;28000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;28000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Spergula arvensis;16731;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Spergula arvensis;16731;actual measurement;10000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;10000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Spergula arvensis;16731;estimation (following LEDA data standards);3200;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3200;10000;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Spergula morisonii;17638;actual measurement;2030;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];2030;4130;;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Spergula morisonii;17638;actual measurement;4176;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;7381;3690;4176;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Spergula morisonii;17638;actual measurement (following LEDA data standards);139.5;14;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;239.93;596;34;139.5;100 < seednumber <= 1000;;;;counting ;;2004-06-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Spergularia echinosperma;15958;actual measurement (following LEDA data standards);2695;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2833;5350;1190;2695;1000 < seednumber <= 10,000;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Spergularia marina;17645;laboratory/greenhouse/garden experiment;127305;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;135407.25;275957;23288;127305;seednumber > 100,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Spergularia media;16741;actual measurement (following LEDA data standards);1974;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1933.67;2577;1250;1974;1000 < seednumber <= 10,000;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Spergularia rubra;17650;actual measurement;6299800;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6299800;;;;seednumber > 100,000;1;;6048368.785;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Spergularia rubra;17650;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Spiraea salicifolia;29508;actual measurement (following LEDA data standards);2000;5;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1890;2500;1050;2000;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-08-04 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Spiranthes spiralis;40081;estimation;1000;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;;1000;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Spirodela polyrhiza;36882;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Stachys annua;24834;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Stachys annua;24834;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Stachys officinalis;24916;actual measurement (following LEDA data standards);251.5;6;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;267.33;536;111;251.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Stachys officinalis;24916;actual measurement (following LEDA data standards);98;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;121.7;243;48;98;10 < seednumber <= 100;;;;counting ;;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Stachys officinalis;24916;actual measurement;109925.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;109925.6667;;;;seednumber > 100,000;1;;57320.52272;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Stachys officinalis;24916;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Stachys palustris;24921;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Stachys palustris;24921;actual measurement (following LEDA data standards);239;14;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;330.43;1155;125;239;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-07-29 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Stachys palustris;24921;actual measurement;500;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;800;200;;100 < seednumber <= 1000;1;;;counting ;;1999-09-20 00:00:00.0;;;UNITED KINGDOM Stachys palustris;24921;actual measurement;600;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;800;400;;100 < seednumber <= 1000;1;;;counting ;;1999-09-09 00:00:00.0;;;UNITED KINGDOM Stachys palustris;24921;actual measurement;108;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;109;;;108;100 < seednumber <= 1000;1;10.07196329;31.85034449;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Stachys palustris;24921;estimation (following LEDA data standards);240;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;240;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Stachys palustris;24921;actual measurement;440;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];440;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Stachys palustris;24921;actual measurement;302589;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;302589;;;;seednumber > 100,000;1;;403539.7001;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Stachys palustris;24921;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Stachys recta;24800;actual measurement (following LEDA data standards);309;9;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;310.11;790;46;309;100 < seednumber <= 1000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Stachys sylvatica;24023;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Stachys sylvatica;24023;actual measurement;4230;;per square meter;BIOPOP April 2005;;6480;1980;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stachys sylvatica;24023;actual measurement;112;;per ramet/tussock or individual plant ;BIOPOP April 2005;112;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stachys sylvatica;24023;actual measurement;1736;;per square meter;BIOPOP April 2005;;3248;224;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stachys sylvatica;24023;actual measurement;182.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;182.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stachys sylvatica;24023;actual measurement;113.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;113.6;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stachys sylvatica;24023;actual measurement;182.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;182.4;528;20;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stachys sylvatica;24023;actual measurement;1120;;per square meter;BIOPOP April 2005;;1120;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stachys sylvatica;24023;actual measurement;200;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;200;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Stachys sylvatica;24023;actual measurement;224;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];224;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Stachys sylvatica;24023;actual measurement (following LEDA data standards);528;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;733.93;1661;211;528;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-07-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Stachys sylvatica;24023;actual measurement;52;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60.8;;;52;10 < seednumber <= 100;1;11.86385735;37.51681105;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Stachys sylvatica;24023;actual measurement;27497.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27497.5;;;;10,000 < seednumber <= 100,000;1;;8187.303565;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Stellaria borealis;17655;actual measurement;84.7;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;84.7;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;unknown;1931-09-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Stellaria borealis;17655;actual measurement;19;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;19;32;8;;10 < seednumber <= 100;1;;;counting ;;1931-09-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Stellaria graminea;17658;actual measurement;500;;per ramet/tussock or individual plant ;BIOPOP April 2005;500;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Stellaria graminea;17658;actual measurement;4697;;per square meter;BIOPOP April 2005;;9150;244;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;60.2;;per multiple flower stem;BIOPOP April 2005;60.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;384;;per multiple flower stem;BIOPOP April 2005;384;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;756;;per square meter;BIOPOP April 2005;;756;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;462;;per square meter;BIOPOP April 2005;;880;44;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;180;;per square meter;BIOPOP April 2005;;180;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;32;;per multiple flower stem;BIOPOP April 2005;32;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;96;;per square meter;BIOPOP April 2005;;96;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;89.6;;per multiple flower stem;BIOPOP April 2005;89.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;4203;;per square meter;BIOPOP April 2005;;8316;90;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;45.1;;per multiple flower stem;BIOPOP April 2005;45.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement;44;;per multiple flower stem;BIOPOP April 2005;44;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria graminea;17658;actual measurement (following LEDA data standards);6;15;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.27;9;4;6;seednumber <= 10;;;;counting ;;2004-07-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Stellaria graminea;17658;actual measurement;2020;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;3820;1020;2020;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Stellaria graminea;17658;actual measurement;20.1;10;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];20.1;23;18;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Stellaria graminea;17658;actual measurement;125880;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;125880;;;;seednumber > 100,000;1;;117487.7491;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Stellaria graminea;17658;actual measurement;238;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;238;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Stellaria holostea;16753;actual measurement;1344;;per square meter;BIOPOP April 2005;;1344;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria holostea;16753;actual measurement;19;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19.6;;;19;10 < seednumber <= 100;1;2.109238936;6.669999167;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Stellaria holostea;16753;actual measurement (following LEDA data standards);44;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;48.07;121;18;44;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2003-06-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Stellaria holostea;16753;actual measurement;40033.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40033.75;;;;10,000 < seednumber <= 100,000;1;;17084.64875;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Stellaria holostea;16753;actual measurement;21.6;;per multiple flower stem;BIOPOP April 2005;21.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria holostea;16753;actual measurement;3;;per square meter;BIOPOP April 2005;;;3;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria holostea;16753;actual measurement;14.9;;per multiple flower stem;BIOPOP April 2005;14.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria holostea;16753;actual measurement;5962.5;;per square meter;BIOPOP April 2005;;6750;5175;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria holostea;16753;actual measurement;13;;per multiple flower stem;BIOPOP April 2005;13;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria holostea;16753;actual measurement;588;;per square meter;BIOPOP April 2005;;1056;120;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria longifolia;15974;actual measurement;12415.5;;per square meter;BIOPOP April 2005;;18480;6351;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria longifolia;15974;actual measurement;241.2;;per multiple flower stem;BIOPOP April 2005;241.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria media;16755;estimation (following LEDA data standards);15000;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;15000;;;;10,000 < seednumber <= 100,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Stellaria media;16755;unknown;11000;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;20000;2000;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Stellaria media;16755;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;8;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 8;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Stellaria media;16755;estimation;17;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;17;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Sobey, D. G. (1981): Biological flora of the British Isles: Stellaria media (L.) Vill.; Stellaria media;16755;estimation (following LEDA data standards);15000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;15000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Stellaria media;16755;unknown;9.5;100;per single flower inflorescence ;BIOPOP April 2005;;15;4;;seednumber <= 10;;;;unknown;unknown;;Value comment: per capsule;Sobey, D. G. (1981): Biological flora of the British Isles: Stellaria media (L.) Vill.; Stellaria media;16755;unknown;9.3;100;per single flower inflorescence ;BIOPOP April 2005;9.3;;;;seednumber <= 10;;.5;;unknown;unknown;;Value comment: per capsule General comment: 95% C.L.;Sobey, D. G. (1981): Biological flora of the British Isles: Stellaria media (L.) Vill.; Stellaria media;16755;unknown;15000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;15000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Sobey, D. G. (1981): Biological flora of the British Isles: Stellaria media (L.) Vill.; Stellaria media;16755;unknown;14000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;14000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Sobey, D. G. (1981): Biological flora of the British Isles: Stellaria media (L.) Vill.;RUSSIAN FEDERATION Stellaria neglecta;16759;actual measurement;100;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;100;;;;10 < seednumber <= 100;1;;;counting ;;1999-05-19 00:00:00.0;;;UNITED KINGDOM Stellaria neglecta;16759;actual measurement;70;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;90;50;;10 < seednumber <= 100;1;;;counting ;;1999-05-14 00:00:00.0;;;UNITED KINGDOM Stellaria nemorum;16761;actual measurement;19;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;19;32;8;;10 < seednumber <= 100;1;;;counting ;unknown;1931-01-08 00:00:00.0;only fully developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;SWEDEN Stellaria nemorum;16761;actual measurement;2200;;per square meter;BIOPOP April 2005;;2200;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria nemorum;16761;actual measurement;183.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;183.6;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria nemorum;16761;actual measurement;813.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;813.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria nemorum;16761;actual measurement (following LEDA data standards);91.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;174.9;799;5;91.5;10 < seednumber <= 100;;;;counting ;;2003-09-16 00:00:00.0;PREAGGREGATED! Raw record's comment: partly blooming;;GERMANY Stellaria nemorum;16761;actual measurement;100;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;150;50;;10 < seednumber <= 100;1;;;counting ;;1999-06-08 00:00:00.0;;;UNITED KINGDOM Stellaria nemorum;16761;actual measurement;9625;;per square meter;BIOPOP April 2005;;18750;500;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Stellaria nemorum;16761;actual measurement;84.7;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;84.7;;;;10 < seednumber <= 100;1;;;counting ;unknown;1931-01-08 00:00:00.0;only fully developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;SWEDEN Stellaria pallida;17302;actual measurement;26;40;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;36;16;;10 < seednumber <= 100;1;;;counting ;;2000-05-08 00:00:00.0;;;UNITED KINGDOM Stellaria pallida;17302;estimation;11;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;11;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c.11;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Stellaria palustris;17304;actual measurement;13.07;26;per single flower inflorescence ;BIOPOP April 2005;13.07;13.67;12.47;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per capsule;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Stellaria palustris;17304;estimation;27;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;27;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Stellaria palustris;17304;actual measurement (following LEDA data standards);120;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;117.33;198;16;120;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-24 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Stellaria uliginosa;17654;actual measurement (following LEDA data standards);9;7;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11.57;19;7;9;seednumber <= 10;;;;counting ;;2004-06-24 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Stellaria uliginosa;17654;actual measurement (following LEDA data standards);201;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;256.22;583;26;201;100 < seednumber <= 1000;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Stellaria uliginosa;17654;actual measurement;144;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;180;90;144;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;small individuums;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Stellaria uliginosa;17654;actual measurement;20;7;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];18.7;21;13;20;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Stipa capillata;42956;actual measurement (following LEDA data standards);170.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;174.17;289;80;170.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Stipa pulcherrima;42556;actual measurement (following LEDA data standards);72;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;77.3;153;14;72;10 < seednumber <= 100;;;;counting and extrapolation ;multiple flower stem or single stem;2004-05-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Stratiotes aloides;36308;actual measurement (following LEDA data standards);0;15;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;0;0;0;0;seednumber <= 10;;;;counting ;single flower inflorescence ;2004-07-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Stratiotes aloides;36308;actual measurement;0;1;per ramet/tussock or individual plant ;Kornatowski, Janusz(1976): Dynamics of Stratiotes aloides L. development [23];0;0;0;;seednumber <= 10;1;;;unknown;unknown;1971-10-01 00:00:00.0;;Kornatowski, Janusz(1976): Dynamics of Stratiotes aloides L. development [23];POLAND Stratiotes aloides;36308;estimation;24;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;24;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): but no fruit produced in Britain;Cook, C. D. K.(1983): no title given, publication in Aquatic Botany issue: 16 pages: 213-249 [16]; Suaeda maritima;17972;actual measurement (following LEDA data standards);127;6;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;153.17;260;78;127;100 < seednumber <= 1000;;;;counting ;;2004-10-09 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Suaeda maritima;17972;actual measurement (following LEDA data standards);34;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34;34;34;34;10 < seednumber <= 100;;;;counting ;;2003-09-27 00:00:00.0;preaggregated value obtained from single record;;GERMANY Suaeda maritima s. maritima;17974;actual measurement (following LEDA data standards);232;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;256.89;680;26;232;100 < seednumber <= 1000;;;;counting ;;2004-09-11 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY Subularia aquatica;13468;estimation;67.5;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;125;10;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): up to 125;Woodhead, N.(1951): no title given, publication in Journal of Ecology issue: 39 pages: 465-469 [39]; Subularia aquatica;13468;estimation;14;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;14;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Woodhead, N.(1951): no title given, publication in Journal of Ecology issue: 39 pages: 465-469 [39]; Succisa pratensis;19186;actual measurement;640;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;720;560;;100 < seednumber <= 1000;1;;;counting and extrapolation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Succisa pratensis;19186;actual measurement;1200;25;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;1200;;;;1000 < seednumber <= 10,000;1;;;counting ;;1997-10-01 00:00:00.0;;;UNITED KINGDOM Succisa pratensis;19186;actual measurement;550;53;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;550;;;;100 < seednumber <= 1000;1;;;counting ;;1997-09-26 00:00:00.0;;;UNITED KINGDOM Succisa pratensis;19186;actual measurement;235;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;235;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Succisa pratensis;19186;actual measurement;80;6;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];80;125;59;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Symphytum officinale;11757;estimation (following LEDA data standards);1400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;2000;800;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Symphytum officinale;11757;actual measurement (following LEDA data standards);72.5;2;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;72.5;85;60;72.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Symphytum officinale;11757;actual measurement (following LEDA data standards);216;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;371.6;1676;86;216;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-13 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Symphytum tuberosum;11764;actual measurement;7635.8;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7635.8;;;;1000 < seednumber <= 10,000;1;;4252.161944;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Syringa vulgaris;26377;actual measurement (following LEDA data standards);76;10;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;83;140;38;76;10 < seednumber <= 100;;;;counting ;;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Tamus communis;36357;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Tanacetum corymbosum;9823;actual measurement;922782.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;922782.3333;;;;seednumber > 100,000;1;;774596.2562;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Tanacetum vulgare;10128;estimation (following LEDA data standards);12500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;12500;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Tanacetum vulgare;10128;actual measurement;1211203;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1211203;;;;seednumber > 100,000;1;;508147.3005;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Tanacetum vulgare;10128;actual measurement;425;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;450;400;;100 < seednumber <= 1000;1;;;counting ;;1999-10-07 00:00:00.0;;;UNITED KINGDOM Tanacetum vulgare;10128;laboratory/greenhouse/garden experiment;232;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;236;606;15;232;100 < seednumber <= 1000;;;;counting ;;;PREAGGREGATED! Raw record's comment: wide spectrum of sizes, partly immature;;GERMANY Tanacetum vulgare;10128;actual measurement (following LEDA data standards);7133;7;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8061.29;14741;1744;7133;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-08-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Taraxacum Sec. Erythrosperma;9235;actual measurement (following LEDA data standards);55.5;10;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;54.4;72;26;55.5;10 < seednumber <= 100;;;;counting ;;2004-05-14 00:00:00.0;preaggregated value obtained from single record;;GERMANY Taraxacum Sec. Erythrosperma;9235;actual measurement (following LEDA data standards);71;5;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;77.6;124;52;71;10 < seednumber <= 100;;;;counting ;;2004-05-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Taraxacum Sec. Ruderalia;59373;estimation;2381;400;per ramet/tussock or individual plant ;BIOPOP April 2005;2381;2538;2224;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Taraxacum Sec. Ruderalia;59373;unknown;23436;;per ramet/tussock or individual plant ;BIOPOP April 2005;23436;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Stewart-Wade, S. M.(2002): The biology of Canadian weeds. 117. Taraxacum officinale G.H. Weber ex Wiggers.; Taraxacum Sec. Ruderalia;59373;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;1000;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Taraxacum Sec. Ruderalia;59373;actual measurement;117.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;169.2;;;117.5;100 < seednumber <= 1000;1;35.48295365;112.2069517;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Taraxacum Sec. Ruderalia;59373;actual measurement;5000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;5000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Taraxacum Sec. Ruderalia;59373;estimation (following LEDA data standards);5400;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;5400;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Taraxacum Sec. Ruderalia;59373;actual measurement;350;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];350;;;;100 < seednumber <= 1000;1;;;counting ;unknown;;N unknown;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Taraxacum Sec. Ruderalia;59373;actual measurement;41333.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41333.33333;;;;10,000 < seednumber <= 100,000;1;;7023.769169;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Taraxacum Sec. Ruderalia;59373;actual measurement;68;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;68;84;46;;10 < seednumber <= 100;1;;;counting ;unknown;2006-01-24 00:00:00.0;the determination of the taxon Taraxacum officinale is unclear;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Taraxacum Sec. Ruderalia;59373;estimation (following LEDA data standards);200;1;per multiple flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;200;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Taraxacum Sec. Ruderalia;59373;estimation (following LEDA data standards);3000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3000;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Taraxacum Sec. Ruderalia;59373;estimation (following LEDA data standards);170;1;per multiple flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;170;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Taraxacum Sec. Ruderalia;59373;estimation (following LEDA data standards);2040;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2040;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Taraxacum species;9261;actual measurement;460;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;460;;;;100 < seednumber <= 1000;1;;;counting ;;;low data quality, collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Taxus baccata;835;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Smith, C. J.(1980): Ecology of the English Chalk, Academic Press, London []; Taxus baccata;835;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Smith, C. J.(1980): Ecology of the English Chalk, Academic Press, London []; Teesdalia nudicaulis;13470;actual measurement (following LEDA data standards);72.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;92.4;229;19;72.5;10 < seednumber <= 100;;;;counting ;;2003-07-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Teesdalia nudicaulis;13470;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Newman, E. I.(1964): no title given, publication in Journal of Ecology issue: 52 pages: 391-404 [52]; Teesdalia nudicaulis;13470;actual measurement;390;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;600;180;;100 < seednumber <= 1000;1;;;counting ;;1998-06-07 00:00:00.0;;;UNITED KINGDOM Teesdalia nudicaulis;13470;actual measurement;180;;per ramet/tussock or individual plant ;BIOPOP April 2005;;180;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Teesdalia nudicaulis;13470;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Teesdalia nudicaulis;13470;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Tetragonolobus maritimus;21564;unknown;24;1;per single flower inflorescence ;Salisbury, S.E.(1964): Weeds & Aliens;24;40;;;10 < seednumber <= 100;1;;;unknown;unknown;;;Salisbury, S.E.(1964): Weeds & Aliens;UNITED KINGDOM Tetragonolobus maritimus;21564;actual measurement (following LEDA data standards);25;2;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25;32;18;25;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-07-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Teucrium botrys;23469;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Teucrium chamaedrys;24813;actual measurement;24366.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24366.66667;;;;10,000 < seednumber <= 100,000;1;;9620.984011;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Teucrium chamaedrys;24813;actual measurement (following LEDA data standards);17.5;10;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21.9;49;5;17.5;10 < seednumber <= 100;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Teucrium montanum;23362;actual measurement (following LEDA data standards);34;11;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33.64;60;8;34;10 < seednumber <= 100;;;;counting ;;2004-08-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Teucrium scorodonia;24460;unknown;24200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;48000;400;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;problematic value - seed production of a large clone with 10-30 shoots!;Hutchinson, T. C. (1968): Biological flora of the British Isles: Teucrium scorodonia L.; Teucrium scorodonia;24460;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Teucrium scorodonia;24460;unknown;240;;per multiple flower stem;BIOPOP April 2005;;400;80;;100 < seednumber <= 1000;;;;unknown;unknown;;;Hutchinson, T. C. (1968): Biological flora of the British Isles: Teucrium scorodonia L.; Thalictrum alpinum;26671;actual measurement;1.3;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;1.3;;;;seednumber <= 10;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;only full developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Thalictrum alpinum;26671;actual measurement;8.6;20;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;8.6;;;;seednumber <= 10;1;;;counting and extrapolation ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Thalictrum flavum;26674;actual measurement (following LEDA data standards);925;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1245.69;3268;315;925;100 < seednumber <= 1000;;;;counting ;;2004-08-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Thalictrum flavum;26674;actual measurement (following LEDA data standards);27873;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;89339.13;764405;5217;27873;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Thalictrum lucidum;26571;actual measurement;38092.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38092.33333;;;;10,000 < seednumber <= 100,000;1;;20550.62798;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Thalictrum minus;26547;actual measurement (following LEDA data standards);1512;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1954.43;3266;617;1512;1000 < seednumber <= 10,000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Thalictrum minus;26547;actual measurement (following LEDA data standards);85;4;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;91.25;170;25;85;10 < seednumber <= 100;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Thalictrum minus;26547;actual measurement (following LEDA data standards);2134;3;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2190.67;2796;1642;2134;1000 < seednumber <= 10,000;;;;counting and weighing ;;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Thesium bavarum;32443;actual measurement (following LEDA data standards);25;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34.83;81;12;25;10 < seednumber <= 100;;;;counting ;;2004-07-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Thlaspi alliaceum;13472;actual measurement (following LEDA data standards);821;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;940.2;1914;75;821;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Thlaspi alpinum;13476;actual measurement;650;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1570;540;650;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Thlaspi arvense;13825;unknown;8300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;15000;1600;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Best, K. F. (1975): The biology of Canadian weeds. 9. Thlaspi arvense L.; Thlaspi arvense;13825;estimation (following LEDA data standards);900;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;900;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Thlaspi arvense;13825;unknown;7040;;per ramet/tussock or individual plant ;BIOPOP April 2005;7040;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Best, K. F. (1975): The biology of Canadian weeds. 9. Thlaspi arvense L.; Thlaspi arvense;13825;estimation;20000;;per ramet/tussock or individual plant ;BIOPOP April 2005;20000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Best, K. F. (1975): The biology of Canadian weeds. 9. Thlaspi arvense L.; Thlaspi arvense;13825;estimation;11;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;11;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c.11;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Thlaspi arvense;13825;actual measurement;1050;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1600;500;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Thlaspi arvense;13825;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Thlaspi arvense;13825;actual measurement;15000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;15000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: large plant;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Thlaspi arvense;13825;estimation;1948;58;per ramet/tussock or individual plant ;BIOPOP April 2005;1948;2122;1774;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Thlaspi arvense;13825;unknown;1250;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;2000;500;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Thlaspi arvense;13825;estimation (following LEDA data standards);900;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;900;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Thlaspi arvense;13825;actual measurement;74604.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;74604.33333;;;;10,000 < seednumber <= 100,000;1;;65075.42744;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Thlaspi arvense;13825;estimation;16;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;16;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Thlaspi perfoliatum;14669;actual measurement;51428;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51428;;;;10,000 < seednumber <= 100,000;1;;43415.82854;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Thlaspi perfoliatum;14669;actual measurement (following LEDA data standards);56;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;110.38;424;35;56;10 < seednumber <= 100;;;;counting ;;2002-05-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Thymus praecox;24924;actual measurement (following LEDA data standards);32;5;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36.4;55;19;32;10 < seednumber <= 100;;;;counting ;;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Thymus praecox;24924;actual measurement (following LEDA data standards);98;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;104;132;88;98;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-07-20 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Thymus pulegioides;24929;actual measurement (following LEDA data standards);528.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1183.3;4525;207;528.5;100 < seednumber <= 1000;;;;counting ;;2003-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Thymus pulegioides;24929;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Pigott, C. D.(1955): no title given, publication in Journal of Ecology issue: 43 pages: 365-387 [43]; Thymus pulegioides;24929;actual measurement;722854;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;722854;;;;seednumber > 100,000;1;;527597.552;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Thymus pulegioides;24929;actual measurement;33.11;9;per multiple flower inflorescence ;BIOPOP April 2005;33.11;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Thymus pulegioides;24929;unknown;206;;per square meter;BIOPOP April 2005;206;;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Thymus pulegioides;24929;unknown;8858;;per square meter;BIOPOP April 2005;8858;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: grazed;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Thymus serpyllum;24928;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Pigott, C. D.(1955): no title given, publication in Journal of Ecology issue: 43 pages: 365-387 [43]; Thymus serpyllum;24928;actual measurement;107;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;107;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Tilia cordata;34664;estimation;3;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;3;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Pigott, C. D.(1981): no title given, publication in New Phytologist issue: 87 pages: 817-839 [87]; Tofieldia calyculata;38841;actual measurement;401084;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;401084;;;;seednumber > 100,000;1;;218240.3747;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Tofieldia pusilla;38843;actual measurement (following LEDA data standards);23;10;per ramet/tussock or individual plant ;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);67.4;240;16;23;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-10-03 00:00:00.0;preaggregated value obtained from single record;;NORWAY Tofieldia pusilla;38843;actual measurement;17.6;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;17.6;35;4;;10 < seednumber <= 100;1;;;counting ;unknown;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Tofieldia pusilla;38843;actual measurement;103.8;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;103.8;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Tofieldia pusilla;38843;estimation;203;56;per ramet/tussock or individual plant ;BIOPOP April 2005;203;213;193;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Tofieldia pusilla;38843;actual measurement;429;146;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;429;;;;100 < seednumber <= 1000;1;;;counting ;;1998-08-20 00:00:00.0;;;UNITED KINGDOM Tordylium maximum;1545;laboratory/greenhouse/garden experiment;435;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;435;612;258;435;100 < seednumber <= 1000;;;;counting ;;2005-08-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Torilis arvensis;1012;actual measurement (following LEDA data standards);664;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;844.43;1736;290;664;100 < seednumber <= 1000;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Torilis japonica;1552;actual measurement (following LEDA data standards);397.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;468.8;943;194;397.5;100 < seednumber <= 1000;;;;counting ;;2004-08-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Torilis japonica;1552;estimation;2;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;2;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Torilis japonica;1552;actual measurement;51917;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;51917;;;;10,000 < seednumber <= 100,000;1;;34455.0301;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Torilis japonica;1552;actual measurement (following LEDA data standards);150.5;4;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;155.5;180;141;150.5;100 < seednumber <= 1000;;;;counting ;;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;BELGIUM Torilis nodosa;1554;actual measurement (following LEDA data standards);648;5;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;722.2;1404;320;648;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-06 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Tragopogon porrifolius;9289;laboratory/greenhouse/garden experiment;255;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;351.29;840;80;255;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-06-20 00:00:00.0;preaggregated value obtained from single record;;GERMANY Tragopogon pratensis;9791;estimation (following LEDA data standards);190;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;190;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Tragopogon pratensis;9791;actual measurement;10555.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10555.66667;;;;10,000 < seednumber <= 100,000;1;;5853.314987;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Tragopogon pratensis s. orientalis;10571;unknown;62;;per square meter;BIOPOP April 2005;62;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Tragopogon pratensis s. pratensis;10265;actual measurement (following LEDA data standards);257.5;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;345.4;976;57;257.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2003-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Trientalis europaea;28871;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Trientalis europaea;28871;actual measurement;11;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;11;;;;10 < seednumber <= 100;1;;;counting ;;1998-09-07 00:00:00.0;;;UNITED KINGDOM Trientalis europaea;28871;actual measurement;5;45;per multiple flower stem;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;5;;;;seednumber <= 10;1;;;counting ;;1998-09-01 00:00:00.0;;;UNITED KINGDOM Trientalis europaea;28871;actual measurement;14874;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14874;;;;10,000 < seednumber <= 100,000;1;;14927.41197;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trientalis europaea;28871;actual measurement;0;1;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;0;;;;seednumber <= 10;1;;;counting ;unknown;1933-08-03 00:00:00.0;only fully developed seeds;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;SWEDEN Trientalis europaea;28871;actual measurement;24;;per ramet/tussock or individual plant ;BIOPOP April 2005;;24;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Trientalis europaea;28871;actual measurement;4;;per square meter;BIOPOP April 2005;;4;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trientalis europaea;28871;actual measurement;.6;;per ramet/tussock or individual plant ;BIOPOP April 2005;.6;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trientalis europaea;28871;actual measurement;13;;per square meter;BIOPOP April 2005;;13;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trientalis europaea;28871;actual measurement;1.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;1.2;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trientalis europaea;28871;actual measurement;7;;per ramet/tussock or individual plant ;BIOPOP April 2005;7;;;;seednumber <= 10;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Trientalis europaea;28871;actual measurement;7;;per square meter;BIOPOP April 2005;;7;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trientalis europaea;28871;actual measurement;.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trientalis europaea;28871;actual measurement;6;;per square meter;BIOPOP April 2005;;6;;;seednumber <= 10;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium alpestre;21116;actual measurement (following LEDA data standards);46;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;57;107;25;46;10 < seednumber <= 100;;;;counting ;;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium alpestre;21116;actual measurement;24083;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24083;;;;10,000 < seednumber <= 100,000;1;;18874.57727;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trifolium arvense;19943;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): /pod;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Trifolium arvense;19943;actual measurement;336;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;336;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Trifolium arvense;19943;actual measurement;302145.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;302145.3333;;;;seednumber > 100,000;1;;156945.8026;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trifolium arvense;19943;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Trifolium aureum;21992;actual measurement;244413.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;244413.3333;;;;seednumber > 100,000;1;;86169.88182;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trifolium aureum;21992;laboratory/greenhouse/garden experiment;2060.5;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2060.5;2629;1492;2060.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium aureum;21992;actual measurement (following LEDA data standards);927.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;949.8;1449;300;927.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium campestre;21008;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): /pod;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Trifolium campestre;21008;actual measurement;29.5;10;per multiple flower inflorescence ;BIOPOP April 2005;29.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Trifolium campestre;21008;actual measurement (following LEDA data standards);142.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;121.6;223;5;142.5;100 < seednumber <= 1000;;;;counting ;;2003-06-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium campestre;21008;actual measurement;168984.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;168984.25;;;;seednumber > 100,000;1;;102583.2359;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trifolium dubium;21100;actual measurement (following LEDA data standards);92;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;106.5;262;12;92;10 < seednumber <= 100;;;;counting ;;2003-06-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium dubium;21100;actual measurement;104588.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;104588.5;;;;seednumber > 100,000;1;;45276.02816;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trifolium dubium;21100;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Trifolium dubium;21100;unknown;18;;per square meter;BIOPOP April 2005;18;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Trifolium fragiferum;22005;actual measurement (following LEDA data standards);55;9;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;61.67;82;42;55;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2003-08-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Trifolium hybridum;21107;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Duke, J. A.(1981): Handbook of Legumes of World Economic Importance, Plenum Press, New York []; Trifolium hybridum;21107;laboratory/greenhouse/garden experiment;632;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1585;3852;271;632;100 < seednumber <= 1000;;;;counting ;;2004-09-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium incarnatum;21571;laboratory/greenhouse/garden experiment;1029;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1237.29;2415;112;1029;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium medium;22081;actual measurement;22538.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22538.66667;;;;10,000 < seednumber <= 100,000;1;;8299.667785;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trifolium medium;22081;actual measurement;110;300;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;110;;;;100 < seednumber <= 1000;1;;;counting ;;1998-09-16 00:00:00.0;;;UNITED KINGDOM Trifolium medium;22081;actual measurement;30;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;30;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Trifolium medium;22081;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Trifolium medium;22081;actual measurement;30;;per square meter;BIOPOP April 2005;;40;20;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium medium;22081;actual measurement;6.3;;per multiple flower stem;BIOPOP April 2005;6.3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium montanum;21547;actual measurement (following LEDA data standards);25.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27.6;46;13;25.5;10 < seednumber <= 100;;;;counting ;;2003-10-22 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium ochroleucon;22088;actual measurement;275;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;400;150;;100 < seednumber <= 1000;1;;;counting ;;1997-08-15 00:00:00.0;;;UNITED KINGDOM Trifolium pallescens;19933;actual measurement;105;10;per multiple flower stem;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];;150;60;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;collection period: 1985, maximum in large genets: 15,000;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Trifolium pallescens;19933;actual measurement;2;10;per single flower inflorescence ;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];2;;;;seednumber <= 10;1;.316;1;counting ;single flower inflorescence ;;collection period: 1985;Stöcklin, Jürg(1996): Seed rain, seedling establishment and clonal growth strategies on a glacier foreland [7];SWITZERLAND Trifolium pratense;22096;actual measurement;38.1;10;per multiple flower inflorescence ;BIOPOP April 2005;38.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Trifolium pratense;22096;actual measurement;530;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;530;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Trifolium pratense;22096;actual measurement;15.2;;per multiple flower stem;BIOPOP April 2005;15.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium pratense;22096;actual measurement;63;;per square meter;BIOPOP April 2005;;63;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium pratense;22096;unknown;1315;;per square meter;BIOPOP April 2005;1315;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Trifolium pratense;22096;actual measurement;200;;per square meter;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium pratense;22096;actual measurement;11.8;;per multiple flower stem;BIOPOP April 2005;11.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium pratense;22096;actual measurement;32.4;;per multiple flower stem;BIOPOP April 2005;32.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium pratense;22096;actual measurement;206.5;;per square meter;BIOPOP April 2005;;398;15;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium pratense;22096;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Trifolium pratense;22096;actual measurement;93.5;10;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];93.5;117;78;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Trifolium pratense;22096;actual measurement;1;1;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];1;1;1;1;seednumber <= 10;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Trifolium repens;22101;actual measurement;40;10;per multiple flower inflorescence ;BIOPOP April 2005;40;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Trifolium repens;22101;actual measurement;840;;per square meter;BIOPOP April 2005;;840;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium repens;22101;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): seeds/pod, non-British recording;Turkington, R.(1983): no title given, publication in Canadian Journal of Plant Science issue: 63 pages: 243-266 [63]; Trifolium repens;22101;actual measurement;10.1;;per multiple flower stem;BIOPOP April 2005;10.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Trifolium repens;22101;unknown;64;;per square meter;BIOPOP April 2005;64;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Trifolium repens;22101;actual measurement;1000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1000;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: max >1000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Trifolium repens;22101;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Trifolium repens;22101;unknown;11000;;per square meter;BIOPOP April 2005;;11000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: grown commercially for seed;Turkington, R.A. (1983): The biology of Canadian weeds. 57. Trifolium repens L.; Trifolium repens;22101;unknown;8125;;per square meter;BIOPOP April 2005;;10000;6250;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: variety Kent;Burdon, J. J. (1983): Biological flora of the British Isles: Trifolium repens L.; Trifolium repens;22101;unknown;1625;;per square meter;BIOPOP April 2005;;;1625;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: variety S184;Burdon, J. J. (1983): Biological flora of the British Isles: Trifolium repens L.; Trifolium repens;22101;unknown;120000;;per square meter;BIOPOP April 2005;;120000;;;seednumber > 100,000;;;;unknown;unknown;;General comment: variety S100;Burdon, J. J. (1983): Biological flora of the British Isles: Trifolium repens L.; Trifolium repens;22101;unknown;21125;;per square meter;BIOPOP April 2005;;26000;16250;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: variety Kersey;Burdon, J. J. (1983): Biological flora of the British Isles: Trifolium repens L.; Trifolium repens;22101;unknown;12675;;per square meter;BIOPOP April 2005;;15600;9750;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: variety S100;Burdon, J. J. (1983): Biological flora of the British Isles: Trifolium repens L.; Trifolium repens;22101;unknown;10400;;per square meter;BIOPOP April 2005;;12800;8000;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: variety S184;Burdon, J. J. (1983): Biological flora of the British Isles: Trifolium repens L.; Trifolium repens;22101;unknown;150;;per single flower inflorescence ;BIOPOP April 2005;;240;60;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: per inflorescence;Burdon, J. J. (1983): Biological flora of the British Isles: Trifolium repens L.; Trifolium repens;22101;unknown;5500;;per square meter;BIOPOP April 2005;;9500;1500;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Turkington, R.A. (1983): The biology of Canadian weeds. 57. Trifolium repens L.; Trifolium repens;22101;actual measurement;64;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;64;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Trifolium repens;22101;actual measurement;3.5;1;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;4;3;;seednumber <= 10;1;;;counting ;unknown;;N unknown, from Neuman and Ahlfvengren;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Trifolium repens;22101;actual measurement;122568;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;122568;;;;seednumber > 100,000;1;;55038.34082;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trifolium repens;22101;actual measurement;196;4;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];196;207;189;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Trifolium repens;22101;actual measurement;33600;1;per square meter;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];33600;;;;10,000 < seednumber <= 100,000;1;;;estimation ;multiple flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Trifolium resupinatum;20696;laboratory/greenhouse/garden experiment;7;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7;7;7;7;seednumber <= 10;;;;counting ;;2004-08-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium rubens;19602;actual measurement (following LEDA data standards);255;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;305.1;541;152;255;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium spadiceum;20366;actual measurement;258733.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;258733.3333;;;;seednumber > 100,000;1;;157208.1847;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trifolium spadiceum;20366;actual measurement (following LEDA data standards);36;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;46.9;107;8;36;10 < seednumber <= 100;;;;counting ;;2004-07-09 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trifolium squamosum;22158;actual measurement;9640;;per ramet/tussock or individual plant ;BIOPOP April 2005;;9640;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Trifolium squamosum;22158;actual measurement;210;;per ramet/tussock or individual plant ;BIOPOP April 2005;210;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Trifolium striatum;21076;actual measurement;45;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;45;;;;10 < seednumber <= 100;1;;;counting ;;1998-07-07 00:00:00.0;;;UNITED KINGDOM Trifolium striatum;21076;actual measurement;45;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;50;40;;10 < seednumber <= 100;1;;;counting ;;1998-07-10 00:00:00.0;;;UNITED KINGDOM Trifolium subterraneum;21077;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Duke, J. A.(1981): Handbook of Legumes of World Economic Importance, Plenum Press, New York []; Trifolium subterraneum;21077;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Duke, J. A.(1981): Handbook of Legumes of World Economic Importance, Plenum Press, New York []; Trifolium subterraneum;21077;actual measurement;9;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;12;6;;seednumber <= 10;1;;;counting ;;1998-06-20 00:00:00.0;;;UNITED KINGDOM Triglochin maritima;36323;estimation;8;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;8;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Davy AJ and Bishop, G. F.(1991): no title given, publication in Journal of Ecology issue: 79 pages: 531-555 [79]; Triglochin maritima;36323;actual measurement (following LEDA data standards);252;5;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;285.8;516;198;252;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-14 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Triglochin maritima;36323;actual measurement (following LEDA data standards);282;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;358.8;792;120;282;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2000-10-03 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Triglochin maritima;36323;actual measurement (following LEDA data standards);666;13;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;633.38;906;360;666;100 < seednumber <= 1000;;;;counting ;;2004-08-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Triglochin palustris;36324;actual measurement;60;73;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;60;;;;10 < seednumber <= 100;1;;;counting ;;1999-07-21 00:00:00.0;;;UNITED KINGDOM Triglochin palustris;36324;actual measurement (following LEDA data standards);42;11;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;45.55;63;36;42;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2003-09-26 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Triglochin palustris;36324;actual measurement (following LEDA data standards);148.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;184.17;372;96;148.5;100 < seednumber <= 1000;;;;counting ;;2003-09-03 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trigonella foenum-graecum;21525;laboratory/greenhouse/garden experiment;57;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;89.8;256;21;57;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Tripleurospermum perforatum;61747;actual measurement;788883.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;788883.25;;;;seednumber > 100,000;1;;350826.434;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Tripleurospermum perforatum;61747;actual measurement;8000;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;12000;4000;;1000 < seednumber <= 10,000;1;;;counting ;;1997-08-30 00:00:00.0;;;UNITED KINGDOM Trisetum flavescens;42564;unknown;35;;per square meter;BIOPOP April 2005;35;;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: mown;Jackel, A.-K. (1992): Die jahreszeitliche Dynamik der Phänologie, des Diasporenregens und der Diasporenbank auf zwei Kalkmagerrasenstandorten der Schwäbischen Alb, Diploma Thesis. Universität Hohenheim [];GERMANY Trisetum flavescens;42564;unknown;25000;;per ramet/tussock or individual plant ;BIOPOP April 2005;25000;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;Value comment: per tussock;Dixon, J. M. (1995): Biological flora of the British Isles: Trisetum flavescens (L.) Beauv. (T. pratense Pers., Avena flavescens L.).; Trisetum flavescens;42564;actual measurement;160272.8;5;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;160272.8;;;;seednumber > 100,000;1;;156775.1928;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Trisetum flavescens;42564;actual measurement (following LEDA data standards);217.5;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;237.7;460;86;217.5;100 < seednumber <= 1000;;;;counting ;;2002-08-02 00:00:00.0;PREAGGREGATED! Raw record's comment: no seeds, lower palea counted;;GERMANY Trisetum spicatum;42579;actual measurement;49.9;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;49.9;72;20;;10 < seednumber <= 100;1;;;counting ;unknown;1931-09-01 00:00:00.0;only full developed seeds, seed setting: 58% of the number of flowers;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Triticum aestivum;43825;actual measurement (following LEDA data standards);471.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;577;1140;309;471.5;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Trollius europaeus;26598;actual measurement;280;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;280;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;;1931-08-01 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Trollius europaeus;26598;actual measurement;10;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;10;;;;seednumber <= 10;1;;;counting ;;1931-08-01 00:00:00.0;number of seeds per fruit;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Trollius europaeus;26598;actual measurement (following LEDA data standards);173.5;12;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;250.33;570;44;173.5;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Tropaeolum majus;34544;actual measurement (following LEDA data standards);54;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;62.5;127;15;54;10 < seednumber <= 100;;;;counting ;;2004-09-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Tuberaria guttata;18499;estimation;60;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;60;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Proctor, M. C. F. (1960): no title given, publication in Journal of Ecology issue: 48 pages: 243-253 [48]; Turgenia latifolia;1998;laboratory/greenhouse/garden experiment;204;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;418;1500;90;204;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower inflorescence ;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Tussilago farfara;9608;actual measurement;27128;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27128;;;;10,000 < seednumber <= 100,000;1;;21772.13262;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Tussilago farfara;9608;estimation;300;1;per multiple flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;300;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): fruits/head;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Tussilago farfara;9608;estimation (following LEDA data standards);275;1;per multiple flower inflorescence ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;350;200;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Tussilago farfara;9608;estimation (following LEDA data standards);3500;1;per multiple flower stem;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;3500;;;;1000 < seednumber <= 10,000;1;;;estimation ;multiple flower stem or single stem;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Tussilago farfara;9608;actual measurement;350;1;per multiple flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];350;;;;100 < seednumber <= 1000;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Tussilago farfara;9608;estimation (following LEDA data standards);3500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;3500;8000;1000;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Typha angustifolia;44027;unknown;360000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;700000;20000;;seednumber > 100,000;;;;unknown;unknown;;;Grace, J. B. (1986): The biology of Canadian weeds. 73 Typha latifolia L., Typha angustifolia L. and Typha xglauca Godr.; Typha latifolia;44041;actual measurement;18780888.67;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18780888.67;;;;seednumber > 100,000;1;;2792703.946;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Typha latifolia;44041;unknown;360000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;700000;20000;;seednumber > 100,000;;;;unknown;unknown;;;Grace, J. B. (1986): The biology of Canadian weeds. 73 Typha latifolia L., Typha angustifolia L. and Typha xglauca Godr.; Ulex europaeus;21090;unknown;550;1;per square meter;Clements, D. R.(2001): The biology of Canadian weeds. 112. Ulex europaeus L. [81];;600;500;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature (Ivens, 1978), number of samples and replicates unknown;Clements, D. R.(2001): The biology of Canadian weeds. 112. Ulex europaeus L. [81];NEW ZEALAND Ulex europaeus;21090;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Ulmus glabra;35180;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Watson, H.(1948): Botanical Notes on Trees of the British Forests, Oliver and Boyd, Edinburgh []; Urtica dioica;35149;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Greig-Smith, P. (1948): no title given, publication in Journal of Ecology issue: 36 pages: 339-355 [36]; Urtica dioica;35149;actual measurement;1000;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;1000;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Urtica dioica;35149;actual measurement;6120;;per square meter;BIOPOP April 2005;;6120;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Urtica dioica;35149;actual measurement;612.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;612.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Urtica dioica;35149;actual measurement;414.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;414.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Urtica dioica;35149;estimation (following LEDA data standards);22000;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;22000;;;;10,000 < seednumber <= 100,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Urtica dioica;35149;actual measurement;35674;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35674;;;;10,000 < seednumber <= 100,000;1;;10876.57244;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Urtica dioica;35149;actual measurement;6210;;per square meter;BIOPOP April 2005;;6210;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Urtica urens;35160;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Urtica urens;35160;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;1;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Greig-Smith, P. (1948): no title given, publication in Journal of Ecology issue: 36 pages: 339-355 [36]; Urtica urens;35160;estimation (following LEDA data standards);550;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;1000;100;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Urtica urens;35160;actual measurement;1300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1300;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Urtica urens;35160;actual measurement;350;;per ramet/tussock or individual plant ;BIOPOP April 2005;;600;100;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Urtica urens;35160;actual measurement;107819.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;107819.75;;;;seednumber > 100,000;1;;99154.3122;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Urtica urens;35160;estimation (following LEDA data standards);700;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;;1300;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Utricularia australis;26089;actual measurement;7;1;per ramet/tussock or individual plant ;Araki, Satoru(2000): Variation of sterility and fertility in Utricularia australis f. australis in Hokkaido, northern Japan [15];;14;0;;seednumber <= 10;1;;;unknown;unknown;;;Araki, Satoru(2000): Variation of sterility and fertility in Utricularia australis f. australis in Hokkaido, northern Japan [15];JAPAN Utricularia australis;26089;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Utricularia bremii;26094;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Utricularia bremii;26094;unknown;0;1;per ramet/tussock or individual plant ;Käsermann, Christoph(1999): Utricularia bremii Heer-Bremis Wasserschlach-Lentibulariaceae [];0;;;;seednumber <= 10;1;;;unknown;unknown;;N unknown, mature fruits and seeds never observed;Käsermann, Christoph(1999): Utricularia bremii Heer-Bremis Wasserschlach-Lentibulariaceae [];SWITZERLAND Utricularia ochroleuca;26101;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Vaccaria hispanica;45231;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: max >3000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vaccaria hispanica;45231;laboratory/greenhouse/garden experiment;1261;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1730.4;4223;83;1261;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Vaccaria hispanica;45231;actual measurement;350;;per ramet/tussock or individual plant ;BIOPOP April 2005;;500;200;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);7;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7;;;;seednumber <= 10;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);6;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6;;;;seednumber <= 10;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);8;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8;;;;seednumber <= 10;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);12;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12;;;;10 < seednumber <= 100;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);15;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15;;;;10 < seednumber <= 100;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);11;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11;;;;10 < seednumber <= 100;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);21;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21;;;;10 < seednumber <= 100;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);9;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9;;;;seednumber <= 10;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);5;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5;;;;seednumber <= 10;;;;counting ;;2003-08-11 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium myrtillus;19475;estimation;18;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;18;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 18;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Vaccinium myrtillus;19475;actual measurement;96;;per square meter;BIOPOP April 2005;;96;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;7560;;per square meter;BIOPOP April 2005;;7560;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;47;;per ramet/tussock or individual plant ;BIOPOP April 2005;47;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;348.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;348.7;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;139.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;139.2;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;5237.333333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5237.333333;;;;1000 < seednumber <= 10,000;1;;3678.469972;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Vaccinium myrtillus;19475;unknown;17.9;284;per single flower inflorescence ;BIOPOP April 2005;17.9;;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per berry;Ritchie, J. C. (1956): Biological flora of the British Isles: Vaccinium myrtillus L.; Vaccinium myrtillus;19475;actual measurement;101.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;101.3;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;196;;per square meter;BIOPOP April 2005;;196;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;139.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;139.3;720;20;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;19440;;per square meter;BIOPOP April 2005;;19440;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;10535;;per square meter;BIOPOP April 2005;;10535;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement;11.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;11.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);230;4;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;240;440;60;230;100 < seednumber <= 1000;;;;counting and extrapolation ;multiple flower stem or single stem;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Vaccinium myrtillus;19475;actual measurement;641;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;641;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Vaccinium myrtillus;19475;actual measurement;390;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;507.1;;;390;100 < seednumber <= 1000;1;96.94230243;306.5584773;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Vaccinium myrtillus;19475;actual measurement;19.4;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;19.4;26;12;;10 < seednumber <= 100;1;;;counting ;unknown;;only full developed seeds per fruit,seed setting per fruit: 31%,28.08.1929;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Vaccinium myrtillus;19475;actual measurement;77.6;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;77.6;;;;10 < seednumber <= 100;1;;;counting ;single flower inflorescence ;;,28.08.1929;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Vaccinium myrtillus;19475;actual measurement;620;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;620;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Vaccinium oxycoccos;19476;actual measurement;5316.666667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5316.666667;;;;1000 < seednumber <= 10,000;1;;1657.621288;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);8;1;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;8;8;8;8;seednumber <= 10;;;;counting ;;2003-08-29 00:00:00.0;preaggregated value obtained from single record;;NORWAY Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);7;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7;;;;seednumber <= 10;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);20;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;20;;;;10 < seednumber <= 100;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);11;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11;;;;10 < seednumber <= 100;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);13;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13;;;;10 < seednumber <= 100;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);14;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14;;;;10 < seednumber <= 100;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);8;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8;;;;seednumber <= 10;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);10;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10;;;;seednumber <= 10;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);15;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15;;;;10 < seednumber <= 100;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);17;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17;;;;10 < seednumber <= 100;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);9;1;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9;;;;seednumber <= 10;;;;counting ;;2003-09-06 00:00:00.0;berries from different individuals sampled;;NETHERLANDS Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);12;1;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;12;12;12;12;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Vaccinium uliginosum;19479;actual measurement;13.3;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;13.3;31;3;;10 < seednumber <= 100;1;;;counting ;unknown;;,03.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Vaccinium uliginosum;19479;actual measurement;26.2;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;26.2;64;9;;10 < seednumber <= 100;1;;;counting ;unknown;;seeds per fruit,28.08.1929;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Vaccinium uliginosum;19479;actual measurement;62.9;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;62.9;;;;10 < seednumber <= 100;1;;;counting ;single flower inflorescence ;;,28.08.1929;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Vaccinium vitis-idaea;19439;actual measurement;5.7;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;5.7;16;1;;seednumber <= 10;1;;;counting ;unknown;;,02.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Vaccinium vitis-idaea;19439;actual measurement;91;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;91;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);75;2;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;75;100;50;75;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Vaccinium vitis-idaea;19439;actual measurement;63.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;63.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium vitis-idaea;19439;actual measurement;504;;per square meter;BIOPOP April 2005;;504;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium vitis-idaea;19439;actual measurement;36.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;36.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium vitis-idaea;19439;actual measurement;408;;per square meter;BIOPOP April 2005;;408;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium vitis-idaea;19439;actual measurement;25.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;25.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium vitis-idaea;19439;actual measurement;67.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;67.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium vitis-idaea;19439;actual measurement;272;;per square meter;BIOPOP April 2005;;272;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium vitis-idaea;19439;actual measurement;8415;;per square meter;BIOPOP April 2005;;8415;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vaccinium vitis-idaea;19439;actual measurement;7.6;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;7.6;21;3;;seednumber <= 10;1;;;counting ;unknown;;seeds per fruit,02.09.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Vaccinium vitis-idaea;19439;estimation;7;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;7;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 7;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Valeriana dioica;34884;actual measurement;60;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;58.5;;;60;10 < seednumber <= 100;1;5.949189621;16.82684929;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Valeriana dioica;34884;actual measurement;3180;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3180;;;;1000 < seednumber <= 10,000;1;;670.2238432;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Valeriana dioica;34884;actual measurement;25;80;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;30;20;;10 < seednumber <= 100;1;;;counting ;;1999-07-03 00:00:00.0;;;UNITED KINGDOM Valeriana officinalis;34832;actual measurement;1332;;per square meter;BIOPOP April 2005;;1971;693;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Valeriana officinalis;34832;actual measurement;657;;per ramet/tussock or individual plant ;BIOPOP April 2005;657;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Valeriana officinalis;34832;actual measurement;139;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;161.4;;;139;100 < seednumber <= 1000;1;19.34953344;61.18859734;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Valeriana officinalis;34832;actual measurement (following LEDA data standards);413;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;413;413;413;413;100 < seednumber <= 1000;;;;counting ;;2000-07-06 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Valerianella coronata;34784;actual measurement (following LEDA data standards);203;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;182.57;319;44;203;100 < seednumber <= 1000;;;;counting ;;2004-09-10 00:00:00.0;preaggregated value obtained from single record;;GERMANY Valerianella dentata;34825;actual measurement;735;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1270;200;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Valerianella locusta;34776;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Valerianella locusta;34776;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Valerianella locusta;34776;actual measurement;44000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44000;;;;10,000 < seednumber <= 100,000;1;;26153.39366;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Valerianella locusta;34776;actual measurement;80;200;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;100;60;;10 < seednumber <= 100;1;;;counting ;;1999-06-08 00:00:00.0;;;UNITED KINGDOM Valerianella rimosa;34795;actual measurement;100;300;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;100;;;;10 < seednumber <= 100;1;;;counting ;;1998-08-14 00:00:00.0;;;UNITED KINGDOM Valerianella rimosa;34795;laboratory/greenhouse/garden experiment;29;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29;29;29;29;10 < seednumber <= 100;;;;counting ;;2004-10-12 00:00:00.0;preaggregated value obtained from single record;;GERMANY Vallisneria spiralis;36310;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Verbascum chaixii;33327;actual measurement;142438.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;142438.6667;;;;seednumber > 100,000;1;;140506.9089;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Verbascum densiflorum;33851;laboratory/greenhouse/garden experiment;19309;2;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19309;30296;8322;19309;10,000 < seednumber <= 100,000;;;;counting ;;2004-10-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Verbascum densiflorum;33851;laboratory/greenhouse/garden experiment;54890;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;63317.56;121257;37425;54890;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-09-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Verbascum lychnitis;33779;laboratory/greenhouse/garden experiment;131449.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;153694.5;303342;80892;131449.5;seednumber > 100,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-09-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Verbascum lychnitis;33779;estimation;153;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;153;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Verbascum lychnitis;33779;estimation;88211;25;per ramet/tussock or individual plant ;BIOPOP April 2005;88211;94179;82243;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Verbascum nigrum;32834;actual measurement;486399.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;486399.3333;;;;seednumber > 100,000;1;;431226.8892;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Verbascum nigrum;32834;estimation;87;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;87;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Verbascum nigrum;32834;estimation;70562;22;per ramet/tussock or individual plant ;BIOPOP April 2005;70562;80411;60713;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Verbascum phlomoides;32841;laboratory/greenhouse/garden experiment;48206;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45419.25;54923;30342;48206;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-09-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Verbascum thapsus;32859;estimation;949;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;949;;;100 < seednumber <= 1000;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Verbascum thapsus;32859;actual measurement;2489337.333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2489337.333;;;;seednumber > 100,000;1;;3052436.529;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Verbascum thapsus;32859;estimation;136000;37;per ramet/tussock or individual plant ;BIOPOP April 2005;136000;168000;104000;;seednumber > 100,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Verbascum thapsus;32859;unknown;136000;;per ramet/tussock or individual plant ;BIOPOP April 2005;136000;;;;seednumber > 100,000;;;;unknown;unknown;;;Gross, K. L. (1978): The biology of Canadian weeds. 28. Verbascum thapsus and V. blattaria.; Verbascum thapsus;32859;unknown;175000;;per ramet/tussock or individual plant ;BIOPOP April 2005;175000;;;;seednumber > 100,000;;;;unknown;unknown;;;Gross, K. L. (1978): The biology of Canadian weeds. 28. Verbascum thapsus and V. blattaria.;UNITED STATES Verbena officinalis;35092;laboratory/greenhouse/garden experiment;404;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;670.4;2560;4;404;100 < seednumber <= 1000;;;;counting ;;2004-10-04 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica agrestis;34127;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica agrestis;34127;laboratory/greenhouse/garden experiment;3200;;per ramet/tussock or individual plant ;BIOPOP April 2005;3200;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Harris, G. R. (1980): Growth and Reproductive Strategy in Veronica Spp. [45]; Veronica agrestis;34127;unknown;2530;;per ramet/tussock or individual plant ;BIOPOP April 2005;2530;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Harris, G. R. (1980): Growth and Reproductive Strategy in Veronica Spp. [45]; Veronica agrestis;34127;laboratory/greenhouse/garden experiment;930;;per ramet/tussock or individual plant ;BIOPOP April 2005;930;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Harris, G. R. (1980): Growth and Reproductive Strategy in Veronica Spp. [45]; Veronica agrestis;34127;estimation;16;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;16;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Veronica alpina;33325;actual measurement;282;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];282;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Veronica alpina;33325;actual measurement;105;88;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;180;30;;100 < seednumber <= 1000;1;;;counting ;;1998-09-12 00:00:00.0;;;UNITED KINGDOM Veronica alpina;33325;actual measurement;26.9;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;26.9;46;6;;10 < seednumber <= 100;1;;;counting ;unknown;;,19.08.31;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Veronica alpina;33325;actual measurement;21;6;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;21;28;5;;10 < seednumber <= 100;1;;;counting ;unknown;2006-12-21 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Veronica alpina;33325;actual measurement;50.4;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;50.4;;;;10 < seednumber <= 100;1;;;counting ;single flower inflorescence ;2006-12-21 00:00:00.0;;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Veronica alpina;33325;actual measurement;193.7;10;per multiple flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;193.7;;;;100 < seednumber <= 1000;1;;;counting ;single flower inflorescence ;2006-12-21 00:00:00.0;seednumber per single shoot;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Veronica alpina;33325;actual measurement (following LEDA data standards);66;6;per multiple flower stem;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;74.33;148;24;66;10 < seednumber <= 100;;;;counting ;;2003-08-20 00:00:00.0;preaggregated value obtained from single record;;NORWAY Veronica anagallis-aquatica;32774;actual measurement;4950;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;5400;4500;;1000 < seednumber <= 10,000;1;;;counting ;;1998-08-18 00:00:00.0;;;UNITED KINGDOM Veronica anagallis-aquatica;32774;actual measurement (following LEDA data standards);826;5;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1294.4;3213;616;826;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica anagalloides;34184;laboratory/greenhouse/garden experiment;7514;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11955.67;42230;848;7514;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-07 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica arvensis;33302;estimation;972;;per ramet/tussock or individual plant ;BIOPOP April 2005;972;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;FINLAND Veronica arvensis;33302;unknown;122;;per ramet/tussock or individual plant ;BIOPOP April 2005;122;216;36;;100 < seednumber <= 1000;;;70.2;unknown;unknown;;;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica arvensis;33302;estimation;15;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;15;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 15;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Veronica arvensis;33302;unknown;2163;;per ramet/tussock or individual plant ;BIOPOP April 2005;2163;10836;270;;1000 < seednumber <= 10,000;;;2610.7;unknown;unknown;;;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica arvensis;33302;unknown;17410;;per ramet/tussock or individual plant ;BIOPOP April 2005;17410;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Harris, G. R. (1980): Growth and Reproductive Strategy in Veronica Spp. [45]; Veronica arvensis;33302;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica arvensis;33302;actual measurement;17000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;17000;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica arvensis;33302;actual measurement;504581;2;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;504581;;;;seednumber > 100,000;1;;307476.8985;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica arvensis;33302;actual measurement;285;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;395;255;285;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Veronica arvensis;33302;actual measurement;1463;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;2204;1406;1463;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Veronica austriaca;32781;actual measurement (following LEDA data standards);124;10;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;118.8;135;86;124;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-28 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Veronica austriaca s. teucrium;33306;actual measurement (following LEDA data standards);220;5;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;344;835;115;220;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica beccabunga;33863;actual measurement (following LEDA data standards);7612;2;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7612;7812;7412;7612;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica catenata;33875;actual measurement (following LEDA data standards);504;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;451;774;180;504;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-08-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica catenata;33875;actual measurement (following LEDA data standards);4355;2;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4355;4420;4290;4355;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-07-01 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Veronica catenata;33875;actual measurement (following LEDA data standards);20300;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;20880;31900;11600;20300;10,000 < seednumber <= 100,000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-29 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Veronica catenata;33875;actual measurement (following LEDA data standards);60;5;per single flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;58;80;40;60;10 < seednumber <= 100;;;;counting ;;2005-07-05 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Veronica chamaedrys;32792;actual measurement;83;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;83;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Veronica chamaedrys;32792;actual measurement;450;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;504;396;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Veronica chamaedrys;32792;actual measurement;38;8;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;47.5;;;38;10 < seednumber <= 100;1;10.71492062;30.30637211;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Veronica chamaedrys;32792;actual measurement;293431;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;293431;;;;seednumber > 100,000;1;;134512.1083;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica chamaedrys;32792;actual measurement;80;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;80;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Veronica chamaedrys;32792;actual measurement;3;;per square meter;BIOPOP April 2005;;;3;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;39.2;;per ramet/tussock or individual plant ;BIOPOP April 2005;39.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;6;;per ramet/tussock or individual plant ;BIOPOP April 2005;6;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;3;;per ramet/tussock or individual plant ;BIOPOP April 2005;3;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;9;;per ramet/tussock or individual plant ;BIOPOP April 2005;9;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;75;;per square meter;BIOPOP April 2005;;75;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;3.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;3.8;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;28;;per square meter;BIOPOP April 2005;;28;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;14.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;14.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;1120;;per square meter;BIOPOP April 2005;;1120;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;33.3;;per ramet/tussock or individual plant ;BIOPOP April 2005;33.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;3366;;per square meter;BIOPOP April 2005;;3366;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;64;;per square meter;BIOPOP April 2005;;122;6;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;12;;per square meter;BIOPOP April 2005;;12;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;2106;;per square meter;BIOPOP April 2005;;2106;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;2070;;per square meter;BIOPOP April 2005;;2070;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;actual measurement;23.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;23.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica chamaedrys;32792;unknown;27.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;27.1;220;0;;10 < seednumber <= 100;;;53.9;unknown;unknown;;single ramet;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica chamaedrys;32792;unknown;26.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;26.5;69;0;;10 < seednumber <= 100;;;22;unknown;unknown;;single ramet;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica fruticans;34175;actual measurement;450;3;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;450;;;;100 < seednumber <= 1000;1;;;counting ;;1997-08-12 00:00:00.0;;;UNITED KINGDOM Veronica fruticans;34175;actual measurement;75;19;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;75;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-07 00:00:00.0;;;UNITED KINGDOM Veronica hederifolia;33317;actual measurement;1366666.667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1366666.667;;;;seednumber > 100,000;1;;319808.2759;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica hederifolia;33317;unknown;430;;per ramet/tussock or individual plant ;BIOPOP April 2005;430;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Harris, G. R. (1980): Growth and Reproductive Strategy in Veronica Spp. [45]; Veronica hederifolia;33317;unknown;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Wehsarg, O. (1954): Ackerunkräuter. Biologie. Allgemeine Bekämpfung und Einzelbekämpfung []; Veronica hederifolia;33317;estimation (following LEDA data standards);200;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;200;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Veronica hederifolia;33317;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica hederifolia;33317;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica hederifolia;33317;unknown;39.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;39.7;136;11;;10 < seednumber <= 100;;;35.5;unknown;unknown;;;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica hederifolia;33317;unknown;69.8;;per ramet/tussock or individual plant ;BIOPOP April 2005;69.8;299;15;;10 < seednumber <= 100;;;57.1;unknown;unknown;;;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica hederifolia;33317;estimation;39;121;per ramet/tussock or individual plant ;BIOPOP April 2005;39;43;35;;10 < seednumber <= 100;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Veronica hederifolia;33317;actual measurement (following LEDA data standards);63;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;103;352;21;63;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-06-09 00:00:00.0;preaggregated value obtained from single record;;SWEDEN Veronica longifolia;32803;actual measurement (following LEDA data standards);15318.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16089.67;21788;12295;15318.5;10,000 < seednumber <= 100,000;;;;counting and weighing ;;2004-06-16 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica longifolia;32803;actual measurement (following LEDA data standards);5716.5;8;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6313.25;9602;3663;5716.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower inflorescence ;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Veronica montana;33758;actual measurement;38400;2;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38400;;;;10,000 < seednumber <= 100,000;1;;26021.52955;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica montana;33758;actual measurement (following LEDA data standards);44;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44.9;74;24;44;10 < seednumber <= 100;;;;counting ;;2004-06-29 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica montana;33758;actual measurement;43;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;48.2;;;43;10 < seednumber <= 100;1;6.345251943;20.06544847;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Veronica officinalis;33764;estimation;16;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;16;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean 16.2;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Veronica officinalis;33764;estimation;24;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;24;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Veronica officinalis;33764;actual measurement;183082.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;183082.25;;;;seednumber > 100,000;1;;77371.63965;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica officinalis;33764;actual measurement;1260;3;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;1554;840;1260;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Veronica officinalis;33764;estimation;8700;;per ramet/tussock or individual plant ;BIOPOP April 2005;8700;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Veronica officinalis;33764;actual measurement;161;20;per ramet/tussock or individual plant ;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];161;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;exclusion of damaged seeds;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY Veronica officinalis;33764;actual measurement;217.5;;per ramet/tussock or individual plant ;BIOPOP April 2005;217.5;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica officinalis;33764;actual measurement;6718;;per square meter;BIOPOP April 2005;;6718;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica officinalis;33764;actual measurement;152.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;152.4;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica officinalis;33764;actual measurement;1260;;per square meter;BIOPOP April 2005;;1260;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica officinalis;33764;actual measurement;187;;per ramet/tussock or individual plant ;BIOPOP April 2005;187;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica officinalis;33764;actual measurement;2535;;per square meter;BIOPOP April 2005;;2535;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica officinalis;33764;actual measurement;229.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;229.1;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica officinalis;33764;actual measurement;960;;per square meter;BIOPOP April 2005;;960;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Veronica officinalis;33764;actual measurement;618;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;618;100 < seednumber <= 1000;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Veronica officinalis;33764;actual measurement;123;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;123;;;;100 < seednumber <= 1000;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Veronica peregrina;33270;actual measurement (following LEDA data standards);1676.5;4;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1716.5;3150;363;1676.5;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2005-05-24 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica persica;33737;estimation;13;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;13;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): mean = 13;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Veronica persica;33737;estimation;7;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;7;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 7;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Veronica persica;33737;unknown;404;;per ramet/tussock or individual plant ;BIOPOP April 2005;404;900;24;;100 < seednumber <= 1000;;;280.8;unknown;unknown;;;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica persica;33737;unknown;377;;per ramet/tussock or individual plant ;BIOPOP April 2005;377;750;80;;100 < seednumber <= 1000;;;226;unknown;unknown;;;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica persica;33737;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica persica;33737;actual measurement;50;;per ramet/tussock or individual plant ;BIOPOP April 2005;50;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica persica;33737;actual measurement;6500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;6500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant General comment: max >6500;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica persica;33737;unknown;6540;;per ramet/tussock or individual plant ;BIOPOP April 2005;6540;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Harris, G. R. (1980): Growth and Reproductive Strategy in Veronica Spp. [45]; Veronica persica;33737;actual measurement;136910.75;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;136910.75;;;;seednumber > 100,000;1;;83669.14629;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica persica;33737;estimation (following LEDA data standards);75;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;;100;50;;10 < seednumber <= 100;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Veronica persica;33737;unknown;75;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;100;50;;10 < seednumber <= 100;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Veronica polita;33745;estimation;40;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;40;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Veronica polita;33745;actual measurement;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica prostrata s. prostrata;34100;actual measurement (following LEDA data standards);165;1;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;165;165;165;165;100 < seednumber <= 1000;;;;counting ;;2004-05-17 00:00:00.0;preaggregated value obtained from single record;;FRANCE Veronica scutellata;34347;actual measurement;999935.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;999935.3333;;;;seednumber > 100,000;1;;199903.0078;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica scutellata;34347;actual measurement (following LEDA data standards);36;3;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;48.67;75;35;36;10 < seednumber <= 100;;;;counting ;;2000-07-26 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Veronica serpyllifolia;32740;unknown;58460;;per ramet/tussock or individual plant ;BIOPOP April 2005;58460;;;;10,000 < seednumber <= 100,000;;;;unknown;unknown;;;Harris, G. R. (1980): Growth and Reproductive Strategy in Veronica Spp. [45]; Veronica serpyllifolia;32740;actual measurement (following LEDA data standards);745;10;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;929;1680;459;745;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2004-06-02 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica serpyllifolia;32740;unknown;1021;;per ramet/tussock or individual plant ;BIOPOP April 2005;1021;5394;59;;1000 < seednumber <= 10,000;;;1337.2;unknown;unknown;;;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica serpyllifolia;32740;unknown;661;;per ramet/tussock or individual plant ;BIOPOP April 2005;661;1056;117;;100 < seednumber <= 1000;;;345.1;unknown;unknown;;;Boutin, C. (1991): A comparative study of the population dynamics of five species of Veronica in natural habitats.; Veronica serpyllifolia;32740;actual measurement;1671528;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1671528;;;;seednumber > 100,000;1;;1239667.255;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica spicata;32745;estimation;43;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;43;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): from a plant in an experimental field;Whittington, W. J. (unknown e-mail address); Veronica spicata;32745;actual measurement;255777.6667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;255777.6667;;;;seednumber > 100,000;1;;39868.26177;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica spicata s. spicata;33276;actual measurement (following LEDA data standards);3999;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4514.36;8869;2960;3999;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2004-09-01 00:00:00.0;PREAGGREGATED! Raw record's comment: a single ramet is one individual;;GERMANY Veronica triphyllos;33282;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica triphyllos;33282;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Veronica triphyllos;33282;actual measurement (following LEDA data standards);565;3;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;548;628;451;565;100 < seednumber <= 1000;;;;counting ;;2005-05-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica triphyllos;33282;actual measurement (following LEDA data standards);311;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;300.09;576;38;311;100 < seednumber <= 1000;;;;counting ;;2005-05-05 00:00:00.0;preaggregated value obtained from single record;;GERMANY Veronica triphyllos;33282;actual measurement;228633.3333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;228633.3333;;;;seednumber > 100,000;1;;262862.3277;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Veronica verna;34375;actual measurement;60;;per ramet/tussock or individual plant ;BIOPOP April 2005;;60;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: large plant;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Viburnum lantana;15334;unknown;120;;per single flower inflorescence ;BIOPOP April 2005;;120;;;100 < seednumber <= 1000;;;;unknown;unknown;;Value comment: large inflorescence;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).; Viburnum lantana;15334;unknown;6;;per square meter;BIOPOP April 2005;6;;;;seednumber <= 10;;;;unknown;unknown;;;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).; Viburnum lantana;15334;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1952): Downs and Dunes, G Bell and Sons Ltd, London []; Viburnum lantana;15334;actual measurement (following LEDA data standards);306;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;306;306;306;306;100 < seednumber <= 1000;;;;counting and extrapolation ;single flower inflorescence ;2003-06-15 00:00:00.0;preaggregated value obtained from single record;;GERMANY Viburnum lantana;15334;actual measurement (following LEDA data standards);148;1;per multiple flower inflorescence ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;148;148;148;148;100 < seednumber <= 1000;;;;counting ;;;PREAGGREGATED! Raw record's comment: ;;GERMANY Viburnum lantana;15334;actual measurement;275;30;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;300;250;;100 < seednumber <= 1000;1;;;counting ;;1999-08-31 00:00:00.0;;;UNITED KINGDOM Viburnum lantana;15334;unknown;22.5;;per single flower inflorescence ;BIOPOP April 2005;;30;15;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).; Viburnum lantana;15334;unknown;60;;per single flower inflorescence ;BIOPOP April 2005;;60;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).; Viburnum opulus;15336;actual measurement;3640;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3640;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viburnum opulus;15336;unknown;17.5;;per single flower inflorescence ;BIOPOP April 2005;;25;10;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: per inflorescence;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).; Viburnum opulus;15336;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Snow, B.(1988): Birds and Berries, T and AD Poyser, Calton []; Viburnum opulus;15336;unknown;9;;per square meter;BIOPOP April 2005;9;;;;seednumber <= 10;;;;unknown;unknown;;;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).; Viburnum opulus;15336;unknown;75;;per single flower inflorescence ;BIOPOP April 2005;;75;;;10 < seednumber <= 100;;;;unknown;unknown;;Value comment: large inflorescence;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).; Vicia articulata;22076;laboratory/greenhouse/garden experiment;8.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35.4;140;1;8.5;seednumber <= 10;;;;counting and extrapolation ;multiple flower stem or single stem;2004-08-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Vicia cassubica;19692;actual measurement (following LEDA data standards);13;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13.3;23;3;13;10 < seednumber <= 100;;;;counting ;;2005-07-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Vicia cracca;22128;actual measurement;41866.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41866.66667;;;;10,000 < seednumber <= 100,000;1;;32878.76721;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Vicia cracca;22128;actual measurement;4;9;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];4;5;2;4;seednumber <= 10;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Vicia cracca;22128;actual measurement;112;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];112;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Vicia cracca;22128;actual measurement (following LEDA data standards);44;15;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;54.47;108;17;44;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2003-07-25 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Vicia cracca;22128;actual measurement;2;;per square meter;BIOPOP April 2005;;;2;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia cracca;22128;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia cracca;22128;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;150;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia cracca;22128;actual measurement;590;;per square meter;BIOPOP April 2005;;590;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia cracca;22128;actual measurement;89.1;;per multiple flower stem;BIOPOP April 2005;89.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia cracca;22128;estimation;6;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;6;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Vicia cracca;22128;actual measurement;55;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;55;;;;10 < seednumber <= 100;1;;;counting ;;;collection period: su. 95/96, method: applied repr. parts incl. flying apparatus were weighed;Eriksson, Ove(1998): Abundance, distribution and life histories of grassland plants: a comparative study of 81 species [86];SWEDEN Vicia ervilia;20343;actual measurement (following LEDA data standards);18;9;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19.22;47;3;18;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-09-10 00:00:00.0;PREAGGREGATED! Raw record's comment: bean;;GERMANY Vicia grandiflora;21610;actual measurement (following LEDA data standards);40.5;6;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44;85;24;40.5;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-09-01 00:00:00.0;preaggregated value obtained from single record;;GERMANY Vicia hirsuta;20346;actual measurement;26333.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26333.33333;;;;10,000 < seednumber <= 100,000;1;;4801.388688;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Vicia hirsuta;20346;actual measurement;200;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;320;80;;100 < seednumber <= 1000;1;;;counting ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Vicia hirsuta;20346;actual measurement;6;;per square meter;BIOPOP April 2005;;;6;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia hirsuta;20346;estimation (following LEDA data standards);230;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;230;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Vicia hirsuta;20346;actual measurement;12.4;;per ramet/tussock or individual plant ;BIOPOP April 2005;12.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia hirsuta;20346;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia hirsuta;20346;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia pannonica;22136;actual measurement;25933.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25933.33333;;;;10,000 < seednumber <= 100,000;1;;20693.31615;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Vicia sativa;22143;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;;200;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia sativa;22143;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia sativa;22143;actual measurement;299.5;2;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;320;279;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Vicia sativa;22143;actual measurement;8.5;2;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];8.5;10;5;;seednumber <= 10;6;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Vicia sativa s. nigra;19593;actual measurement;100;;per ramet/tussock or individual plant ;BIOPOP April 2005;100;;;;10 < seednumber <= 100;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia sepium;20357;estimation;10;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;10;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1964): Weeds and Aliens, Collins, London []; Vicia sepium;20357;actual measurement;9;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;9;seednumber <= 10;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Vicia sepium;20357;actual measurement;11780.5;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11780.5;;;;10,000 < seednumber <= 100,000;1;;6857.626436;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Vicia sepium;20357;actual measurement;4;7;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];4;7;2;4;seednumber <= 10;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Vicia sepium;20357;actual measurement;144;1;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];144;;;;100 < seednumber <= 1000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Vicia sepium;20357;actual measurement;3;;per square meter;BIOPOP April 2005;;;3;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sepium;20357;actual measurement;5.5;;per multiple flower stem;BIOPOP April 2005;5.5;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sepium;20357;actual measurement;13.5;;per multiple flower stem;BIOPOP April 2005;13.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sepium;20357;actual measurement;3.8;;per multiple flower stem;BIOPOP April 2005;3.8;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sepium;20357;actual measurement;1.6;;per multiple flower stem;BIOPOP April 2005;1.6;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sepium;20357;actual measurement;16;;per square meter;BIOPOP April 2005;;16;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sepium;20357;actual measurement;88;;per square meter;BIOPOP April 2005;;88;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sepium;20357;actual measurement;494;;per square meter;BIOPOP April 2005;;494;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sepium;20357;actual measurement;24;;per square meter;BIOPOP April 2005;;24;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sylvatica;20360;actual measurement;1218;;per square meter;BIOPOP April 2005;;2331;105;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sylvatica;20360;actual measurement;46;;per square meter;BIOPOP April 2005;;46;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sylvatica;20360;actual measurement;3.8;;per multiple flower stem;BIOPOP April 2005;3.8;;;;seednumber <= 10;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sylvatica;20360;actual measurement;53.6;;per multiple flower stem;BIOPOP April 2005;53.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sylvatica;20360;actual measurement;47.8;;per multiple flower stem;BIOPOP April 2005;47.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia sylvatica;20360;actual measurement;756;;per square meter;BIOPOP April 2005;;756;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia tenuissima;21626;actual measurement;868;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;1200;536;;100 < seednumber <= 1000;1;;;counting ;;1997-07-27 00:00:00.0;;;UNITED KINGDOM Vicia tetrasperma;22147;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;300;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia tetrasperma;22147;actual measurement;12.1;;per ramet/tussock or individual plant ;BIOPOP April 2005;12.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia tetrasperma;22147;actual measurement;27850;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27850;;;;10,000 < seednumber <= 100,000;1;;17756.40729;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Vicia tetrasperma;22147;estimation (following LEDA data standards);320;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;320;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Vicia tetrasperma;22147;actual measurement;3;;per square meter;BIOPOP April 2005;;;3;;seednumber <= 10;;;;unknown;unknown;;Value comment: small plant;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia tetrasperma;22147;unknown;450;1;per ramet/tussock or individual plant ;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];;800;100;;100 < seednumber <= 1000;1;;;unknown;unknown;;from literature;Koch, Werner(1978): Grundlagen der Unkrautbekämpfung [];GERMANY Vicia tetrasperma;22147;estimation (following LEDA data standards);320;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;320;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Vicia tetrasperma;22147;actual measurement;1033;;per square meter;BIOPOP April 2005;;1720;346;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Vicia tetrasperma;22147;estimation;4;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;4;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Aarssen, L. W.(1986): no title given, publication in Canadian Journal of Plant Science issue: 66 pages: 711-737 [66]; Vicia villosa;21598;actual measurement;23373.33333;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23373.33333;;;;10,000 < seednumber <= 100,000;1;;5089.020862;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Vicia villosa;21598;actual measurement;300;;per ramet/tussock or individual plant ;BIOPOP April 2005;;300;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia villosa;21598;actual measurement;200;;per ramet/tussock or individual plant ;BIOPOP April 2005;200;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Vicia villosa;21598;estimation (following LEDA data standards);250;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;250;;;;100 < seednumber <= 1000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Vicia villosa s. varia;22113;estimation (following LEDA data standards);261;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;261;325;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Vicia villosa s. varia;22113;estimation (following LEDA data standards);250;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;250;;;;100 < seednumber <= 1000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Vinca minor;2536;actual measurement;2.5;;per single flower inflorescence ;BIOPOP April 2005;2.5;4;1;;seednumber <= 10;;;;unknown;unknown;;Value comment: per fruit;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Vincetoxicum hirundinaria;2467;actual measurement;120670;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;120670;;;;seednumber > 100,000;1;;52544.52112;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Viola arvensis;35403;unknown;2500;;per ramet/tussock or individual plant ;BIOPOP April 2005;2500;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Doohan, D. J. (1992): The biology of Canadian weeds. 99. Viola arvensis Murr.; Viola arvensis;35403;actual measurement;150;;per ramet/tussock or individual plant ;BIOPOP April 2005;150;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Viola arvensis;35403;actual measurement;2500;;per ramet/tussock or individual plant ;BIOPOP April 2005;;2500;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Viola arvensis;35403;actual measurement;3000;;per ramet/tussock or individual plant ;BIOPOP April 2005;;3000;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;Value comment: large plant General comment: max >3000;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Viola arvensis;35403;unknown;1410;;per ramet/tussock or individual plant ;BIOPOP April 2005;1410;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Doohan, D. J. (1992): The biology of Canadian weeds. 99. Viola arvensis Murr.; Viola arvensis;35403;actual measurement;103800;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;103800;;;;seednumber > 100,000;1;;76030.52019;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Viola arvensis;35403;actual measurement;45.7;10;per single flower inflorescence ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];45.7;60;30;;10 < seednumber <= 100;1;;;counting ;unknown;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Viola arvensis;35403;estimation (following LEDA data standards);2500;1;per ramet/tussock or individual plant ;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;2500;;;;1000 < seednumber <= 10,000;1;;;estimation ;unknown;;;Hanf, M. (1990): Ackerunkräuter Europas mit ihren Keimlingen und Samen;Europe Viola arvensis;35403;actual measurement;2475;5;per ramet/tussock or individual plant ;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];;4635;315;;1000 < seednumber <= 10,000;1;;;counting and extrapolation ;single flower inflorescence ;;;Eklund, Ole(1928): Die quantitative Samenproduktion einiger Angiospermen [];FINLAND Viola biflora;35415;actual measurement;13.3;10;per multiple flower stem;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;13.3;;;;10 < seednumber <= 100;1;;;counting and extrapolation ;single flower inflorescence ;;,13.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Viola biflora;35415;actual measurement;7;10;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;7;9;5;;seednumber <= 10;1;;;counting ;unknown;;,13.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Viola canina;35384;actual measurement;28442.25;4;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28442.25;;;;10,000 < seednumber <= 100,000;1;;26769.64988;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Viola canina;35384;actual measurement;3066.5;;per square meter;BIOPOP April 2005;;3300;2833;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina;35384;actual measurement;15.3;;per multiple flower stem;BIOPOP April 2005;15.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;114;;per multiple flower stem;BIOPOP April 2005;114;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;60.2;;per multiple flower stem;BIOPOP April 2005;60.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;187.5;;per square meter;BIOPOP April 2005;;195;180;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;47.2;;per multiple flower stem;BIOPOP April 2005;47.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;180;;per square meter;BIOPOP April 2005;;180;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;41.8;;per multiple flower stem;BIOPOP April 2005;41.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;62;;per square meter;BIOPOP April 2005;;62;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;42.2;;per multiple flower stem;BIOPOP April 2005;42.2;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;58;;per multiple flower stem;BIOPOP April 2005;58;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;881;;per square meter;BIOPOP April 2005;;881;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola canina s. montana;35386;actual measurement;705;;per square meter;BIOPOP April 2005;;705;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola epipsila;35340;actual measurement;7.6;20;per single flower inflorescence ;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;7.6;;;;seednumber <= 10;1;;;counting ;unknown;;only full developed seeds, seed setting: 51%, 13.08.1931;Söyrinki, Niilo(1938): Studien über die generative und vegetative Vermehrung der Samenpflanzen in der alpinen Vegetation Petsamo-Lapplands I. Allgemeiner Teil;RUSSIAN FEDERATION Viola lactea;35326;actual measurement;150;50;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;150;;;;100 < seednumber <= 1000;1;;;counting ;;1998-06-21 00:00:00.0;;;UNITED KINGDOM Viola lutea;35331;estimation;70;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;70;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Balme, O. E.(1954): no title given, publication in Journal of Ecology issue: 42 pages: 234-240 [42]; Viola lutea;35331;actual measurement;240;300;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;240;;;;100 < seednumber <= 1000;1;;;counting ;;1998-06-30 00:00:00.0;;;UNITED KINGDOM Viola mirabilis;35297;actual measurement;45;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;;;;45;10 < seednumber <= 100;1;;;counting ;;;collection period: 98-99;Dupre, Cecilia(2002): Habitat cofiguration, species traits and plant distributions [90];SWEDEN Viola mirabilis;35297;actual measurement;1818;;per square meter;BIOPOP April 2005;;1818;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola mirabilis;35297;actual measurement;79.6;;per multiple flower stem;BIOPOP April 2005;79.6;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola mirabilis;35297;actual measurement (following LEDA data standards);29;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29;29;29;29;10 < seednumber <= 100;;;;counting ;;2005-05-21 00:00:00.0;preaggregated value obtained from single record;;GERMANY Viola palustris;35276;actual measurement;61.8;;per multiple flower stem;BIOPOP April 2005;61.8;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola palustris;35276;actual measurement;34.4;;per multiple flower stem;BIOPOP April 2005;34.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola palustris;35276;actual measurement;44;;per multiple flower stem;BIOPOP April 2005;44;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola palustris;35276;actual measurement;100;150;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;120;80;;10 < seednumber <= 100;1;;;counting ;;1999-08-02 00:00:00.0;;;UNITED KINGDOM Viola palustris;35276;actual measurement;18129.66667;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18129.66667;;;;10,000 < seednumber <= 100,000;1;;12907.53425;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Viola palustris;35276;actual measurement;1550;;per square meter;BIOPOP April 2005;;1550;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola palustris;35276;actual measurement;3782;;per square meter;BIOPOP April 2005;;3782;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola palustris;35276;actual measurement;70;;per square meter;BIOPOP April 2005;;70;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola palustris;35276;actual measurement;31.5;;per multiple flower stem;BIOPOP April 2005;31.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola palustris;35276;actual measurement;52.4;;per multiple flower stem;BIOPOP April 2005;52.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola palustris;35276;actual measurement;117;;per square meter;BIOPOP April 2005;;117;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola persicifolia;35285;actual measurement (following LEDA data standards);89;12;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;82.33;120;20;89;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2004-06-17 00:00:00.0;preaggregated value obtained from single record;;GERMANY Viola persicifolia;35285;actual measurement;105;12;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;200;10;;100 < seednumber <= 1000;1;;;counting ;;1997-07-01 00:00:00.0;;;UNITED KINGDOM Viola reichenbachiana;35262;estimation;400;;per ramet/tussock or individual plant ;BIOPOP April 2005;400;;;;100 < seednumber <= 1000;;;;unknown;unknown;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM Viola reichenbachiana;35262;actual measurement;15.5;10;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16.8;;;15.5;10 < seednumber <= 100;1;2.434930982;7.69992785;counting and extrapolation ;;;Collection period: 2002;Source data from University of Bremen,Vegetation Ecology and Conservation Ecology, DE (Kolb), E-Mail: akolb@uni-bremen.de;GERMANY Viola reichenbachiana;35262;actual measurement;15000;3;per square meter;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15000;;;;10,000 < seednumber <= 100,000;1;;7937.253933;counting and weighing ;;;collection period: 1993-1999, method: applied repr. parts incl. flying apparatus were weighed;Sera, Bozena (2004): Number and weight of seeds and reproductive strategies of herbaceous plants [39];CZECH REPUBLIC Viola reichenbachiana;35262;estimation;26;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;;26;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London; Viola reichenbachiana;35262;actual measurement;100;100;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;100;;;;10 < seednumber <= 100;1;;;counting ;;1998-05-10 00:00:00.0;;;UNITED KINGDOM Viola riviniana;35267;estimation;20;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;20;;;;10 < seednumber <= 100;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): c. 20;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London []; Viola riviniana;35267;actual measurement;23.5;;per multiple flower stem;BIOPOP April 2005;23.5;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;21.3;;per multiple flower stem;BIOPOP April 2005;21.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;116;;per square meter;BIOPOP April 2005;;116;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;19.7;;per multiple flower stem;BIOPOP April 2005;19.7;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;63;;per square meter;BIOPOP April 2005;;63;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;23.1;;per multiple flower stem;BIOPOP April 2005;23.1;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;243;;per square meter;BIOPOP April 2005;;243;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;39.3;;per multiple flower stem;BIOPOP April 2005;39.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;149;;per square meter;BIOPOP April 2005;;149;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;101;;per square meter;BIOPOP April 2005;;101;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;189;;per square meter;BIOPOP April 2005;;189;;;100 < seednumber <= 1000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;29;;per multiple flower stem;BIOPOP April 2005;29;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;62;;per square meter;BIOPOP April 2005;;62;;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;18.3;;per multiple flower stem;BIOPOP April 2005;18.3;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;37;;per square meter;BIOPOP April 2005;;51;23;;10 < seednumber <= 100;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola riviniana;35267;actual measurement;22.4;;per multiple flower stem;BIOPOP April 2005;22.4;;;;10 < seednumber <= 100;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola rupestris;35233;actual measurement;7;20;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;;8;6;;seednumber <= 10;1;;;counting ;;1999-07-15 00:00:00.0;;;UNITED KINGDOM Viola tricolor;35219;actual measurement;2000;;per ramet/tussock or individual plant ;BIOPOP April 2005;2000;;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Kästner, A.(2001): Handbuch der Segetalpflanzen Mitteleuropas. Wien []; Viola tricolor;35219;estimation (following LEDA data standards);2500;1;per ramet/tussock or individual plant ;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;2500;;;;1000 < seednumber <= 10,000;1;;;unknown;unknown;;;Korsmo, E.(1930): Unkräuter im Ackerbau der Neuzeit. Biologische und praktische Untersuchungen.;Europe Viola tricolor;35219;actual measurement;425.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;425.7;1290;86;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola tricolor;35219;actual measurement;425.7;;per ramet/tussock or individual plant ;BIOPOP April 2005;425.7;;;;100 < seednumber <= 1000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola tricolor;35219;actual measurement;5124;;per square meter;BIOPOP April 2005;;9821;427;;1000 < seednumber <= 10,000;;;;unknown;unknown;;General comment: only viable-looking seeds;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola tricolor;35219;actual measurement;9821;;per square meter;BIOPOP April 2005;;9821;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola tricolor;35219;actual measurement;1290;;per ramet/tussock or individual plant ;BIOPOP April 2005;;1290;;;1000 < seednumber <= 10,000;;;;unknown;unknown;;only full developed seeds were counted;Perttula, K. (1941): Untersuchungen über die generative und vegetative Vermehrung der Blütenpflanzen in der Wald-, Hainwiesen- und Hainfelsenvegetation. Annales academiae scientiarium Fennicae. Ser.A;FINLAND Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);37;10;per ramet/tussock or individual plant ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;55.5;111;37;37;10 < seednumber <= 100;;;;counting and extrapolation ;single flower inflorescence ;2005-05-29 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Viscum album;25275;unknown;2.5;1;per single flower inflorescence ;Zuber, Doris(2004): Biological flora of Central Europe: Viscum album L. [199];;4;1;;seednumber <= 10;1;;;unknown;unknown;;Luther & Becker 1986;Zuber, Doris(2004): Biological flora of Central Europe: Viscum album L. [199];Europe Viscum album;25275;actual measurement;400;1;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;400;;;;100 < seednumber <= 1000;1;;;counting ;;1997-12-07 00:00:00.0;;;UNITED KINGDOM Viscum album;25275;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Salisbury, E.(1975): no title given, publication in Proceedings of the Royal Society of London B issue: 188 pages: 183-188 [188]; Vulpia bromoides;42790;laboratory/greenhouse/garden experiment;2657;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);2678.6;3888;670;2657;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Vulpia ciliata;42792;actual measurement;25;500;per ramet/tussock or individual plant ;Kew Gardens, Wakehurst Place, UK (Dickie), E-Mail: J.Dickie@rbgkew.org.uk;25;;;;10 < seednumber <= 100;1;;;counting ;;1997-08-06 00:00:00.0;;;UNITED KINGDOM Vulpia fasciculata;43348;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Watkinson, A. R.(1978): no title given, publication in Journal of Ecology issue: 66 pages: 15-33 [66]; Vulpia myuros;42798;laboratory/greenhouse/garden experiment;3026;5;per ramet/tussock or individual plant ;Tackenberg (Regensburg), Oliver (Oliver.Tackenberg@biologie.uni-regensburg.de);3380.6;5267;2240;3026;1000 < seednumber <= 10,000;;;;counting and extrapolation ;multiple flower stem or single stem;2005-03-18 00:00:00.0;preaggregated value obtained from single record;;GERMANY Vulpia myuros;42798;actual measurement (following LEDA data standards);1184;11;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1429.82;3552;279;1184;1000 < seednumber <= 10,000;;;;counting and extrapolation ;single flower inflorescence ;2003-06-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Wolffia arrhiza;36885;derivation from morphologies or other plant traits;0;1;per ramet/tussock or individual plant ;Source data from Centre for Environmental Research Leipzig-Halle, Dept. of Community Ecology, DE (Goetzenberger), E-Mail: Lars.Goetzenberger@ufz.de;0;;;;seednumber <= 10;1;;;estimation ;;;Species does not produce seeds in natural habitats in Germany;;GERMANY Xanthium albinum s.lat.;61703;laboratory/greenhouse/garden experiment;1370;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1370;1370;1370;1370;1000 < seednumber <= 10,000;;;;counting ;;2004-10-08 00:00:00.0;preaggregated value obtained from single record;;GERMANY Xanthium orientale;60681;laboratory/greenhouse/garden experiment;135;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;135;135;135;135;100 < seednumber <= 1000;;;;counting ;;2005-09-25 00:00:00.0;preaggregated value obtained from single record;;GERMANY Xanthium strumarium;10168;laboratory/greenhouse/garden experiment;13;7;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25;69;5;13;10 < seednumber <= 100;;;;counting ;;2004-08-13 00:00:00.0;preaggregated value obtained from single record;;GERMANY Zannichellia palustris subsp. pedicellata;60685;actual measurement (following LEDA data standards);9;8;per multiple flower stem;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10.5;22;2;9;seednumber <= 10;;;;counting ;;2005-08-06 00:00:00.0;preaggregated value obtained from single record;;GERMANY Zea mays;43844;actual measurement (following LEDA data standards);482.5;10;per multiple flower inflorescence ;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;486;510;460;482.5;100 < seednumber <= 1000;;;;counting ;;2005-08-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS Zostera marina;43879;estimation;1;1;per single flower inflorescence ;ECOFLORA - database of the ecological flora of the british isles;1;;;;seednumber <= 10;1;;;unknown;unknown;;Subspecies: - Original comment from ECOFLORA (for references to "Source no." refer to this record's original reference): -;Tutin, T. G.(1938): no title given, publication in New Phytologist issue: 37 pages: 50-71 [37]; x Ammocalamagrostis baltica;41412;actual measurement (following LEDA data standards);800;1;per multiple flower stem;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;800;800;800;800;100 < seednumber <= 1000;;;;estimation ;;2005-07-10 00:00:00.0;preaggregated value obtained from single record;;NETHERLANDS x Ammocalamagrostis baltica;41412;actual measurement (following LEDA data standards);422;1;per ramet/tussock or individual plant ;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;422;422;422;422;100 < seednumber <= 1000;;;;counting ;;2003-09-27 00:00:00.0;PREAGGREGATED! Raw record's comment: ;;GERMANY