The following table was created as response to the SQL query SELECT sbs_sbsname "SBS name", sbs_sbsnumber "SBS number", m_methodname "general method", dia_name "diaspore type", sm_singlevalue "single value [mg]", sm_samples "sample size", sm_valid "valid", sm_median "median", ref_refname "reference", sm_mean "mean SM [mg]", sm_maximum "maximum SM [mg]", sm_minimum "minimum SM [mg]", sm_replicates "number of replicates", sm_gencomment "general comment", dmlv_name "Drying method", or_origrefname "original reference", dia_code "diaspore type code" FROM (SELECT case when sm_median is not null then sm_median when sm_mean is not null then sm_mean when sm_minimum is not null and sm_maximum is not null then (sm_minimum + sm_maximum) / 2 when sm_minimum is not null then sm_minimum when sm_maximum is not null then sm_maximum else null end AS sm_singlevalue, sbs_sbsnumber, sbs_sbsname, m_methodname, dia_name, sm_median, sm_mean, sm_minimum, sm_maximum, sm_samples, sm_valid, ref_refname, sm_replicates, sm_gencomment, dmlv_name, or_origrefname, dia_code, sm_sbsnumber FROM (SELECT sbs.sbs_sbsnumber, sbs.sbs_sbsname, sm_m.m_methodname, sm_m.dia_name, sm_m.sm_median, sm_m.sm_mean, sm_m.sm_minimum, sm_m.sm_maximum, sm_m.sm_samples, sm_m.sm_valid, sm_m.ref_refname, sm_m.sm_replicates, sm_m.sm_gencomment, sm_m.dmlv_name, sm_m.or_origrefname, sm_m.dia_code, sm_m.sm_sbsnumber 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 sm_dialv.sm_sbsnumber, m.m_methodname, sm_dialv.dia_name, sm_dialv.sm_median, sm_dialv.sm_mean, sm_dialv.sm_minimum, sm_dialv.sm_maximum, sm_dialv.sm_samples, sm_dialv.sm_valid, sm_dialv.ref_refname, sm_dialv.sm_replicates, sm_dialv.sm_gencomment, sm_dialv.dmlv_name, sm_dialv.or_origrefname, sm_dialv.dia_code FROM (SELECT r_sm.sm_sbsnumber, r_sm.sm_methodid, dialv.dia_name, r_sm.sm_median, r_sm.sm_mean, r_sm.sm_minimum, r_sm.sm_maximum, r_sm.sm_samples, r_sm.sm_valid, r_sm.ref_refname, r_sm.sm_replicates, r_sm.sm_gencomment, r_sm.dmlv_name, r_sm.or_origrefname, dialv.dia_code FROM (SELECT sm_dmlv.sm_sbsnumber, sm_dmlv.sm_methodid, sm_dmlv.sm_diasporemorphid, sm_dmlv.sm_median, sm_dmlv.sm_mean, sm_dmlv.sm_minimum, sm_dmlv.sm_maximum, sm_dmlv.sm_samples, sm_dmlv.sm_valid, r.ref_refname, sm_dmlv.sm_replicates, sm_dmlv.sm_gencomment, sm_dmlv.dmlv_name, sm_dmlv.or_origrefname FROM (SELECT referenceid AS ref_referenceid, refname AS ref_refname FROM (select referenceid, refname, reftypeid from reference)) r LEFT JOIN (SELECT sm_orf.sm_sbsnumber, sm_orf.sm_methodid, sm_orf.sm_diasporemorphid, sm_orf.sm_median, sm_orf.sm_mean, sm_orf.sm_minimum, sm_orf.sm_maximum, sm_orf.sm_samples, sm_orf.sm_valid, sm_orf.sm_referenceid, sm_orf.sm_replicates, sm_orf.sm_gencomment, dmlv.dmlv_name, sm_orf.or_origrefname FROM (SELECT sm.sm_sbsnumber, sm.sm_methodid, sm.sm_diasporemorphid, sm.sm_median, sm.sm_mean, sm.sm_minimum, sm.sm_maximum, sm.sm_samples, sm.sm_valid, sm.sm_referenceid, sm.sm_replicates, sm.sm_gencomment, sm.sm_dryingmethodid, orf.or_origrefname FROM (SELECT sbsnumber AS sm_sbsnumber, methodid AS sm_methodid, germinuleordispersuleid AS sm_diasporemorphid, median AS sm_median, mean AS sm_mean, minimum AS sm_minimum, maximum AS sm_maximum, n AS sm_samples, valid AS sm_valid, referenceid AS sm_referenceid, seednumberperindividual AS sm_replicates, p_comment AS sm_gencomment, dryingmethodid AS sm_dryingmethodid, origreferenceid AS sm_origreferenceid FROM (SELECT seedweightid, sbsnumber, taxonid, georefid, habitattypeid, referenceid, origreferenceid, batchid, n, seednumberperindividual, germinuleordispersuleid, mean, minimum, maximum, median, methodid, dryingmethodid, balanceerror, stddeviation, stderror, collectiondate, p_comment, created_when, updated_when, valid, validsince, validuntil, ledaid FROM seedweight NATURAL JOIN taxontosbsassignment WHERE valid IN (-2, 1, -1, 0, 2, -8, -4, -3, 2, -8))) sm FULL 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 sm.sm_origreferenceid = orf.or_origrefid) sm_orf FULL JOIN (SELECT dryingmethodid AS dmlv_id, dryingmethodname AS dmlv_name FROM (select dryingmethodid, dryingmethodname from dryingmethod_lv)) dmlv ON sm_orf.sm_dryingmethodid = dmlv.dmlv_id) sm_dmlv ON r.ref_referenceid = sm_dmlv.sm_referenceid) r_sm LEFT JOIN (SELECT diasporemorphologyid AS dia_id, diasporemorphologyname AS dia_name, diasporemorphologycode AS dia_code FROM (select diasporemorphologyid, diasporemorphologycode, diasporemorphologyname from diasporemorphology_lv)) dialv ON r_sm.sm_diasporemorphid = dialv.dia_id) sm_dialv LEFT JOIN (SELECT methodid AS m_methodid, methodname AS m_methodname FROM (select * from method_lv)) m ON sm_dialv.sm_methodid = m.m_methodid) sm_m ON sbs.sbs_sbsnumber = sm_m.sm_sbsnumber)) ORDER BY sbs_sbsname on Fri Mar 14 16:35:53 CET 2008 . SBS name;SBS number;general method;diaspore type;single value [mg];sample size;valid;median;reference;mean SM [mg];maximum SM [mg];minimum SM [mg];number of replicates;general comment;Drying method;original reference;diaspore type code Abies alba;697;actual measurement;germinule;79.2;;-4;;BIOLFLOR database;79.2;;;;;Air dried weight;;3 Abies alba;697;actual measurement;one-seeded generative dispersule;79.2;;-4;;BIOLFLOR database;79.2;;;;;Air dried weight;;2a Abutilon theophrasti;25800;actual measurement;germinule;10.614;;-4;;BIOLFLOR database;10.614;10.656;10.546;;;Air dried weight;;3 Acer campestre;811;actual measurement;germinule;96.84;;-4;;BIOLFLOR database;96.84;114.4;80;;;Air dried weight;;3 Acer campestre;811;actual measurement;one-seeded generative dispersule;14.4;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14.4;;;10;;Air dried weight;;2a Acer campestre;811;actual measurement;one-seeded generative dispersule;18.24;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18.24;;;25;;Air dried weight;;2a Acer campestre;811;actual measurement;generative dispersule;68.9256;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;68.9256;71.78;66.37;50;;Air dried weight;;2 Acer campestre;811;actual measurement;germinule;18.24;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18.24;;;25;;Air dried weight;;3 Acer campestre;811;actual measurement;germinule;14.4;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14.4;;;10;;Air dried weight;;3 Acer campestre;811;actual measurement;one-seeded generative dispersule;96.84;;-4;;BIOLFLOR database;96.84;114.4;80;;;Air dried weight;;2a Acer campestre;811;other;one-seeded generative dispersule;60.492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);60.492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Acer campestre;811;other;one-seeded generative dispersule;60.2996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);60.2996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Acer campestre;811;other;one-seeded generative dispersule;56.2804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);56.2804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Acer campestre;811;other;one-seeded generative dispersule;59.4848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);59.4848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Acer campestre;811;other;one-seeded generative dispersule;61.4608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);61.4608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Acer campestre;811;other;germinule;60.2996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);60.2996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Acer campestre;811;other;germinule;60.492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);60.492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Acer campestre;811;other;germinule;56.2804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);56.2804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Acer campestre;811;other;germinule;61.4608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);61.4608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Acer campestre;811;other;germinule;59.4848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);59.4848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Acer negundo;785;actual measurement;germinule;41.211;;-4;;BIOLFLOR database;41.211;43.232;37.402;;;Air dried weight;;3 Acer negundo;785;actual measurement;one-seeded generative dispersule;41.211;;-4;;BIOLFLOR database;41.211;43.232;37.402;;;Air dried weight;;2a Acer platanoides;801;actual measurement;one-seeded generative dispersule;137.2;;-4;;BIOLFLOR database;137.2;140;134.5;;;Air dried weight;;2a Acer platanoides;801;actual measurement;one-seeded generative dispersule;59.9;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;59.9;;;28;;Air dried weight;;2a Acer platanoides;801;actual measurement;germinule;137.2;;-4;;BIOLFLOR database;137.2;140;134.5;;;Air dried weight;;3 Acer platanoides;801;actual measurement;germinule;59.9;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;59.9;;;28;;Air dried weight;;3 Acer platanoides;801;actual measurement;generative dispersule;109.94;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;109.94;112.28;107.6;25;;Air dried weight;;2 Acer pseudoplatanus;803;actual measurement;generative dispersule;70.19666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;70.19666667;77.40666667;64.84;30;;Air dried weight;;2 Acer pseudoplatanus;803;actual measurement;generative dispersule;188.2333333;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;188.2333333;188.2333333;188.2333333;1;;Air dried weight;;2 Acer pseudoplatanus;803;actual measurement;germinule;44.8;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44.8;;;25;;Air dried weight;;3 Acer pseudoplatanus;803;actual measurement;germinule;110.717;;-4;;BIOLFLOR database;110.717;128.6;81.57;;;Air dried weight;;3 Acer pseudoplatanus;803;actual measurement;germinule;26.8;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26.8;;;100;;Air dried weight;;3 Acer pseudoplatanus;803;actual measurement;germinule;34.47;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34.47;;;20;;Air dried weight;;3 Acer pseudoplatanus;803;actual measurement;one-seeded generative dispersule;44.8;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44.8;;;25;;Air dried weight;;2a Acer pseudoplatanus;803;actual measurement;one-seeded generative dispersule;26.8;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26.8;;;100;;Air dried weight;;2a Acer pseudoplatanus;803;actual measurement;one-seeded generative dispersule;34.47;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34.47;;;20;;Air dried weight;;2a Acer pseudoplatanus;803;actual measurement;one-seeded generative dispersule;110.717;;-4;;BIOLFLOR database;110.717;128.6;81.57;;;Air dried weight;;2a Acer saccharinum;805;actual measurement;generative dispersule;39.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);39.14;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Achillea atrata;4794;actual measurement;germinule;.32;;-4;;BIOLFLOR database;.32;;;;;Air dried weight;;3 Achillea atrata;4794;actual measurement;one-seeded generative dispersule;.32;;-4;;BIOLFLOR database;.32;;;;;Air dried weight;;2a Achillea cartilaginea;4689;actual measurement;one-seeded generative dispersule;.23;;-4;;BIOLFLOR database;.23;.239;.22;;;Air dried weight;;2a Achillea cartilaginea;4689;actual measurement;germinule;.23;;-4;;BIOLFLOR database;.23;.239;.22;;;Air dried weight;;3 Achillea cartilaginea;4689;actual measurement;one-seeded generative dispersule;.265;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.265;.266;.264;50;;Air dried weight;;2a Achillea clavennae;3559;actual measurement;germinule;.494;;-4;;BIOLFLOR database;.494;.503;.488;;;Air dried weight;;3 Achillea clavennae;3559;actual measurement;one-seeded generative dispersule;.494;;-4;;BIOLFLOR database;.494;.503;.488;;;Air dried weight;;2a Achillea collina;3512;actual measurement;germinule;.135;;-4;;BIOLFLOR database;.135;.141;.132;;;Air dried weight;;3 Achillea collina;3512;actual measurement;unknown;.16;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.16;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Achillea collina;3512;actual measurement;one-seeded generative dispersule;.135;;-4;;BIOLFLOR database;.135;.141;.132;;;Air dried weight;;2a Achillea distans;5359;actual measurement;one-seeded generative dispersule;.303;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.303;;;100;;Air dried weight;;2a Achillea millefolium;3013;actual measurement;one-seeded generative dispersule;.131;;-4;;BIOLFLOR database;.131;.16;.1;;;Air dried weight;;2a Achillea millefolium;3013;actual measurement;one-seeded generative dispersule;.1286;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1286;.136;.124;100;;Air dried weight;;2a Achillea millefolium;3013;other;one-seeded generative dispersule;.1692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Achillea millefolium;3013;actual measurement;generative dispersule;.07;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.07;;;1;n an replicates unknown;Air dried weight;;2 Achillea millefolium;3013;actual measurement;germinule;.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.16;;;50;;Air dried weight;;3 Achillea millefolium;3013;actual measurement;germinule;.131;;-4;;BIOLFLOR database;.131;.16;.1;;;Air dried weight;;3 Achillea millefolium;3013;actual measurement;germinule;.05;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.05;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Achillea millefolium;3013;actual measurement;one-seeded generative dispersule;.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.16;;;50;;Air dried weight;;2a Achillea millefolium;3013;actual measurement;germinule;.133;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.133;;;1;summers of 1995 and 1996;Unknown;;3 Achillea millefolium;3013;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Achillea millefolium;3013;other;germinule;.1692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Achillea millefolium;3013;actual measurement (following LEDA data standards);germinule;.14;1;-2;.14;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;.14;.14;;preaggregated value obtained from single record;Air dried weight;;3 Achillea nobilis;3014;actual measurement;one-seeded generative dispersule;.061;;-4;;BIOLFLOR database;.061;.062;.06;;;Air dried weight;;2a Achillea nobilis;3014;actual measurement;germinule;.061;;-4;;BIOLFLOR database;.061;.062;.06;;;Air dried weight;;3 Achillea nobilis;3014;actual measurement;generative dispersule;.068;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.068;.08;.05;1;;Air dried weight;;2 Achillea pannonica;5321;actual measurement;germinule;.138;;-4;;BIOLFLOR database;.138;.138;.137;;;Air dried weight;;3 Achillea pannonica;5321;actual measurement;one-seeded generative dispersule;.138;;-4;;BIOLFLOR database;.138;.138;.137;;;Air dried weight;;2a Achillea ptarmica;4799;actual measurement;germinule;.223;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.223;;;100;;Air dried weight;;3 Achillea ptarmica;4799;actual measurement;germinule;.246;;-4;;BIOLFLOR database;.246;.3;.213;;;Air dried weight;;3 Achillea ptarmica;4799;actual measurement;one-seeded generative dispersule;.223;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.223;;;100;;Air dried weight;;2a Achillea ptarmica;4799;actual measurement;one-seeded generative dispersule;.246;;-4;;BIOLFLOR database;.246;.3;.213;;;Air dried weight;;2a Achillea ptarmica;4799;actual measurement;one-seeded generative dispersule;.0835;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0835;.087;.08;100;;Air dried weight;;2a Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.33;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.31;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.31;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.31;7;-2;.31;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.31;.33;.28;;preaggregated value obtained from single record;Air dried weight;;3 Achillea ptarmica;4799;actual measurement (following LEDA data standards);germinule;.38;1;-2;.38;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;.38;.38;;preaggregated value obtained from single record;Air dried weight;;3 Achillea setacea;5941;actual measurement;one-seeded generative dispersule;.17;;-4;;BIOLFLOR database;.17;.176;.166;;;Air dried weight;;2a Achillea setacea;5941;actual measurement;germinule;.17;;-4;;BIOLFLOR database;.17;.176;.166;;;Air dried weight;;3 Achillea stricta;3840;actual measurement;unknown;.22;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.22;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Achnatherum calamagrostis;41606;actual measurement;one-seeded generative dispersule;.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Acinos arvensis;24493;actual measurement;one-seeded generative dispersule;.255;;-4;;BIOLFLOR database;.255;.3;.232;;;Air dried weight;;2a Acinos arvensis;24493;actual measurement;one-seeded generative dispersule;.224;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.224;;;100;;Air dried weight;;2a Acinos arvensis;24493;other;one-seeded generative dispersule;1.3676;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Acinos arvensis;24493;actual measurement;germinule;.224;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.224;;;100;;Air dried weight;;3 Acinos arvensis;24493;actual measurement;germinule;.255;;-4;;BIOLFLOR database;.255;.3;.232;;;Air dried weight;;3 Acinos arvensis;24493;other;germinule;1.3676;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Aconitum lycoctonum;27413;actual measurement;germinule;3.11;;-4;;BIOLFLOR database;3.11;3.12;3.1;;;Air dried weight;;3 Aconitum lycoctonum;27413;actual measurement;generative dispersule;3.4065;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.4065;3.498;3.315;100;;Air dried weight;;2 Aconitum lycoctonum;27413;actual measurement;one-seeded generative dispersule;3.11;;-4;;BIOLFLOR database;3.11;3.12;3.1;;;Air dried weight;;2a Aconitum napellus;27279;actual measurement;one-seeded generative dispersule;3;;-4;;BIOLFLOR database;3;;;;;Air dried weight;;2a Aconitum napellus;27279;actual measurement;one-seeded generative dispersule;4.21;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.21;;;50;;Air dried weight;;2a Aconitum napellus;27279;other;one-seeded generative dispersule;4.1964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.1964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Aconitum napellus;27279;actual measurement;germinule;3;;-4;;BIOLFLOR database;3;;;;;Air dried weight;;3 Aconitum napellus;27279;actual measurement;germinule;4.21;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.21;;;50;;Air dried weight;;3 Aconitum napellus;27279;other;germinule;4.1964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.1964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Acorus calamus;35825;actual measurement;generative dispersule;1.5185;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.5185;1.596;1.441;100;;Air dried weight;;2 Actaea spicata;27324;actual measurement;multi-seeded generative dispersule;461;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);461;;;1;n an replicates unknown;Fresh weight;;2b Actaea spicata;27324;actual measurement;germinule;5.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.9;;;1;n an replicates unknown;Air dried weight;;3 Actaea spicata;27324;other;germinule;6.964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Actaea spicata;27324;other;germinule;5.9168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.9168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Adenocarpus telonensis;21581;actual measurement;germinule;7;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];7;;;90;;Unknown;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Adenophora lilifolia;15316;actual measurement;one-seeded generative dispersule;.257;;-4;;BIOLFLOR database;.257;.263;.252;;;Air dried weight;;2a Adenophora lilifolia;15316;actual measurement;one-seeded generative dispersule;.3685;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3685;.375;.362;100;;Air dried weight;;2a Adenophora lilifolia;15316;actual measurement;germinule;.257;;-4;;BIOLFLOR database;.257;.263;.252;;;Air dried weight;;3 Adenostyles alpina subsp. alpina;3190;actual measurement;germinule;1.3875;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.3875;1.444;1.331;100;;Air dried weight;;3 Adonis aestivalis;27328;actual measurement;germinule;11.522;;-4;;BIOLFLOR database;11.522;14;7.4;;;Air dried weight;;3 Adonis aestivalis;27328;actual measurement;one-seeded generative dispersule;11.522;;-4;;BIOLFLOR database;11.522;14;7.4;;;Air dried weight;;2a Adonis annua;27329;actual measurement;germinule;11.6;;-4;;BIOLFLOR database;11.6;18.4;4.8;;;Air dried weight;;3 Adonis annua;27329;actual measurement;one-seeded generative dispersule;11.6;;-4;;BIOLFLOR database;11.6;18.4;4.8;;;Air dried weight;;2a Adonis flammea;27336;actual measurement;one-seeded generative dispersule;9.88;;-4;;BIOLFLOR database;9.88;10.113;9.641;;;Air dried weight;;2a Adonis flammea;27336;actual measurement;germinule;9.88;;-4;;BIOLFLOR database;9.88;10.113;9.641;;;Air dried weight;;3 Adonis vernalis;29095;actual measurement;germinule;10.6;;-4;;BIOLFLOR database;10.6;;;;;Air dried weight;;3 Adonis vernalis;29095;actual measurement;one-seeded generative dispersule;10.6;;-4;;BIOLFLOR database;10.6;;;;;Air dried weight;;2a Adoxa moschatellina;2407;actual measurement;one-seeded generative dispersule;.628;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.628;;;100;;Air dried weight;;2a Adoxa moschatellina;2407;actual measurement;generative dispersule;.63;;-4;;BIOLFLOR database;.63;;;;;Unknown;;2 Aegilops cylindrica;42076;actual measurement;generative dispersule;33.61;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);33.61;;;1;n an replicates unknown;Air dried weight;;2 Aegilops geniculata;41112;actual measurement;generative dispersule;8.32;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);8.32;;;1;n and replicates unknown;Air dried weight;;2 Aegilops geniculata;41112;actual measurement;germinule;6.821333333;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.821333333;6.821333333;6.821333333;75;;Air dried weight;;3 Aegilops geniculata;41112;actual measurement;one-seeded generative dispersule;12.68;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];12.68;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Aegilops neglecta;40461;actual measurement;one-seeded generative dispersule;25.81;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];25.81;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Aegilops triuncialis;40521;actual measurement;one-seeded generative dispersule;12.35;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];12.35;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Aegopodium podagraria;2007;actual measurement;one-seeded generative dispersule;2.734;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.734;;;100;;Air dried weight;;2a Aegopodium podagraria;2007;actual measurement;one-seeded generative dispersule;2.213;;-4;;BIOLFLOR database;2.213;2.73;1.68;;;Air dried weight;;2a Aegopodium podagraria;2007;actual measurement;germinule;2.734;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.734;;;100;;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement;germinule;2.213;;-4;;BIOLFLOR database;2.213;2.73;1.68;;;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.36;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.66;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.64;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.36;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.36;10;-2;1.36;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.4;1.66;1.09;;preaggregated value obtained from single record;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.09;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aegopodium podagraria;2007;actual measurement (following LEDA data standards);germinule;1.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.25;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Aesculus hippocastanum;24982;actual measurement;germinule;10611.95;;-4;;BIOLFLOR database;10611.95;13028;8144.5;;;Air dried weight;;3 Aesculus hippocastanum;24982;actual measurement;germinule;6729;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6729;;;30;;Air dried weight;;3 Aesculus hippocastanum;24982;actual measurement;germinule;5785;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5785;;;12;;Air dried weight;;3 Aesculus hippocastanum;24982;actual measurement;one-seeded generative dispersule;10611.95;;-4;;BIOLFLOR database;10611.95;13028;8144.5;;;Air dried weight;;2a Aesculus hippocastanum;24982;actual measurement;one-seeded generative dispersule;6729;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6729;;;30;;Air dried weight;;2a Aesculus hippocastanum;24982;actual measurement;one-seeded generative dispersule;5785;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5785;;;12;;Air dried weight;;2a Aethionema saxatile;14330;actual measurement;one-seeded generative dispersule;.525;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.525;.54;.51;100;;Air dried weight;;2a Aethusa cynapium;1502;actual measurement;germinule;1.626;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.626;;;50;;Air dried weight;;3 Aethusa cynapium;1502;actual measurement;one-seeded generative dispersule;1.1;;-4;;BIOLFLOR database;1.1;1.265;.828;;;Air dried weight;;2a Aethusa cynapium;1502;actual measurement;germinule;1.065;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.065;;;20;;Air dried weight;;3 Aethusa cynapium;1502;actual measurement;germinule;1.1;;-4;;BIOLFLOR database;1.1;1.265;.828;;;Air dried weight;;3 Aethusa cynapium;1502;actual measurement;one-seeded generative dispersule;1.626;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.626;;;50;;Air dried weight;;2a Aethusa cynapium;1502;actual measurement;one-seeded generative dispersule;1.065;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.065;;;20;;Air dried weight;;2a Aethusa cynapium;1502;other;one-seeded generative dispersule;2.0036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Aethusa cynapium;1502;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.68;;;50;used balance: Mettler H51, fruit;Air dried weight;;2a Aethusa cynapium;1502;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.68;1;-2;2.68;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.68;2.68;2.68;;preaggregated value obtained from single record;Air dried weight;;2a Aethusa cynapium;1502;other;germinule;2.0036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrimonia eupatoria;29512;other;germinule;21.0788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);21.0788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrimonia eupatoria;29512;other;one-seeded generative dispersule;21.0788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);21.0788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Agrimonia eupatoria;29512;actual measurement;generative dispersule;4.23;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.23;;;1;n an replicates unknown;Air dried weight;;2 Agrimonia eupatoria;29512;actual measurement;germinule;4.62;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.62;;;10;;Air dried weight;;3 Agrimonia eupatoria;29512;actual measurement;germinule;23.078;;-4;;BIOLFLOR database;23.078;23.78;22.73;;;Air dried weight;;3 Agrimonia eupatoria;29512;actual measurement;germinule;3.61;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.61;;;1;summers of 1995 and 1996;Unknown;;3 Agrimonia eupatoria;29512;actual measurement;one-seeded generative dispersule;4.62;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.62;;;10;;Air dried weight;;2a Agrimonia eupatoria;29512;actual measurement;one-seeded generative dispersule;23.078;;-4;;BIOLFLOR database;23.078;23.78;22.73;;;Air dried weight;;2a Agrimonia eupatoria;29512;actual measurement;one-seeded generative dispersule;22.2084;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;22.2084;23.793;20.896;100;;Air dried weight;;2a Agrimonia procera;29916;actual measurement;germinule;40;;-4;;BIOLFLOR database;40;;;;;Air dried weight;;3 Agrimonia procera;29916;actual measurement;germinule;7.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.05;;;25;;Air dried weight;;3 Agrimonia procera;29916;actual measurement;one-seeded generative dispersule;7.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.05;;;25;;Air dried weight;;2a Agrimonia procera;29916;actual measurement;one-seeded generative dispersule;40;;-4;;BIOLFLOR database;40;;;;;Air dried weight;;2a Agrimonia procera;29916;actual measurement (following LEDA data standards);one-seeded generative dispersule;12.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.53;;;30;used balance: Mettler H51, disp. unit;Air dried weight;;2a Agrimonia procera;29916;actual measurement (following LEDA data standards);one-seeded generative dispersule;12.53;1;-2;12.53;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.53;12.53;12.53;;preaggregated value obtained from single record;Air dried weight;;2a Agrostemma githago;16318;actual measurement (following LEDA data standards);one-seeded generative dispersule;16.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.58;;;50;used balance: Mettler H51, seed;Air dried weight;;2a Agrostemma githago;16318;other;germinule;15.7104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.7104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostemma githago;16318;actual measurement (following LEDA data standards);one-seeded generative dispersule;16.58;1;-2;16.58;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.58;16.58;16.58;;preaggregated value obtained from single record;Air dried weight;;2a Agrostemma githago;16318;other;germinule;13.4928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.4928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostemma githago;16318;other;germinule;12.2968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.2968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostemma githago;16318;other;germinule;13.4408;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.4408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostemma githago;16318;other;germinule;15.4672;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.4672;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Agrostemma githago;16318;actual measurement;one-seeded generative dispersule;11.671;;-4;;BIOLFLOR database;11.671;26;8;;;Air dried weight;;2a Agrostemma githago;16318;actual measurement;one-seeded generative dispersule;17.78;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17.78;;;50;;Air dried weight;;2a Agrostemma githago;16318;other;one-seeded generative dispersule;13.4408;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.4408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Agrostemma githago;16318;other;one-seeded generative dispersule;13.4928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.4928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Agrostemma githago;16318;other;one-seeded generative dispersule;15.7104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.7104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Agrostemma githago;16318;other;one-seeded generative dispersule;12.2968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.2968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Agrostemma githago;16318;other;one-seeded generative dispersule;15.4672;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.4672;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;2a Agrostemma githago;16318;actual measurement;germinule;11.671;;-4;;BIOLFLOR database;11.671;26;8;;;Air dried weight;;3 Agrostemma githago;16318;actual measurement;germinule;17.78;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17.78;;;50;;Air dried weight;;3 Agrostis canina;40532;actual measurement;germinule;.05;;-4;;BIOLFLOR database;.05;;;;;Air dried weight;;3 Agrostis canina;40532;actual measurement;one-seeded generative dispersule;.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.05;;;50;;Air dried weight;;2a Agrostis canina;40532;actual measurement;germinule;.06;;-4;;BIOLFLOR database;.06;;;;;Air dried weight;;3 Agrostis canina;40532;actual measurement;germinule;.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.05;;;50;;Air dried weight;;3 Agrostis canina;40532;other;one-seeded generative dispersule;.0592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Agrostis canina;40532;actual measurement;one-seeded generative dispersule;.06;;-4;;BIOLFLOR database;.06;;;;;Air dried weight;;2a Agrostis canina;40532;other;germinule;.0592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostis capillaris;41392;actual measurement;one-seeded generative dispersule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;2a Agrostis capillaris;41392;actual measurement;one-seeded generative dispersule;.074;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.074;;;50;;Air dried weight;;2a Agrostis capillaris;41392;unknown;generative dispersule;.06;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.06;;;0;;Air dried weight;Grime, J. P.(1988): Comparative Plant Ecology: A functional approach to common British species;2 Agrostis capillaris;41392;actual measurement;generative dispersule;.049;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.049;.054;.04;50;;Air dried weight;;2 Agrostis capillaris;41392;actual measurement;germinule;.059;;-4;;BIOLFLOR database;.059;.07;.04;;;Air dried weight;;3 Agrostis capillaris;41392;actual measurement;germinule;.074;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.074;;;50;;Air dried weight;;3 Agrostis capillaris;41392;actual measurement;germinule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;3 Agrostis capillaris;41392;actual measurement;germinule;.063;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.063;;;100;;Air dried weight;;3 Agrostis capillaris;41392;actual measurement;one-seeded generative dispersule;.063;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.063;;;100;;Air dried weight;;2a Agrostis capillaris;41392;actual measurement;one-seeded generative dispersule;.059;;-4;;BIOLFLOR database;.059;.07;.04;;;Air dried weight;;2a Agrostis gigantea;40852;actual measurement;one-seeded generative dispersule;.071;;-4;;BIOLFLOR database;.071;.09;.05;;;Air dried weight;;2a Agrostis gigantea;40852;actual measurement;one-seeded generative dispersule;.089;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.089;;;126;;Air dried weight;;2a Agrostis gigantea;40852;actual measurement;generative dispersule;.05;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.05;;;1;n and replicates unknown;Air dried weight;;2 Agrostis gigantea;40852;actual measurement;germinule;.089;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.089;;;126;;Air dried weight;;3 Agrostis gigantea;40852;actual measurement;germinule;.071;;-4;;BIOLFLOR database;.071;.09;.05;;;Air dried weight;;3 Agrostis gigantea;40852;other;one-seeded generative dispersule;.0948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Agrostis gigantea;40852;other;germinule;.0948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;19;No. of seeds per individual: 10-37;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;19;No. of seeds per individual: 10-37;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;19;No. of seeds per individual: 10-37;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;19;No. of seeds per individual: 10-37;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.15;1;-2;.15;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.15;.15;.15;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.11;8;-2;.11;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;.15;.08;;Preaggregated data obtained from single record. No. of seeds per individual: 10-37;;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.18;1;-2;.18;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;.18;.18;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;8;-2;.13;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;.17;.09;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10-37;;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;19;Weight including appendages. No. of seeds per individual: 10-37;Air dried weight;;2a Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;19;No. of seeds per individual: 10-37;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.15;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.15;;;10;No. of seeds per individual: 10;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.15;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.15;;;19;No. of seeds per individual: 10-37;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;19;No. of seeds per individual: 10-37;Air dried weight;;3 Agrostis mertensii;40856;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;19;No. of seeds per individual: 10-37;Air dried weight;;3 Agrostis mertensii;40856;actual measurement;generative dispersule;.14;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.14;.144;.136;100;with glumes;Air dried weight;;2 Agrostis pourretii;41401;actual measurement;germinule;.19;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.19;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Agrostis pourretii;41401;actual measurement;one-seeded generative dispersule;.03;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.03;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Agrostis rupestris;40377;actual measurement;germinule;.116;;-4;;BIOLFLOR database;.116;;;;;Air dried weight;;3 Agrostis rupestris;40377;actual measurement;one-seeded generative dispersule;.116;;-4;;BIOLFLOR database;.116;;;;;Air dried weight;;2a Agrostis stolonifera;40861;actual measurement;germinule;.022;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.022;;;100;;Air dried weight;;3 Agrostis stolonifera;40861;actual measurement;germinule;.076;;-4;;BIOLFLOR database;.076;.084;.05;;;Air dried weight;;3 Agrostis stolonifera;40861;actual measurement;germinule;.02;;-4;;BIOLFLOR database;.02;;;;;Air dried weight;;3 Agrostis stolonifera;40861;actual measurement;one-seeded generative dispersule;.022;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.022;;;100;;Air dried weight;;2a Agrostis stolonifera;40861;actual measurement;one-seeded generative dispersule;.076;;-4;;BIOLFLOR database;.076;.084;.05;;;Air dried weight;;2a Agrostis stolonifera;40861;actual measurement;one-seeded generative dispersule;.027;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.027;.029;.025;100;;Air dried weight;;2a Agrostis stolonifera;40861;other;one-seeded generative dispersule;.0696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Agrostis stolonifera;40861;other;germinule;.0696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostis vinealis;41896;other;germinule;.0776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostis vinealis;41896;other;germinule;.0436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0436;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Agrostis vinealis;41896;actual measurement;one-seeded generative dispersule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;2a Agrostis vinealis;41896;actual measurement;germinule;.06;;-4;;BIOLFLOR database;.06;;;;;Air dried weight;;3 Agrostis vinealis;41896;actual measurement;generative dispersule;.073333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.073333333;.073333333;.073333333;1;;Air dried weight;;2 Ailanthus altissima;34523;actual measurement;germinule;33.58;;-4;;BIOLFLOR database;33.58;38.659;24.26;;;Air dried weight;;3 Ailanthus altissima;34523;actual measurement;one-seeded generative dispersule;33.58;;-4;;BIOLFLOR database;33.58;38.659;24.26;;;Air dried weight;;2a Aira caryophyllea;40866;actual measurement;germinule;.075;;-4;;BIOLFLOR database;.075;.09;.058;;;Air dried weight;;3 Aira caryophyllea;40866;actual measurement;germinule;.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;30;collected between 1996-1999;Air dried weight;;3 Aira caryophyllea;40866;actual measurement;germinule;.082;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.082;;;50;;Air dried weight;;3 Aira caryophyllea;40866;actual measurement;germinule;.089;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.089;;;100;;Air dried weight;;3 Aira caryophyllea;40866;actual measurement;germinule;.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Aira caryophyllea;40866;actual measurement;germinule;.16;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Aira caryophyllea;40866;actual measurement;one-seeded generative dispersule;.075;;-4;;BIOLFLOR database;.075;.09;.058;;;Air dried weight;;2a Aira caryophyllea;40866;actual measurement;one-seeded generative dispersule;.082;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.082;;;50;;Air dried weight;;2a Aira caryophyllea;40866;actual measurement;one-seeded generative dispersule;.089;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.089;;;100;;Air dried weight;;2a Aira cupaniana;40537;actual measurement;germinule;.051515152;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.051515152;.051515152;.051515152;66;;Air dried weight;;3 Aira praecox;41629;actual measurement;germinule;.175;;-4;;BIOLFLOR database;.175;.18;.162;;;Air dried weight;;3 Aira praecox;41629;actual measurement;germinule;.174;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.174;;;100;;Air dried weight;;3 Aira praecox;41629;actual measurement;germinule;.176;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.176;;;100;;Air dried weight;;3 Aira praecox;41629;actual measurement;one-seeded generative dispersule;.176;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.176;;;100;;Air dried weight;;2a Aira praecox;41629;actual measurement;one-seeded generative dispersule;.174;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.174;;;100;;Air dried weight;;2a Aira praecox;41629;actual measurement;one-seeded generative dispersule;.175;;-4;;BIOLFLOR database;.175;.18;.162;;;Air dried weight;;2a Aira praecox;41629;other;one-seeded generative dispersule;.166;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.166;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Aira praecox;41629;other;one-seeded generative dispersule;.14;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.14;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Aira praecox;41629;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;;;100;used balance: Mettler H51, germ. unit;Air dried weight;;3 Aira praecox;41629;actual measurement (following LEDA data standards);germinule;.12;1;-2;.12;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;.12;.12;;preaggregated value obtained from single record;Air dried weight;;3 Aira praecox;41629;other;germinule;.14;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.14;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Aira praecox;41629;other;germinule;.166;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.166;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ajuga chamaepitys;24497;actual measurement;one-seeded generative dispersule;1.215;;-4;;BIOLFLOR database;1.215;;;;;Air dried weight;;2a Ajuga chamaepitys;24497;actual measurement;germinule;1.215;;-4;;BIOLFLOR database;1.215;;;;;Air dried weight;;3 Ajuga genevensis;24142;actual measurement;one-seeded generative dispersule;1.754;;-4;;BIOLFLOR database;1.754;1.98;1.6;;;Air dried weight;;2a Ajuga genevensis;24142;actual measurement;germinule;1.754;;-4;;BIOLFLOR database;1.754;1.98;1.6;;;Air dried weight;;3 Ajuga pyramidalis;24144;actual measurement;germinule;1.373;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.373;;;1;summers of 1995 and 1996;Unknown;;3 Ajuga pyramidalis;24144;other;germinule;1.7032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ajuga reptans;25159;other;germinule;1.43616;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.43616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ajuga reptans;25159;other;germinule;1.4696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ajuga reptans;25159;actual measurement;germinule;1.47;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.47;;;50;;Air dried weight;;3 Ajuga reptans;25159;actual measurement;one-seeded generative dispersule;1.47;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.47;;;50;;Air dried weight;;2a Ajuga reptans;25159;actual measurement;one-seeded generative dispersule;1.485;;-4;;BIOLFLOR database;1.485;1.5;1.47;;;Air dried weight;;2a Ajuga reptans;25159;actual measurement;germinule;1.485;;-4;;BIOLFLOR database;1.485;1.5;1.47;;;Air dried weight;;3 Ajuga reptans;25159;other;one-seeded generative dispersule;1.4696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ajuga reptans;25159;other;one-seeded generative dispersule;1.43616;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.43616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alcea rosea;25760;actual measurement;germinule;10.029;;-4;;BIOLFLOR database;10.029;;;;;Air dried weight;;3 Alcea rosea;25760;actual measurement;germinule;6.77;;-4;;BIOLFLOR database;6.77;;;;;Air dried weight;;3 Alcea rosea;25760;actual measurement;one-seeded generative dispersule;10.029;;-4;;BIOLFLOR database;10.029;;;;;Air dried weight;;2a Alchemilla acutiloba;29516;other;unknown;.3712;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Alchemilla alpina;29517;actual measurement (following LEDA data standards);germinule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;55;No. of seeds per individual: 35-83;Air dried weight;;3 Alchemilla alpina;29517;other;germinule;.4404;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4404;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alchemilla alpina;29517;actual measurement (following LEDA data standards);germinule;.28;5;-2;.28;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;.33;.22;;Preaggregated data obtained from single record. No. of seeds per individual: 35-83;;;3 Alchemilla alpina;29517;actual measurement (following LEDA data standards);germinule;.25;1;-2;.25;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;.25;.25;;Preaggregated data obtained from single record. No. of seeds per individual: 41;;;3 Alchemilla alpina;29517;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.22;;;55;No. of seeds per individual: 35-83;Air dried weight;;3 Alchemilla alpina;29517;actual measurement (following LEDA data standards);germinule;.28;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.28;;;55;No. of seeds per individual: 35-83;Air dried weight;;3 Alchemilla alpina;29517;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;;;55;No. of seeds per individual: 35-83;Air dried weight;;3 Alchemilla alpina;29517;actual measurement (following LEDA data standards);germinule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;41;No. of seeds per individual: 41;Air dried weight;;3 Alchemilla alpina;29517;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.33;;;55;No. of seeds per individual: 35-83;Air dried weight;;3 Alchemilla conjuncta;29802;actual measurement;germinule;.583;;-4;;BIOLFLOR database;.583;;;;;Air dried weight;;3 Alchemilla conjuncta;29802;actual measurement;generative dispersule;.84;;-4;;BIOLFLOR database;.84;;;;;Air dried weight;;2 Alchemilla decumbens;31279;actual measurement;germinule;.52;;-4;;BIOLFLOR database;.52;;;;;Air dried weight;;3 Alchemilla erythropoda;31280;actual measurement;generative dispersule;.46;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.46;;;1;n an replicates unknown;Air dried weight;;2 Alchemilla filicaulis;30404;actual measurement;generative dispersule;.851;;-4;;BIOLFLOR database;.851;.881;.82;;;Air dried weight;;2 Alchemilla filicaulis;30404;actual measurement;germinule;.541;;-4;;BIOLFLOR database;.541;;;;;Air dried weight;;3 Alchemilla filicaulis;30404;actual measurement;one-seeded generative dispersule;.463;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.463;;;100;;Air dried weight;;2a Alchemilla filicaulis;30404;other;germinule;.4432;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alchemilla flabellata;29812;actual measurement;generative dispersule;.879;;-4;;BIOLFLOR database;.879;;;;;Air dried weight;;2 Alchemilla flabellata;29812;actual measurement;germinule;.524;;-4;;BIOLFLOR database;.524;.528;.52;;;Air dried weight;;3 Alchemilla glabra;30979;actual measurement;generative dispersule;.4925;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4925;.515;.47;40;;Air dried weight;;2 Alchemilla glabra;30979;actual measurement;one-seeded generative dispersule;.477;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.477;;;50;;Air dried weight;;2a Alchemilla glabra;30979;actual measurement;one-seeded generative dispersule;.47;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.47;;;50;;Air dried weight;;2a Alchemilla glabra;30979;actual measurement (following LEDA data standards);germinule;.42;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.42;;;32;No. of seeds per individual: 16-49;Air dried weight;;3 Alchemilla glabra;30979;other;germinule;.6392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alchemilla glabra;30979;actual measurement (following LEDA data standards);germinule;.36;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;;;32;No. of seeds per individual: 16-49;Air dried weight;;3 Alchemilla glabra;30979;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.38;;;32;No. of seeds per individual: 16-49;Air dried weight;;3 Alchemilla glabra;30979;actual measurement (following LEDA data standards);germinule;.39;4;-2;.39;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;.42;.36;;Preaggregated data obtained from single record. No. of seeds per individual: 16-49;;;3 Alchemilla glabra;30979;actual measurement (following LEDA data standards);germinule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;32;No. of seeds per individual: 16-49;Air dried weight;;3 Alchemilla glaucescens;29479;other;germinule;.4436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4436;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alchemilla glaucescens;29479;actual measurement;generative dispersule;.62;;-4;;BIOLFLOR database;.62;.84;.4;;;Air dried weight;;2 Alchemilla glaucescens;29479;actual measurement;germinule;.487;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.487;;;1;summers of 1995 and 1996;Unknown;;3 Alchemilla gracilis;29481;other;unknown;.576;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Alchemilla hoppeana;29797;actual measurement;germinule;.581;;-4;;BIOLFLOR database;.581;.602;.568;;;Air dried weight;;3 Alchemilla mollis;30970;actual measurement;germinule;.199;;-4;;BIOLFLOR database;.199;;;;;Air dried weight;;3 Alchemilla monticola;29465;other;unknown;.5004;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5004;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Alchemilla pallens;29937;actual measurement;generative dispersule;.8;;-4;;BIOLFLOR database;.8;;;;;Air dried weight;;2 Alchemilla vulgaris;60849;actual measurement;germinule;.458;;-4;;BIOLFLOR database;.458;.55;.324;;;Air dried weight;;3 Alchemilla vulgaris;60849;actual measurement;germinule;.721;;-4;;BIOLFLOR database;.721;;;;;Air dried weight;;3 Alchemilla vulgaris;60849;actual measurement;one-seeded generative dispersule;.721;;-4;;BIOLFLOR database;.721;;;;;Air dried weight;;2a Alchemilla xanthochlora;30366;actual measurement;germinule;.36;;-4;;BIOLFLOR database;.36;;;;;Air dried weight;;3 Alchemilla xanthochlora;30366;actual measurement;one-seeded generative dispersule;.174;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.174;;;100;;Air dried weight;;2a Alchemilla xanthochlora;30366;other;germinule;.4476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alisma gramineum;35625;other;germinule;.37;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.37;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alisma gramineum;35625;actual measurement;one-seeded generative dispersule;.543;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.543;.543;.543;100;;Air dried weight;;2a Alisma lanceolatum;35630;actual measurement;one-seeded generative dispersule;.363;;-4;;BIOLFLOR database;.363;;;;;Air dried weight;;2a Alisma lanceolatum;35630;actual measurement;one-seeded generative dispersule;.3435;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3435;.358;.329;100;;Air dried weight;;2a Alisma lanceolatum;35630;actual measurement;germinule;.363;;-4;;BIOLFLOR database;.363;;;;;Air dried weight;;3 Alisma lanceolatum;35630;actual measurement;germinule;.309;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.309;;;100;;Air dried weight;;3 Alisma lanceolatum;35630;actual measurement;germinule;.408;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.408;;;50;;Air dried weight;;3 Alisma lanceolatum;35630;other;one-seeded generative dispersule;.4776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alisma lanceolatum;35630;actual measurement;one-seeded generative dispersule;.408;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.408;;;50;;Air dried weight;;2a Alisma lanceolatum;35630;actual measurement;one-seeded generative dispersule;.309;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.309;;;100;;Air dried weight;;2a Alisma lanceolatum;35630;other;germinule;.4776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alisma plantago-aquatica;35609;actual measurement (following LEDA data standards);germinule;.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Alisma plantago-aquatica;35609;other;germinule;.36;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.36;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alisma plantago-aquatica;35609;other;germinule;.486;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.486;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alisma plantago-aquatica;35609;other;germinule;.412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alisma plantago-aquatica;35609;actual measurement (following LEDA data standards);germinule;.41;1;-2;.41;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;.41;.41;;preaggregated value obtained from single record;Air dried weight;;3 Alisma plantago-aquatica;35609;actual measurement (following LEDA data standards);germinule;.42;1;-2;.42;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.42;.42;.42;;preaggregated value obtained from single record;Air dried weight;;3 Alisma plantago-aquatica;35609;actual measurement (following LEDA data standards);germinule;.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.42;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Alisma plantago-aquatica;35609;actual measurement;one-seeded generative dispersule;.301;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.301;;;50;;Air dried weight;;2a Alisma plantago-aquatica;35609;other;one-seeded generative dispersule;.486;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.486;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alisma plantago-aquatica;35609;other;one-seeded generative dispersule;.412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alisma plantago-aquatica;35609;other;one-seeded generative dispersule;.36;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.36;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alisma plantago-aquatica;35609;actual measurement;germinule;.405;;-4;;BIOLFLOR database;.405;.423;.394;;;Air dried weight;;3 Alisma plantago-aquatica;35609;actual measurement;germinule;.267;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.267;;;100;;Air dried weight;;3 Alisma plantago-aquatica;35609;actual measurement;germinule;.301;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.301;;;50;;Air dried weight;;3 Alisma plantago-aquatica;35609;actual measurement;one-seeded generative dispersule;.405;;-4;;BIOLFLOR database;.405;.423;.394;;;Air dried weight;;2a Alisma plantago-aquatica;35609;actual measurement;one-seeded generative dispersule;.267;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.267;;;100;;Air dried weight;;2a Alliaria petiolata;13080;actual measurement;germinule;2.255;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.255;;;100;;Air dried weight;;3 Alliaria petiolata;13080;actual measurement;one-seeded generative dispersule;2.327;;-4;;BIOLFLOR database;2.327;3.451;1.9;;;Air dried weight;;2a Alliaria petiolata;13080;actual measurement;germinule;2.88;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.88;;;50;;Air dried weight;;3 Alliaria petiolata;13080;actual measurement;germinule;2.327;;-4;;BIOLFLOR database;2.327;3.451;1.9;;;Air dried weight;;3 Alliaria petiolata;13080;actual measurement;one-seeded generative dispersule;2.255;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.255;;;100;;Air dried weight;;2a Alliaria petiolata;13080;actual measurement;one-seeded generative dispersule;2.88;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.88;;;50;;Air dried weight;;2a Alliaria petiolata;13080;actual measurement (following LEDA data standards);germinule;1.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.93;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Alliaria petiolata;13080;actual measurement (following LEDA data standards);germinule;1.93;1;-2;1.93;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.93;1.93;1.93;;preaggregated value obtained from single record;Air dried weight;;3 Allium angulosum;38373;actual measurement;one-seeded generative dispersule;2.333;;-4;;BIOLFLOR database;2.333;;;;;Air dried weight;;2a Allium angulosum;38373;actual measurement;generative dispersule;1.676;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.676;1.684;1.668;25;;Air dried weight;;2 Allium angulosum;38373;actual measurement;germinule;2.333;;-4;;BIOLFLOR database;2.333;;;;;Air dried weight;;3 Allium ascalonicum;39345;actual measurement;generative dispersule;2.1;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.1;2.6;1.7;1;;Air dried weight;;2 Allium atroviolaceum;38888;actual measurement;generative dispersule;.96;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.96;;;1;n an replicates unknown;Air dried weight;;2 Allium carinatum;39360;actual measurement;generative dispersule;.892222222;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.892222222;1.08;.756666667;20;;Air dried weight;;2 Allium carinatum;39360;actual measurement;germinule;1.695333333;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.695333333;;;45;;Air dried weight;;3 Allium cepa;38778;actual measurement;germinule;5;;-4;;BIOLFLOR database;5;5.8;4.2;;;Air dried weight;;3 Allium cepa;38778;actual measurement;germinule;5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;5.8;4.2;1;n and replicates unknown;Air dried weight;;3 Allium cepa;38778;actual measurement;one-seeded generative dispersule;5;;-4;;BIOLFLOR database;5;5.8;4.2;;;Air dried weight;;2a Allium ericetorum;39382;actual measurement;germinule;1.57;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.57;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Allium fistulosum;39386;actual measurement;germinule;2.25;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2.4;2.1;1;n and replicates unknown;Air dried weight;;3 Allium fistulosum;39386;actual measurement;one-seeded generative dispersule;2.25;;-4;;BIOLFLOR database;2.25;2.4;2.1;;;Air dried weight;;2a Allium fistulosum;39386;actual measurement;germinule;2.25;;-4;;BIOLFLOR database;2.25;2.4;2.1;;;Air dried weight;;3 Allium flavum;39387;actual measurement;germinule;1.357;;-4;;BIOLFLOR database;1.357;;;;;Air dried weight;;3 Allium flavum;39387;actual measurement;one-seeded generative dispersule;1.357;;-4;;BIOLFLOR database;1.357;;;;;Air dried weight;;2a Allium oleraceum;38816;actual measurement;vegetative dispersule;22.47916667;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;22.47916667;22.96833333;21.99;60;;Fresh weight;;1 Allium oleraceum;38816;actual measurement;generative dispersule;1.492;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.492;1.492;1.492;100;;Air dried weight;;2 Allium oleraceum;38816;actual measurement;vegetative dispersule;17.1875;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;17.1875;17.667;16.708;100;;Fresh weight;;1 Allium oleraceum;38816;actual measurement;generative dispersule;4.32;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.32;5.3;3;1;;Air dried weight;;2 Allium paradoxum;38827;actual measurement;one-seeded generative dispersule;127.89;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;127.89;;;100;;Air dried weight;;2a Allium porrum;39316;actual measurement;one-seeded generative dispersule;3;;-4;;BIOLFLOR database;3;3.7;2.3;;;Air dried weight;;2a Allium porrum;39316;actual measurement;germinule;3;;-4;;BIOLFLOR database;3;3.7;2.3;;;Air dried weight;;3 Allium porrum;39316;actual measurement;germinule;3;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;3.7;2.3;1;n and replicates unknown;Air dried weight;;3 Allium schoenoprasum;39221;actual measurement;germinule;.7;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.8;.6;1;n and replicates unknown;Air dried weight;;3 Allium schoenoprasum;39221;actual measurement;germinule;.93;;-4;;BIOLFLOR database;.93;1.12;.6;;;Air dried weight;;3 Allium schoenoprasum;39221;actual measurement;germinule;1.18;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.18;1.189;1.171;100;;Air dried weight;;3 Allium schoenoprasum;39221;other;one-seeded generative dispersule;.854;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.854;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium schoenoprasum;39221;other;one-seeded generative dispersule;.9196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium schoenoprasum;39221;actual measurement;one-seeded generative dispersule;.93;;-4;;BIOLFLOR database;.93;1.12;.6;;;Air dried weight;;2a Allium schoenoprasum;39221;other;germinule;.854;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.854;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium schoenoprasum;39221;other;germinule;.9196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium scorodoprasum;39339;other;germinule;1.4952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium scorodoprasum;39339;actual measurement;generative dispersule;1.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.17;;;1;n an replicates unknown;Air dried weight;;2 Allium scorodoprasum;39339;actual measurement;one-seeded generative dispersule;126.846;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;126.846;;;100;;Air dried weight;;2a Allium scorodoprasum s. rotundum;38736;actual measurement;germinule;1.395;;-4;;BIOLFLOR database;1.395;1.454;1.331;;;Air dried weight;;3 Allium scorodoprasum s. rotundum;38736;actual measurement;generative dispersule;1.62;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.62;2.4;1.1;1;;Air dried weight;;2 Allium scorodoprasum s. rotundum;38736;actual measurement;one-seeded generative dispersule;1.395;;-4;;BIOLFLOR database;1.395;1.454;1.331;;;Air dried weight;;2a Allium senescens;39230;actual measurement;generative dispersule;1.68;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.68;1.9;1.5;1;;Air dried weight;;2 Allium senescens s. montanum;38329;actual measurement;germinule;2.147;;-4;;BIOLFLOR database;2.147;3.202;1.17;;;Air dried weight;;3 Allium senescens s. montanum;38329;actual measurement;one-seeded generative dispersule;2.147;;-4;;BIOLFLOR database;2.147;3.202;1.17;;;Air dried weight;;2a Allium sphaerocephalon;39232;actual measurement;germinule;1.61;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.61;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Allium sphaerocephalon;39232;actual measurement;one-seeded generative dispersule;1.637;;-4;;BIOLFLOR database;1.637;1.96;1.45;;;Air dried weight;;2a Allium sphaerocephalon;39232;actual measurement;germinule;1.637;;-4;;BIOLFLOR database;1.637;1.96;1.45;;;Air dried weight;;3 Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.1984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;actual measurement;generative dispersule;1.5;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.5;1.6;1.4;1;;Air dried weight;;2 Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.5276;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5276;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.6224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.3492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.3588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.2608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.48;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.48;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.3752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.5168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;one-seeded generative dispersule;1.6708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium sphaerocephalon;39232;other;germinule;1.6708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.1984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.2608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.3492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.3588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.6224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.5276;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5276;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.5168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.3752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium sphaerocephalon;39232;other;germinule;1.48;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.48;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium suaveolens;38745;actual measurement;germinule;1.674;;-4;;BIOLFLOR database;1.674;1.8;1.65;;;Air dried weight;;3 Allium suaveolens;38745;actual measurement;one-seeded generative dispersule;1.674;;-4;;BIOLFLOR database;1.674;1.8;1.65;;;Air dried weight;;2a Allium ursinum;39243;actual measurement;germinule;6.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.16;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Allium ursinum;39243;actual measurement;germinule;3.38;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.38;;;100;;Air dried weight;;3 Allium ursinum;39243;actual measurement;germinule;5.165;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.165;;;138;;Air dried weight;;3 Allium ursinum;39243;actual measurement;germinule;7.32;;-4;;BIOLFLOR database;7.32;;;;;Air dried weight;;3 Allium ursinum;39243;other;one-seeded generative dispersule;5.976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium ursinum;39243;other;one-seeded generative dispersule;4.7504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.7504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Allium ursinum;39243;actual measurement;one-seeded generative dispersule;5.165;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.165;;;138;;Air dried weight;;2a Allium ursinum;39243;actual measurement;one-seeded generative dispersule;7.32;;-4;;BIOLFLOR database;7.32;;;;;Air dried weight;;2a Allium ursinum;39243;actual measurement;one-seeded generative dispersule;3.38;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.38;;;100;;Air dried weight;;2a Allium ursinum;39243;other;germinule;4.7504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.7504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium ursinum;39243;other;germinule;5.976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Allium victorialis;38350;actual measurement;germinule;7.389142857;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.389142857;;;70;;Air dried weight;;3 Allium vineale;39246;actual measurement;one-seeded generative dispersule;7.504;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.504;;;100;;Air dried weight;;2a Alnus cordata;11692;actual measurement;generative dispersule;2.67;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.67;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Alnus glutinosa;11694;actual measurement;germinule;1.304;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.304;;;50;;Air dried weight;;3 Alnus glutinosa;11694;actual measurement;germinule;.847;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.847;;;50;;Air dried weight;;3 Alnus glutinosa;11694;actual measurement;germinule;1.191;;-4;;BIOLFLOR database;1.191;1.3;1.1;;;Air dried weight;;3 Alnus glutinosa;11694;actual measurement;one-seeded generative dispersule;1.304;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.304;;;50;;Air dried weight;;2a Alnus glutinosa;11694;actual measurement;one-seeded generative dispersule;.847;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.847;;;50;;Air dried weight;;2a Alnus glutinosa;11694;actual measurement;one-seeded generative dispersule;1.191;;-4;;BIOLFLOR database;1.191;1.3;1.1;;;Air dried weight;;2a Alnus glutinosa;11694;other;one-seeded generative dispersule;5.9024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.9024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alnus glutinosa;11694;other;germinule;5.9024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.9024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alnus incana;11695;actual measurement;one-seeded generative dispersule;.55;;-4;;BIOLFLOR database;.55;;;;;Air dried weight;;2a Alnus incana;11695;actual measurement;germinule;.55;;-4;;BIOLFLOR database;.55;;;;;Air dried weight;;3 Alnus viridis;11702;actual measurement;germinule;.7;;-4;;BIOLFLOR database;.7;;;;;Air dried weight;;3 Alnus viridis;11702;actual measurement;one-seeded generative dispersule;.7;;-4;;BIOLFLOR database;.7;;;;;Air dried weight;;2a Alopecurus aequalis;40867;actual measurement;one-seeded generative dispersule;.1585;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1585;.163;.154;100;;Air dried weight;;2a Alopecurus aequalis;40867;actual measurement;one-seeded generative dispersule;.19;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.19;;;100;;Air dried weight;;2a Alopecurus arundinaceus;40542;actual measurement;germinule;.428;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.428;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Alopecurus arundinaceus;40542;actual measurement;germinule;.42818;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.42818;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Alopecurus bulbosus;42103;other;unknown;.4584;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Alopecurus geniculatus;41635;other;germinule;.3548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alopecurus geniculatus;41635;actual measurement;germinule;.367;;-4;;BIOLFLOR database;.367;.4;.321;;;Air dried weight;;3 Alopecurus geniculatus;41635;actual measurement;germinule;.376;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.376;;;50;;Air dried weight;;3 Alopecurus geniculatus;41635;actual measurement;one-seeded generative dispersule;.367;;-4;;BIOLFLOR database;.367;.4;.321;;;Air dried weight;;2a Alopecurus geniculatus;41635;actual measurement;one-seeded generative dispersule;.376;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.376;;;50;;Air dried weight;;2a Alopecurus geniculatus;41635;other;one-seeded generative dispersule;.3548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alopecurus geniculatus;41635;actual measurement;generative dispersule;.191;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.191;.202;.181;1;;Air dried weight;;2 Alopecurus myosuroides;41138;other;one-seeded generative dispersule;1.9948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alopecurus myosuroides;41138;actual measurement;one-seeded generative dispersule;1.99;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.99;;;100;;Air dried weight;;2a Alopecurus myosuroides;41138;actual measurement;one-seeded generative dispersule;2.33;;-4;;BIOLFLOR database;2.33;2.76;2;;;Air dried weight;;2a Alopecurus myosuroides;41138;actual measurement;germinule;1.99;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.99;;;100;;Air dried weight;;3 Alopecurus myosuroides;41138;actual measurement;germinule;2.33;;-4;;BIOLFLOR database;2.33;2.76;2;;;Air dried weight;;3 Alopecurus myosuroides;41138;actual measurement;generative dispersule;2.423733333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.423733333;2.487333333;2.38;150;;Air dried weight;;2 Alopecurus myosuroides;41138;other;germinule;1.9948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alopecurus pratensis;40391;other;germinule;.648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alopecurus pratensis;40391;actual measurement;generative dispersule;.7;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.7;;;1;n and replicates unknown;Air dried weight;;2 Alopecurus pratensis;40391;actual measurement;germinule;.753;;-4;;BIOLFLOR database;.753;1;.7;;;Air dried weight;;3 Alopecurus pratensis;40391;actual measurement;one-seeded generative dispersule;.753;;-4;;BIOLFLOR database;.753;1;.7;;;Air dried weight;;2a Alopecurus pratensis;40391;other;one-seeded generative dispersule;.648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alopecurus pratensis;40391;actual measurement;generative dispersule;.446;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.446;.463;.429;100;;Air dried weight;;2 Althaea hirsuta;25778;actual measurement;generative dispersule;3;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3;3.4;2.5;1;;Air dried weight;;2 Althaea hirsuta;25778;actual measurement;generative dispersule;3.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.08;;;1;n an replicates unknown;Air dried weight;;2 Althaea hirsuta;25778;other;germinule;2.4328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Althaea hirsuta;25778;other;germinule;2.3504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Althaea hirsuta;25778;other;germinule;2.2872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Althaea hirsuta;25778;other;germinule;2.2564;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2564;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Althaea hirsuta;25778;other;germinule;1.7528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Althaea officinalis;25782;actual measurement;germinule;7.4;;-4;;BIOLFLOR database;7.4;7.7;7.1;;;Air dried weight;;3 Althaea officinalis;25782;actual measurement;one-seeded generative dispersule;7.4;;-4;;BIOLFLOR database;7.4;7.7;7.1;;;Air dried weight;;2a Althaea officinalis;25782;actual measurement;one-seeded generative dispersule;2.141;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.141;2.149;2.133;100;;Air dried weight;;2a Alyssum alyssoides;13424;actual measurement;germinule;.415;;-4;;BIOLFLOR database;.415;.43;.4;;;Air dried weight;;3 Alyssum alyssoides;13424;other;one-seeded generative dispersule;.56;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.56;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alyssum alyssoides;13424;actual measurement;generative dispersule;.75;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.75;;;1;n an replicates unknown;Air dried weight;;2 Alyssum alyssoides;13424;other;one-seeded generative dispersule;.63;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.63;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Alyssum alyssoides;13424;actual measurement;one-seeded generative dispersule;.415;;-4;;BIOLFLOR database;.415;.43;.4;;;Air dried weight;;2a Alyssum alyssoides;13424;other;germinule;.56;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.56;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alyssum alyssoides;13424;other;germinule;.63;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.63;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Alyssum desertorum;13860;actual measurement;generative dispersule;.46;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.46;;;1;n an replicates unknown;Air dried weight;;2 Alyssum linifolium;12637;actual measurement;generative dispersule;.73;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.73;;;1;n an replicates unknown;Air dried weight;;2 Alyssum montanum;14366;actual measurement;germinule;.6;;-4;;BIOLFLOR database;.6;;;;;Air dried weight;;3 Alyssum montanum;14366;actual measurement;one-seeded generative dispersule;.6;;-4;;BIOLFLOR database;.6;;;;;Air dried weight;;2a Amaranthus albus;891;actual measurement;one-seeded generative dispersule;.263;;-4;;BIOLFLOR database;.263;.269;.26;;;Air dried weight;;2a Amaranthus albus;891;actual measurement;germinule;.263;;-4;;BIOLFLOR database;.263;.269;.26;;;Air dried weight;;3 Amaranthus albus;891;other;one-seeded generative dispersule;.428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Amaranthus albus;891;other;one-seeded generative dispersule;.3512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Amaranthus albus;891;other;germinule;.428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Amaranthus albus;891;other;germinule;.3512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Amaranthus blitoides;892;other;germinule;1.0628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Amaranthus blitoides;892;other;one-seeded generative dispersule;1.0628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Amaranthus blitoides;892;actual measurement;one-seeded generative dispersule;1.219;;-4;;BIOLFLOR database;1.219;;;;;Air dried weight;;2a Amaranthus blitoides;892;actual measurement;germinule;1.219;;-4;;BIOLFLOR database;1.219;;;;;Air dried weight;;3 Amaranthus caudatus;894;actual measurement;one-seeded generative dispersule;.669;;-4;;BIOLFLOR database;.669;.684;.657;;;Air dried weight;;2a Amaranthus caudatus;894;actual measurement;germinule;.669;;-4;;BIOLFLOR database;.669;.684;.657;;;Air dried weight;;3 Amaranthus graecizans;901;actual measurement;germinule;.764;;-4;;BIOLFLOR database;.764;.796;.745;;;Air dried weight;;3 Amaranthus graecizans;901;actual measurement;one-seeded generative dispersule;.764;;-4;;BIOLFLOR database;.764;.796;.745;;;Air dried weight;;2a Amaranthus hybridus;897;other;unknown;.5532;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Amaranthus hybridus;897;other;unknown;.5504;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Amaranthus lividus;924;other;germinule;.5588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Amaranthus lividus;924;actual measurement;germinule;.6648;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.6648;;;50;;Air dried weight;;3 Amaranthus retroflexus;931;actual measurement;germinule;.413;;-4;;BIOLFLOR database;.413;.505;.3;;;Air dried weight;;3 Amaranthus retroflexus;931;actual measurement;one-seeded generative dispersule;.413;;-4;;BIOLFLOR database;.413;.505;.3;;;Air dried weight;;2a Amaranthus retroflexus;931;actual measurement;one-seeded generative dispersule;.562;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.562;.67;.404;100;;Air dried weight;;2a Ambrosia trifida;6319;actual measurement;one-seeded generative dispersule;17.124;;-4;;BIOLFLOR database;17.124;;;;;Air dried weight;;2a Ambrosia trifida;6319;actual measurement;germinule;17.124;;-4;;BIOLFLOR database;17.124;;;;;Air dried weight;;3 Amelanchier canadensis;30111;actual measurement;generative dispersule;108.11;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);108.11;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Amelanchier grandiflora;30928;actual measurement;one-seeded generative dispersule;3.89;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.89;;;25;;Air dried weight;;2a Amelanchier ovalis;29390;actual measurement;generative dispersule;388.2;;-4;;BIOLFLOR database;388.2;;;;;Fresh weight;;2 Amelanchier ovalis;29390;actual measurement;germinule;8.7;;-4;;BIOLFLOR database;8.7;;;;;Air dried weight;;3 Ammi majus;1508;actual measurement;germinule;.552;;-4;;BIOLFLOR database;.552;;;;;Air dried weight;;3 Ammi majus;1508;actual measurement;one-seeded generative dispersule;.552;;-4;;BIOLFLOR database;.552;;;;;Air dried weight;;2a Ammi majus;1508;actual measurement;one-seeded generative dispersule;.7415;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.7415;.742;.741;100;;Air dried weight;;2a Ammi visnaga;1509;other;unknown;.7432;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ammophila arenaria;40398;other;germinule;4.3416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.3416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ammophila arenaria;40398;actual measurement;one-seeded generative dispersule;2.8;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.8;;;10;;Air dried weight;;2a Amsinckia menziesii;12586;other;unknown;1.384;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Amsinckia menziesii;12586;other;unknown;1.1572;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Anagallis arvensis;28783;other;germinule;.4312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anagallis arvensis;28783;other;germinule;.5136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anagallis arvensis;28783;actual measurement;one-seeded generative dispersule;.379;;-4;;BIOLFLOR database;.379;.403;.315;;;Air dried weight;;2a Anagallis arvensis;28783;actual measurement;one-seeded generative dispersule;.404;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.404;;;50;;Air dried weight;;2a Anagallis arvensis;28783;other;one-seeded generative dispersule;.4312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anagallis arvensis;28783;other;one-seeded generative dispersule;.5136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anagallis arvensis;28783;actual measurement;germinule;.379;;-4;;BIOLFLOR database;.379;.403;.315;;;Air dried weight;;3 Anagallis arvensis;28783;actual measurement;germinule;.404;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.404;;;50;;Air dried weight;;3 Anagallis arvensis;28783;actual measurement;generative dispersule;.76;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.76;;;1;n an replicates unknown;Air dried weight;;2 Anagallis arvensis;28783;actual measurement;generative dispersule;.69;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.69;;;1;n and replicates unknown;Air dried weight;;2 Anagallis foemina;29031;actual measurement;germinule;.454;;-4;;BIOLFLOR database;.454;.47;.436;;;Air dried weight;;3 Anagallis foemina;29031;other;germinule;.4404;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4404;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anagallis foemina;29031;other;one-seeded generative dispersule;.4404;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4404;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anagallis foemina;29031;actual measurement;one-seeded generative dispersule;.454;;-4;;BIOLFLOR database;.454;.47;.436;;;Air dried weight;;2a Anagallis minima;28953;actual measurement;one-seeded generative dispersule;.034;;-4;;BIOLFLOR database;.034;;;;;Air dried weight;;2a Anagallis minima;28953;actual measurement;one-seeded generative dispersule;.0285;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0285;.029;.028;100;;Air dried weight;;2a Anagallis minima;28953;actual measurement;germinule;.034;;-4;;BIOLFLOR database;.034;;;;;Air dried weight;;3 Anagallis minima;28953;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Anagallis minima;28953;actual measurement (following LEDA data standards);germinule;.04;1;-2;.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;.04;.04;;preaggregated value obtained from single record;Air dried weight;;3 Anagallis tenella;28935;other;germinule;.1172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anagallis tenella;28935;other;germinule;.116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anagallis tenella;28935;other;germinule;.1228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anagallis tenella;28935;actual measurement;one-seeded generative dispersule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;2a Anagallis tenella;28935;actual measurement;one-seeded generative dispersule;.1095;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1095;.115;.104;100;;Air dried weight;;2a Anagallis tenella;28935;actual measurement;one-seeded generative dispersule;.105;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.105;;;20;;Air dried weight;;2a Anaphalis margaritacea;5740;actual measurement;generative dispersule;.02;;-4;;BIOLFLOR database;.02;;;;;Air dried weight;;2 Anchusa arvensis;12189;other;one-seeded generative dispersule;4.266;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.266;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anchusa arvensis;12189;actual measurement;one-seeded generative dispersule;3.078;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.078;;;40;;Air dried weight;;2a Anchusa arvensis;12189;actual measurement;one-seeded generative dispersule;6.245;;-4;;BIOLFLOR database;6.245;6.9;5.6;;;Air dried weight;;2a Anchusa arvensis;12189;actual measurement;germinule;6.245;;-4;;BIOLFLOR database;6.245;6.9;5.6;;;Air dried weight;;3 Anchusa arvensis;12189;actual measurement;germinule;3.078;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.078;;;40;;Air dried weight;;3 Anchusa arvensis;12189;other;germinule;4.266;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.266;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anchusa officinalis;12527;actual measurement;germinule;5;;-4;;BIOLFLOR database;5;;;;;Air dried weight;;3 Anchusa officinalis;12527;actual measurement;one-seeded generative dispersule;5;;-4;;BIOLFLOR database;5;;;;;Air dried weight;;2a Anchusa officinalis;12527;actual measurement;generative dispersule;7.4;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.4;8.6;6.5;1;;Air dried weight;;2 Andromeda polifolia;19573;actual measurement;one-seeded generative dispersule;.166;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.166;;;100;;Air dried weight;;2a Andromeda polifolia;19573;actual measurement;one-seeded generative dispersule;.124;;-4;;BIOLFLOR database;.124;;;;;Air dried weight;;2a Andromeda polifolia;19573;actual measurement;one-seeded generative dispersule;.29625;8;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.29625;1.39875;.134;80;;Air dried weight;;2a Andromeda polifolia;19573;actual measurement;germinule;.124;;-4;;BIOLFLOR database;.124;;;;;Air dried weight;;3 Andromeda polifolia;19573;actual measurement;germinule;.166;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.166;;;100;;Air dried weight;;3 Androsace maxima;28785;actual measurement;generative dispersule;.91;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.91;;;1;n an replicates unknown;Air dried weight;;2 Androsace maxima;28785;actual measurement;germinule;1.934;;-4;;BIOLFLOR database;1.934;2.081;1.833;;;Air dried weight;;3 Androsace maxima;28785;actual measurement;one-seeded generative dispersule;1.934;;-4;;BIOLFLOR database;1.934;2.081;1.833;;;Air dried weight;;2a Androsace obtusifolia;28845;actual measurement;germinule;.73;;-4;;BIOLFLOR database;.73;;;;;Air dried weight;;3 Androsace obtusifolia;28845;actual measurement;one-seeded generative dispersule;.73;;-4;;BIOLFLOR database;.73;;;;;Air dried weight;;2a Androsace septentrionalis;28905;actual measurement;generative dispersule;.216;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.216;.24;.18;1;;Air dried weight;;2 Androsace villosa;28998;actual measurement;generative dispersule;1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1;;;1;n an replicates unknown;Air dried weight;;2 Andryala integrifolia;4660;actual measurement;germinule;.185;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.185;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Andryala integrifolia;4660;actual measurement;germinule;.185;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.185;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Andryala integrifolia;4660;actual measurement;germinule;.19;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.19;;;30;collected between 1996-1999;Air dried weight;;3 Anemone narcissifolia;45374;actual measurement;germinule;8.714;;-4;;BIOLFLOR database;8.714;8.825;8.603;;;Air dried weight;;3 Anemone narcissifolia;45374;actual measurement;one-seeded generative dispersule;8.714;;-4;;BIOLFLOR database;8.714;8.825;8.603;;;Air dried weight;;2a Anemone narcissifolia;45374;actual measurement;one-seeded generative dispersule;7.453141762;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.453141762;7.982758621;6.846666667;30;;Air dried weight;;2a Anemone nemorosa;27355;actual measurement;one-seeded generative dispersule;1.611;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.611;;;50;;Air dried weight;;2a Anemone nemorosa;27355;actual measurement;one-seeded generative dispersule;2.1932;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.1932;2.284;2.050666667;150;;Air dried weight;;2a Anemone nemorosa;27355;actual measurement;one-seeded generative dispersule;2.55;;-4;;BIOLFLOR database;2.55;4;2;;;Air dried weight;;2a Anemone nemorosa;27355;other;germinule;1.7796;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anemone nemorosa;27355;other;one-seeded generative dispersule;1.7796;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anemone nemorosa;27355;actual measurement;germinule;2.55;;-4;;BIOLFLOR database;2.55;4;2;;;Air dried weight;;3 Anemone nemorosa;27355;actual measurement;one-seeded generative dispersule;.992;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.992;;;50;;Air dried weight;;2a Anemone nemorosa;27355;actual measurement;germinule;5;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5;;;1;summers of 1995 and 1996;Unknown;;3 Anemone nemorosa;27355;actual measurement;germinule;2.53;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.53;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Anemone nemorosa;27355;actual measurement;germinule;.992;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.992;;;50;;Air dried weight;;3 Anemone nemorosa;27355;actual measurement;germinule;1.611;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.611;;;50;;Air dried weight;;3 Anemone ranunculoides;27359;actual measurement;germinule;1.121;;-4;;BIOLFLOR database;1.121;1.169;1.059;;;Air dried weight;;3 Anemone ranunculoides;27359;actual measurement;one-seeded generative dispersule;1.121;;-4;;BIOLFLOR database;1.121;1.169;1.059;;;Air dried weight;;2a Anemone ranunculoides;27359;actual measurement;one-seeded generative dispersule;3.233;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.233;3.893;2.447;100;;Air dried weight;;2a Anemone ranunculoides;27359;actual measurement;one-seeded generative dispersule;1.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.5;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Anemone sylvestris;27363;actual measurement;one-seeded generative dispersule;.555;;-4;;BIOLFLOR database;.555;.6;.509;;;Air dried weight;;2a Anemone sylvestris;27363;actual measurement;germinule;.555;;-4;;BIOLFLOR database;.555;.6;.509;;;Air dried weight;;3 Anethum graveolens;1512;actual measurement;germinule;1.65;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2.1;1.2;1;n and replicates unknown;Air dried weight;;3 Anethum graveolens;1512;actual measurement;germinule;1.536;;-4;;BIOLFLOR database;1.536;2.1;1.2;;;Air dried weight;;3 Anethum graveolens;1512;actual measurement;one-seeded generative dispersule;1.536;;-4;;BIOLFLOR database;1.536;2.1;1.2;;;Air dried weight;;2a Angelica archangelica;1514;actual measurement;germinule;4;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;4;;;1;n and replicates unknown;Air dried weight;;3 Angelica archangelica;1514;actual measurement;one-seeded generative dispersule;4.3905;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.3905;4.708;3.694;50;;Air dried weight;;2a Angelica archangelica;1514;actual measurement;one-seeded generative dispersule;4;;-4;;BIOLFLOR database;4;;;;;Air dried weight;;2a Angelica archangelica;1514;actual measurement;germinule;4;;-4;;BIOLFLOR database;4;;;;;Air dried weight;;3 Angelica sylvestris;1519;actual measurement;germinule;1.475;;-4;;BIOLFLOR database;1.475;1.908;1.15;;;Air dried weight;;3 Angelica sylvestris;1519;actual measurement;germinule;.953;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.953;;;100;;Air dried weight;;3 Angelica sylvestris;1519;actual measurement;germinule;1.146;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.146;;;100;;Air dried weight;;3 Angelica sylvestris;1519;actual measurement;one-seeded generative dispersule;1.475;;-4;;BIOLFLOR database;1.475;1.908;1.15;;;Air dried weight;;2a Angelica sylvestris;1519;actual measurement;one-seeded generative dispersule;1.146;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.146;;;100;;Air dried weight;;2a Angelica sylvestris;1519;actual measurement;one-seeded generative dispersule;1.838;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.838;1.860666667;1.808;150;;Air dried weight;;2a Angelica sylvestris;1519;actual measurement;one-seeded generative dispersule;.953;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.953;;;100;;Air dried weight;;2a Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.69;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.69;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.06;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.25;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;2.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.86;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;2.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.29;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.16;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.08;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.26;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.36;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.21;10;-2;3.21;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.14;3.69;2.29;;preaggregated value obtained from single record;Air dried weight;;2b Angelica sylvestris;1519;actual measurement (following LEDA data standards);multi-seeded generative dispersule;3.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.38;;;10;used balance: Mettler H51, disp. unit 2-seeded;Air dried weight;;2b Antennaria carpatica;4017;actual measurement;one-seeded generative dispersule;.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Antennaria carpatica;4017;actual measurement;germinule;.078;;-4;;BIOLFLOR database;.078;;;;;Air dried weight;;3 Antennaria dioica;2770;actual measurement;germinule;.06;;-4;;BIOLFLOR database;.06;;;;;Air dried weight;;3 Antennaria dioica;2770;actual measurement;germinule;.047;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.047;;;1;summers of 1995 and 1996;Unknown;;3 Anthemis arvensis;3024;actual measurement;one-seeded generative dispersule;.5;;-4;;BIOLFLOR database;.5;;;;;Air dried weight;;2a Anthemis arvensis;3024;actual measurement;one-seeded generative dispersule;1.2;;-4;;BIOLFLOR database;1.2;;;;;Air dried weight;;2a Anthemis arvensis;3024;actual measurement;germinule;.5;;-4;;BIOLFLOR database;.5;;;;;Air dried weight;;3 Anthemis arvensis;3024;actual measurement;germinule;.848;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.848;;;50;;Air dried weight;;3 Anthemis arvensis;3024;actual measurement;germinule;.722;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.722;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Anthemis arvensis;3024;actual measurement;germinule;1.2;;-4;;BIOLFLOR database;1.2;;;;;Air dried weight;;3 Anthemis arvensis;3024;actual measurement;germinule;.72;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.72;;;30;collected between 1996-1999;Air dried weight;;3 Anthemis arvensis;3024;actual measurement;germinule;.72167;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.72167;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Anthemis arvensis;3024;actual measurement;one-seeded generative dispersule;.848;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.848;;;50;;Air dried weight;;2a Anthemis arvensis;3024;other;one-seeded generative dispersule;.6108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anthemis arvensis;3024;other;one-seeded generative dispersule;.6108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anthemis arvensis;3024;other;germinule;.6108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anthemis cotula;2778;other;germinule;.4516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anthemis cotula;2778;other;one-seeded generative dispersule;.4516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anthemis cotula;2778;actual measurement;one-seeded generative dispersule;.329;;-4;;BIOLFLOR database;.329;.388;.269;;;Air dried weight;;2a Anthemis cotula;2778;actual measurement;one-seeded generative dispersule;.582;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.582;;;100;;Air dried weight;;2a Anthemis cotula;2778;actual measurement;germinule;.329;;-4;;BIOLFLOR database;.329;.388;.269;;;Air dried weight;;3 Anthemis cotula;2778;actual measurement;germinule;.582;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.582;;;100;;Air dried weight;;3 Anthemis tinctoria;2787;actual measurement;germinule;.381;;-4;;BIOLFLOR database;.381;.4;.361;;;Air dried weight;;3 Anthemis tinctoria;2787;actual measurement;one-seeded generative dispersule;.381;;-4;;BIOLFLOR database;.381;.4;.361;;;Air dried weight;;2a Anthemis triumfetti;3209;actual measurement;generative dispersule;.26;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.26;;;1;n an replicates unknown;Air dried weight;;2 Anthericum liliago;38767;actual measurement;generative dispersule;5.3;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.3;5.3;5.3;1;;Air dried weight;;2 Anthericum liliago;38767;actual measurement;generative dispersule;6.335;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.335;6.439;6.231;1;;Air dried weight;;2 Anthericum liliago;38767;actual measurement;germinule;5.305;;-4;;BIOLFLOR database;5.305;5.31;5.3;;;Air dried weight;;3 Anthericum liliago;38767;actual measurement;one-seeded generative dispersule;5.305;;-4;;BIOLFLOR database;5.305;5.31;5.3;;;Air dried weight;;2a Anthericum ramosum;38246;actual measurement;germinule;2.51;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.51;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Anthericum ramosum;38246;actual measurement;one-seeded generative dispersule;5.111;;-4;;BIOLFLOR database;5.111;5.635;4.3;;;Air dried weight;;2a Anthericum ramosum;38246;actual measurement;germinule;5.111;;-4;;BIOLFLOR database;5.111;5.635;4.3;;;Air dried weight;;3 Anthoxanthum alpinum;41906;actual measurement;unknown;.51;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.51;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.57;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.57;;;8;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;8;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;8;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;;;8;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.38;;;6;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.34;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.34;;;6;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.34;3;-2;.34;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.33;.38;.28;;Preaggregated data obtained from single record. Weight;;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;7;-2;.39;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;.57;.27;;Preaggregated data obtained from single record. Weight;;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.28;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.28;;;6;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;8;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;8;Weight;Air dried weight;;2a Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;;;8;Weight;Air dried weight;;2a Anthoxanthum aristatum;40551;actual measurement;generative dispersule;.523;;-4;;BIOLFLOR database;.523;;;;;Air dried weight;;2 Anthoxanthum aristatum;40551;actual measurement;germinule;.22462;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.22462;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Anthoxanthum aristatum;40551;actual measurement;germinule;.225;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.225;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Anthoxanthum odoratum;41907;actual measurement;germinule;.884;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.884;;;100;;Air dried weight;;3 Anthoxanthum odoratum;41907;actual measurement;one-seeded generative dispersule;.515;;-4;;BIOLFLOR database;.515;.58;.45;;;Air dried weight;;2a Anthoxanthum odoratum;41907;actual measurement;one-seeded generative dispersule;.64;;-4;;BIOLFLOR database;.64;.7;.58;;;Air dried weight;;2a Anthoxanthum odoratum;41907;actual measurement;one-seeded generative dispersule;.7295;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.7295;.749;.71;100;;Air dried weight;;2a Anthoxanthum odoratum;41907;actual measurement;germinule;.293;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.293;;;1;summers of 1995 and 1996;Unknown;;3 Anthoxanthum odoratum;41907;actual measurement;generative dispersule;.615;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.615;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Anthoxanthum odoratum;41907;actual measurement;germinule;.515;;-4;;BIOLFLOR database;.515;.58;.45;;;Air dried weight;;3 Anthoxanthum odoratum;41907;actual measurement;one-seeded generative dispersule;.73;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.73;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Anthoxanthum odoratum;41907;actual measurement;one-seeded generative dispersule;.884;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.884;;;100;;Air dried weight;;2a Anthoxanthum odoratum;41907;actual measurement;generative dispersule;.482;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.482;.482;.482;1;;Air dried weight;;2 Anthriscus caucalis;1975;other;one-seeded generative dispersule;1.2104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anthriscus caucalis;1975;actual measurement;one-seeded generative dispersule;1.022;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.022;;;100;;Air dried weight;;2a Anthriscus caucalis;1975;actual measurement;germinule;1.295;;-4;;BIOLFLOR database;1.295;1.6;.94;;;Air dried weight;;3 Anthriscus caucalis;1975;actual measurement;germinule;1.022;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.022;;;100;;Air dried weight;;3 Anthriscus caucalis;1975;actual measurement;one-seeded generative dispersule;1.295;;-4;;BIOLFLOR database;1.295;1.6;.94;;;Air dried weight;;2a Anthriscus caucalis;1975;other;germinule;1.2104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anthriscus cerefolium;1526;actual measurement;germinule;2.248;;-4;;BIOLFLOR database;2.248;3.1;1.7;;;Air dried weight;;3 Anthriscus cerefolium;1526;actual measurement;generative dispersule;2.4;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;3.1;1.7;1;n and replicates unknown;Air dried weight;;2 Anthriscus cerefolium;1526;actual measurement;one-seeded generative dispersule;2.248;;-4;;BIOLFLOR database;2.248;3.1;1.7;;;Air dried weight;;2a Anthriscus nitida;1447;actual measurement;one-seeded generative dispersule;3.358;;-4;;BIOLFLOR database;3.358;3.453;3.299;;;Air dried weight;;2a Anthriscus nitida;1447;actual measurement;germinule;3.358;;-4;;BIOLFLOR database;3.358;3.453;3.299;;;Air dried weight;;3 Anthriscus sylvestris;1916;actual measurement;germinule;2.832;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.832;;;1;summers of 1995 and 1996;Unknown;;3 Anthriscus sylvestris;1916;actual measurement;one-seeded generative dispersule;3.945;;-4;;BIOLFLOR database;3.945;5.18;3.143;;;Air dried weight;;2a Anthriscus sylvestris;1916;actual measurement;germinule;5.175;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.175;;;100;;Air dried weight;;3 Anthriscus sylvestris;1916;actual measurement;germinule;3.945;;-4;;BIOLFLOR database;3.945;5.18;3.143;;;Air dried weight;;3 Anthriscus sylvestris;1916;actual measurement;one-seeded generative dispersule;5.175;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.175;;;100;;Air dried weight;;2a Anthriscus sylvestris;1916;other;one-seeded generative dispersule;3.8296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Anthriscus sylvestris;1916;actual measurement;generative dispersule;4.04;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.04;4.4;3.7;1;;Air dried weight;;2 Anthriscus sylvestris;1916;actual measurement (following LEDA data standards);germinule;5.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.09;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Anthriscus sylvestris;1916;actual measurement (following LEDA data standards);germinule;4.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.35;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Anthriscus sylvestris;1916;actual measurement (following LEDA data standards);germinule;5.09;1;-2;5.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.09;5.09;5.09;;preaggregated value obtained from single record;Air dried weight;;3 Anthriscus sylvestris;1916;actual measurement (following LEDA data standards);germinule;4.35;1;-2;4.35;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.35;4.35;4.35;;preaggregated value obtained from single record;Air dried weight;;3 Anthriscus sylvestris;1916;other;germinule;3.8296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anthyllis vulneraria;21660;other;germinule;3.2488;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anthyllis vulneraria;21660;other;germinule;4.0404;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.0404;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anthyllis vulneraria;21660;other;germinule;3.036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anthyllis vulneraria;21660;other;germinule;2.688;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.688;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Anthyllis vulneraria;21660;actual measurement;one-seeded generative dispersule;2.761;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.761;;;100;;Air dried weight;;2a Anthyllis vulneraria;21660;actual measurement;one-seeded generative dispersule;3.529;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.529;;;100;;Air dried weight;;2a Anthyllis vulneraria;21660;actual measurement;one-seeded generative dispersule;3.472;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.472;;;50;;Air dried weight;;2a Anthyllis vulneraria;21660;actual measurement;generative dispersule;4.8725;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.8725;4.92;4.825;20;;Air dried weight;;2 Anthyllis vulneraria;21660;actual measurement;germinule;2.426;;-4;;BIOLFLOR database;2.426;2.8;1.72;;;Air dried weight;;3 Anthyllis vulneraria;21660;actual measurement;germinule;3.697;7;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.697;3.752;3.619;100;;Air dried weight;;3 Anthyllis vulneraria;21660;actual measurement;one-seeded generative dispersule;1.96;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.96;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Anthyllis vulneraria;21660;actual measurement;germinule;3.31;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.31;;;1;summers of 1995 and 1996;Unknown;;3 Antirrhinum majus;33261;actual measurement;germinule;.114;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.114;;;100;;Air dried weight;;3 Antirrhinum majus;33261;actual measurement;one-seeded generative dispersule;.12;;-4;;BIOLFLOR database;.12;.13;.12;;;Air dried weight;;2a Antirrhinum majus;33261;actual measurement;germinule;.12;;-4;;BIOLFLOR database;.12;.13;.12;;;Air dried weight;;3 Antirrhinum majus;33261;actual measurement;one-seeded generative dispersule;.114;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.114;;;100;;Air dried weight;;2a Antirrhinum majus;33261;actual measurement;generative dispersule;.11;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.11;.13;.09;1;;Air dried weight;;2 Apera interrupta;41910;actual measurement;one-seeded generative dispersule;.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.15;;;50;;Air dried weight;;2a Apera spica-venti;40884;actual measurement;one-seeded generative dispersule;.119;;-4;;BIOLFLOR database;.119;.14;.1;;;Air dried weight;;2a Apera spica-venti;40884;other;one-seeded generative dispersule;.09;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.09;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Apera spica-venti;40884;actual measurement;generative dispersule;.052;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.052;.052;.052;100;;Air dried weight;;2 Apera spica-venti;40884;actual measurement;germinule;.191;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.191;;;50;;Air dried weight;;3 Apera spica-venti;40884;actual measurement;germinule;.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.15;;;50;;Air dried weight;;3 Apera spica-venti;40884;actual measurement;germinule;.119;;-4;;BIOLFLOR database;.119;.14;.1;;;Air dried weight;;3 Apera spica-venti;40884;actual measurement;one-seeded generative dispersule;.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.15;;;50;;Air dried weight;;2a Apera spica-venti;40884;actual measurement;one-seeded generative dispersule;.191;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.191;;;50;;Air dried weight;;2a Apera spica-venti;40884;other;germinule;.09;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.09;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Aphanes arvensis;29391;other;germinule;.3628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Aphanes arvensis;29391;actual measurement;germinule;.231;;-4;;BIOLFLOR database;.231;.262;.18;;;Air dried weight;;3 Aphanes arvensis;29391;actual measurement;one-seeded generative dispersule;.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.13;;;100;;Air dried weight;;2a Aphanes arvensis;29391;actual measurement;one-seeded generative dispersule;.225;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.225;;;155;;Air dried weight;;2a Aphanes arvensis;29391;actual measurement;one-seeded generative dispersule;.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.13;;;100;;Air dried weight;;2a Aphanes inexspectata;50026;actual measurement;germinule;.188;;-4;;BIOLFLOR database;.188;;;;;Air dried weight;;3 Aphanes inexspectata;50026;other;germinule;.2936;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Aphanes microcarpa;29977;actual measurement;germinule;.131;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.131;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Aphanes microcarpa;29977;actual measurement;germinule;.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13;;;30;collected between 1996-1999;Air dried weight;;3 Aphanes microcarpa;29977;actual measurement;germinule;.13077;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13077;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Aphanes microcarpa;29977;actual measurement;one-seeded generative dispersule;.134;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.134;;;50;;Air dried weight;;2a Apium graveolens;1456;actual measurement;germinule;.456;;-4;;BIOLFLOR database;.456;.6;.3;;;Air dried weight;;3 Apium graveolens;1456;actual measurement;germinule;.45;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.6;.3;1;n and replicates unknown;Air dried weight;;3 Apium graveolens;1456;actual measurement;one-seeded generative dispersule;.456;;-4;;BIOLFLOR database;.456;.6;.3;;;Air dried weight;;2a Apium graveolens;1456;actual measurement;one-seeded generative dispersule;.37;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.37;.372;.368;100;;Air dried weight;;2a Apium graveolens;1456;other;one-seeded generative dispersule;.6704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Apium graveolens;1456;other;one-seeded generative dispersule;.274;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.274;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Apium graveolens;1456;other;germinule;.6704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Apium graveolens;1456;other;germinule;.274;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.274;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Apium inundatum;1920;other;germinule;.4804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Apium inundatum;1920;actual measurement;one-seeded generative dispersule;.518;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.518;;;100;;Air dried weight;;2a Apium nodiflorum;1922;actual measurement;germinule;.53;;-4;;BIOLFLOR database;.53;;;;;Air dried weight;;3 Apium nodiflorum;1922;actual measurement;germinule;.262;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.262;;;50;;Air dried weight;;3 Apium nodiflorum;1922;other;one-seeded generative dispersule;.5136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Apium nodiflorum;1922;other;one-seeded generative dispersule;.3784;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3784;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Apium nodiflorum;1922;other;one-seeded generative dispersule;.666;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.666;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Apium nodiflorum;1922;other;one-seeded generative dispersule;.6476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Apium nodiflorum;1922;actual measurement;one-seeded generative dispersule;.53;;-4;;BIOLFLOR database;.53;;;;;Air dried weight;;2a Apium nodiflorum;1922;actual measurement;one-seeded generative dispersule;.262;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.262;;;50;;Air dried weight;;2a Apium nodiflorum;1922;other;germinule;.5136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Apium nodiflorum;1922;other;germinule;.6476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Apium nodiflorum;1922;other;germinule;.3784;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3784;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Apium nodiflorum;1922;other;germinule;.666;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.666;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Apium repens;1923;other;unknown;.2728;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Apium repens;1923;other;unknown;.2208;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Apium repens;1923;other;unknown;.2396;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Apium repens;1923;other;unknown;.1936;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Apium repens;1923;other;unknown;.3024;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Apium repens;1923;other;unknown;.208;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Apium repens;1923;other;unknown;.2088;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2088;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Aposeris foetida;3210;actual measurement;germinule;2.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.17;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Aquilegia atrata;27254;actual measurement;germinule;1.25;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.25;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Aquilegia atrata;27254;actual measurement;generative dispersule;1.7;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.7;1.9;1.6;1;;Air dried weight;;2 Aquilegia einseleana;27264;actual measurement;one-seeded generative dispersule;.825;;-4;;BIOLFLOR database;.825;.831;.82;;;Air dried weight;;2a Aquilegia einseleana;27264;actual measurement;germinule;.825;;-4;;BIOLFLOR database;.825;.831;.82;;;Air dried weight;;3 Aquilegia einseleana;27264;actual measurement;germinule;.947;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.947;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Aquilegia viscosa;27155;actual measurement;generative dispersule;3.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.08;;;1;n and replicates unknown;Air dried weight;;2 Aquilegia vulgaris;27156;actual measurement;germinule;1.614;;-4;;BIOLFLOR database;1.614;1.693;1.5;;;Air dried weight;;3 Aquilegia vulgaris;27156;actual measurement;germinule;.78;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.78;;;100;;Air dried weight;;3 Aquilegia vulgaris;27156;actual measurement;one-seeded generative dispersule;1.75;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.75;1.751;1.749;100;;Air dried weight;;2a Aquilegia vulgaris;27156;actual measurement;one-seeded generative dispersule;1.614;;-4;;BIOLFLOR database;1.614;1.693;1.5;;;Air dried weight;;2a Aquilegia vulgaris;27156;other;one-seeded generative dispersule;1.6828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Aquilegia vulgaris;27156;actual measurement;generative dispersule;1.95;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.95;;;1;n and replicates unknown;Air dried weight;;2 Aquilegia vulgaris;27156;other;one-seeded generative dispersule;1.7472;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7472;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Aquilegia vulgaris;27156;actual measurement;one-seeded generative dispersule;.78;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.78;;;100;;Air dried weight;;2a Aquilegia vulgaris;27156;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Aquilegia vulgaris;27156;actual measurement (following LEDA data standards);germinule;1.54;1;-2;1.54;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;1.54;1.54;;preaggregated value obtained from single record;Air dried weight;;3 Aquilegia vulgaris;27156;other;germinule;1.6828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Aquilegia vulgaris;27156;other;germinule;1.7472;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7472;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabidopsis thaliana;12652;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Arabidopsis thaliana;12652;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Arabidopsis thaliana;12652;other;germinule;.0196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabidopsis thaliana;12652;other;one-seeded generative dispersule;.0196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arabidopsis thaliana;12652;actual measurement;germinule;.028;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.028;;;1;summers of 1995 and 1996;Unknown;;3 Arabidopsis thaliana;12652;actual measurement;one-seeded generative dispersule;.021;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.021;;;100;;Air dried weight;;2a Arabidopsis thaliana;12652;actual measurement;one-seeded generative dispersule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;2a Arabidopsis thaliana;12652;actual measurement;one-seeded generative dispersule;.021;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.021;;;100;;Air dried weight;;2a Arabidopsis thaliana;12652;actual measurement;one-seeded generative dispersule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;2a Arabidopsis thaliana;12652;actual measurement;one-seeded generative dispersule;.023;;-4;;BIOLFLOR database;.023;.026;.02;;;Air dried weight;;2a Arabidopsis thaliana;12652;actual measurement;germinule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;3 Arabidopsis thaliana;12652;actual measurement;germinule;.021;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.021;;;100;;Air dried weight;;3 Arabidopsis thaliana;12652;actual measurement;germinule;.021;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.021;;;100;;Air dried weight;;3 Arabidopsis thaliana;12652;actual measurement;germinule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;3 Arabidopsis thaliana;12652;actual measurement;germinule;.023;;-4;;BIOLFLOR database;.023;.026;.02;;;Air dried weight;;3 Arabis alpina;13346;actual measurement;germinule;.163;;-4;;BIOLFLOR database;.163;.167;.159;;;Air dried weight;;3 Arabis alpina;13346;actual measurement;one-seeded generative dispersule;.163;;-4;;BIOLFLOR database;.163;.167;.159;;;Air dried weight;;2a Arabis alpina s. caucasica;45783;actual measurement;germinule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;3 Arabis alpina s. caucasica;45783;actual measurement;one-seeded generative dispersule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;2a Arabis caerulea;12655;actual measurement;one-seeded generative dispersule;.24;;-4;;BIOLFLOR database;.24;;;;;Air dried weight;;2a Arabis caerulea;12655;actual measurement;germinule;.24;;-4;;BIOLFLOR database;.24;;;;;Air dried weight;;3 Arabis ciliata;45777;actual measurement;germinule;.287;;-4;;BIOLFLOR database;.287;.288;.287;;;Air dried weight;;3 Arabis ciliata;45777;actual measurement;one-seeded generative dispersule;.287;;-4;;BIOLFLOR database;.287;.288;.287;;;Air dried weight;;2a Arabis glabra;13349;other;one-seeded generative dispersule;.0952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arabis glabra;13349;other;one-seeded generative dispersule;.0828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arabis glabra;13349;other;one-seeded generative dispersule;.122;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.122;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arabis glabra;13349;other;one-seeded generative dispersule;.0956;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arabis glabra;13349;actual measurement;one-seeded generative dispersule;.07;;-4;;BIOLFLOR database;.07;.082;.054;;;Air dried weight;;2a Arabis glabra;13349;actual measurement;generative dispersule;.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02;;;1;n an replicates unknown;Air dried weight;;2 Arabis glabra;13349;actual measurement;germinule;.07;;-4;;BIOLFLOR database;.07;.082;.054;;;Air dried weight;;3 Arabis glabra;13349;other;germinule;.0952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabis glabra;13349;other;germinule;.0956;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabis glabra;13349;other;germinule;.122;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.122;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabis glabra;13349;other;germinule;.0828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabis hirsuta;13002;other;germinule;.0876;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0876;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabis hirsuta;13002;other;germinule;.1428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabis hirsuta;13002;actual measurement;germinule;.098;;-4;;BIOLFLOR database;.098;.1;.09;;;Air dried weight;;3 Arabis hirsuta;13002;actual measurement;germinule;.108;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.108;;;50;;Air dried weight;;3 Arabis hirsuta;13002;actual measurement;germinule;.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Arabis hirsuta;13002;actual measurement;germinule;.087;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.087;;;50;;Air dried weight;;3 Arabis hirsuta;13002;actual measurement;germinule;.095;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.095;;;1;summers of 1995 and 1996;Unknown;;3 Arabis hirsuta;13002;actual measurement;one-seeded generative dispersule;.108;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.108;;;50;;Air dried weight;;2a Arabis hirsuta;13002;actual measurement;one-seeded generative dispersule;.087;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.087;;;50;;Air dried weight;;2a Arabis hirsuta;13002;actual measurement;one-seeded generative dispersule;.098;;-4;;BIOLFLOR database;.098;.1;.09;;;Air dried weight;;2a Arabis hirsuta;13002;actual measurement;one-seeded generative dispersule;.101;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.101;.104;.098;100;;Air dried weight;;2a Arabis hirsuta;13002;other;one-seeded generative dispersule;.0876;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0876;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arabis hirsuta;13002;other;one-seeded generative dispersule;.1428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arabis pumila;14272;actual measurement;one-seeded generative dispersule;.16;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.16;.163;.157;100;;Air dried weight;;2a Arabis recta;13355;actual measurement;one-seeded generative dispersule;.023;;-4;;BIOLFLOR database;.023;;;;;Air dried weight;;2a Arabis recta;13355;actual measurement;germinule;.023;;-4;;BIOLFLOR database;.023;;;;;Air dried weight;;3 Arabis sagittata;14273;actual measurement;generative dispersule;.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1;;;1;n an replicates unknown;Air dried weight;;2 Arabis stricta;13357;other;unknown;.3012;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Arabis stricta;13357;other;unknown;.242;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.242;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Arabis turrita;13010;other;germinule;.58724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.58724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arabis turrita;13010;other;one-seeded generative dispersule;.58724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.58724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arabis turrita;13010;actual measurement;germinule;.424;;-4;;BIOLFLOR database;.424;.5;.348;;;Air dried weight;;3 Arabis turrita;13010;actual measurement;germinule;.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.59;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Arabis turrita;13010;actual measurement;one-seeded generative dispersule;.424;;-4;;BIOLFLOR database;.424;.5;.348;;;Air dried weight;;2a Arbutus unedo;19577;actual measurement;germinule;2.53;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.53;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Arctium lappa;6084;actual measurement;germinule;11.8;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;13.4;10.2;1;n and replicates unknown;Air dried weight;;3 Arctium lappa;6084;actual measurement;germinule;12.133;;-4;;BIOLFLOR database;12.133;14.5;10.099;;;Air dried weight;;3 Arctium lappa;6084;actual measurement;germinule;14.3058;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;14.3058;14.959;13.857;100;;Air dried weight;;3 Arctium lappa;6084;actual measurement;one-seeded generative dispersule;14.564;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14.564;;;50;;Air dried weight;;2a Arctium lappa;6084;other;germinule;12.3136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.3136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.59;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.44;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.29;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;other;germinule;17.3748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);17.3748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arctium minus;4154;other;germinule;8.546;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);8.546;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.41;10;-2;13.41;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.29;13.59;12.68;;preaggregated value obtained from single record;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;7.88;1;-2;7.88;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7.88;7.88;7.88;;preaggregated value obtained from single record;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;7.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7.88;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.52;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.46;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;12.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.68;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.44;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;12.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.86;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement (following LEDA data standards);germinule;13.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.38;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Arctium minus;4154;actual measurement;one-seeded generative dispersule;15.91;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15.91;;;50;;Air dried weight;;2a Arctium minus;4154;actual measurement;one-seeded generative dispersule;12.672;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.672;;;50;;Air dried weight;;2a Arctium minus;4154;actual measurement;one-seeded generative dispersule;13.134;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.134;;;50;;Air dried weight;;2a Arctium minus;4154;actual measurement;generative dispersule;8.78;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;8.78;9.3;7.6;1;;Air dried weight;;2 Arctium minus;4154;actual measurement;germinule;7;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;7;;;1;n and replicates unknown;Air dried weight;;3 Arctium minus;4154;actual measurement;germinule;7.378;;-4;;BIOLFLOR database;7.378;7.755;7;;;Air dried weight;;3 Arctium nemorosum;3371;actual measurement;germinule;20;;-4;;BIOLFLOR database;20;;;;;Air dried weight;;3 Arctium nemorosum;3371;actual measurement;germinule;20;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;20;;;1;n and replicates unknown;Air dried weight;;3 Arctium nemorosum;3371;actual measurement;one-seeded generative dispersule;11.466;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11.466;;;100;;Air dried weight;;2a Arctium tomentosum;3664;actual measurement;germinule;12.315;;-4;;BIOLFLOR database;12.315;14.8;10;;;Air dried weight;;3 Arctium tomentosum;3664;actual measurement;germinule;14.8;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;14.8;;;1;n and replicates unknown;Air dried weight;;3 Arctostaphylos alpinus;19579;actual measurement;generative dispersule;2.404;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2.404;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Arctostaphylos uva-ursi;19582;actual measurement;one-seeded generative dispersule;8.548;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.548;;;100;;Air dried weight;;2a Arctostaphylos uva-ursi;19582;other;germinule;6.2724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.2724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arenaria norvegica;16393;other;unknown;.222;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.222;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Arenaria norvegica;16393;other;unknown;.2204;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Arenaria norvegica;16393;other;unknown;.2272;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Arenaria norvegica;16393;other;unknown;.238;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.238;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);germinule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;3 Arenaria serpyllifolia;16833;other;germinule;.076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arenaria serpyllifolia;16833;other;germinule;.0668;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);germinule;.06;1;-2;.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;.06;.06;;preaggregated value obtained from single record;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);germinule;.06;1;-2;.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;.06;.06;;preaggregated value obtained from single record;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement;one-seeded generative dispersule;.054;;-4;;BIOLFLOR database;.054;.06;.04;;;Air dried weight;;2a Arenaria serpyllifolia;16833;actual measurement;one-seeded generative dispersule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;100;;Air dried weight;;2a Arenaria serpyllifolia;16833;actual measurement;one-seeded generative dispersule;.058;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.058;;;100;;Air dried weight;;2a Arenaria serpyllifolia;16833;other;germinule;.064;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.064;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arenaria serpyllifolia;16833;other;one-seeded generative dispersule;.076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arenaria serpyllifolia;16833;other;one-seeded generative dispersule;.064;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.064;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arenaria serpyllifolia;16833;actual measurement;generative dispersule;.09;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.09;;;1;n an replicates unknown;Air dried weight;;2 Arenaria serpyllifolia;16833;actual measurement;generative dispersule;.084;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.084;.084;.084;1;;Air dried weight;;2 Arenaria serpyllifolia;16833;other;one-seeded generative dispersule;.0668;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Arenaria serpyllifolia;16833;actual measurement;germinule;.058;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.058;;;100;;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement;germinule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;100;;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement;germinule;.054;;-4;;BIOLFLOR database;.054;.06;.04;;;Air dried weight;;3 Arenaria serpyllifolia;16833;actual measurement;germinule;.062;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.062;;;1;summers of 1995 and 1996;Unknown;;3 Arenaria serpyllifolia;16833;actual measurement;one-seeded generative dispersule;.080833333;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.080833333;.09;.074666667;150;;Air dried weight;;2a Arenaria serpyllifolia s. leptoclados;44912;actual measurement;one-seeded generative dispersule;.039;;-4;;BIOLFLOR database;.039;.04;.038;;;Air dried weight;;2a Arenaria serpyllifolia s. leptoclados;44912;actual measurement;unknown;.04;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.04;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Arenaria serpyllifolia s. leptoclados;44912;actual measurement;germinule;.039;;-4;;BIOLFLOR database;.039;.04;.038;;;Air dried weight;;3 Arenaria serpyllifolia s. marschlinsii;44915;actual measurement;unknown;.08;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.08;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Aristolochia clematitis;2411;actual measurement;generative dispersule;1.3;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.3;1.6;1.1;1;;Air dried weight;;2 Aristolochia clematitis;2411;actual measurement;one-seeded generative dispersule;63.5735;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;63.5735;63.89;63.257;100;;Fresh weight;;2a Armeria maritima;28355;actual measurement;one-seeded generative dispersule;1.473;;-4;;BIOLFLOR database;1.473;1.546;1.4;;;Air dried weight;;2a Armeria maritima;28355;other;one-seeded generative dispersule;1.62;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.62;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;2a Armeria maritima;28355;actual measurement;germinule;.035;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.035;;;100;;Air dried weight;;3 Armeria maritima;28355;actual measurement;germinule;1.473;;-4;;BIOLFLOR database;1.473;1.546;1.4;;;Air dried weight;;3 Armeria maritima;28355;actual measurement;germinule;.877;;-4;;BIOLFLOR database;.877;1;.7;;;Air dried weight;;3 Armeria maritima;28355;actual measurement;one-seeded generative dispersule;.035;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.035;;;100;;Air dried weight;;2a Armeria maritima;28355;actual measurement (following LEDA data standards);germinule;.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.93;;;30;used balance: Mettler H51, seed;Air dried weight;;3 Armeria maritima;28355;actual measurement (following LEDA data standards);germinule;.93;1;-2;.93;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.93;.93;.93;;preaggregated value obtained from single record;Air dried weight;;3 Armeria maritima;28355;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.55;;;20;used balance: Mettler Toledo 4, disp. unit;Air dried weight;;2a Armeria maritima;28355;other;germinule;1.62;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.62;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Armeria maritima;28355;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.55;1;-2;1.55;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.55;1.55;1.55;;preaggregated value obtained from single record;Air dried weight;;2a Armeria maritima s. elongata;28709;actual measurement;generative dispersule;1.543;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.543;1.543;1.543;1;;Air dried weight;;2 Armeria maritima s. maritima;28229;actual measurement;generative dispersule;1.328947368;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.328947368;1.455789474;1.202105263;95;;Air dried weight;;2 Arnica montana;3665;actual measurement;germinule;1.47;;-4;;BIOLFLOR database;1.47;1.64;1.3;;;Air dried weight;;3 Arnoseris minima;3666;actual measurement;one-seeded generative dispersule;.379;;-4;;BIOLFLOR database;.379;.458;.31;;;Air dried weight;;2a Arnoseris minima;3666;actual measurement;germinule;.379;;-4;;BIOLFLOR database;.379;.458;.31;;;Air dried weight;;3 Arrhenatherum elatius;40414;actual measurement;generative dispersule;3.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;3.5;;;1;n and replicates unknown;Air dried weight;;2 Arrhenatherum elatius;40414;actual measurement;germinule;2.39;;-4;;BIOLFLOR database;2.39;;;;;Air dried weight;;3 Arrhenatherum elatius;40414;actual measurement;germinule;2.956;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.956;;;100;;Air dried weight;;3 Arrhenatherum elatius;40414;actual measurement;germinule;3.29;;-4;;BIOLFLOR database;3.29;3.6;2.56;;;Air dried weight;;3 Arrhenatherum elatius;40414;actual measurement;germinule;2.392;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.392;;;100;;Air dried weight;;3 Arrhenatherum elatius;40414;actual measurement;germinule;1.5984;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.5984;1.854;1.326;150;;Air dried weight;;3 Arrhenatherum elatius;40414;actual measurement;germinule;2.774;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.774;;;100;;Air dried weight;;3 Arrhenatherum elatius;40414;actual measurement;one-seeded generative dispersule;3.29;;-4;;BIOLFLOR database;3.29;3.6;2.56;;;Air dried weight;;2a Arrhenatherum elatius;40414;actual measurement;one-seeded generative dispersule;2.392;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.392;;;100;;Air dried weight;;2a Arrhenatherum elatius;40414;actual measurement;one-seeded generative dispersule;2.956;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.956;;;100;;Air dried weight;;2a Arrhenatherum elatius;40414;actual measurement;one-seeded generative dispersule;2.774;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.774;;;100;;Air dried weight;;2a Arrhenatherum elatius;40414;actual measurement (following LEDA data standards);germinule;2.7;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.7;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Arrhenatherum elatius;40414;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.24;;;40;used balance: Mettler H51, disp. unit;Air dried weight;;2a Arrhenatherum elatius;40414;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.24;1;-2;5.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.24;5.24;5.24;;preaggregated value obtained from single record;Air dried weight;;2a Arrhenatherum elatius;40414;actual measurement (following LEDA data standards);germinule;2.7;1;-2;2.7;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.7;2.7;2.7;;preaggregated value obtained from single record;Air dried weight;;3 Artemisia absinthium;5486;other;germinule;.1332;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1332;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Artemisia absinthium;5486;other;germinule;.08456;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.08456;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Artemisia absinthium;5486;other;one-seeded generative dispersule;.08456;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.08456;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Artemisia absinthium;5486;other;one-seeded generative dispersule;.1332;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1332;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Artemisia absinthium;5486;actual measurement;one-seeded generative dispersule;.103;;-4;;BIOLFLOR database;.103;.12;.09;;;Air dried weight;;2a Artemisia absinthium;5486;actual measurement;one-seeded generative dispersule;.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.104;;;50;;Air dried weight;;2a Artemisia absinthium;5486;actual measurement;germinule;.103;;-4;;BIOLFLOR database;.103;.12;.09;;;Air dried weight;;3 Artemisia absinthium;5486;actual measurement;germinule;.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.104;;;50;;Air dried weight;;3 Artemisia absinthium;5486;actual measurement;germinule;.105;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.12;.09;1;n and replicates unknown;Air dried weight;;3 Artemisia annua;5487;other;unknown;.03;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Artemisia campestris;2974;other;germinule;.1124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Artemisia campestris;2974;other;germinule;.1156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Artemisia campestris;2974;actual measurement;germinule;.12;;-4;;BIOLFLOR database;.12;.14;.079;;;Air dried weight;;3 Artemisia campestris;2974;actual measurement;germinule;.238;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.238;.28;.2;1;;Air dried weight;;3 Artemisia campestris;2974;actual measurement;one-seeded generative dispersule;.12;;-4;;BIOLFLOR database;.12;.14;.079;;;Air dried weight;;2a Artemisia campestris;2974;other;one-seeded generative dispersule;.1156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Artemisia campestris;2974;other;one-seeded generative dispersule;.1124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Artemisia dracunculus;6183;actual measurement;germinule;.25;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.26;.24;1;n and replicates unknown;Air dried weight;;3 Artemisia dracunculus;6183;actual measurement;one-seeded generative dispersule;.262;;-4;;BIOLFLOR database;.262;.28;.24;;;Air dried weight;;2a Artemisia dracunculus;6183;actual measurement;germinule;.262;;-4;;BIOLFLOR database;.262;.28;.24;;;Air dried weight;;3 Artemisia genipi;3535;actual measurement;germinule;.22;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.22;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Artemisia laciniata;4315;actual measurement;germinule;.259;;-4;;BIOLFLOR database;.259;.263;.252;;;Air dried weight;;3 Artemisia laciniata;4315;actual measurement;one-seeded generative dispersule;.259;;-4;;BIOLFLOR database;.259;.263;.252;;;Air dried weight;;2a Artemisia maritima;2981;actual measurement (following LEDA data standards);germinule;.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.75;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Artemisia maritima;2981;actual measurement (following LEDA data standards);germinule;.75;1;-2;.75;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.75;.75;.75;;preaggregated value obtained from single record;Air dried weight;;3 Artemisia rupestris;5327;actual measurement;germinule;.0418;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0418;;;100;;Air dried weight;;3 Artemisia scoparia;4272;actual measurement;generative dispersule;35.41;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);35.41;;;1;n an replicates unknown;Air dried weight;;2 Artemisia umbelliformis;4171;actual measurement;germinule;.374;;-4;;BIOLFLOR database;.374;.491;.294;;;Air dried weight;;3 Artemisia umbelliformis;4171;actual measurement;one-seeded generative dispersule;.374;;-4;;BIOLFLOR database;.374;.491;.294;;;Air dried weight;;2a Artemisia vulgaris;4158;actual measurement;germinule;.127;;-4;;BIOLFLOR database;.127;.161;.109;;;Air dried weight;;3 Artemisia vulgaris;4158;actual measurement;one-seeded generative dispersule;.122;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.122;;;100;;Air dried weight;;2a Artemisia vulgaris;4158;actual measurement;germinule;.092;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.092;.12;.07;1;;Air dried weight;;3 Artemisia vulgaris;4158;actual measurement;germinule;.122;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.122;;;100;;Air dried weight;;3 Artemisia vulgaris;4158;actual measurement;one-seeded generative dispersule;.127;;-4;;BIOLFLOR database;.127;.161;.109;;;Air dried weight;;2a Artemisia vulgaris;4158;other;one-seeded generative dispersule;.1892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Artemisia vulgaris;4158;other;one-seeded generative dispersule;.168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Artemisia vulgaris;4158;other;germinule;.168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Artemisia vulgaris;4158;other;germinule;.1892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arum maculatum;35847;actual measurement (following LEDA data standards);germinule;30.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;30.21;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Arum maculatum;35847;actual measurement (following LEDA data standards);germinule;30.21;1;-2;30.21;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;30.21;30.21;30.21;;preaggregated value obtained from single record;Air dried weight;;3 Arum maculatum;35847;other;germinule;34.09452;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);34.09452;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Arum maculatum;35847;actual measurement;one-seeded generative dispersule;31.925;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31.925;;;20;;Air dried weight;;2a Arum maculatum;35847;actual measurement;generative dispersule;268.447;;-4;;BIOLFLOR database;268.447;355.73;183.48;;;Unknown;;2 Arum maculatum;35847;actual measurement;germinule;40.973;;-4;;BIOLFLOR database;40.973;45.36;31.93;;;Air dried weight;;3 Aruncus dioicus;31209;actual measurement;germinule;.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Aruncus dioicus;31209;actual measurement;germinule;.087;;-4;;BIOLFLOR database;.087;.108;.07;;;Air dried weight;;3 Aruncus dioicus;31209;actual measurement;one-seeded generative dispersule;.087;;-4;;BIOLFLOR database;.087;.108;.07;;;Air dried weight;;2a Asarina procumbens;33188;actual measurement;one-seeded generative dispersule;.231;;-4;;BIOLFLOR database;.231;;;;;Air dried weight;;2a Asarina procumbens;33188;actual measurement;germinule;.231;;-4;;BIOLFLOR database;.231;;;;;Air dried weight;;3 Asarum europaeum;2429;actual measurement;generative dispersule;3.724444444;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.724444444;3.831111111;3.617777778;45;;Fresh weight;;2 Asarum europaeum;2429;actual measurement;germinule;3.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.16;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Asparagus acutifolius;38769;actual measurement;germinule;40.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);40.08;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Asparagus officinalis;38660;actual measurement;generative dispersule;289.189;;-4;;BIOLFLOR database;289.189;296.55;275.25;;;Unknown;;2 Asparagus officinalis;38660;actual measurement;germinule;16.737;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;16.737;16.745;16.729;100;;Air dried weight;;3 Asparagus officinalis;38660;actual measurement;germinule;18.25;;-4;;BIOLFLOR database;18.25;18.5;18;;;Air dried weight;;3 Asparagus officinalis;38660;actual measurement;germinule;18.25;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;18.5;18;1;n and replicates unknown;Air dried weight;;3 Asparagus officinalis;38660;other;germinule;23.538;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.538;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Asparagus officinalis;38660;other;germinule;22.7552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);22.7552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Asparagus officinalis;38660;actual measurement (following LEDA data standards);germinule;13.34;1;-2;13.34;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.34;13.34;13.34;;preaggregated value obtained from single record;Air dried weight;;3 Asparagus officinalis;38660;other;germinule;19.5484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);19.5484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Asparagus officinalis;38660;other;germinule;19.9328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);19.9328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Asparagus officinalis;38660;actual measurement (following LEDA data standards);germinule;17.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.74;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Asparagus officinalis;38660;actual measurement (following LEDA data standards);germinule;13.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.34;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Asparagus officinalis;38660;actual measurement (following LEDA data standards);germinule;17.74;1;-2;17.74;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.74;17.74;17.74;;preaggregated value obtained from single record;Air dried weight;;3 Asperugo procumbens;12544;actual measurement;germinule;2.457;;-4;;BIOLFLOR database;2.457;2.591;2.123;;;Air dried weight;;3 Asperugo procumbens;12544;actual measurement;germinule;18.124;;-4;;BIOLFLOR database;18.124;;;;;Air dried weight;;3 Asperugo procumbens;12544;actual measurement;one-seeded generative dispersule;18.124;;-4;;BIOLFLOR database;18.124;;;;;Air dried weight;;2a Asperula aristata;31962;actual measurement;multi-seeded generative dispersule;.74;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.74;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Asperula arvensis;32387;actual measurement;one-seeded generative dispersule;7.233;;-4;;BIOLFLOR database;7.233;7.453;6.937;;;Air dried weight;;2a Asperula arvensis;32387;actual measurement;germinule;7.233;;-4;;BIOLFLOR database;7.233;7.453;6.937;;;Air dried weight;;3 Asperula cynanchica;31904;actual measurement;one-seeded generative dispersule;.965;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.965;;;20;;Air dried weight;;2a Asperula purpurea;31751;actual measurement;multi-seeded generative dispersule;.66;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.66;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Asperula tinctoria;32329;actual measurement;one-seeded generative dispersule;2.8;;-4;;BIOLFLOR database;2.8;3.3;2.3;;;Air dried weight;;2a Asperula tinctoria;32329;actual measurement;germinule;2.8;;-4;;BIOLFLOR database;2.8;3.3;2.3;;;Air dried weight;;3 Asphodelus albus;39161;actual measurement;germinule;3.13818;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.13818;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Asphodelus fistulosus;38669;actual measurement;generative dispersule;2.856;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.856;2.856;2.856;75;;Air dried weight;;2 Aster alpinus;3147;actual measurement;germinule;.86;;-4;;BIOLFLOR database;.86;;;;;Air dried weight;;3 Aster amellus;3537;actual measurement;germinule;1.381;;-4;;BIOLFLOR database;1.381;2.2;.883;;;Air dried weight;;3 Aster amellus;3537;actual measurement;germinule;.764857143;7;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.764857143;.806;.732;100;;Air dried weight;;3 Aster amellus;3537;actual measurement;germinule;.54;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.54;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Aster amellus;3537;actual measurement;one-seeded generative dispersule;1.381;;-4;;BIOLFLOR database;1.381;2.2;.883;;;Air dried weight;;2a Aster amellus;3537;actual measurement;generative dispersule;.799;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.799;.799;.799;100;;Air dried weight;;2 Aster laevis;5953;actual measurement;germinule;.523;;-4;;BIOLFLOR database;.523;.545;.505;;;Air dried weight;;3 Aster lanceolatus;5496;actual measurement;one-seeded generative dispersule;.45;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.45;;;40;;Air dried weight;;2a Aster linosyris;5330;other;one-seeded generative dispersule;1.3568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Aster linosyris;5330;actual measurement;germinule;1.33;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.33;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Aster linosyris;5330;actual measurement;one-seeded generative dispersule;1.456;;-4;;BIOLFLOR database;1.456;1.516;1.382;;;Air dried weight;;2a Aster linosyris;5330;actual measurement;germinule;1.456;;-4;;BIOLFLOR database;1.456;1.516;1.382;;;Air dried weight;;3 Aster linosyris;5330;other;germinule;1.3568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Aster novae-angliae;5614;actual measurement;germinule;.434;;-4;;BIOLFLOR database;.434;;;;;Air dried weight;;3 Aster novi-belgii;4901;actual measurement;germinule;.409;;-4;;BIOLFLOR database;.409;.423;.368;;;Air dried weight;;3 Aster novi-belgii;4901;actual measurement;one-seeded generative dispersule;.398;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.398;;;50;;Air dried weight;;2a Aster novi-belgii;4901;actual measurement;one-seeded generative dispersule;.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.42;;;20;;Air dried weight;;2a Aster tradescantii;3673;actual measurement;unknown;.103;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.103;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Aster tradescantii;3673;actual measurement;germinule;.2097;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.2097;;;100;;Air dried weight;;3 Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.9;10;-2;.9;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.92;1.12;.72;;preaggregated value obtained from single record;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.21;1;-2;1.21;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;1.21;1.21;;preaggregated value obtained from single record;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.83;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.88;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.06;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.97;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.72;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.72;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.99;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.88;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.12;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.92;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Aster tripolium;3539;actual measurement (following LEDA data standards);one-seeded generative dispersule;.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.83;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Asterolinon linum-stellatum;28964;actual measurement;germinule;.29033;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29033;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Astragalus cicer;21198;actual measurement;germinule;3.923;;-4;;BIOLFLOR database;3.923;4.54;2.56;;;Air dried weight;;3 Astragalus cicer;21198;actual measurement;one-seeded generative dispersule;3.923;;-4;;BIOLFLOR database;3.923;4.54;2.56;;;Air dried weight;;2a Astragalus danicus;22416;actual measurement;one-seeded generative dispersule;1.414;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.414;1.473;1.355;100;;Air dried weight;;2a Astragalus danicus;22416;actual measurement;one-seeded generative dispersule;1.296;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.296;;;30;;Air dried weight;;2a Astragalus glycyphylloides;20811;actual measurement;generative dispersule;7.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.17;;;1;n an replicates unknown;Air dried weight;;2 Astragalus glycyphyllos;22427;actual measurement;germinule;4.726;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.726;;;50;;Air dried weight;;3 Astragalus glycyphyllos;22427;actual measurement;germinule;4.801;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.801;;;50;;Air dried weight;;3 Astragalus glycyphyllos;22427;actual measurement;germinule;5.026;;-4;;BIOLFLOR database;5.026;5.55;4.8;;;Air dried weight;;3 Astragalus glycyphyllos;22427;actual measurement;one-seeded generative dispersule;4.801;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.801;;;50;;Air dried weight;;2a Astragalus glycyphyllos;22427;actual measurement;one-seeded generative dispersule;4.726;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.726;;;50;;Air dried weight;;2a Astragalus glycyphyllos;22427;actual measurement;one-seeded generative dispersule;5.026;;-4;;BIOLFLOR database;5.026;5.55;4.8;;;Air dried weight;;2a Astragalus glycyphyllos;22427;other;one-seeded generative dispersule;5.2284;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.2284;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Astragalus glycyphyllos;22427;other;one-seeded generative dispersule;5.0664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.0664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Astragalus glycyphyllos;22427;other;one-seeded generative dispersule;6.0524;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Astragalus glycyphyllos;22427;other;germinule;6.0524;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Astragalus glycyphyllos;22427;other;germinule;5.0664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.0664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Astragalus glycyphyllos;22427;other;germinule;5.2284;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.2284;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Astragalus hamosus;19740;actual measurement;generative dispersule;3.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.1;;;1;n an replicates unknown;Air dried weight;;2 Astragalus penduliflorus;20875;actual measurement;germinule;5.433;;-4;;BIOLFLOR database;5.433;;;;;Air dried weight;;3 Astrantia bavarica;2397;actual measurement;germinule;1.672;;-4;;BIOLFLOR database;1.672;1.685;1.658;;;Air dried weight;;3 Astrantia bavarica;2397;actual measurement;one-seeded generative dispersule;1.672;;-4;;BIOLFLOR database;1.672;1.685;1.658;;;Air dried weight;;2a Astrantia major;1925;actual measurement;germinule;3.19;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.19;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Astrantia major;1925;actual measurement;one-seeded generative dispersule;2.871;;-4;;BIOLFLOR database;2.871;3.3;2.563;;;Air dried weight;;2a Astrantia major;1925;actual measurement;germinule;2.871;;-4;;BIOLFLOR database;2.871;3.3;2.563;;;Air dried weight;;3 Astrodaucus orientalis;1929;actual measurement;generative dispersule;4.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.9;;;1;n an replicates unknown;Air dried weight;;2 Athamanta cretensis;1469;actual measurement;germinule;2.117;;-4;;BIOLFLOR database;2.117;2.142;2.034;;;Air dried weight;;3 Athamanta cretensis;1469;actual measurement;one-seeded generative dispersule;2.117;;-4;;BIOLFLOR database;2.117;2.142;2.034;;;Air dried weight;;2a Atriplex calotheca;17758;actual measurement;one-seeded generative dispersule;.6035;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.6035;.742;.465;100;;Air dried weight;;2a Atriplex calotheca;17758;actual measurement;germinule;.86;;-4;;BIOLFLOR database;.86;;;;;Air dried weight;;3 Atriplex glabriuscula;17760;actual measurement;germinule;.6435;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.6435;.649;.638;100;;Air dried weight;;3 Atriplex glabriuscula;17760;other;germinule;4.078;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.078;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Atriplex hortensis;17771;actual measurement;germinule;1.726;;-4;;BIOLFLOR database;1.726;2.2;.9;;;Air dried weight;;3 Atriplex hortensis;17771;actual measurement;germinule;3.655;;-4;;BIOLFLOR database;3.655;5.5;1;;;Air dried weight;;3 Atriplex hortensis;17771;actual measurement;germinule;3.2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;5.5;.9;1;n and replicates unknown;Air dried weight;;3 Atriplex laciniata;17773;other;unknown;21.4448;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);21.4448;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Atriplex littoralis;17778;other;germinule;1.9432;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Atriplex littoralis;17778;other;germinule;1.172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Atriplex littoralis;17778;actual measurement;germinule;1.206;;-4;;BIOLFLOR database;1.206;;;;;Air dried weight;;3 Atriplex oblongifolia;17673;actual measurement;germinule;1.856;;-4;;BIOLFLOR database;1.856;;;;;Air dried weight;;3 Atriplex oblongifolia;17673;actual measurement;one-seeded generative dispersule;3.2364;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.2364;3.485;3.032;100;;Air dried weight;;2a Atriplex patula;17675;actual measurement;one-seeded generative dispersule;1.334;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.334;;;50;;Air dried weight;;2a Atriplex patula;17675;actual measurement;germinule;1.216;;-4;;BIOLFLOR database;1.216;1.4;1.087;;;Air dried weight;;3 Atriplex patula;17675;actual measurement;germinule;5.065;;-4;;BIOLFLOR database;5.065;5.5;4.63;;;Air dried weight;;3 Atriplex patula;17675;actual measurement (following LEDA data standards);germinule;5.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.13;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Atriplex patula;17675;actual measurement (following LEDA data standards);germinule;5.13;1;-2;5.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.13;5.13;5.13;;preaggregated value obtained from single record;Air dried weight;;3 Atriplex patula;17675;other;germinule;1.3588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Atriplex praecox;17678;other;unknown;1.9604;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Atriplex prostrata;44815;actual measurement (following LEDA data standards);germinule;1.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Atriplex prostrata;44815;actual measurement (following LEDA data standards);germinule;3.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.31;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Atriplex prostrata;44815;other;germinule;1.2628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Atriplex prostrata;44815;other;germinule;1.202;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.202;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Atriplex prostrata;44815;other;germinule;1.6508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Atriplex prostrata;44815;other;germinule;6.6616;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.6616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Atriplex prostrata;44815;actual measurement (following LEDA data standards);germinule;3.31;1;-2;3.31;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.31;3.31;3.31;;preaggregated value obtained from single record;Air dried weight;;3 Atriplex prostrata;44815;actual measurement (following LEDA data standards);germinule;1.28;1;-2;1.28;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;1.28;1.28;;preaggregated value obtained from single record;Air dried weight;;3 Atriplex prostrata;44815;actual measurement;germinule;.741;;-4;;BIOLFLOR database;.741;.86;.611;;;Air dried weight;;3 Atriplex prostrata;44815;actual measurement;one-seeded generative dispersule;.864;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.864;;;100;;Air dried weight;;2a Atropa bella-donna;35087;actual measurement;one-seeded generative dispersule;.988;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.988;;;50;;Air dried weight;;2a Atropa bella-donna;35087;actual measurement;one-seeded generative dispersule;1.08;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.08;;;5;;Air dried weight;;2a Atropa bella-donna;35087;actual measurement;germinule;1.089;;-4;;BIOLFLOR database;1.089;1.144;1.018;;;Unknown;;3 Atropa bella-donna;35087;other;germinule;1.0792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Aubrieta deltoidea;14284;actual measurement;one-seeded generative dispersule;3.246;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.246;;;50;;Air dried weight;;2a Aurinia saxatilis;45901;actual measurement;one-seeded generative dispersule;.6;;-4;;BIOLFLOR database;.6;;;;;Air dried weight;;2a Aurinia saxatilis;45901;actual measurement;germinule;.6;;-4;;BIOLFLOR database;.6;;;;;Air dried weight;;3 Avena barbata;40564;actual measurement;germinule;3.70038;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.70038;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Avena barbata;40564;actual measurement;germinule;10.48;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;10.48;15.1;4.8;1;;Air dried weight;;3 Avena barbata;40564;actual measurement;germinule;6.438666667;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.438666667;6.438666667;6.438666667;75;;Air dried weight;;3 Avena barbata;40564;actual measurement;generative dispersule;7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7;;;1;n an replicates unknown;Air dried weight;;2 Avena barbata;40564;actual measurement;generative dispersule;19.96;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;19.96;26.8;15.4;1;;Air dried weight;;2 Avena barbata;40564;actual measurement;generative dispersule;5.25;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.25;;;1;n and replicates unknown;Air dried weight;;2 Avena barbata;40564;actual measurement;one-seeded generative dispersule;2.63;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2.63;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Avena fatua;40425;actual measurement;one-seeded generative dispersule;26.836;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26.836;;;50;;Air dried weight;;2a Avena fatua;40425;actual measurement;one-seeded generative dispersule;14.132;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14.132;;;25;;Air dried weight;;2a Avena fatua;40425;actual measurement;one-seeded generative dispersule;20.372;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.372;;;100;;Air dried weight;;2a Avena fatua;40425;actual measurement;one-seeded generative dispersule;26.215;;-4;;BIOLFLOR database;26.215;40;20;;;Air dried weight;;2a Avena fatua;40425;actual measurement;generative dispersule;30;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;40;20;1;n and replicates unknown;Air dried weight;;2 Avena fatua;40425;actual measurement;germinule;14.132;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14.132;;;25;;Air dried weight;;3 Avena fatua;40425;actual measurement;germinule;26.215;;-4;;BIOLFLOR database;26.215;40;20;;;Air dried weight;;3 Avena fatua;40425;actual measurement;germinule;20.372;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.372;;;100;;Air dried weight;;3 Avena fatua;40425;actual measurement;germinule;26.836;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26.836;;;50;;Air dried weight;;3 Avena fatua;40425;actual measurement;germinule;16.735;;-4;;BIOLFLOR database;16.735;19.34;14.13;;;Air dried weight;;3 Avena sativa;41151;actual measurement;generative dispersule;26.75;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;33.5;20;1;n and replicates unknown;Air dried weight;;2 Avena sativa;41151;actual measurement;germinule;34.665;;-4;;BIOLFLOR database;34.665;50;20;;;Air dried weight;;3 Avena sterilis;41440;actual measurement;germinule;59.232;;-4;;BIOLFLOR database;59.232;;;;;Air dried weight;;3 Avena sterilis;41440;actual measurement;one-seeded generative dispersule;59.232;;-4;;BIOLFLOR database;59.232;;;;;Air dried weight;;2a Avena strigosa;40565;actual measurement;germinule;8.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;10;7;1;n and replicates unknown;Air dried weight;;3 Avena strigosa;40565;actual measurement;one-seeded generative dispersule;6.923;;-4;;BIOLFLOR database;6.923;;;;;Air dried weight;;2a Avena strigosa;40565;actual measurement;germinule;6.923;;-4;;BIOLFLOR database;6.923;;;;;Air dried weight;;3 Avenula pratensis;40921;actual measurement;germinule;2.084;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.084;;;50;;Air dried weight;;3 Avenula pratensis;40921;actual measurement;germinule;2.36;;-4;;BIOLFLOR database;2.36;2.6;2.181;;;Air dried weight;;3 Avenula pratensis;40921;actual measurement;germinule;4.282;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.282;;;100;;Air dried weight;;3 Avenula pratensis;40921;actual measurement;germinule;1.93;;-4;;BIOLFLOR database;1.93;2.08;1.78;;;Air dried weight;;3 Avenula pratensis;40921;actual measurement;one-seeded generative dispersule;2.084;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.084;;;50;;Air dried weight;;2a Avenula pratensis;40921;actual measurement;one-seeded generative dispersule;4.282;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.282;;;100;;Air dried weight;;2a Avenula pratensis;40921;actual measurement;one-seeded generative dispersule;2.06375;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.06375;2.1425;1.985;40;;Air dried weight;;2a Avenula pratensis;40921;actual measurement;one-seeded generative dispersule;2.36;;-4;;BIOLFLOR database;2.36;2.6;2.181;;;Air dried weight;;2a Avenula pubescens;40923;actual measurement;one-seeded generative dispersule;1.891;;-4;;BIOLFLOR database;1.891;2.181;1.6;;;Air dried weight;;2a Avenula pubescens;40923;actual measurement;one-seeded generative dispersule;1.924;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.924;;;76;;Air dried weight;;2a Avenula pubescens;40923;actual measurement;germinule;1.891;;-4;;BIOLFLOR database;1.891;2.181;1.6;;;Air dried weight;;3 Avenula pubescens;40923;actual measurement;generative dispersule;1.9908;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.9908;2.112666667;1.888;150;;Air dried weight;;2 Avenula pubescens;40923;actual measurement;germinule;1.924;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.924;;;76;;Air dried weight;;3 Baldellia ranunculoides;35614;actual measurement;germinule;.412;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.412;;;50;;Air dried weight;;3 Baldellia ranunculoides;35614;actual measurement;germinule;.45;;-4;;BIOLFLOR database;.45;;;;;Air dried weight;;3 Baldellia ranunculoides;35614;actual measurement;one-seeded generative dispersule;.412;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.412;;;50;;Air dried weight;;2a Baldellia ranunculoides;35614;actual measurement;one-seeded generative dispersule;.45;;-4;;BIOLFLOR database;.45;;;;;Air dried weight;;2a Baldellia ranunculoides;35614;other;one-seeded generative dispersule;.3928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Baldellia ranunculoides;35614;other;one-seeded generative dispersule;.4972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Baldellia ranunculoides;35614;other;one-seeded generative dispersule;.5096;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5096;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Baldellia ranunculoides;35614;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Baldellia ranunculoides;35614;other;germinule;.3928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Baldellia ranunculoides;35614;other;germinule;.5096;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5096;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Baldellia ranunculoides;35614;other;germinule;.4972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Baldellia ranunculoides;35614;actual measurement (following LEDA data standards);germinule;.3;1;-2;.3;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;.3;.3;;preaggregated value obtained from single record;Air dried weight;;3 Baldellia repens;59543;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Baldellia repens;59543;actual measurement (following LEDA data standards);germinule;.22;1;-2;.22;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;.22;.22;;preaggregated value obtained from single record;Air dried weight;;3 Ballota nigra;24563;other;germinule;.9244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ballota nigra;24563;other;one-seeded generative dispersule;.9244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ballota nigra;24563;actual measurement;one-seeded generative dispersule;.732;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.732;;;100;;Air dried weight;;2a Ballota nigra;24563;actual measurement;one-seeded generative dispersule;.913;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.913;;;100;;Air dried weight;;2a Ballota nigra;24563;actual measurement;germinule;.732;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.732;;;100;;Air dried weight;;3 Ballota nigra;24563;actual measurement;germinule;.913;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.913;;;100;;Air dried weight;;3 Ballota nigra;24563;actual measurement;one-seeded generative dispersule;.862;;-4;;BIOLFLOR database;.862;1;.73;;;Air dried weight;;2a Ballota nigra;24563;actual measurement;germinule;.862;;-4;;BIOLFLOR database;.862;1;.73;;;Air dried weight;;3 Barbarea stricta;14378;actual measurement;generative dispersule;.425;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.425;.425;.425;100;;Air dried weight;;2 Barbarea stricta;14378;actual measurement;germinule;.482;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.482;;;100;;Air dried weight;;3 Barbarea stricta;14378;actual measurement;germinule;.338;;-4;;BIOLFLOR database;.338;.48;.327;;;Air dried weight;;3 Barbarea stricta;14378;actual measurement;one-seeded generative dispersule;.482;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.482;;;100;;Air dried weight;;2a Barbarea stricta;14378;actual measurement;one-seeded generative dispersule;.338;;-4;;BIOLFLOR database;.338;.48;.327;;;Air dried weight;;2a Barbarea verna;13787;actual measurement;one-seeded generative dispersule;1.051;;-4;;BIOLFLOR database;1.051;1.059;1.045;;;Air dried weight;;2a Barbarea verna;13787;actual measurement;germinule;1.051;;-4;;BIOLFLOR database;1.051;1.059;1.045;;;Air dried weight;;3 Barbarea vulgaris;14291;actual measurement;germinule;.95;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;1.2;.7;1;n and replicates unknown;Air dried weight;;3 Barbarea vulgaris;14291;actual measurement;germinule;.682;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.682;;;100;;Air dried weight;;3 Barbarea vulgaris;14291;actual measurement;germinule;.451;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.451;;;50;;Air dried weight;;3 Barbarea vulgaris;14291;actual measurement;germinule;.789;;-4;;BIOLFLOR database;.789;.808;.769;;;Air dried weight;;3 Barbarea vulgaris;14291;actual measurement;one-seeded generative dispersule;.451;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.451;;;50;;Air dried weight;;2a Barbarea vulgaris;14291;actual measurement;one-seeded generative dispersule;.682;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.682;;;100;;Air dried weight;;2a Barbarea vulgaris;14291;actual measurement;one-seeded generative dispersule;.789;;-4;;BIOLFLOR database;.789;.808;.769;;;Air dried weight;;2a Barbarea vulgaris;14291;actual measurement;one-seeded generative dispersule;.61;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.61;.619;.601;100;;Air dried weight;;2a Barbarea vulgaris;14291;other;one-seeded generative dispersule;.5016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Barbarea vulgaris;14291;other;one-seeded generative dispersule;.4364;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Barbarea vulgaris;14291;other;germinule;.5016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Barbarea vulgaris;14291;other;germinule;.4364;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bartsia alpina;34451;actual measurement;one-seeded generative dispersule;.242;;-4;;BIOLFLOR database;.242;;;;;Air dried weight;;2a Bartsia alpina;34451;actual measurement;one-seeded generative dispersule;.4245;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4245;.441;.408;100;;Air dried weight;;2a Bartsia alpina;34451;actual measurement;germinule;.242;;-4;;BIOLFLOR database;.242;;;;;Air dried weight;;3 Bartsia alpina;34451;actual measurement;germinule;.42;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.42;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Bassia scoparia;44831;actual measurement;germinule;1.186;;-4;;BIOLFLOR database;1.186;;;;;Air dried weight;;3 Bassia scoparia;44831;actual measurement;germinule;1.147;;-4;;BIOLFLOR database;1.147;;;;;Air dried weight;;3 Bassia scoparia;44831;actual measurement;one-seeded generative dispersule;1.186;;-4;;BIOLFLOR database;1.186;;;;;Air dried weight;;2a Bassia scoparia;44831;other;one-seeded generative dispersule;.68;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.68;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bassia scoparia;44831;other;one-seeded generative dispersule;.5924;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5924;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bassia scoparia;44831;other;germinule;.68;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.68;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bassia scoparia;44831;other;germinule;.5924;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5924;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Beckmannia eruciformis;40600;actual measurement;germinule;.62;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.62;;;5;;Air dried weight;;3 Bellis perennis;2808;actual measurement;germinule;.089;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.089;;;126;;Air dried weight;;3 Bellis perennis;2808;actual measurement;germinule;.285;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.285;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Bellis perennis;2808;actual measurement;germinule;.106;;-4;;BIOLFLOR database;.106;.129;.09;;;Air dried weight;;3 Bellis perennis;2808;actual measurement;germinule;.285;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.285;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Bellis perennis;2808;actual measurement;one-seeded generative dispersule;.106;;-4;;BIOLFLOR database;.106;.129;.09;;;Air dried weight;;2a Bellis perennis;2808;other;one-seeded generative dispersule;.108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bellis perennis;2808;other;one-seeded generative dispersule;.1196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bellis perennis;2808;actual measurement;one-seeded generative dispersule;.089;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.089;;;126;;Air dried weight;;2a Bellis perennis;2808;other;germinule;.1196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bellis perennis;2808;other;germinule;.108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Berberis vulgaris;11672;actual measurement;one-seeded generative dispersule;8.82;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.82;;;25;;Air dried weight;;2a Berberis vulgaris;11672;actual measurement;multi-seeded generative dispersule;89;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);89;;;1;n an replicates unknown;Fresh weight;;2b Berberis vulgaris;11672;actual measurement;generative dispersule;203.6;;-4;;BIOLFLOR database;203.6;;;;;Fresh weight;;2 Berberis vulgaris;11672;actual measurement;germinule;11.884;;-4;;BIOLFLOR database;11.884;;;;;Air dried weight;;3 Berberis vulgaris;11672;actual measurement;germinule;9.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.9;;;1;n an replicates unknown;Air dried weight;;3 Berteroa incana;14292;actual measurement;germinule;.739;;-4;;BIOLFLOR database;.739;.824;.654;;;Air dried weight;;3 Berteroa incana;14292;actual measurement;one-seeded generative dispersule;.739;;-4;;BIOLFLOR database;.739;.824;.654;;;Air dried weight;;2a Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.69;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.69;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.58;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.67;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.67;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.62;10;-2;.62;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;.68;.58;;preaggregated value obtained from single record;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.69;1;-2;.69;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.69;.69;.69;;preaggregated value obtained from single record;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.68;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.66;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berteroa incana;14292;actual measurement (following LEDA data standards);germinule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Berula erecta;1938;other;germinule;.8988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Berula erecta;1938;actual measurement;one-seeded generative dispersule;.49;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.49;;;50;;Air dried weight;;2a Berula erecta;1938;actual measurement;one-seeded generative dispersule;.501;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.501;;;50;;Air dried weight;;2a Berula erecta;1938;other;one-seeded generative dispersule;.8988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Berula erecta;1938;actual measurement;one-seeded generative dispersule;.908;;-4;;BIOLFLOR database;.908;.923;.839;;;Air dried weight;;2a Berula erecta;1938;actual measurement;germinule;.501;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.501;;;50;;Air dried weight;;3 Berula erecta;1938;actual measurement;germinule;.49;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.49;;;50;;Air dried weight;;3 Berula erecta;1938;actual measurement;germinule;.908;;-4;;BIOLFLOR database;.908;.923;.839;;;Air dried weight;;3 Beta vulgaris;17819;other;unknown;25.1112;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);25.1112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.7568;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.7568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;23.5364;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.5364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;17.9364;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);17.9364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;19.1116;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);19.1116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.7636;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.7636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;22.3156;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);22.3156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.20856;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.20856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;13.7852;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.7852;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;19.8144;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);19.8144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;23.282;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.282;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.4492;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.4492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.2872;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.2872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;26.1024;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);26.1024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;12.4028;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.4028;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;12.4492;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.4492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;12.8084;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.8084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;13.9412;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.9412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;25.2856;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);25.2856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;27.772;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);27.772;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;11.8836;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.8836;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;17.552;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);17.552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;18.548;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);18.548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.726;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.726;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.8156;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.8156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;30.036;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);30.036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;18.118;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);18.118;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;25.784;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);25.784;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;18.7512;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);18.7512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;23.226;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.226;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;26.77;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);26.77;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;17.7344;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);17.7344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;22.7444;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);22.7444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;23.2312;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.2312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;22.5212;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);22.5212;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;21.6956;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);21.6956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.202;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.202;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;20.39316;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.39316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;21.5672;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);21.5672;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;22.5832;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);22.5832;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Beta vulgaris;17819;other;unknown;13.8632;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.8632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Betula humilis;11714;actual measurement;one-seeded generative dispersule;.1885;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1885;.22;.157;100;;Air dried weight;;2a Betula nana;11715;other;one-seeded generative dispersule;.3184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Betula nana;11715;actual measurement;generative dispersule;.1805;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1805;.195;.166;100;z.T. abgebrochene Flügel;Air dried weight;;2 Betula nana;11715;actual measurement;generative dispersule;.267;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.267;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Betula nana;11715;actual measurement;germinule;.074;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.074;.076;.072;100;;Air dried weight;;3 Betula nana;11715;actual measurement;germinule;.109;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.109;;;100;;Air dried weight;;3 Betula nana;11715;actual measurement;germinule;.21;;-4;;BIOLFLOR database;.21;.3;.12;;;Air dried weight;;3 Betula nana;11715;actual measurement;one-seeded generative dispersule;.21;;-4;;BIOLFLOR database;.21;.3;.12;;;Air dried weight;;2a Betula nana;11715;actual measurement;one-seeded generative dispersule;.109;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.109;;;100;;Air dried weight;;2a Betula nana;11715;other;germinule;.3184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Betula pendula;11720;actual measurement (following LEDA data standards);one-seeded generative dispersule;.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;;;100;used balance: Mettler H51, seed with wings;Air dried weight;;2a Betula pendula;11720;actual measurement (following LEDA data standards);one-seeded generative dispersule;.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.24;;;100;used balance: Mettler H51, seed with wings;Air dried weight;;2a Betula pendula;11720;other;germinule;.2776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Betula pendula;11720;other;germinule;.2444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Betula pendula;11720;actual measurement (following LEDA data standards);one-seeded generative dispersule;.24;1;-2;.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.24;.24;.24;;preaggregated value obtained from single record;Air dried weight;;2a Betula pendula;11720;actual measurement (following LEDA data standards);one-seeded generative dispersule;.12;1;-2;.12;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;.12;.12;;preaggregated value obtained from single record;Air dried weight;;2a Betula pendula;11720;actual measurement;one-seeded generative dispersule;.126;;-4;;BIOLFLOR database;.126;.169;.09;;;Air dried weight;;2a Betula pendula;11720;actual measurement;one-seeded generative dispersule;.159;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.159;;;100;;Air dried weight;;2a Betula pendula;11720;actual measurement;germinule;.126;;-4;;BIOLFLOR database;.126;.169;.09;;;Air dried weight;;3 Betula pendula;11720;actual measurement;germinule;.159;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.159;;;100;;Air dried weight;;3 Betula pendula;11720;other;one-seeded generative dispersule;.2444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Betula pendula;11720;other;one-seeded generative dispersule;.2776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Betula pendula;11720;actual measurement;generative dispersule;.1146;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1146;.117;.112;100;;Air dried weight;;2 Betula pubescens;11725;other;germinule;.3464;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3464;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Betula pubescens;11725;actual measurement;generative dispersule;.1955;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1955;.197;.194;100;;Air dried weight;;2 Betula pubescens;11725;actual measurement;one-seeded generative dispersule;.118;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.118;;;50;;Air dried weight;;2a Bidens bipinnata;5620;actual measurement;generative dispersule;1.64;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.64;;;1;n an replicates unknown;Air dried weight;;2 Bidens bipinnata;5620;other;germinule;1.5532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bidens cernua;3807;other;germinule;1.264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bidens cernua;3807;actual measurement;generative dispersule;.848333333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.848333333;.922;.789;1;;Air dried weight;;2 Bidens cernua;3807;actual measurement;one-seeded generative dispersule;.805666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.805666667;.839;.775;100;;Air dried weight;;2a Bidens cernua;3807;actual measurement;one-seeded generative dispersule;1.174;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.174;;;50;;Air dried weight;;2a Bidens cernua;3807;actual measurement;one-seeded generative dispersule;.799;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.799;.83;.768;100;;Air dried weight;;2a Bidens cernua;3807;actual measurement;one-seeded generative dispersule;1.232;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.232;;;25;;Air dried weight;;2a Bidens connata;3153;actual measurement;generative dispersule;2.6125;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.6125;2.627;2.598;100;;Air dried weight;;2 Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.73;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.4;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.36;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.25;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.73;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.83;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.6;10;-2;2.6;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.54;2.93;1.97;;preaggregated value obtained from single record;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.46;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.78;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.93;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens connata;3153;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.97;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens frondosa;6191;other;germinule;23.0168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.0168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bidens frondosa;6191;other;germinule;2.6228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bidens frondosa;6191;actual measurement;generative dispersule;2.7416;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.7416;2.838;2.576;100;;Air dried weight;;2 Bidens frondosa;6191;actual measurement;germinule;3.303;;-4;;BIOLFLOR database;3.303;3.966;2.498;;;Air dried weight;;3 Bidens frondosa;6191;actual measurement;one-seeded generative dispersule;3.303;;-4;;BIOLFLOR database;3.303;3.966;2.498;;;Air dried weight;;2a Bidens frondosa;6191;other;one-seeded generative dispersule;23.0168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.0168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bidens frondosa;6191;other;one-seeded generative dispersule;2.6228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bidens pilosa;4278;other;unknown;2.5732;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Bidens pilosa;4278;other;unknown;2.4112;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Bidens pilosa;4278;other;unknown;2.4148;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Bidens radiata;5325;actual measurement;generative dispersule;.72;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.72;.8;.5;1;;Air dried weight;;2 Bidens radiata;5325;actual measurement;one-seeded generative dispersule;2.955;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.955;5.45;.46;100;;Air dried weight;;2a Bidens tripartita;3990;actual measurement;germinule;2.72;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.72;;;100;;Air dried weight;;3 Bidens tripartita;3990;actual measurement;germinule;3.544;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.544;;;50;;Air dried weight;;3 Bidens tripartita;3990;actual measurement;germinule;2.46;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.46;;;50;;Air dried weight;;3 Bidens tripartita;3990;actual measurement;one-seeded generative dispersule;2.612;;-4;;BIOLFLOR database;2.612;2.72;2.495;;;Air dried weight;;2a Bidens tripartita;3990;actual measurement;germinule;2.612;;-4;;BIOLFLOR database;2.612;2.72;2.495;;;Air dried weight;;3 Bidens tripartita;3990;actual measurement;generative dispersule;1.6468;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.6468;1.762;1.537;100;;Air dried weight;;2 Bidens tripartita;3990;actual measurement;one-seeded generative dispersule;2.72;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.72;;;100;;Air dried weight;;2a Bidens tripartita;3990;actual measurement;one-seeded generative dispersule;2.46;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.46;;;50;;Air dried weight;;2a Bidens tripartita;3990;actual measurement;one-seeded generative dispersule;3.544;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.544;;;50;;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.79;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.16;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.61;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.17;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.26;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.24;10;-2;2.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.21;2.61;1.79;;preaggregated value obtained from single record;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.94;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.24;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.31;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.43;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bidens tripartita;3990;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.23;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Bifora radians;1939;actual measurement;generative dispersule;12.88;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;12.88;14.3;11.5;1;;Air dried weight;;2 Biscutella didyma;14386;actual measurement;generative dispersule;1.450666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.450666667;1.477;1.411;100;;Air dried weight;;2 Biscutella laevigata;13799;actual measurement;multi-seeded generative dispersule;5.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.6;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Biscutella laevigata;13799;actual measurement;generative dispersule;3.7;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.7;4.3;2.9;1;;Air dried weight;;2 Biscutella laevigata;13799;actual measurement;generative dispersule;3.6972;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.6972;3.831;3.535;100;;Air dried weight;;2 Biscutella laevigata;13799;actual measurement;germinule;2.6;;-4;;BIOLFLOR database;2.6;;;;;Air dried weight;;3 Biscutella laevigata;13799;actual measurement;germinule;3.58;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.58;3.6;3.565;20;;Air dried weight;;3 Biscutella laevigata;13799;actual measurement;one-seeded generative dispersule;2.6;;-4;;BIOLFLOR database;2.6;;;;;Air dried weight;;2a Biscutella laevigata;13799;actual measurement;one-seeded generative dispersule;3.494;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.494;3.618;3.37;100;;Air dried weight;;2a Biserrula pelecinus;22358;actual measurement;one-seeded generative dispersule;.57;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.57;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Blackstonia perfoliata;22864;actual measurement;one-seeded generative dispersule;.009;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.009;;;100;;Air dried weight;;2a Blackstonia perfoliata s. perfoliata;22866;actual measurement;one-seeded generative dispersule;.009;;-4;;BIOLFLOR database;.009;.011;.006;;;Air dried weight;;2a Blackstonia perfoliata s. perfoliata;22866;actual measurement;germinule;.009;;-4;;BIOLFLOR database;.009;.011;.006;;;Air dried weight;;3 Blackstonia perfoliata s. serotina;22779;actual measurement;generative dispersule;.05;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.05;.05;.05;1;;Air dried weight;;2 Blysmus compressus;37421;actual measurement;one-seeded generative dispersule;.905;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.905;.969;.841;100;;Air dried weight;;2a Blysmus compressus;37421;actual measurement;one-seeded generative dispersule;.306;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.306;;;100;;Air dried weight;;2a Blysmus compressus;37421;actual measurement;one-seeded generative dispersule;.56;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.56;;;50;;Air dried weight;;2a Blysmus rufus;37423;actual measurement;one-seeded generative dispersule;1.276;;-4;;BIOLFLOR database;1.276;1.361;1.204;;;Air dried weight;;2a Blysmus rufus;37423;other;one-seeded generative dispersule;1.0576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Blysmus rufus;37423;actual measurement;germinule;1.276;;-4;;BIOLFLOR database;1.276;1.361;1.204;;;Air dried weight;;3 Blysmus rufus;37423;other;germinule;1.0576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Borago officinalis;12546;actual measurement;germinule;15.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;18;13;1;n and replicates unknown;Air dried weight;;3 Borago officinalis;12546;actual measurement;germinule;16.165;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16.165;;;50;;Air dried weight;;3 Borago officinalis;12546;actual measurement;germinule;15.5;;-4;;BIOLFLOR database;15.5;18;13;;;Air dried weight;;3 Borago officinalis;12546;actual measurement;one-seeded generative dispersule;16.165;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16.165;;;50;;Air dried weight;;2a Borago officinalis;12546;actual measurement;one-seeded generative dispersule;15.5;;-4;;BIOLFLOR database;15.5;18;13;;;Air dried weight;;2a Brachypodium distachyon;40602;actual measurement;one-seeded generative dispersule;2.152702703;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.152702703;2.152702703;2.152702703;74;;Air dried weight;;2a Brachypodium distachyon;40602;actual measurement;generative dispersule;2.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.16;;;1;n an replicates unknown;Air dried weight;;2 Brachypodium distachyon;40602;actual measurement;generative dispersule;2.26;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.26;;;1;n and replicates unknown;Air dried weight;;2 Brachypodium phoenicoides;41945;actual measurement;generative dispersule;2.47;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.47;;;1;n and replicates unknown;Air dried weight;;2 Brachypodium pinnatum;40931;actual measurement;generative dispersule;2.971866667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.971866667;3.094;2.914;150;;Air dried weight;;2 Brachypodium pinnatum;40931;actual measurement;one-seeded generative dispersule;3.749;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.749;;;100;;Air dried weight;;2a Brachypodium pinnatum;40931;actual measurement;one-seeded generative dispersule;2.854;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.854;;;50;;Air dried weight;;2a Brachypodium pinnatum;40931;other;germinule;2.948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brachypodium pinnatum;40931;other;germinule;1.1436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1436;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brachypodium pinnatum s. pinnatum;41177;actual measurement;one-seeded generative dispersule;3.803;;-4;;BIOLFLOR database;3.803;4.698;3.15;;;Air dried weight;;2a Brachypodium pinnatum s. pinnatum;41177;actual measurement;germinule;2.85;;-4;;BIOLFLOR database;2.85;;;;;Air dried weight;;3 Brachypodium pinnatum s. pinnatum;41177;actual measurement;germinule;3.803;;-4;;BIOLFLOR database;3.803;4.698;3.15;;;Air dried weight;;3 Brachypodium sylvaticum;41179;actual measurement;one-seeded generative dispersule;4.156;;-4;;BIOLFLOR database;4.156;4.5;3.968;;;Air dried weight;;2a Brachypodium sylvaticum;41179;actual measurement;one-seeded generative dispersule;.618;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.618;;;100;;Air dried weight;;2a Brachypodium sylvaticum;41179;actual measurement;generative dispersule;.62;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.62;;;1;n an replicates unknown;Air dried weight;;2 Brachypodium sylvaticum;41179;actual measurement;germinule;.618;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.618;;;100;;Air dried weight;;3 Brachypodium sylvaticum;41179;actual measurement;germinule;4.156;;-4;;BIOLFLOR database;4.156;4.5;3.968;;;Air dried weight;;3 Brachypodium sylvaticum;41179;actual measurement;germinule;.619;;-4;;BIOLFLOR database;.619;.62;.618;;;Air dried weight;;3 Brachypodium sylvaticum;41179;actual measurement;one-seeded generative dispersule;3.89;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.89;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Brachypodium sylvaticum;41179;other;one-seeded generative dispersule;3.9408;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brachypodium sylvaticum;41179;other;one-seeded generative dispersule;4.0396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.0396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brachypodium sylvaticum;41179;other;germinule;3.9408;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brachypodium sylvaticum;41179;other;germinule;4.0396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.0396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica elongata;14200;actual measurement;germinule;.619;;-4;;BIOLFLOR database;.619;;;;;Air dried weight;;3 Brassica elongata;14200;actual measurement;one-seeded generative dispersule;.619;;-4;;BIOLFLOR database;.619;;;;;Air dried weight;;2a Brassica napus;14206;actual measurement;one-seeded generative dispersule;4.392;;-4;;BIOLFLOR database;4.392;6.95;2.5;;;Air dried weight;;2a Brassica napus;14206;actual measurement;germinule;4.392;;-4;;BIOLFLOR database;4.392;6.95;2.5;;;Air dried weight;;3 Brassica nigra;13691;actual measurement;germinule;1.152;;-4;;BIOLFLOR database;1.152;;;;;Air dried weight;;3 Brassica nigra;13691;other;one-seeded generative dispersule;1.4588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica nigra;13691;actual measurement;one-seeded generative dispersule;1.152;;-4;;BIOLFLOR database;1.152;;;;;Air dried weight;;2a Brassica nigra;13691;actual measurement;one-seeded generative dispersule;2.181;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.181;2.242;2.12;100;;Air dried weight;;2a Brassica nigra;13691;actual measurement (following LEDA data standards);germinule;.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.94;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Brassica nigra;13691;actual measurement (following LEDA data standards);germinule;.94;1;-2;.94;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.94;.94;.94;;preaggregated value obtained from single record;Air dried weight;;3 Brassica nigra;13691;other;germinule;1.4588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;4.7608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.7608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;4.0612;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.0612;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;4.0972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.0972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;4.2496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.2496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.934;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.934;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.7392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.7392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;5.196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.594;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.594;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.2832;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2832;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;4.1664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.1664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;4.538;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.538;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.6972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.3372;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.3372;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.796;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.4348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.4348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.902;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.902;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.334;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.334;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.712;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;other;germinule;3.8316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Brassica oleracea;14208;actual measurement;one-seeded generative dispersule;5.19;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.19;;;100;;Air dried weight;;2a Brassica oleracea;14208;actual measurement;one-seeded generative dispersule;3.15;;-4;;BIOLFLOR database;3.15;4.8;2.2;;;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.8316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.3372;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.3372;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;4.0612;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.0612;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.594;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.594;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.902;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.902;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.2832;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2832;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.796;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;5.196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.934;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.934;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;4.7608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.7608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.4348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.4348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;4.2496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.2496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;4.538;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.538;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;4.1664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.1664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.334;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.334;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.712;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.6972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;3.7392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.7392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;other;one-seeded generative dispersule;4.0972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.0972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Brassica oleracea;14208;actual measurement;germinule;3.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;4.8;2.2;1;n and replicates unknown;Air dried weight;;3 Brassica oleracea;14208;actual measurement;germinule;3.15;;-4;;BIOLFLOR database;3.15;4.8;2.2;;;Air dried weight;;3 Brassica oleracea;14208;actual measurement;germinule;5.19;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.19;;;100;;Air dried weight;;3 Brassica rapa;13695;actual measurement;germinule;1.322;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.322;;;100;;Air dried weight;;3 Brassica rapa;13695;actual measurement;one-seeded generative dispersule;1.322;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.322;;;100;;Air dried weight;;2a Brassica rapa;13695;actual measurement;one-seeded generative dispersule;2.825;;-4;;BIOLFLOR database;2.825;3.5;1.5;;;Air dried weight;;2a Brassica rapa;13695;actual measurement;germinule;2.825;;-4;;BIOLFLOR database;2.825;3.5;1.5;;;Air dried weight;;3 Brassica rapa;13695;actual measurement;germinule;2.4;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;3.3;1.5;1;n and replicates unknown;Air dried weight;;3 Briza maxima;41668;actual measurement;germinule;1.7375;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.7375;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Briza media;40342;actual measurement;germinule;.266;;-4;;BIOLFLOR database;.266;.299;.23;;;Air dried weight;;3 Briza media;40342;actual measurement;germinule;.618;;-4;;BIOLFLOR database;.618;.7;.508;;;Air dried weight;;3 Briza media;40342;actual measurement;generative dispersule;.31;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.31;;;1;n an replicates unknown;Air dried weight;;2 Briza media;40342;actual measurement;germinule;.469;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.469;;;50;;Air dried weight;;3 Briza media;40342;actual measurement;germinule;.226;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.226;;;100;;Air dried weight;;3 Briza media;40342;other;one-seeded generative dispersule;.3484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Briza media;40342;actual measurement;one-seeded generative dispersule;.41;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.41;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Briza media;40342;actual measurement;one-seeded generative dispersule;.469;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.469;;;50;;Air dried weight;;2a Briza media;40342;actual measurement;one-seeded generative dispersule;.226;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.226;;;100;;Air dried weight;;2a Briza media;40342;actual measurement;one-seeded generative dispersule;.504666667;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.504666667;.543;.47;1;;Air dried weight;;2a Briza media;40342;actual measurement;one-seeded generative dispersule;.618;;-4;;BIOLFLOR database;.618;.7;.508;;;Air dried weight;;2a Briza media;40342;other;germinule;.3484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bromus arvensis;40609;actual measurement;one-seeded generative dispersule;2.577;;-4;;BIOLFLOR database;2.577;3.134;2.1;;;Air dried weight;;2a Bromus arvensis;40609;actual measurement;one-seeded generative dispersule;2.723;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.723;2.723;2.723;1;;Air dried weight;;2a Bromus arvensis;40609;actual measurement;germinule;2.577;;-4;;BIOLFLOR database;2.577;3.134;2.1;;;Air dried weight;;3 Bromus benekenii;41454;actual measurement;one-seeded generative dispersule;5.9;;-4;;BIOLFLOR database;5.9;;;;;Air dried weight;;2a Bromus benekenii;41454;actual measurement;germinule;5.9;;-4;;BIOLFLOR database;5.9;;;;;Air dried weight;;3 Bromus benekenii;41454;other;one-seeded generative dispersule;5.6636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.6636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bromus benekenii;41454;other;germinule;5.6636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.6636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bromus carinatus;40352;actual measurement;generative dispersule;5.934;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.934;5.955;5.913;100;;Air dried weight;;2 Bromus commutatus;40941;actual measurement;one-seeded generative dispersule;5.805;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.805;5.805;5.805;1;;Air dried weight;;2a Bromus commutatus;40941;other;germinule;4.5988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.5988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bromus diandrus;42153;actual measurement;one-seeded generative dispersule;10.32;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10.32;;;20;;Air dried weight;;2a Bromus diandrus;42153;actual measurement;one-seeded generative dispersule;6.55;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];6.55;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Bromus erectus;40358;actual measurement;one-seeded generative dispersule;3.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Bromus erectus;40358;actual measurement;one-seeded generative dispersule;4.23;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.23;;;50;;Air dried weight;;2a Bromus erectus;40358;actual measurement;one-seeded generative dispersule;4.813;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.813;;;100;;Air dried weight;;2a Bromus erectus;40358;actual measurement;one-seeded generative dispersule;4.383;;-4;;BIOLFLOR database;4.383;6.26;3;;;Air dried weight;;2a Bromus erectus;40358;actual measurement;one-seeded generative dispersule;4.805;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.805;;;20;;Air dried weight;;2a Bromus erectus;40358;other;one-seeded generative dispersule;5.2232;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.2232;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bromus erectus;40358;actual measurement;germinule;4.813;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.813;;;100;;Air dried weight;;3 Bromus erectus;40358;actual measurement;germinule;4.805;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.805;;;20;;Air dried weight;;3 Bromus erectus;40358;actual measurement;germinule;4.383;;-4;;BIOLFLOR database;4.383;6.26;3;;;Air dried weight;;3 Bromus erectus;40358;actual measurement;germinule;4.23;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.23;;;50;;Air dried weight;;3 Bromus erectus;40358;actual measurement;generative dispersule;3.1;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;3.1;;;1;n and replicates unknown;Air dried weight;;2 Bromus erectus;40358;actual measurement;generative dispersule;5.246666667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.246666667;5.408666667;5.105333333;150;;Air dried weight;;2 Bromus erectus;40358;other;germinule;5.2232;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.2232;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bromus grossus;42156;actual measurement;germinule;4.775;;-4;;BIOLFLOR database;4.775;;;;;Air dried weight;;3 Bromus grossus;42156;actual measurement;one-seeded generative dispersule;4.775;;-4;;BIOLFLOR database;4.775;;;;;Air dried weight;;2a Bromus hordeaceus;40361;actual measurement;one-seeded generative dispersule;1.172;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.172;1.172;1.172;75;;Air dried weight;;2a Bromus hordeaceus;40361;actual measurement;one-seeded generative dispersule;2.845;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.845;;;50;;Air dried weight;;2a Bromus hordeaceus;40361;actual measurement;one-seeded generative dispersule;3.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.15;;;50;;Air dried weight;;2a Bromus hordeaceus;40361;actual measurement;one-seeded generative dispersule;.91;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.91;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Bromus hordeaceus;40361;actual measurement;one-seeded generative dispersule;3.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.15;;;50;;Air dried weight;;2a Bromus hordeaceus;40361;actual measurement;generative dispersule;3.24;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.24;3.339;3.141;100;;Air dried weight;;2 Bromus hordeaceus;40361;actual measurement;germinule;.614;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.614;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Bromus hordeaceus;40361;actual measurement;germinule;.61357;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.61357;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Bromus hordeaceus;40361;actual measurement;germinule;.61;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.61;;;30;collected between 1996-1999;Air dried weight;;3 Bromus hordeaceus;40361;actual measurement;generative dispersule;4.696;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.696;4.696;4.696;1;;Air dried weight;;2 Bromus hordeaceus;40361;actual measurement (following LEDA data standards);germinule;2.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.44;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Bromus hordeaceus;40361;other;germinule;5.258;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.258;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Bromus hordeaceus;40361;actual measurement (following LEDA data standards);germinule;2.44;1;-2;2.44;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.44;2.44;2.44;;preaggregated value obtained from single record;Air dried weight;;3 Bromus hordeaceus;40361;other;germinule;.7596;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7596;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bromus inermis;40620;actual measurement;generative dispersule;1.96;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.96;1.96;1.96;1;;Air dried weight;;2 Bromus inermis;40620;actual measurement;germinule;3.672;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.672;;;50;;Air dried weight;;3 Bromus inermis;40620;actual measurement;germinule;4.217;;-4;;BIOLFLOR database;4.217;5.185;2.9;;;Air dried weight;;3 Bromus inermis;40620;actual measurement;one-seeded generative dispersule;4.217;;-4;;BIOLFLOR database;4.217;5.185;2.9;;;Air dried weight;;2a Bromus inermis;40620;actual measurement;one-seeded generative dispersule;3.672;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.672;;;50;;Air dried weight;;2a Bromus intermedius;40621;actual measurement;one-seeded generative dispersule;2.364473684;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.364473684;2.364473684;2.364473684;76;;Air dried weight;;2a Bromus japonicus;40365;actual measurement;generative dispersule;1.55;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.55;;;1;n an replicates unknown;Air dried weight;;2 Bromus japonicus;40365;actual measurement;one-seeded generative dispersule;3.584;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.584;3.584;3.584;1;;Air dried weight;;2a Bromus lepidus;42159;actual measurement;one-seeded generative dispersule;2.8;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.8;;;10;;Air dried weight;;2a Bromus madritensis;40949;actual measurement;one-seeded generative dispersule;1.89;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];1.89;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Bromus madritensis;40949;actual measurement;germinule;2.9;;-4;;BIOLFLOR database;2.9;;;;;Air dried weight;;3 Bromus madritensis;40949;actual measurement;one-seeded generative dispersule;2.9;;-4;;BIOLFLOR database;2.9;;;;;Air dried weight;;2a Bromus pseudosecalinus;40626;other;unknown;2.9644;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.9644;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Bromus racemosus;40951;other;germinule;3.9768;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bromus racemosus;40951;actual measurement;one-seeded generative dispersule;7.4475;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.4475;7.532;7.363;100;;Air dried weight;;2a Bromus racemosus;40951;actual measurement;generative dispersule;4.906222222;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.906222222;7.086;4.346;1;;Air dried weight;;2 Bromus ramosus;40952;actual measurement;generative dispersule;4.72;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.72;;;1;n an replicates unknown;Air dried weight;;2 Bromus ramosus;40952;actual measurement;one-seeded generative dispersule;5.408;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.408;;;50;;Air dried weight;;2a Bromus ramosus;40952;actual measurement;one-seeded generative dispersule;6.49;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.49;6.49;6.49;1;;Air dried weight;;2a Bromus ramosus;40952;actual measurement;one-seeded generative dispersule;6.489;;-4;;BIOLFLOR database;6.489;7.37;5.607;;;Air dried weight;;2a Bromus ramosus;40952;actual measurement;germinule;6.489;;-4;;BIOLFLOR database;6.489;7.37;5.607;;;Air dried weight;;3 Bromus ramosus;40952;actual measurement;one-seeded generative dispersule;7.37;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.37;;;50;;Air dried weight;;2a Bromus ramosus;40952;actual measurement;one-seeded generative dispersule;13.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.11;;;50;;Air dried weight;;2a Bromus ramosus;40952;actual measurement;generative dispersule;4.570714286;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.570714286;4.667142857;4.474285714;1;;Air dried weight;;2 Bromus ramosus;40952;actual measurement;germinule;5.408;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.408;;;50;;Air dried weight;;3 Bromus ramosus;40952;actual measurement;germinule;7.37;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.37;;;50;;Air dried weight;;3 Bromus ramosus;40952;actual measurement;germinule;13.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.11;;;50;;Air dried weight;;3 Bromus rigidus;42165;actual measurement;one-seeded generative dispersule;10.32;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10.32;;;20;;Air dried weight;;2a Bromus rubens;41967;actual measurement;generative dispersule;1.655;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.655;1.655;1.655;75;;Air dried weight;;2 Bromus rubens;41967;actual measurement;germinule;1.690666667;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.690666667;1.690666667;1.690666667;75;;Air dried weight;;3 Bromus scoparius;41194;actual measurement;generative dispersule;1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1;;;1;n an replicates unknown;Air dried weight;;2 Bromus secalinus;40610;actual measurement;generative dispersule;7.72925;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.72925;8.58;7.092;100;;Air dried weight;;2 Bromus secalinus;40610;other;germinule;12.1028;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.1028;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Bromus squarrosus;40372;actual measurement;germinule;2.257;;-4;;BIOLFLOR database;2.257;;;;;Air dried weight;;3 Bromus squarrosus;40372;actual measurement;one-seeded generative dispersule;2.257;;-4;;BIOLFLOR database;2.257;;;;;Air dried weight;;2a Bromus sterilis;40373;actual measurement;one-seeded generative dispersule;7.923;;-4;;BIOLFLOR database;7.923;9;6.4;;;Air dried weight;;2a Bromus sterilis;40373;actual measurement;germinule;8.365;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.365;;;100;;Air dried weight;;3 Bromus sterilis;40373;actual measurement;germinule;7.923;;-4;;BIOLFLOR database;7.923;9;6.4;;;Air dried weight;;3 Bromus sterilis;40373;actual measurement;one-seeded generative dispersule;8.365;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.365;;;100;;Air dried weight;;2a Bromus sterilis;40373;actual measurement;generative dispersule;4.851;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.851;4.851;4.851;1;;Air dried weight;;2 Bromus tectorum;41688;actual measurement;generative dispersule;1.83;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.83;;;1;n an replicates unknown;Air dried weight;;2 Bromus tectorum;41688;actual measurement;germinule;2.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.104;;;50;;Air dried weight;;3 Bromus tectorum;41688;actual measurement;generative dispersule;4.028;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.028;4.028;4.028;1;;Air dried weight;;2 Bromus tectorum;41688;actual measurement;germinule;2.34353;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.34353;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Bromus tectorum;41688;actual measurement;one-seeded generative dispersule;2.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.104;;;50;;Air dried weight;;2a Bromus tectorum;41688;actual measurement;germinule;2.694;;-4;;BIOLFLOR database;2.694;2.77;2.688;;;Air dried weight;;3 Bromus tectorum;41688;actual measurement;germinule;3.615;;-4;;BIOLFLOR database;3.615;3.66;3.569;;;Air dried weight;;3 Bromus tectorum;41688;actual measurement;one-seeded generative dispersule;2.694;;-4;;BIOLFLOR database;2.694;2.77;2.688;;;Air dried weight;;2a Bromus tectorum;41688;actual measurement;one-seeded generative dispersule;3.615;;-4;;BIOLFLOR database;3.615;3.66;3.569;;;Air dried weight;;2a Bromus tectorum;41688;other;one-seeded generative dispersule;3.2744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bromus tectorum;41688;other;one-seeded generative dispersule;3.65;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.65;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bromus tectorum;41688;other;one-seeded generative dispersule;3.2744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bromus tectorum;41688;other;one-seeded generative dispersule;3.65;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.65;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bromus tectorum;41688;other;germinule;3.65;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.65;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bromus tectorum;41688;other;germinule;3.2744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Broussonetia papyrifera;25298;actual measurement;generative dispersule;2.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.2;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Bryonia alba;18474;actual measurement;germinule;15.039;;-4;;BIOLFLOR database;15.039;17.515;12.563;;;Unknown;;3 Bryonia cretica s. dioica;18478;actual measurement;germinule;16.466;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;16.466;16.684;16.255;100;;Air dried weight;;3 Bryonia cretica s. dioica;18478;actual measurement;germinule;14.625;;-4;;BIOLFLOR database;14.625;15.88;13.37;;;Unknown;;3 Bryonia cretica s. dioica;18478;actual measurement;germinule;11.69035;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;11.69035;12.106;11.3776;100;;Air dried weight;;3 Bryonia cretica s. dioica;18478;actual measurement;germinule;10.58088235;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;10.58088235;10.83235294;10.32941176;34;;Air dried weight;;3 Bryonia cretica s. dioica;18478;actual measurement;germinule;9.608;8;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;9.608;9.914;9.317;100;;Air dried weight;;3 Buddleja davidii;15414;actual measurement;one-seeded generative dispersule;.0567;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0567;;;100;;Air dried weight;;2a Buglossoides purpurocaerulea;12486;actual measurement;germinule;15;;-4;;BIOLFLOR database;15;;;;;Air dried weight;;3 Buglossoides purpurocaerulea;12486;actual measurement;one-seeded generative dispersule;10.15;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);10.15;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Buglossoides purpurocaerulea;12486;actual measurement;one-seeded generative dispersule;15;;-4;;BIOLFLOR database;15;;;;;Air dried weight;;2a Bunias erucago;14224;actual measurement;generative dispersule;33.34;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;33.34;45.3;21.5;1;;Air dried weight;;2 Bunias orientalis;14415;other;one-seeded generative dispersule;26.0816;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);26.0816;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bunias orientalis;14415;other;one-seeded generative dispersule;24.7184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);24.7184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bunias orientalis;14415;actual measurement;one-seeded generative dispersule;27.808;;-4;;BIOLFLOR database;27.808;;;;;Air dried weight;;2a Bunias orientalis;14415;actual measurement;germinule;27.808;;-4;;BIOLFLOR database;27.808;;;;;Air dried weight;;3 Bunias orientalis;14415;other;germinule;26.0816;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);26.0816;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bunias orientalis;14415;other;germinule;24.7184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);24.7184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bunium bulbocastanum;2366;other;germinule;1.406;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.406;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bunium bulbocastanum;2366;actual measurement;germinule;1.56;;-4;;BIOLFLOR database;1.56;;;;;Air dried weight;;3 Bunium bulbocastanum;2366;actual measurement;one-seeded generative dispersule;1.56;;-4;;BIOLFLOR database;1.56;;;;;Air dried weight;;2a Bunium bulbocastanum;2366;other;one-seeded generative dispersule;1.406;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.406;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Buphthalmum salicifolium;5238;actual measurement;germinule;.56;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.56;.7;.4;1;;Air dried weight;;3 Buphthalmum salicifolium;5238;actual measurement;germinule;.36;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.36;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Bupleurum baldense;1435;other;unknown;.412;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Bupleurum baldense;1435;other;unknown;.362;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.362;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Bupleurum falcatum;1909;other;germinule;2.8856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum falcatum;1909;other;germinule;2.6496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum falcatum;1909;other;germinule;3.046;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.046;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum falcatum;1909;other;germinule;2.3264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum falcatum;1909;actual measurement;generative dispersule;3.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.1;;;1;n an replicates unknown;Air dried weight;;2 Bupleurum falcatum;1909;actual measurement;germinule;1.85;;-4;;BIOLFLOR database;1.85;2;1.7;;;Air dried weight;;3 Bupleurum falcatum;1909;other;one-seeded generative dispersule;2.8856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum falcatum;1909;other;one-seeded generative dispersule;2.6496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum falcatum;1909;other;one-seeded generative dispersule;2.3264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum falcatum;1909;other;one-seeded generative dispersule;3.046;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.046;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum falcatum;1909;actual measurement;one-seeded generative dispersule;1.85;;-4;;BIOLFLOR database;1.85;2;1.7;;;Air dried weight;;2a Bupleurum falcatum;1909;actual measurement;one-seeded generative dispersule;2.234333333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.234333333;2.29;2.164;100;;Air dried weight;;2a Bupleurum gerardi;1418;actual measurement;generative dispersule;1.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.16;;;1;n an replicates unknown;Air dried weight;;2 Bupleurum lancifolium;1884;other;unknown;6.1904;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.1904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Bupleurum longifolium;1423;actual measurement;germinule;2.762;;-4;;BIOLFLOR database;2.762;;;;;Air dried weight;;3 Bupleurum longifolium;1423;actual measurement;one-seeded generative dispersule;2.762;;-4;;BIOLFLOR database;2.762;;;;;Air dried weight;;2a Bupleurum ranunculoides;1426;actual measurement;germinule;1.68;;-4;;BIOLFLOR database;1.68;;;;;Air dried weight;;3 Bupleurum ranunculoides;1426;actual measurement;one-seeded generative dispersule;1.68;;-4;;BIOLFLOR database;1.68;;;;;Air dried weight;;2a Bupleurum ranunculoides;1426;actual measurement;one-seeded generative dispersule;1.55;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.55;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Bupleurum rotundifolium;1894;other;one-seeded generative dispersule;3.2844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum rotundifolium;1894;other;one-seeded generative dispersule;3.1844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum rotundifolium;1894;other;one-seeded generative dispersule;3.2812;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum rotundifolium;1894;actual measurement;one-seeded generative dispersule;3.573;;-4;;BIOLFLOR database;3.573;;;;;Air dried weight;;2a Bupleurum rotundifolium;1894;actual measurement;germinule;3.573;;-4;;BIOLFLOR database;3.573;;;;;Air dried weight;;3 Bupleurum rotundifolium;1894;other;germinule;3.2844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum rotundifolium;1894;other;germinule;3.2812;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum rotundifolium;1894;other;germinule;3.1844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum tenuissimum;1364;actual measurement (following LEDA data standards);germinule;1.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Bupleurum tenuissimum;1364;actual measurement (following LEDA data standards);germinule;1.13;1;-2;1.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;1.13;1.13;;preaggregated value obtained from single record;Air dried weight;;3 Bupleurum tenuissimum;1364;other;germinule;1.7172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum tenuissimum;1364;other;germinule;1.3892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Bupleurum tenuissimum;1364;actual measurement;germinule;.599;;-4;;BIOLFLOR database;.599;;;;;Air dried weight;;3 Bupleurum tenuissimum;1364;other;one-seeded generative dispersule;1.7172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum tenuissimum;1364;other;one-seeded generative dispersule;1.3892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Bupleurum tenuissimum;1364;actual measurement;one-seeded generative dispersule;.599;;-4;;BIOLFLOR database;.599;;;;;Air dried weight;;2a Butomus umbellatus;35620;actual measurement;one-seeded generative dispersule;.168;;-4;;BIOLFLOR database;.168;;;;;Air dried weight;;2a Butomus umbellatus;35620;actual measurement;one-seeded generative dispersule;.182;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.182;.185;.179;100;;Air dried weight;;2a Butomus umbellatus;35620;actual measurement;germinule;.168;;-4;;BIOLFLOR database;.168;;;;;Air dried weight;;3 Butomus umbellatus;35620;actual measurement (following LEDA data standards);germinule;.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.17;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Butomus umbellatus;35620;actual measurement (following LEDA data standards);germinule;.17;1;-2;.17;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.17;.17;.17;;preaggregated value obtained from single record;Air dried weight;;3 Buxus sempervirens;14716;other;germinule;16.2816;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);16.2816;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Buxus sempervirens;14716;other;germinule;14.5968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.5968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Buxus sempervirens;14716;actual measurement;one-seeded generative dispersule;12.1865;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;12.1865;15.21;9.163;100;;Air dried weight;;2a Buxus sempervirens;14716;actual measurement;one-seeded generative dispersule;9.12;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.12;;;100;;Air dried weight;;2a Buxus sempervirens;14716;actual measurement;generative dispersule;12.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);12.9;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Cakile maritima;14226;actual measurement (following LEDA data standards);one-seeded generative dispersule;18.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.62;;;5;used balance: Mettler H51, fruit;Air dried weight;;2a Cakile maritima;14226;other;germinule;30.0168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);30.0168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cakile maritima;14226;actual measurement (following LEDA data standards);one-seeded generative dispersule;18.62;1;-2;18.62;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.62;18.62;18.62;;preaggregated value obtained from single record;Air dried weight;;2a Calamagrostis arundinacea;40633;actual measurement;germinule;.556;;-4;;BIOLFLOR database;.556;.564;.546;;;Air dried weight;;3 Calamagrostis arundinacea;40633;actual measurement;generative dispersule;.433333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.433333333;.466666667;.4;1;;Air dried weight;;2 Calamagrostis canescens;40960;actual measurement;one-seeded generative dispersule;.087;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.087;;;50;;Air dried weight;;2a Calamagrostis canescens;40960;actual measurement;one-seeded generative dispersule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;2a Calamagrostis canescens;40960;actual measurement;one-seeded generative dispersule;.1;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1;.101;.099;100;;Air dried weight;;2a Calamagrostis canescens;40960;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;;;50;used balance: Mettler Toledo 4, disp. unit;Air dried weight;;2a Calamagrostis canescens;40960;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-2;.11;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;.11;.11;;preaggregated value obtained from single record;Air dried weight;;2a Calamagrostis canescens;40960;other;germinule;.06;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.06;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Calamagrostis epigejos;41199;actual measurement;germinule;.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.064;;;50;;Air dried weight;;3 Calamagrostis epigejos;41199;actual measurement;one-seeded generative dispersule;.072666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.072666667;.081;.06;1;;Air dried weight;;2a Calamagrostis epigejos;41199;actual measurement;one-seeded generative dispersule;.099;;-4;;BIOLFLOR database;.099;.128;.07;;;Air dried weight;;2a Calamagrostis epigejos;41199;actual measurement;germinule;.099;;-4;;BIOLFLOR database;.099;.128;.07;;;Air dried weight;;3 Calamagrostis epigejos;41199;actual measurement;one-seeded generative dispersule;.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.064;;;50;;Air dried weight;;2a Calamagrostis purpurea;40263;actual measurement;generative dispersule;.1065;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1065;.114;.099;100;"mit ""pappus""?";Air dried weight;;2 Calamagrostis purpurea;40263;other;germinule;.0988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Calamagrostis varia;40967;actual measurement;generative dispersule;.115714286;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.115714286;.125714286;.105714286;70;;Air dried weight;;2 Calamagrostis varia;40967;actual measurement;one-seeded generative dispersule;.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Calamagrostis villosa;40268;actual measurement;one-seeded generative dispersule;.1025;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1025;.106;.099;100;;Air dried weight;;2a Calamintha nepeta;23766;actual measurement;one-seeded generative dispersule;.235;;-4;;BIOLFLOR database;.235;;;;;Air dried weight;;2a Calamintha nepeta;23766;actual measurement;germinule;.235;;-4;;BIOLFLOR database;.235;;;;;Air dried weight;;3 Calamintha nepeta;23766;actual measurement;generative dispersule;.21;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.21;;;1;n and replicates unknown;Air dried weight;;2 Calamintha sylvatica;24205;other;unknown;.2572;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Calamintha sylvatica s. ascendens;24209;other;unknown;.3976;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Caldesia parnassifolia;35608;actual measurement;vegetative dispersule;35.05;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;35.05;40.23;29.87;1;;Air dried weight;;1 Calendula arvensis;3677;actual measurement;one-seeded generative dispersule;3.66;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3.66;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Calendula arvensis;3677;actual measurement;germinule;3.51;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3.51;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Calendula officinalis;3991;actual measurement;generative dispersule;4.12;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.12;5;2.9;1;;Air dried weight;;2 Calepina irregularis;12957;actual measurement;germinule;6.205;;-4;;BIOLFLOR database;6.205;6.468;6.047;;;Air dried weight;;3 Calepina irregularis;12957;actual measurement;one-seeded generative dispersule;6.205;;-4;;BIOLFLOR database;6.205;6.468;6.047;;;Air dried weight;;2a Calicotome spinosa;21250;actual measurement;germinule;7.47;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.47;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Calicotome villosa;21251;actual measurement;germinule;6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Calla palustris;35879;actual measurement;germinule;3.035;;-4;;BIOLFLOR database;3.035;;;;;Air dried weight;;3 Calla palustris;35879;actual measurement;germinule;2.418;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.418;2.497;2.339;100;;Air dried weight;;3 Callitriche palustris;15420;actual measurement;unknown;.076;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.076;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Callitriche stagnalis;15424;actual measurement;germinule;.09;;-4;;BIOLFLOR database;.09;;;;;Air dried weight;;3 Callitriche stagnalis;15424;actual measurement;germinule;.09;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.09;;;50;;Air dried weight;;3 Callitriche stagnalis;15424;actual measurement;one-seeded generative dispersule;.09;;-4;;BIOLFLOR database;.09;;;;;Air dried weight;;2a Callitriche stagnalis;15424;actual measurement;one-seeded generative dispersule;.09;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.09;;;50;;Air dried weight;;2a Callitriche stagnalis;15424;other;one-seeded generative dispersule;.0616;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Callitriche stagnalis;15424;other;germinule;.0616;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Callitriche truncata;15431;other;unknown;.13304;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.13304;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Calluna vulgaris;19587;other;germinule;.0196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Calluna vulgaris;19587;other;one-seeded generative dispersule;.0196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Calluna vulgaris;19587;actual measurement;one-seeded generative dispersule;.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.03;;;50;;Air dried weight;;2a Calluna vulgaris;19587;actual measurement;one-seeded generative dispersule;.0248;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0248;.032;.015;100;;Air dried weight;;2a Calluna vulgaris;19587;actual measurement;one-seeded generative dispersule;.037;;-4;;BIOLFLOR database;.037;.05;.03;;;Air dried weight;;2a Calluna vulgaris;19587;actual measurement;germinule;.037;;-4;;BIOLFLOR database;.037;.05;.03;;;Air dried weight;;3 Calluna vulgaris;19587;actual measurement;germinule;.032;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.032;;;1;summers of 1995 and 1996;Unknown;;3 Calluna vulgaris;19587;actual measurement;generative dispersule;.032;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.032;.032;.032;1;;Air dried weight;;2 Calluna vulgaris;19587;actual measurement;germinule;.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.03;;;50;;Air dried weight;;3 Caltha palustris;27293;actual measurement;germinule;1.31;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.31;;;50;;Air dried weight;;3 Caltha palustris;27293;actual measurement;germinule;.996;;-4;;BIOLFLOR database;.996;1;.994;;;Air dried weight;;3 Caltha palustris;27293;actual measurement;germinule;.993;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.993;;;100;;Air dried weight;;3 Caltha palustris;27293;actual measurement;one-seeded generative dispersule;.993;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.993;;;100;;Air dried weight;;2a Caltha palustris;27293;actual measurement;one-seeded generative dispersule;.996;;-4;;BIOLFLOR database;.996;1;.994;;;Air dried weight;;2a Caltha palustris;27293;actual measurement;one-seeded generative dispersule;1.31;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.31;;;50;;Air dried weight;;2a Caltha palustris;27293;other;one-seeded generative dispersule;.9532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Caltha palustris;27293;other;one-seeded generative dispersule;.9164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Caltha palustris;27293;other;one-seeded generative dispersule;.9396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Caltha palustris;27293;other;one-seeded generative dispersule;1.174;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.174;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Caltha palustris;27293;other;one-seeded generative dispersule;.978;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.978;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Caltha palustris;27293;other;one-seeded generative dispersule;1.14;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.14;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Caltha palustris;27293;other;one-seeded generative dispersule;1.1576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Caltha palustris;27293;actual measurement (following LEDA data standards);germinule;.72;1;-2;.72;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.72;.72;.72;;preaggregated value obtained from single record;Air dried weight;;3 Caltha palustris;27293;actual measurement (following LEDA data standards);germinule;.72;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.72;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Caltha palustris;27293;other;germinule;1.14;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.14;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Caltha palustris;27293;other;germinule;1.174;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.174;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Caltha palustris;27293;other;germinule;.9396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Caltha palustris;27293;other;germinule;.978;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.978;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Caltha palustris;27293;other;germinule;1.1576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Caltha palustris;27293;other;germinule;.9532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Caltha palustris;27293;other;germinule;.9164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Calystegia pulchra;18975;actual measurement;one-seeded generative dispersule;40.825;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40.825;;;50;;Air dried weight;;2a Calystegia sepium;18945;actual measurement;germinule;31.28;;-4;;BIOLFLOR database;31.28;33.9;28.66;;;Air dried weight;;3 Calystegia sepium;18945;actual measurement;germinule;33.91;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33.91;;;50;;Air dried weight;;3 Calystegia sepium;18945;other;one-seeded generative dispersule;25.626;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);25.626;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Calystegia sepium;18945;actual measurement;one-seeded generative dispersule;31.28;;-4;;BIOLFLOR database;31.28;33.9;28.66;;;Air dried weight;;2a Calystegia sepium;18945;actual measurement;one-seeded generative dispersule;33.91;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33.91;;;50;;Air dried weight;;2a Calystegia sepium;18945;other;germinule;25.626;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);25.626;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Calystegia silvatica;18953;actual measurement;one-seeded generative dispersule;34.336;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34.336;;;50;;Air dried weight;;2a Calystegia silvatica;18953;actual measurement;one-seeded generative dispersule;39.93;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39.93;;;50;;Air dried weight;;2a Camelina alyssum;14231;actual measurement;germinule;1.129;;-4;;BIOLFLOR database;1.129;1.16;1.098;;;Air dried weight;;3 Camelina alyssum;14231;actual measurement;one-seeded generative dispersule;1.129;;-4;;BIOLFLOR database;1.129;1.16;1.098;;;Air dried weight;;2a Camelina microcarpa;13713;actual measurement;one-seeded generative dispersule;.317;;-4;;BIOLFLOR database;.317;.333;.3;;;Air dried weight;;2a Camelina microcarpa;13713;actual measurement;germinule;.317;;-4;;BIOLFLOR database;.317;.333;.3;;;Air dried weight;;3 Camelina sativa;14234;actual measurement;germinule;1;;-4;;BIOLFLOR database;1;;;;;Air dried weight;;3 Camelina sativa;14234;actual measurement;one-seeded generative dispersule;1;;-4;;BIOLFLOR database;1;;;;;Air dried weight;;2a Campanula alliariifolia;15267;actual measurement;germinule;.379;;-4;;BIOLFLOR database;.379;;;;;Air dried weight;;3 Campanula alliariifolia;15267;actual measurement;one-seeded generative dispersule;.379;;-4;;BIOLFLOR database;.379;;;;;Air dried weight;;2a Campanula baumgartenii;15244;actual measurement;one-seeded generative dispersule;.078;;-4;;BIOLFLOR database;.078;.079;.077;;;Air dried weight;;2a Campanula baumgartenii;15244;actual measurement;germinule;.078;;-4;;BIOLFLOR database;.078;.079;.077;;;Air dried weight;;3 Campanula bononiensis;15249;actual measurement;germinule;.156;;-4;;BIOLFLOR database;.156;;;;;Air dried weight;;3 Campanula bononiensis;15249;actual measurement;one-seeded generative dispersule;.156;;-4;;BIOLFLOR database;.156;;;;;Air dried weight;;2a Campanula cervicaria;15224;actual measurement;one-seeded generative dispersule;.095;;-4;;BIOLFLOR database;.095;.098;.091;;;Air dried weight;;2a Campanula cervicaria;15224;actual measurement;germinule;.095;;-4;;BIOLFLOR database;.095;.098;.091;;;Air dried weight;;3 Campanula glomerata;15158;actual measurement;germinule;.161;;-4;;BIOLFLOR database;.161;.25;.1;;;Air dried weight;;3 Campanula glomerata;15158;actual measurement;one-seeded generative dispersule;.127;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.127;;;15;;Air dried weight;;2a Campanula glomerata;15158;actual measurement;germinule;.127;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.127;;;15;;Air dried weight;;3 Campanula glomerata;15158;actual measurement;germinule;.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.17;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Campanula glomerata;15158;actual measurement;one-seeded generative dispersule;.161;;-4;;BIOLFLOR database;.161;.25;.1;;;Air dried weight;;2a Campanula glomerata;15158;other;one-seeded generative dispersule;.114;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.114;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Campanula glomerata;15158;actual measurement;generative dispersule;.12;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.12;;;1;n an replicates unknown;Air dried weight;;2 Campanula glomerata;15158;other;germinule;.114;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.114;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Campanula latifolia;15145;actual measurement (following LEDA data standards);germinule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;100;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Campanula latifolia;15145;actual measurement (following LEDA data standards);germinule;.34;1;-2;.34;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;.34;.34;;preaggregated value obtained from single record;Air dried weight;;3 Campanula latifolia;15145;other;germinule;.4704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Campanula latifolia;15145;other;germinule;.292;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.292;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Campanula latifolia;15145;other;one-seeded generative dispersule;.4704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Campanula latifolia;15145;other;one-seeded generative dispersule;.292;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.292;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Campanula latifolia;15145;actual measurement;one-seeded generative dispersule;.288;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.288;;;50;;Air dried weight;;2a Campanula latifolia;15145;actual measurement;one-seeded generative dispersule;.41;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.41;;;50;;Air dried weight;;2a Campanula latifolia;15145;actual measurement;one-seeded generative dispersule;.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.064;;;50;;Air dried weight;;2a Campanula latifolia;15145;actual measurement;one-seeded generative dispersule;.42;;-4;;BIOLFLOR database;.42;.54;.298;;;Air dried weight;;2a Campanula latifolia;15145;actual measurement;germinule;.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.064;;;50;;Air dried weight;;3 Campanula latifolia;15145;actual measurement;germinule;.41;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.41;;;50;;Air dried weight;;3 Campanula latifolia;15145;actual measurement;germinule;.42;;-4;;BIOLFLOR database;.42;.54;.298;;;Air dried weight;;3 Campanula latifolia;15145;actual measurement;germinule;.288;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.288;;;50;;Air dried weight;;3 Campanula medium;15116;actual measurement;one-seeded generative dispersule;.367;;-4;;BIOLFLOR database;.367;;;;;Air dried weight;;2a Campanula medium;15116;actual measurement;germinule;.367;;-4;;BIOLFLOR database;.367;;;;;Air dried weight;;3 Campanula patula;15092;actual measurement;germinule;.025;;-4;;BIOLFLOR database;.025;.03;.02;;;Air dried weight;;3 Campanula patula;15092;actual measurement;one-seeded generative dispersule;.025;;-4;;BIOLFLOR database;.025;.03;.02;;;Air dried weight;;2a Campanula patula;15092;other;one-seeded generative dispersule;.0252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Campanula patula;15092;other;one-seeded generative dispersule;.02356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Campanula patula;15092;other;germinule;.0252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Campanula patula;15092;other;germinule;.02356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Campanula persicifolia;15103;actual measurement;one-seeded generative dispersule;.0762;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0762;;;50;;Air dried weight;;2a Campanula persicifolia;15103;actual measurement;one-seeded generative dispersule;.065;;-4;;BIOLFLOR database;.065;.09;.05;;;Air dried weight;;2a Campanula persicifolia;15103;actual measurement;germinule;.065;;-4;;BIOLFLOR database;.065;.09;.05;;;Air dried weight;;3 Campanula persicifolia;15103;actual measurement;germinule;.0762;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0762;;;50;;Air dried weight;;3 Campanula rapunculoides;15082;actual measurement;generative dispersule;.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.06;;;1;n an replicates unknown;Air dried weight;;2 Campanula rapunculoides;15082;actual measurement;germinule;.187;;-4;;BIOLFLOR database;.187;.254;.1;;;Air dried weight;;3 Campanula rapunculoides;15082;actual measurement;germinule;.3589;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.3589;;;90;;Air dried weight;;3 Campanula rapunculoides;15082;actual measurement;one-seeded generative dispersule;.187;;-4;;BIOLFLOR database;.187;.254;.1;;;Air dried weight;;2a Campanula rapunculoides;15082;actual measurement;one-seeded generative dispersule;.3589;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.3589;;;90;;Air dried weight;;2a Campanula rapunculoides;15082;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Campanula rapunculoides;15082;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Campanula rapunculus;15083;actual measurement;one-seeded generative dispersule;.03;;-4;;BIOLFLOR database;.03;.04;.02;;;Air dried weight;;2a Campanula rapunculus;15083;actual measurement;germinule;.03;;-4;;BIOLFLOR database;.03;.04;.02;;;Air dried weight;;3 Campanula rapunculus;15083;actual measurement;germinule;.04;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.04;;;1;n and replicates unknown;Air dried weight;;3 Campanula rotundifolia;15045;actual measurement;germinule;.061;;-4;;BIOLFLOR database;.061;.077;.044;;;Air dried weight;;3 Campanula rotundifolia;15045;actual measurement;germinule;.067;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.067;;;100;;Air dried weight;;3 Campanula rotundifolia;15045;actual measurement;germinule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;3 Campanula rotundifolia;15045;actual measurement;germinule;.048;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.048;;;1;summers of 1995 and 1996;Unknown;;3 Campanula rotundifolia;15045;actual measurement;one-seeded generative dispersule;.061;;-4;;BIOLFLOR database;.061;.077;.044;;;Air dried weight;;2a Campanula rotundifolia;15045;actual measurement;one-seeded generative dispersule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;2a Campanula rotundifolia;15045;actual measurement;one-seeded generative dispersule;.067;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.067;;;100;;Air dried weight;;2a Campanula rotundifolia;15045;other;one-seeded generative dispersule;.0528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Campanula rotundifolia;15045;actual measurement;generative dispersule;.0625;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0625;.063;.062;100;;Air dried weight;;2 Campanula rotundifolia;15045;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;39;No. of seeds per individual: 20-67;Air dried weight;;3 Campanula rotundifolia;15045;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;39;No. of seeds per individual: 20-67;Air dried weight;;3 Campanula rotundifolia;15045;actual measurement (following LEDA data standards);germinule;.07;3;-2;.07;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;.08;.07;;Preaggregated data obtained from single record. No. of seeds per individual: 20-67;;;3 Campanula rotundifolia;15045;other;germinule;.0528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Campanula rotundifolia;15045;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;39;No. of seeds per individual: 20-67;Air dried weight;;3 Campanula scheuchzeri;15061;actual measurement;one-seeded generative dispersule;.14;;-4;;BIOLFLOR database;.14;;;;;Air dried weight;;2a Campanula scheuchzeri;15061;actual measurement;unknown;.09;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.09;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Campanula scheuchzeri;15061;actual measurement;germinule;.14;;-4;;BIOLFLOR database;.14;;;;;Air dried weight;;3 Campanula sibirica;15030;actual measurement;germinule;.062;;-4;;BIOLFLOR database;.062;.07;.053;;;Air dried weight;;3 Campanula sibirica;15030;actual measurement;one-seeded generative dispersule;.062;;-4;;BIOLFLOR database;.062;.07;.053;;;Air dried weight;;2a Campanula spicata;15022;actual measurement;germinule;.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Campanula thyrsoides;14991;actual measurement;germinule;.05;;-4;;BIOLFLOR database;.05;;;;;Air dried weight;;3 Campanula thyrsoides;14991;actual measurement;one-seeded generative dispersule;.05;;-4;;BIOLFLOR database;.05;;;;;Air dried weight;;2a Campanula trachelium;15002;actual measurement;one-seeded generative dispersule;.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.192;;;50;;Air dried weight;;2a Campanula trachelium;15002;actual measurement;one-seeded generative dispersule;.153;;-4;;BIOLFLOR database;.153;.19;.133;;;Air dried weight;;2a Campanula trachelium;15002;actual measurement;germinule;.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Campanula trachelium;15002;actual measurement;germinule;.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.192;;;50;;Air dried weight;;3 Campanula trachelium;15002;actual measurement;germinule;.153;;-4;;BIOLFLOR database;.153;.19;.133;;;Air dried weight;;3 Campanula trachelium;15002;other;one-seeded generative dispersule;.1948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Campanula trachelium;15002;other;one-seeded generative dispersule;.4204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Campanula trachelium;15002;other;germinule;.4204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Campanula trachelium;15002;other;germinule;.1948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cannabis sativa;14695;actual measurement;germinule;6.4;;-4;;BIOLFLOR database;6.4;7.186;5.613;;;Air dried weight;;3 Capsella bursa-pastoris;12848;actual measurement;germinule;.107;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.107;;;100;;Air dried weight;;3 Capsella bursa-pastoris;12848;actual measurement;germinule;.123;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.123;;;100;;Air dried weight;;3 Capsella bursa-pastoris;12848;actual measurement;germinule;.126;;-4;;BIOLFLOR database;.126;.164;.1;;;Air dried weight;;3 Capsella bursa-pastoris;12848;actual measurement;one-seeded generative dispersule;.123;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.123;;;100;;Air dried weight;;2a Capsella bursa-pastoris;12848;actual measurement;one-seeded generative dispersule;.107;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.107;;;100;;Air dried weight;;2a Capsella bursa-pastoris;12848;actual measurement;germinule;.07067;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.07067;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Capsella bursa-pastoris;12848;actual measurement;germinule;.07;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.07;;;30;collected between 1996-1999;Air dried weight;;3 Capsella bursa-pastoris;12848;actual measurement;germinule;.071;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.071;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Capsella bursa-pastoris;12848;actual measurement;one-seeded generative dispersule;.126;;-4;;BIOLFLOR database;.126;.164;.1;;;Air dried weight;;2a Capsella bursa-pastoris;12848;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Capsella bursa-pastoris;12848;actual measurement (following LEDA data standards);germinule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;3 Caragana arborescens;20788;actual measurement;one-seeded generative dispersule;20.087;;-4;;BIOLFLOR database;20.087;23.233;15.78;;;Air dried weight;;2a Caragana arborescens;20788;actual measurement;germinule;20.087;;-4;;BIOLFLOR database;20.087;23.233;15.78;;;Air dried weight;;3 Cardamine amara;14239;actual measurement;germinule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;3 Cardamine amara;14239;actual measurement;germinule;.256;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.256;;;50;;Air dried weight;;3 Cardamine amara;14239;actual measurement;one-seeded generative dispersule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;2a Cardamine amara;14239;actual measurement;one-seeded generative dispersule;.256;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.256;;;50;;Air dried weight;;2a Cardamine bulbifera;14430;other;one-seeded generative dispersule;2.5;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cardamine bulbifera;14430;actual measurement;germinule;2.9;;-4;;BIOLFLOR database;2.9;;;;;Air dried weight;;3 Cardamine bulbifera;14430;actual measurement;one-seeded generative dispersule;2.9;;-4;;BIOLFLOR database;2.9;;;;;Air dried weight;;2a Cardamine bulbifera;14430;other;germinule;2.5;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cardamine flexuosa;13294;other;germinule;.1176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cardamine flexuosa;13294;actual measurement;germinule;.099;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.099;;;50;;Air dried weight;;3 Cardamine flexuosa;13294;actual measurement;one-seeded generative dispersule;.099;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.099;;;50;;Air dried weight;;2a Cardamine flexuosa;13294;actual measurement;germinule;.13;;-4;;BIOLFLOR database;.13;;;;;Air dried weight;;3 Cardamine flexuosa;13294;actual measurement;germinule;.128;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.128;;;100;;Air dried weight;;3 Cardamine flexuosa;13294;other;one-seeded generative dispersule;.1176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cardamine flexuosa;13294;actual measurement;one-seeded generative dispersule;.128;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.128;;;100;;Air dried weight;;2a Cardamine flexuosa;13294;actual measurement;one-seeded generative dispersule;.152;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.152;.158;.146;100;;Air dried weight;;2a Cardamine flexuosa;13294;actual measurement;one-seeded generative dispersule;.13;;-4;;BIOLFLOR database;.13;;;;;Air dried weight;;2a Cardamine heptaphylla;13726;actual measurement;germinule;6.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.02;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Cardamine hirsuta;14245;actual measurement;germinule;.132;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.132;;;97;;Air dried weight;;3 Cardamine hirsuta;14245;actual measurement;germinule;.088;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.088;;;100;;Air dried weight;;3 Cardamine hirsuta;14245;actual measurement;germinule;.101;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.101;;;100;;Air dried weight;;3 Cardamine hirsuta;14245;actual measurement;germinule;.137;;-4;;BIOLFLOR database;.137;.18;.09;;;Air dried weight;;3 Cardamine hirsuta;14245;actual measurement;one-seeded generative dispersule;.132;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.132;;;97;;Air dried weight;;2a Cardamine hirsuta;14245;actual measurement;one-seeded generative dispersule;.101;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.101;;;100;;Air dried weight;;2a Cardamine hirsuta;14245;actual measurement;one-seeded generative dispersule;.088;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.088;;;100;;Air dried weight;;2a Cardamine hirsuta;14245;actual measurement;one-seeded generative dispersule;.137;;-4;;BIOLFLOR database;.137;.18;.09;;;Air dried weight;;2a Cardamine hirsuta;14245;other;germinule;.0908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cardamine hirsuta;14245;other;one-seeded generative dispersule;.0908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cardamine hirsuta;14245;other;one-seeded generative dispersule;.1144;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cardamine hirsuta;14245;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Cardamine hirsuta;14245;other;germinule;.1144;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cardamine hirsuta;14245;actual measurement (following LEDA data standards);germinule;.09;1;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.09;;preaggregated value obtained from single record;Air dried weight;;3 Cardamine impatiens;13298;other;germinule;.1944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cardamine impatiens;13298;other;one-seeded generative dispersule;.1944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cardamine impatiens;13298;actual measurement;one-seeded generative dispersule;.3;;-4;;BIOLFLOR database;.3;;;;;Air dried weight;;2a Cardamine impatiens;13298;actual measurement;one-seeded generative dispersule;.34;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.34;;;50;;Air dried weight;;2a Cardamine impatiens;13298;actual measurement;germinule;.3;;-4;;BIOLFLOR database;.3;;;;;Air dried weight;;3 Cardamine impatiens;13298;actual measurement;germinule;.34;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.34;;;50;;Air dried weight;;3 Cardamine parviflora;14444;actual measurement;unknown;.106;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.106;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Cardamine pratensis;14249;actual measurement;one-seeded generative dispersule;.573666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.573666667;.617;.552;100;;Air dried weight;;2a Cardamine pratensis;14249;actual measurement;one-seeded generative dispersule;.604;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.604;;;50;;Air dried weight;;2a Cardamine pratensis;14249;other;unknown;.596;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.596;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cardamine trifolia;14129;actual measurement;germinule;1.643;;-4;;BIOLFLOR database;1.643;;;;;Air dried weight;;3 Cardamine trifolia;14129;actual measurement;one-seeded generative dispersule;1.643;;-4;;BIOLFLOR database;1.643;;;;;Air dried weight;;2a Cardaminopsis arenosa;14130;actual measurement;one-seeded generative dispersule;.109;;-4;;BIOLFLOR database;.109;.11;.108;;;Air dried weight;;2a Cardaminopsis arenosa;14130;actual measurement;germinule;.109;;-4;;BIOLFLOR database;.109;.11;.108;;;Air dried weight;;3 Cardaminopsis halleri;14132;actual measurement;generative dispersule;.194733333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.194733333;.1954;.1939;100;;Air dried weight;;2 Cardaminopsis halleri;14132;actual measurement;germinule;.197;;-4;;BIOLFLOR database;.197;.203;.192;;;Air dried weight;;3 Cardaminopsis halleri;14132;actual measurement;one-seeded generative dispersule;.197;;-4;;BIOLFLOR database;.197;.203;.192;;;Air dried weight;;2a Cardaminopsis petraea;13735;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;2a Cardaminopsis petraea;13735;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;3 Cardaria draba;13313;actual measurement;germinule;1.75;;-4;;BIOLFLOR database;1.75;;;;;Air dried weight;;3 Cardaria draba;13313;actual measurement;one-seeded generative dispersule;1.573;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.573;;;50;;Air dried weight;;2a Cardaria draba;13313;actual measurement;one-seeded generative dispersule;1.603;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.603;;;33;;Air dried weight;;2a Cardaria draba;13313;actual measurement;multi-seeded generative dispersule;.430266667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.430266667;.454666667;.404666667;150;;Air dried weight;;2b Cardaria draba;13313;other;germinule;2.1364;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carduus acanthoides;3326;actual measurement (following LEDA data standards);germinule;3.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carduus acanthoides;3326;actual measurement (following LEDA data standards);germinule;3.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.34;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carduus acanthoides;3326;actual measurement (following LEDA data standards);germinule;3.41;6;-2;3.41;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.42;3.49;3.34;;preaggregated value obtained from single record;Air dried weight;;3 Carduus acanthoides;3326;actual measurement (following LEDA data standards);germinule;3.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.49;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carduus acanthoides;3326;actual measurement (following LEDA data standards);germinule;3.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.42;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carduus acanthoides;3326;actual measurement (following LEDA data standards);germinule;3.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.38;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carduus acanthoides;3326;actual measurement (following LEDA data standards);germinule;3.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.46;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carduus acanthoides;3326;actual measurement;one-seeded generative dispersule;2.735;;-4;;BIOLFLOR database;2.735;;;;;Air dried weight;;2a Carduus acanthoides;3326;actual measurement;one-seeded generative dispersule;1.883;;-4;;BIOLFLOR database;1.883;2.266;1.5;;;Air dried weight;;2a Carduus acanthoides;3326;actual measurement;generative dispersule;2.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.3;;;1;n an replicates unknown;Air dried weight;;2 Carduus acanthoides;3326;actual measurement;germinule;1.883;;-4;;BIOLFLOR database;1.883;2.266;1.5;;;Air dried weight;;3 Carduus crispus;2731;actual measurement;germinule;1.19;;-4;;BIOLFLOR database;1.19;;;;;Air dried weight;;3 Carduus crispus;2731;actual measurement;germinule;1.3068;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.3068;1.424;1.224;50;;Air dried weight;;3 Carduus crispus;2731;actual measurement;one-seeded generative dispersule;1.19;;-4;;BIOLFLOR database;1.19;;;;;Air dried weight;;2a Carduus crispus;2731;actual measurement;one-seeded generative dispersule;.2945;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2945;.318;.271;100;;Air dried weight;;2a Carduus crispus;2731;actual measurement;one-seeded generative dispersule;1.5;;-4;;BIOLFLOR database;1.5;;;;;Air dried weight;;2a Carduus crispus;2731;other;one-seeded generative dispersule;2.0336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carduus crispus;2731;actual measurement (following LEDA data standards);germinule;2.23;1;-2;2.23;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.23;2.23;2.23;;preaggregated value obtained from single record;Air dried weight;;3 Carduus crispus;2731;other;germinule;2.0336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carduus crispus;2731;actual measurement (following LEDA data standards);germinule;2.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.23;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Carduus defloratus;3164;actual measurement;one-seeded generative dispersule;2.546;;-4;;BIOLFLOR database;2.546;;;;;Air dried weight;;2a Carduus defloratus;3164;actual measurement;one-seeded generative dispersule;2.49;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.49;2.805;2.175;100;;Air dried weight;;2a Carduus defloratus;3164;actual measurement;germinule;2.546;;-4;;BIOLFLOR database;2.546;;;;;Air dried weight;;3 Carduus nutans;3493;actual measurement;one-seeded generative dispersule;2.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.03;;;50;;Air dried weight;;2a Carduus nutans;3493;actual measurement (following LEDA data standards);germinule;3.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.03;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Carduus nutans;3493;actual measurement (following LEDA data standards);germinule;3.03;1;-2;3.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.03;3.03;3.03;;preaggregated value obtained from single record;Air dried weight;;3 Carduus nutans;3493;actual measurement (following LEDA data standards);germinule;3.32;1;-2;3.32;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.32;3.32;3.32;;preaggregated value obtained from single record;Air dried weight;;3 Carduus nutans;3493;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.96;1;-2;3.96;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.96;3.96;3.96;;preaggregated value obtained from single record;Air dried weight;;2a Carduus nutans;3493;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.96;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.96;;;13;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Carduus nutans;3493;actual measurement (following LEDA data standards);germinule;3.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.32;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Carduus personata;2736;actual measurement;germinule;1.802;;-4;;BIOLFLOR database;1.802;1.906;1.601;;;Air dried weight;;3 Carduus personata;2736;actual measurement;one-seeded generative dispersule;1.802;;-4;;BIOLFLOR database;1.802;1.906;1.601;;;Air dried weight;;2a Carduus pycnocephalus;2822;unknown;unknown;2.16;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2.16;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];4 Carduus tenuiflorus;5921;other;unknown;3.2336;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex acuta;38000;actual measurement;one-seeded generative dispersule;.533;;-4;;BIOLFLOR database;.533;.605;.46;;;Air dried weight;;2a Carex acuta;38000;actual measurement;germinule;.208;;-4;;BIOLFLOR database;.208;;;;;Air dried weight;;3 Carex acuta;38000;actual measurement;germinule;.533;;-4;;BIOLFLOR database;.533;.605;.46;;;Air dried weight;;3 Carex acutiformis;37460;actual measurement;one-seeded generative dispersule;.3725;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3725;.377;.368;100;;Air dried weight;;2a Carex acutiformis;37460;actual measurement;germinule;1.11;;-4;;BIOLFLOR database;1.11;;;;;Air dried weight;;3 Carex acutiformis;37460;actual measurement;one-seeded generative dispersule;1.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.11;;;20;;Air dried weight;;2a Carex alba;37462;actual measurement;germinule;1.45;;-4;;BIOLFLOR database;1.45;;;;;Air dried weight;;3 Carex alba;37462;actual measurement;germinule;2.839;;-4;;BIOLFLOR database;2.839;2.906;2.77;;;Air dried weight;;3 Carex alba;37462;actual measurement;one-seeded generative dispersule;.75;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.75;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex alba;37462;actual measurement;one-seeded generative dispersule;2.8325;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.8325;2.855;2.81;100;;Air dried weight;;2a Carex alba;37462;actual measurement;one-seeded generative dispersule;2.839;;-4;;BIOLFLOR database;2.839;2.906;2.77;;;Air dried weight;;2a Carex appropinquata;37464;actual measurement;germinule;.334;;-4;;BIOLFLOR database;.334;;;;;Air dried weight;;3 Carex appropinquata;37464;actual measurement;germinule;.842;;-4;;BIOLFLOR database;.842;;;;;Air dried weight;;3 Carex appropinquata;37464;actual measurement;one-seeded generative dispersule;.842;;-4;;BIOLFLOR database;.842;;;;;Air dried weight;;2a Carex appropinquata;37464;actual measurement;one-seeded generative dispersule;.907;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.907;.969;.845;100;;Air dried weight;;2a Carex aquatilis;38015;actual measurement;one-seeded generative dispersule;.2555;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2555;.256;.255;100;;Air dried weight;;2a Carex aquatilis;38015;other;germinule;.7628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex arenaria;38017;actual measurement (following LEDA data standards);germinule;.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Carex arenaria;38017;actual measurement (following LEDA data standards);germinule;.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Carex arenaria;38017;actual measurement (following LEDA data standards);germinule;.52;1;-2;.52;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;.52;.52;;preaggregated value obtained from single record;Air dried weight;;3 Carex arenaria;38017;other;germinule;.8696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex arenaria;38017;other;germinule;1.09;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.09;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex arenaria;38017;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.19;1;-2;1.19;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.19;1.19;1.19;;preaggregated value obtained from single record;Air dried weight;;2a Carex arenaria;38017;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.19;;;50;used balance: Mettler H51, fruit;Air dried weight;;2a Carex arenaria;38017;actual measurement (following LEDA data standards);germinule;.48;1;-2;.48;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;.48;.48;;preaggregated value obtained from single record;Air dried weight;;3 Carex arenaria;38017;actual measurement;one-seeded generative dispersule;.302;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.302;;;50;;Air dried weight;;2a Carex arenaria;38017;actual measurement;one-seeded generative dispersule;1.014;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.014;;;50;;Air dried weight;;2a Carex arenaria;38017;actual measurement;one-seeded generative dispersule;1.586;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.586;;;50;;Air dried weight;;2a Carex arenaria;38017;actual measurement;one-seeded generative dispersule;.777;;-4;;BIOLFLOR database;.777;1.1;.5;;;Air dried weight;;2a Carex arenaria;38017;actual measurement;germinule;1.586;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.586;;;50;;Air dried weight;;3 Carex arenaria;38017;actual measurement;germinule;1.014;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.014;;;50;;Air dried weight;;3 Carex arenaria;38017;actual measurement;germinule;.302;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.302;;;50;;Air dried weight;;3 Carex arenaria;38017;actual measurement;germinule;.6;;-4;;BIOLFLOR database;.6;;;;;Air dried weight;;3 Carex arenaria;38017;actual measurement;germinule;.777;;-4;;BIOLFLOR database;.777;1.1;.5;;;Air dried weight;;3 Carex arenaria;38017;other;one-seeded generative dispersule;.8696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex arenaria;38017;other;one-seeded generative dispersule;1.09;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.09;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex atrata;37469;actual measurement;generative dispersule;.668;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.668;.81;.526;100;with utricle;Air dried weight;;2 Carex atrata;37469;actual measurement;germinule;1.107;;-4;;BIOLFLOR database;1.107;;;;;Air dried weight;;3 Carex atrata;37469;actual measurement;one-seeded generative dispersule;1.107;;-4;;BIOLFLOR database;1.107;;;;;Air dried weight;;2a Carex atrata;37469;actual measurement (following LEDA data standards);germinule;.47;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;;;21;No. of seeds per individual: 20-24;Air dried weight;;3 Carex atrata;37469;actual measurement (following LEDA data standards);germinule;.69;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.69;;;21;No. of seeds per individual: 20-24;Air dried weight;;3 Carex atrata;37469;actual measurement (following LEDA data standards);germinule;.36;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;;;21;No. of seeds per individual: 20-24;Air dried weight;;3 Carex atrata;37469;actual measurement (following LEDA data standards);one-seeded generative dispersule;.51;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.51;;;21;Weight including appendages. No. of seeds per individual: 20-24;Air dried weight;;2a Carex atrata;37469;actual measurement (following LEDA data standards);one-seeded generative dispersule;.51;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.51;;;21;Weight including appendages. No. of seeds per individual: 20-24;Air dried weight;;2a Carex atrata;37469;actual measurement (following LEDA data standards);one-seeded generative dispersule;.75;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.75;;;21;Weight including appendages. No. of seeds per individual: 20-24;Air dried weight;;2a Carex atrata;37469;actual measurement (following LEDA data standards);one-seeded generative dispersule;.51;3;-2;.51;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.55;.75;.4;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 20-24;;;2a Carex atrata;37469;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;21;Weight including appendages. No. of seeds per individual: 20-24;Air dried weight;;2a Carex atrata;37469;actual measurement (following LEDA data standards);one-seeded generative dispersule;.75;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.75;;;21;Weight including appendages. No. of seeds per individual: 20-24;Air dried weight;;2a Carex atrata;37469;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;21;Weight including appendages. No. of seeds per individual: 20-24;Air dried weight;;2a Carex atrata;37469;actual measurement (following LEDA data standards);germinule;.47;3;-2;.47;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.51;.69;.36;;Preaggregated data obtained from single record. No. of seeds per individual: 20-24;;;3 Carex atrofusca;37347;actual measurement;generative dispersule;.493125;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.493125;.495;.49125;80;with utricle;Air dried weight;;2 Carex baldensis;38029;actual measurement;one-seeded generative dispersule;1.61;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.61;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex bigelowii;37350;actual measurement;generative dispersule;.739;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.739;.766;.712;50;with utricle;Air dried weight;;2 Carex bigelowii;37350;actual measurement;generative dispersule;.695;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.695;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Carex bigelowii;37350;actual measurement;germinule;.35;;-4;;BIOLFLOR database;.35;.5;.2;;;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.71;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.71;;;9;No. of seeds per individual: 7-11;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.42;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.42;;;9;No. of seeds per individual: 7-11;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.54;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.54;;;9;No. of seeds per individual: 7-11;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.96;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.96;;;9;No. of seeds per individual: 7-11;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.14;1;-2;.14;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;.14;.14;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.77;1;-2;.77;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.77;.77;.77;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 3;;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.74;7;-2;.74;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.83;1.31;.21;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 7-11;;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.77;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.77;;;3;Weight including appendages. No. of seeds per individual: 3;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.12;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.21;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.21;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.31;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.69;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.69;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.74;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.74;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.04;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.77;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.77;;;3;Weight including appendages. No. of seeds per individual: 3;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.12;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.21;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.21;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.31;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.69;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.69;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;.74;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.74;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.04;;;9;Weight including appendages. No. of seeds per individual: 7-11;Air dried weight;;2a Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.04;1;-2;.04;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.04;.04;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.47;1;-2;.47;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;.47;.47;;Preaggregated data obtained from single record. No. of seeds per individual: 3;;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.54;7;-2;.54;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.57;.96;.1;;Preaggregated data obtained from single record. No. of seeds per individual: 7-11;;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.47;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;;;3;No. of seeds per individual: 3;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.8;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.8;;;9;No. of seeds per individual: 7-11;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;9;No. of seeds per individual: 7-11;Air dried weight;;3 Carex bigelowii;37350;actual measurement (following LEDA data standards);germinule;.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.45;;;9;No. of seeds per individual: 7-11;Air dried weight;;3 Carex binervis;38036;other;germinule;1.7904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex binervis;38036;other;germinule;1.5032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex binervis;38036;other;germinule;1.5236;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex binervis;38036;other;germinule;1.2428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex binervis;38036;other;germinule;1.6104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex binervis;38036;other;germinule;1.4584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex binervis;38036;actual measurement;germinule;1.353;;-4;;BIOLFLOR database;1.353;;;;;Air dried weight;;3 Carex binervis;38036;actual measurement;germinule;1.127;;-4;;BIOLFLOR database;1.127;;;;;Air dried weight;;3 Carex binervis;38036;actual measurement;germinule;1.282;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.282;;;50;;Air dried weight;;3 Carex binervis;38036;actual measurement;one-seeded generative dispersule;1.353;;-4;;BIOLFLOR database;1.353;;;;;Air dried weight;;2a Carex binervis;38036;other;one-seeded generative dispersule;1.5032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex binervis;38036;other;one-seeded generative dispersule;1.7904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex binervis;38036;other;one-seeded generative dispersule;1.5236;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex binervis;38036;other;one-seeded generative dispersule;1.2428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex binervis;38036;other;one-seeded generative dispersule;1.6104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex binervis;38036;other;one-seeded generative dispersule;1.4584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex binervis;38036;actual measurement;one-seeded generative dispersule;1.282;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.282;;;50;;Air dried weight;;2a Carex bohemica;38039;actual measurement;one-seeded generative dispersule;.24;;-4;;BIOLFLOR database;.24;;;;;Air dried weight;;2a Carex bohemica;38039;actual measurement;one-seeded generative dispersule;.245;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.245;.259;.231;100;;Air dried weight;;2a Carex bohemica;38039;actual measurement;germinule;.14;;-4;;BIOLFLOR database;.14;;;;;Air dried weight;;3 Carex bohemica;38039;actual measurement;germinule;.24;;-4;;BIOLFLOR database;.24;;;;;Air dried weight;;3 Carex bohemica;38039;actual measurement;generative dispersule;.2325;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2325;.234;.231;100;;Air dried weight;;2 Carex brizoides;37356;actual measurement;germinule;.286;;-4;;BIOLFLOR database;.286;;;;;Air dried weight;;3 Carex brizoides;37356;actual measurement;one-seeded generative dispersule;.28;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.28;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex brizoides;37356;actual measurement;one-seeded generative dispersule;.379;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.379;.41;.348;100;;Air dried weight;;2a Carex brizoides;37356;actual measurement;one-seeded generative dispersule;.286;;-4;;BIOLFLOR database;.286;;;;;Air dried weight;;2a Carex brunnescens;37929;actual measurement;one-seeded generative dispersule;.42;;-4;;BIOLFLOR database;.42;.433;.396;;;Air dried weight;;2a Carex brunnescens;37929;actual measurement;germinule;.346;;-4;;BIOLFLOR database;.346;.349;.342;;;Air dried weight;;3 Carex brunnescens;37929;actual measurement;germinule;.42;;-4;;BIOLFLOR database;.42;.433;.396;;;Air dried weight;;3 Carex buekii;37930;actual measurement;generative dispersule;1.5175;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.5175;1.533;1.502;100;;Air dried weight;;2 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.12;10;-2;1.12;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.14;1.22;1.03;;preaggregated value obtained from single record;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.1;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.52;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.44;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.46;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.56;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.58;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.42;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.52;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.61;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.4;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.34;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.49;10;-2;1.49;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.49;1.61;1.34;;preaggregated value obtained from single record;Air dried weight;;2a Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.12;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.11;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.03;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.1;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.22;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex buxbaumii;37932;actual measurement (following LEDA data standards);germinule;1.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.11;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex capillaris;37936;other;germinule;.786;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.786;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex capillaris;37936;other;germinule;.474;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.474;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex capillaris;37936;actual measurement;germinule;.45;;-4;;BIOLFLOR database;.45;;;;;Air dried weight;;3 Carex capillaris;37936;actual measurement;germinule;.505;;-4;;BIOLFLOR database;.505;.51;.5;;;Air dried weight;;3 Carex capillaris;37936;actual measurement;one-seeded generative dispersule;.505;;-4;;BIOLFLOR database;.505;.51;.5;;;Air dried weight;;2a Carex capillaris;37936;other;one-seeded generative dispersule;.474;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.474;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex capillaris;37936;other;one-seeded generative dispersule;.786;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.786;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex caryophyllea;37362;other;one-seeded generative dispersule;1.6468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex caryophyllea;37362;actual measurement;one-seeded generative dispersule;1.5;;-4;;BIOLFLOR database;1.5;;;;;Air dried weight;;2a Carex caryophyllea;37362;actual measurement;germinule;.955;;-4;;BIOLFLOR database;.955;1.19;.72;;;Air dried weight;;3 Carex caryophyllea;37362;actual measurement;one-seeded generative dispersule;1.188;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.188;;;50;;Air dried weight;;2a Carex caryophyllea;37362;actual measurement;germinule;.769;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.769;;;1;summers of 1995 and 1996;Unknown;;3 Carex caryophyllea;37362;actual measurement;germinule;1.5;;-4;;BIOLFLOR database;1.5;;;;;Air dried weight;;3 Carex caryophyllea;37362;actual measurement;germinule;1.188;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.188;;;50;;Air dried weight;;3 Carex caryophyllea;37362;other;germinule;1.6468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex chordorrhiza;37947;actual measurement;one-seeded generative dispersule;1.7995;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.7995;1.807;1.792;100;;Air dried weight;;2a Carex curta;37950;actual measurement;one-seeded generative dispersule;.426;;-4;;BIOLFLOR database;.426;;;;;Air dried weight;;2a Carex curta;37950;actual measurement;germinule;.426;;-4;;BIOLFLOR database;.426;;;;;Air dried weight;;3 Carex curta;37950;other;one-seeded generative dispersule;.352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex curta;37950;actual measurement (following LEDA data standards);one-seeded generative dispersule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Carex curta;37950;actual measurement (following LEDA data standards);one-seeded generative dispersule;.3;1;-2;.3;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;.3;.3;;preaggregated value obtained from single record;Air dried weight;;2a Carex curta;37950;other;germinule;.352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex curvula;37370;actual measurement;one-seeded generative dispersule;2.12;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.12;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex davalliana;37956;actual measurement;germinule;.748;;-4;;BIOLFLOR database;.748;;;;;Air dried weight;;3 Carex davalliana;37956;actual measurement;one-seeded generative dispersule;.748;;-4;;BIOLFLOR database;.748;;;;;Air dried weight;;2a Carex davalliana;37956;actual measurement;one-seeded generative dispersule;.8385;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.8385;.856;.821;100;;Air dried weight;;2a Carex demissa;37374;actual measurement;one-seeded generative dispersule;.92;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.92;;;50;;Air dried weight;;2a Carex demissa;37374;actual measurement;one-seeded generative dispersule;.658;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.658;;;100;;Air dried weight;;2a Carex demissa;37374;other;germinule;.5724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex demissa;37374;other;germinule;.6884;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6884;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex demissa;37374;other;germinule;.9476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex demissa;37374;other;germinule;.9516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex depauperata;37963;other;unknown;12.9488;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.9488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex depauperata;37963;other;unknown;11.1932;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.1932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex depauperata;37963;other;unknown;8.4348;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);8.4348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex depauperata;37963;other;unknown;11.6388;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.6388;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex depauperata;37963;other;unknown;10.4236;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.4236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex depauperata;37963;other;unknown;10.8264;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.8264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex depauperata;37963;other;unknown;6.7404;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.7404;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex depauperata;37963;other;unknown;13.896;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.896;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex diandra;37377;actual measurement;germinule;.4233;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.4233;;;100;;Air dried weight;;3 Carex digitata;37970;actual measurement;one-seeded generative dispersule;1.09;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.09;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex digitata;37970;actual measurement;generative dispersule;1.8;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.8;2.1;1.6;1;;Air dried weight;;2 Carex dioica;37381;actual measurement;one-seeded generative dispersule;.24;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.24;;;50;;Air dried weight;;2a Carex dioica;37381;actual measurement;one-seeded generative dispersule;.6455;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.6455;.668;.623;100;;Air dried weight;;2a Carex dioica;37381;other;germinule;.7692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7692;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Carex distans;37979;other;germinule;1.38;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.38;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex distans;37979;actual measurement;one-seeded generative dispersule;1.66;;-4;;BIOLFLOR database;1.66;;;;;Air dried weight;;2a Carex distans;37979;actual measurement;one-seeded generative dispersule;1.527;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.527;1.599;1.455;100;;Air dried weight;;2a Carex distans;37979;other;one-seeded generative dispersule;1.38;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.38;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex distans;37979;actual measurement;generative dispersule;1.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.14;;;1;n an replicates unknown;Air dried weight;;2 Carex distans;37979;actual measurement;germinule;1.32;;-4;;BIOLFLOR database;1.32;;;;;Air dried weight;;3 Carex distans;37979;actual measurement;germinule;1.66;;-4;;BIOLFLOR database;1.66;;;;;Air dried weight;;3 Carex disticha;37982;actual measurement;one-seeded generative dispersule;.92;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.92;;;50;;Air dried weight;;2a Carex disticha;37982;other;germinule;.762;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.762;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex disticha;37982;other;germinule;.5916;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5916;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Carex disticha;37982;other;germinule;.77;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.77;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Carex divisa;37984;other;germinule;1.5208;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex divisa;37984;other;germinule;1.2548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex divisa;37984;actual measurement;germinule;.355;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.355;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Carex divisa;37984;actual measurement;germinule;.36;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.36;;;30;collected between 1996-1999;Air dried weight;;3 Carex divisa;37984;actual measurement;germinule;.355;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.355;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Carex divulsa;37393;actual measurement;germinule;.8;;-4;;BIOLFLOR database;.8;;;;;Air dried weight;;3 Carex divulsa;37393;actual measurement;generative dispersule;2.23;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.23;;;1;n an replicates unknown;Air dried weight;;2 Carex divulsa;37393;other;one-seeded generative dispersule;1.6648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex divulsa;37393;other;one-seeded generative dispersule;1.934;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.934;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex divulsa;37393;actual measurement;one-seeded generative dispersule;.8;;-4;;BIOLFLOR database;.8;;;;;Air dried weight;;2a Carex divulsa;37393;other;germinule;1.934;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.934;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex divulsa;37393;other;germinule;1.6648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex echinata;37888;actual measurement (following LEDA data standards);germinule;.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.44;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Carex echinata;37888;actual measurement (following LEDA data standards);germinule;.44;1;-2;.44;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.44;.44;.44;;preaggregated value obtained from single record;Air dried weight;;3 Carex echinata;37888;actual measurement (following LEDA data standards);one-seeded generative dispersule;.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.75;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Carex echinata;37888;actual measurement (following LEDA data standards);one-seeded generative dispersule;.69;1;-2;.69;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.69;.69;.69;;preaggregated value obtained from single record;Air dried weight;;2a Carex echinata;37888;actual measurement (following LEDA data standards);one-seeded generative dispersule;.75;1;-2;.75;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.75;.75;.75;;preaggregated value obtained from single record;Air dried weight;;2a Carex echinata;37888;other;germinule;.8172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex echinata;37888;other;germinule;.788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex echinata;37888;actual measurement (following LEDA data standards);one-seeded generative dispersule;.69;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.69;;;100;used balance: Mettler H51, disp.unit;Air dried weight;;2a Carex echinata;37888;other;one-seeded generative dispersule;.788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex echinata;37888;other;one-seeded generative dispersule;.8172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex echinata;37888;actual measurement;germinule;.832;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.832;;;100;;Air dried weight;;3 Carex echinata;37888;actual measurement;germinule;.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.81;;;50;;Air dried weight;;3 Carex echinata;37888;actual measurement;germinule;.882;;-4;;BIOLFLOR database;.882;.933;.83;;;Air dried weight;;3 Carex echinata;37888;actual measurement;one-seeded generative dispersule;.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.81;;;50;;Air dried weight;;2a Carex echinata;37888;actual measurement;one-seeded generative dispersule;.882;;-4;;BIOLFLOR database;.882;.933;.83;;;Air dried weight;;2a Carex echinata;37888;actual measurement;one-seeded generative dispersule;.832;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.832;;;100;;Air dried weight;;2a Carex echinata;37888;actual measurement;one-seeded generative dispersule;.643;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.643;.674;.612;100;;Air dried weight;;2a Carex elata;37396;actual measurement;one-seeded generative dispersule;.766;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.766;.805;.727;100;;Air dried weight;;2a Carex elata;37396;actual measurement;one-seeded generative dispersule;.568;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.568;;;50;;Air dried weight;;2a Carex elata;37396;actual measurement;one-seeded generative dispersule;.8366;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.8366;;;50;;Air dried weight;;2a Carex elata;37396;other;germinule;.85176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.85176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex elongata;37397;actual measurement (following LEDA data standards);one-seeded generative dispersule;.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.45;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Carex elongata;37397;other;germinule;.608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex elongata;37397;actual measurement (following LEDA data standards);one-seeded generative dispersule;.45;1;-2;.45;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.45;.45;.45;;preaggregated value obtained from single record;Air dried weight;;2a Carex elongata;37397;actual measurement;one-seeded generative dispersule;.538;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.538;.575;.501;100;;Air dried weight;;2a Carex ericetorum;37398;actual measurement;germinule;.8;;-4;;BIOLFLOR database;.8;;;;;Air dried weight;;3 Carex extensa;37399;actual measurement;germinule;1.029;;-4;;BIOLFLOR database;1.029;;;;;Air dried weight;;3 Carex extensa;37399;actual measurement;germinule;1.226;;-4;;BIOLFLOR database;1.226;1.246;1.208;;;Air dried weight;;3 Carex extensa;37399;other;one-seeded generative dispersule;1.3876;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3876;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex extensa;37399;actual measurement;one-seeded generative dispersule;1.226;;-4;;BIOLFLOR database;1.226;1.246;1.208;;;Air dried weight;;2a Carex extensa;37399;actual measurement;one-seeded generative dispersule;1.214;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.214;1.223;1.205;100;;Air dried weight;;2a Carex extensa;37399;other;germinule;1.3876;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3876;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex ferruginea;37903;actual measurement;one-seeded generative dispersule;1.026;;-4;;BIOLFLOR database;1.026;;;;;Air dried weight;;2a Carex ferruginea;37903;actual measurement;germinule;1.026;;-4;;BIOLFLOR database;1.026;;;;;Air dried weight;;3 Carex firma;37911;actual measurement;one-seeded generative dispersule;1.11;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.11;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex flacca;37912;actual measurement;one-seeded generative dispersule;1.31;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.31;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex flacca;37912;actual measurement;one-seeded generative dispersule;.8665;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.8665;.903;.83;100;;Air dried weight;;2a Carex flacca;37912;actual measurement;one-seeded generative dispersule;1.1;;-4;;BIOLFLOR database;1.1;;;;;Air dried weight;;2a Carex flacca;37912;other;one-seeded generative dispersule;.9716;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex flacca;37912;other;one-seeded generative dispersule;1.1688;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1688;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex flacca;37912;actual measurement;germinule;.923;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.923;;;100;;Air dried weight;;3 Carex flacca;37912;actual measurement;one-seeded generative dispersule;.923;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.923;;;100;;Air dried weight;;2a Carex flacca;37912;actual measurement;germinule;1.1;;-4;;BIOLFLOR database;1.1;;;;;Air dried weight;;3 Carex flacca;37912;actual measurement;germinule;.663;;-4;;BIOLFLOR database;.663;.97;.37;;;Air dried weight;;3 Carex flacca;37912;other;germinule;1.1688;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1688;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex flacca;37912;other;germinule;.9716;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex flava;37404;other;germinule;1.052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex flava;37404;actual measurement;germinule;.596;;-4;;BIOLFLOR database;.596;;;;;Air dried weight;;3 Carex flava;37404;actual measurement;germinule;.759;;-4;;BIOLFLOR database;.759;;;;;Air dried weight;;3 Carex flava;37404;other;one-seeded generative dispersule;1.052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex flava;37404;actual measurement;one-seeded generative dispersule;.759;;-4;;BIOLFLOR database;.759;;;;;Air dried weight;;2a Carex flava;37404;actual measurement;one-seeded generative dispersule;.95125;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.95125;.97125;.93125;80;;Air dried weight;;2a Carex frigida;37406;actual measurement;one-seeded generative dispersule;.398;;-4;;BIOLFLOR database;.398;.401;.394;;;Air dried weight;;2a Carex frigida;37406;actual measurement;germinule;.398;;-4;;BIOLFLOR database;.398;.401;.394;;;Air dried weight;;3 Carex hallerana;37290;actual measurement;generative dispersule;1.64;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.64;;;1;n an replicates unknown;Air dried weight;;2 Carex hallerana;37290;actual measurement;generative dispersule;1.22;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.22;;;1;n and replicates unknown;Air dried weight;;2 Carex hartmanii;37293;actual measurement;one-seeded generative dispersule;1.0475;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.0475;1.163;.932;100;;Air dried weight;;2a Carex hartmanii;37293;actual measurement;generative dispersule;1.08;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.08;1.3;1;1;;Air dried weight;;2 Carex hirta;37296;actual measurement;one-seeded generative dispersule;2.079;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.079;;;52;;Air dried weight;;2a Carex hirta;37296;other;germinule;3.554;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.554;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex hordeistichos;37299;actual measurement;generative dispersule;5.947;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.947;5.948;5.946;100;;Air dried weight;;2 Carex hostiana;37300;actual measurement;one-seeded generative dispersule;1.1505;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.1505;1.155;1.146;100;;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);germinule;1.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.39;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.15;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.81;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.81;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.79;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.15;1;-2;1.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.15;1.15;1.15;;preaggregated value obtained from single record;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.1;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.98;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.17;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.83;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.02;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.74;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.6;10;-2;.6;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;.64;.56;;preaggregated value obtained from single record;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.91;10;-2;1.91;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.93;2.17;1.74;;preaggregated value obtained from single record;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.57;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.57;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.57;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.56;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex hostiana;37300;other;germinule;1.6632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.1;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.75;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex hostiana;37300;actual measurement (following LEDA data standards);germinule;1.39;1;-2;1.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.39;1.39;1.39;;preaggregated value obtained from single record;Air dried weight;;3 Carex humilis;37847;other;germinule;1.4904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex humilis;37847;actual measurement;one-seeded generative dispersule;1.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.14;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex humilis;37847;other;one-seeded generative dispersule;1.4904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex humilis;37847;actual measurement;one-seeded generative dispersule;2.05;;-4;;BIOLFLOR database;2.05;;;;;Air dried weight;;2a Carex humilis;37847;actual measurement;germinule;2.05;;-4;;BIOLFLOR database;2.05;;;;;Air dried weight;;3 Carex lachenalii;37313;actual measurement;generative dispersule;.424;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.424;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Carex lachenalii;37313;other;germinule;.3352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex laevigata;37865;other;one-seeded generative dispersule;1.1996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex laevigata;37865;actual measurement;one-seeded generative dispersule;.998;;-4;;BIOLFLOR database;.998;;;;;Air dried weight;;2a Carex laevigata;37865;actual measurement;one-seeded generative dispersule;.894;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.894;;;100;;Air dried weight;;2a Carex laevigata;37865;actual measurement;one-seeded generative dispersule;1.069;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.069;;;50;;Air dried weight;;2a Carex laevigata;37865;actual measurement;one-seeded generative dispersule;.7155;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.7155;.736;.695;100;;Air dried weight;;2a Carex laevigata;37865;actual measurement;germinule;2.69;;-4;;BIOLFLOR database;2.69;;;;;Air dried weight;;3 Carex laevigata;37865;actual measurement;germinule;1.069;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.069;;;50;;Air dried weight;;3 Carex laevigata;37865;actual measurement;germinule;.998;;-4;;BIOLFLOR database;.998;;;;;Air dried weight;;3 Carex laevigata;37865;actual measurement;germinule;.894;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.894;;;100;;Air dried weight;;3 Carex laevigata;37865;other;germinule;1.1996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex lasiocarpa;37319;actual measurement (following LEDA data standards);one-seeded generative dispersule;.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;;;50;used balance: Mettler Toledo 4, disp. unit utricle;Air dried weight;;2a Carex lasiocarpa;37319;actual measurement (following LEDA data standards);one-seeded generative dispersule;.62;1;-2;.62;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;.62;.62;;preaggregated value obtained from single record;Air dried weight;;2a Carex lasiocarpa;37319;actual measurement;germinule;.58;;-4;;BIOLFLOR database;.58;;;;;Air dried weight;;3 Carex lasiocarpa;37319;actual measurement;one-seeded generative dispersule;.58;;-4;;BIOLFLOR database;.58;;;;;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement;one-seeded generative dispersule;.664;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.664;;;50;;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement;one-seeded generative dispersule;.642;;-4;;BIOLFLOR database;.642;;;;;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement;germinule;.664;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.664;;;50;;Air dried weight;;3 Carex lepidocarpa;37871;actual measurement;germinule;.642;;-4;;BIOLFLOR database;.642;;;;;Air dried weight;;3 Carex lepidocarpa;37871;actual measurement;generative dispersule;.456;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.456;.56;.3;1;;Air dried weight;;2 Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.86;10;-2;.86;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.85;.94;.76;;preaggregated value obtained from single record;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.9;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.82;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.82;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.84;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.87;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.87;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.92;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.76;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.76;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex lepidocarpa;37871;actual measurement (following LEDA data standards);one-seeded generative dispersule;.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.94;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex ligerica;37874;actual measurement;generative dispersule;.87;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.87;.87;.87;30;;Air dried weight;;2 Carex limosa;37761;other;one-seeded generative dispersule;1.7564;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7564;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex limosa;37761;actual measurement;germinule;1.8;;-4;;BIOLFLOR database;1.8;;;;;Air dried weight;;3 Carex limosa;37761;actual measurement;one-seeded generative dispersule;1.8;;-4;;BIOLFLOR database;1.8;;;;;Air dried weight;;2a Carex limosa;37761;actual measurement;one-seeded generative dispersule;1.4575;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.4575;1.471;1.444;100;;Air dried weight;;2a Carex limosa;37761;other;germinule;1.7564;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7564;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex magellanica;37333;other;germinule;1.34;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.34;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex magellanica;37333;other;germinule;1.564;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.564;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex magellanica;37333;actual measurement;germinule;.558;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.558;;;20;;Air dried weight;;3 Carex maritima;37338;other;unknown;1.1272;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex microglochin;37344;other;germinule;.3864;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex microglochin;37344;actual measurement;germinule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;3 Carex microglochin;37344;other;one-seeded generative dispersule;.3864;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex microglochin;37344;actual measurement;one-seeded generative dispersule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;2a Carex montana;37346;actual measurement;one-seeded generative dispersule;.99;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.99;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex montana;37346;actual measurement;generative dispersule;.31;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.31;.46;.24;1;;Air dried weight;;2 Carex mucronata;37791;actual measurement;one-seeded generative dispersule;.83;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.83;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex muricata;37224;other;one-seeded generative dispersule;1.8272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex muricata;37224;other;one-seeded generative dispersule;1.8596;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8596;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex muricata;37224;other;one-seeded generative dispersule;2.1772;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1772;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex muricata;37224;other;one-seeded generative dispersule;1.4968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex muricata;37224;actual measurement;one-seeded generative dispersule;1.678;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.678;;;50;;Air dried weight;;2a Carex muricata;37224;actual measurement;one-seeded generative dispersule;2.101;;-4;;BIOLFLOR database;2.101;;;;;Air dried weight;;2a Carex muricata;37224;actual measurement;one-seeded generative dispersule;1.226;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.226;;;50;;Air dried weight;;2a Carex muricata;37224;actual measurement;germinule;1.678;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.678;;;50;;Air dried weight;;3 Carex muricata;37224;actual measurement;germinule;1.226;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.226;;;50;;Air dried weight;;3 Carex muricata;37224;actual measurement;germinule;1.59857;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.59857;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Carex muricata;37224;actual measurement;germinule;2.101;;-4;;BIOLFLOR database;2.101;;;;;Air dried weight;;3 Carex muricata;37224;other;germinule;1.4968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex muricata;37224;other;germinule;1.8272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex muricata;37224;other;germinule;1.8596;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8596;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex muricata;37224;other;germinule;2.1772;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1772;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex nigra;37228;actual measurement (following LEDA data standards);germinule;.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;;;50;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.75;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.84;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.71;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.71;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.79;10;-2;.79;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.8;.89;.71;;preaggregated value obtained from single record;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.76;1;-2;.76;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.76;.76;.76;;Preaggregated data obtained from single record. Weight;;;2a Carex nigra;37228;other;germinule;.8892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex nigra;37228;other;germinule;.7156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.76;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.76;;;10;Weight;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.81;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.81;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.85;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.85;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.72;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.72;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.74;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement (following LEDA data standards);germinule;.41;1;-2;.41;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;.41;.41;;preaggregated value obtained from single record;Air dried weight;;3 Carex nigra;37228;actual measurement (following LEDA data standards);one-seeded generative dispersule;.77;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.77;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex nigra;37228;actual measurement;germinule;.704;;-4;;BIOLFLOR database;.704;.81;.544;;;Air dried weight;;3 Carex nigra;37228;actual measurement;one-seeded generative dispersule;.574;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.574;;;50;;Air dried weight;;2a Carex nigra;37228;actual measurement;one-seeded generative dispersule;.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.81;;;50;;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.57;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.57;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.42;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.42;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.36;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.29;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.25;8;-2;.25;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;.5;.09;;Preaggregated data obtained from single record. No. of seeds per individual: 9-10;;;3 Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.34;8;-2;.34;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;.68;.17;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 9-10;;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.57;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.57;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.42;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.42;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.36;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.29;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.43;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.43;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.19;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.35;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.35;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.5;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.5;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.23;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.23;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Carex norvegica;37233;actual measurement (following LEDA data standards);germinule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Carex ornithopoda;37237;other;germinule;.8392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex ornithopoda;37237;other;one-seeded generative dispersule;.8392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex ornithopoda;37237;actual measurement;one-seeded generative dispersule;.68;;-4;;BIOLFLOR database;.68;.685;.674;;;Air dried weight;;2a Carex ornithopoda;37237;actual measurement;germinule;.68;;-4;;BIOLFLOR database;.68;.685;.674;;;Air dried weight;;3 Carex otrubae;37711;actual measurement;germinule;1.39;;-4;;BIOLFLOR database;1.39;1.5;1.28;;;Air dried weight;;3 Carex otrubae;37711;actual measurement;one-seeded generative dispersule;1.0555;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.0555;1.097;1.014;100;;Air dried weight;;2a Carex otrubae;37711;actual measurement;one-seeded generative dispersule;1.658;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.658;;;50;;Air dried weight;;2a Carex otrubae;37711;actual measurement;one-seeded generative dispersule;1.275;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.275;;;353;;Air dried weight;;2a Carex otrubae;37711;actual measurement;one-seeded generative dispersule;1.536;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.536;;;50;;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;other;germinule;1.7008;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7008;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;10;-2;.63;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;.67;.6;;preaggregated value obtained from single record;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.65;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.67;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.67;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex otrubae;37711;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex ovalis;37242;actual measurement (following LEDA data standards);germinule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex ovalis;37242;other;germinule;.6748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex ovalis;37242;actual measurement (following LEDA data standards);germinule;.37;1;-2;.37;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;.37;.37;;preaggregated value obtained from single record;Air dried weight;;3 Carex ovalis;37242;actual measurement;one-seeded generative dispersule;.5;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.5;;;50;;Air dried weight;;2a Carex ovalis;37242;actual measurement;one-seeded generative dispersule;.482;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.482;;;100;;Air dried weight;;2a Carex ovalis;37242;actual measurement;generative dispersule;.6185;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.6185;.642;.595;100;;Air dried weight;;2 Carex pallescens;37247;actual measurement;germinule;1.28;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.28;;;50;;Air dried weight;;3 Carex pallescens;37247;actual measurement;germinule;1.154;;-4;;BIOLFLOR database;1.154;;;;;Air dried weight;;3 Carex pallescens;37247;actual measurement;germinule;1.417;;-4;;BIOLFLOR database;1.417;;;;;Air dried weight;;3 Carex pallescens;37247;actual measurement;one-seeded generative dispersule;1.28;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.28;;;50;;Air dried weight;;2a Carex pallescens;37247;actual measurement;one-seeded generative dispersule;1.417;;-4;;BIOLFLOR database;1.417;;;;;Air dried weight;;2a Carex pallescens;37247;actual measurement;one-seeded generative dispersule;.9675;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.9675;.974;.961;100;;Air dried weight;;2a Carex panicea;37248;actual measurement;one-seeded generative dispersule;2.778;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.778;;;50;;Air dried weight;;2a Carex panicea;37248;actual measurement;one-seeded generative dispersule;2.473;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.473;2.545;2.401;100;;Air dried weight;;2a Carex panicea;37248;actual measurement;germinule;1.953;;-4;;BIOLFLOR database;1.953;2.025;1.88;;;Air dried weight;;3 Carex panicea;37248;actual measurement;one-seeded generative dispersule;1.881;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.881;;;21;;Air dried weight;;2a Carex panicea;37248;actual measurement (following LEDA data standards);germinule;2.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.24;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Carex panicea;37248;other;germinule;2.8224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex panicea;37248;actual measurement (following LEDA data standards);germinule;2.24;1;-2;2.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.24;2.24;2.24;;preaggregated value obtained from single record;Air dried weight;;3 Carex paniculata;37249;actual measurement (following LEDA data standards);germinule;.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.75;;;100;used balance: Mettler H51, fruit;Air dried weight;;3 Carex paniculata;37249;actual measurement (following LEDA data standards);germinule;.75;1;-2;.75;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.75;.75;.75;;preaggregated value obtained from single record;Air dried weight;;3 Carex paniculata;37249;other;germinule;.9248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex paniculata;37249;actual measurement;one-seeded generative dispersule;.747;;-4;;BIOLFLOR database;.747;.82;.7;;;Air dried weight;;2a Carex paniculata;37249;actual measurement;germinule;.747;;-4;;BIOLFLOR database;.747;.82;.7;;;Air dried weight;;3 Carex paniculata;37249;actual measurement;germinule;.82;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.82;;;100;;Air dried weight;;3 Carex paniculata;37249;actual measurement;one-seeded generative dispersule;.82;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.82;;;100;;Air dried weight;;2a Carex paniculata;37249;other;one-seeded generative dispersule;.9248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex parviflora;37728;other;unknown;1.0236;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex pauciflora;37251;actual measurement;generative dispersule;.571744898;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.571744898;.574489796;.569;98;;Air dried weight;;2 Carex pauciflora;37251;actual measurement;germinule;.475;;-4;;BIOLFLOR database;.475;;;;;Air dried weight;;3 Carex pauciflora;37251;actual measurement;germinule;.725;;-4;;BIOLFLOR database;.725;;;;;Air dried weight;;3 Carex pauciflora;37251;actual measurement;one-seeded generative dispersule;.725;;-4;;BIOLFLOR database;.725;;;;;Air dried weight;;2a Carex pendula;37253;actual measurement;germinule;.76;;-4;;BIOLFLOR database;.76;.81;.71;;;Air dried weight;;3 Carex pendula;37253;actual measurement;germinule;.748;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.748;;;50;;Air dried weight;;3 Carex pendula;37253;other;one-seeded generative dispersule;.6456;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6456;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex pendula;37253;other;one-seeded generative dispersule;.6796;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex pendula;37253;actual measurement;one-seeded generative dispersule;.76;;-4;;BIOLFLOR database;.76;.81;.71;;;Air dried weight;;2a Carex pendula;37253;actual measurement;one-seeded generative dispersule;.4535;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4535;.456;.451;100;;Air dried weight;;2a Carex pendula;37253;actual measurement;one-seeded generative dispersule;.748;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.748;;;50;;Air dried weight;;2a Carex pendula;37253;actual measurement (following LEDA data standards);one-seeded generative dispersule;.91;1;-2;.91;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.91;.91;.91;;preaggregated value obtained from single record;Air dried weight;;2a Carex pendula;37253;other;germinule;.6456;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6456;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex pendula;37253;other;germinule;.6796;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex pendula;37253;actual measurement (following LEDA data standards);one-seeded generative dispersule;.91;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.91;;;100;used balance: Mettler H51, disp.unit;Air dried weight;;2a Carex pilosa;37256;actual measurement;generative dispersule;3.32;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.32;3.5;3.1;1;;Air dried weight;;2 Carex pilulifera;37739;actual measurement;generative dispersule;1.029032258;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.029032258;1.064516129;.993548387;62;;Air dried weight;;2 Carex pilulifera;37739;actual measurement;germinule;1.17;;-4;;BIOLFLOR database;1.17;;;;;Air dried weight;;3 Carex pilulifera;37739;actual measurement (following LEDA data standards);germinule;1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Carex pilulifera;37739;other;germinule;1.15;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.15;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.35;10;-2;1.35;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.3;1.47;1.06;;preaggregated value obtained from single record;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.21;1;-2;1.21;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;1.21;1.21;;preaggregated value obtained from single record;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.37;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.44;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.44;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.2;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.47;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.06;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.08;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);germinule;1;1;-2;1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1;1;1;;preaggregated value obtained from single record;Air dried weight;;3 Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.33;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pilulifera;37739;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.39;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex pseudocyperus;37263;actual measurement (following LEDA data standards);germinule;.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Carex pseudocyperus;37263;actual measurement (following LEDA data standards);germinule;.47;1;-2;.47;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;.47;.47;;preaggregated value obtained from single record;Air dried weight;;3 Carex pseudocyperus;37263;actual measurement;germinule;.44;;-4;;BIOLFLOR database;.44;;;;;Air dried weight;;3 Carex pseudocyperus;37263;actual measurement;germinule;1.2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.2;;;50;;Air dried weight;;3 Carex pseudocyperus;37263;actual measurement;germinule;.39;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.39;;;50;;Air dried weight;;3 Carex pseudocyperus;37263;actual measurement;germinule;.528;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.528;;;50;;Air dried weight;;3 Carex pseudocyperus;37263;actual measurement;germinule;.94;;-4;;BIOLFLOR database;.94;;;;;Air dried weight;;3 Carex pseudocyperus;37263;actual measurement;germinule;.988;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.988;;;50;;Air dried weight;;3 Carex pseudocyperus;37263;actual measurement;one-seeded generative dispersule;.94;;-4;;BIOLFLOR database;.94;;;;;Air dried weight;;2a Carex pseudocyperus;37263;actual measurement;one-seeded generative dispersule;1.2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.2;;;50;;Air dried weight;;2a Carex pseudocyperus;37263;actual measurement;one-seeded generative dispersule;.39;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.39;;;50;;Air dried weight;;2a Carex pseudocyperus;37263;actual measurement;one-seeded generative dispersule;.528;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.528;;;50;;Air dried weight;;2a Carex pseudocyperus;37263;actual measurement;one-seeded generative dispersule;.988;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.988;;;50;;Air dried weight;;2a Carex pulicaris;37751;actual measurement;one-seeded generative dispersule;1.461;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.461;;;100;;Air dried weight;;2a Carex pulicaris;37751;actual measurement;one-seeded generative dispersule;1.176;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.176;1.201;1.151;100;;Air dried weight;;2a Carex pulicaris;37751;actual measurement;germinule;1.46;;-4;;BIOLFLOR database;1.46;;;;;Air dried weight;;3 Carex pulicaris;37751;actual measurement;one-seeded generative dispersule;1.446;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.446;;;50;;Air dried weight;;2a Carex pulicaris;37751;other;germinule;2.0176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex pulicaris;37751;other;germinule;1.3052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex punctata;37752;actual measurement (following LEDA data standards);germinule;.68;1;-2;.68;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.68;.68;.68;;preaggregated value obtained from single record;Air dried weight;;3 Carex punctata;37752;other;germinule;1.2592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.1;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.99;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.05;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.09;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.07;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.03;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.12;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.11;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.08;10;-2;1.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.05;1.13;.81;;preaggregated value obtained from single record;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;.81;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.81;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex punctata;37752;actual measurement (following LEDA data standards);germinule;.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.68;;;30;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Carex rariflora;37753;other;unknown;1.1684;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Carex remota;37756;actual measurement (following LEDA data standards);one-seeded generative dispersule;.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Carex remota;37756;other;germinule;.4512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex remota;37756;actual measurement (following LEDA data standards);one-seeded generative dispersule;.28;1;-2;.28;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;.28;.28;;preaggregated value obtained from single record;Air dried weight;;2a Carex remota;37756;actual measurement;germinule;.301;;-4;;BIOLFLOR database;.301;.304;.292;;;Air dried weight;;3 Carex remota;37756;actual measurement;germinule;.389;;-4;;BIOLFLOR database;.389;.408;.372;;;Air dried weight;;3 Carex remota;37756;actual measurement;germinule;.343;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.343;;;120;;Air dried weight;;3 Carex remota;37756;actual measurement;germinule;.432;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.432;;;50;;Air dried weight;;3 Carex remota;37756;actual measurement;one-seeded generative dispersule;.389;;-4;;BIOLFLOR database;.389;.408;.372;;;Air dried weight;;2a Carex remota;37756;actual measurement;one-seeded generative dispersule;.432;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.432;;;50;;Air dried weight;;2a Carex remota;37756;actual measurement;one-seeded generative dispersule;.343;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.343;;;120;;Air dried weight;;2a Carex remota;37756;other;one-seeded generative dispersule;.4512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex riparia;37273;actual measurement;one-seeded generative dispersule;1.978;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.978;2.104;1.852;100;;Air dried weight;;2a Carex riparia;37273;actual measurement;one-seeded generative dispersule;1.4;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.4;;;50;;Air dried weight;;2a Carex riparia;37273;other;germinule;2.5948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;1.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.06;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;1.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.07;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;1.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.02;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.94;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;1.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.01;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;1.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.04;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.97;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;other;germinule;1.4404;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4404;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;.59;1;-2;.59;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;.59;.59;;preaggregated value obtained from single record;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.6;10;-2;1.6;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.61;1.74;1.5;;preaggregated value obtained from single record;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.58;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.59;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.74;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.59;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.6;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.5;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.65;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.65;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.55;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);one-seeded generative dispersule;.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;;;50;used balance: Mettler H51, disp.unit;Air dried weight;;2a Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;1.02;10;-2;1.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.01;1.07;.94;;preaggregated value obtained from single record;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.97;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.98;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement (following LEDA data standards);germinule;1.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.03;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex rostrata;37274;actual measurement;germinule;.736;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.736;;;50;;Air dried weight;;3 Carex rostrata;37274;actual measurement;germinule;.855;;-4;;BIOLFLOR database;.855;;;;;Air dried weight;;3 Carex rostrata;37274;actual measurement;germinule;1.21;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.21;;;50;;Air dried weight;;3 Carex rostrata;37274;actual measurement;generative dispersule;.496;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.496;.517;.475;100;with utricle;Air dried weight;;2 Carex rostrata;37274;other;one-seeded generative dispersule;1.4404;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4404;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex rostrata;37274;actual measurement;one-seeded generative dispersule;.736;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.736;;;50;;Air dried weight;;2a Carex rostrata;37274;actual measurement;one-seeded generative dispersule;.855;;-4;;BIOLFLOR database;.855;;;;;Air dried weight;;2a Carex rostrata;37274;actual measurement;one-seeded generative dispersule;1.21;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.21;;;50;;Air dried weight;;2a Carex saxatilis;37653;actual measurement;generative dispersule;.811;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.811;.845;.777;100;with utricle;Air dried weight;;2 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.85;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.85;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.76;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.76;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.9;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.9;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.65;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.65;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.82;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.82;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.97;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.97;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.66;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.66;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex saxatilis;37653;other;germinule;1.0216;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0216;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.9;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.9;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.84;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.84;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.01;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.01;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.18;1;-2;.18;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;.18;.18;;Preaggregated data obtained from single record. No. of seeds per individual: 12;;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.76;5;-2;.76;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.77;.97;.55;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.82;3;-2;.82;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.77;.85;.65;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;;;12;No. of seeds per individual: 12;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.55;;;10;No. of seeds per individual: 10;Air dried weight;;3 Carex saxatilis;37653;other;germinule;.6176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.9;5;-2;.9;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.94;1.16;.69;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1;3;-2;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.95;1.01;.84;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-2;.32;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;.32;.32;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 12;;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;12;Weight including appendages. No. of seeds per individual: 12;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.89;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.89;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.69;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.69;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.16;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.04;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.9;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.9;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.84;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.84;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.01;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.01;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;12;Weight including appendages. No. of seeds per individual: 12;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.89;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.89;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;.69;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.69;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.16;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex saxatilis;37653;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.04;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Carex scandinavica;37016;actual measurement (following LEDA data standards);one-seeded generative dispersule;.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.83;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Carex scandinavica;37016;actual measurement (following LEDA data standards);one-seeded generative dispersule;.41;1;-2;.41;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;.41;.41;;preaggregated value obtained from single record;Air dried weight;;2a Carex scandinavica;37016;actual measurement (following LEDA data standards);one-seeded generative dispersule;.83;1;-2;.83;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.83;.83;.83;;preaggregated value obtained from single record;Air dried weight;;2a Carex scandinavica;37016;other;germinule;.6748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex scandinavica;37016;actual measurement (following LEDA data standards);one-seeded generative dispersule;.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;;;100;used balance: Mettler H51, disp.unit;Air dried weight;;2a Carex scandinavica;37016;actual measurement (following LEDA data standards);one-seeded generative dispersule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Carex scandinavica;37016;actual measurement (following LEDA data standards);one-seeded generative dispersule;.37;1;-2;.37;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;.37;.37;;preaggregated value obtained from single record;Air dried weight;;2a Carex scandinavica;37016;actual measurement;one-seeded generative dispersule;.575;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.575;.608;.542;100;;Air dried weight;;2a Carex secalina;37658;actual measurement;one-seeded generative dispersule;1.021;;-4;;BIOLFLOR database;1.021;;;;;Air dried weight;;2a Carex secalina;37658;actual measurement;one-seeded generative dispersule;.9355;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.9355;.947;.924;100;;Air dried weight;;2a Carex secalina;37658;actual measurement;germinule;1.021;;-4;;BIOLFLOR database;1.021;;;;;Air dried weight;;3 Carex sempervirens;37283;actual measurement;one-seeded generative dispersule;.95;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.95;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex spicata;37285;actual measurement;one-seeded generative dispersule;2.5;;-4;;BIOLFLOR database;2.5;;;;;Air dried weight;;2a Carex spicata;37285;other;one-seeded generative dispersule;2.0372;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0372;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex spicata;37285;actual measurement;generative dispersule;2.8695;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.8695;2.911;2.828;100;;Air dried weight;;2 Carex spicata;37285;actual measurement;germinule;2.5;;-4;;BIOLFLOR database;2.5;;;;;Air dried weight;;3 Carex spicata;37285;other;germinule;2.0372;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0372;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex strigosa;37674;other;germinule;.5492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex sylvatica;37678;actual measurement (following LEDA data standards);germinule;1.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.59;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carex sylvatica;37678;other;germinule;1.2952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex sylvatica;37678;actual measurement (following LEDA data standards);germinule;1.59;1;-2;1.59;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.59;1.59;1.59;;preaggregated value obtained from single record;Air dried weight;;3 Carex sylvatica;37678;actual measurement;germinule;1.647;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.647;;;100;;Air dried weight;;3 Carex sylvatica;37678;actual measurement;one-seeded generative dispersule;2.036;;-4;;BIOLFLOR database;2.036;2.1;1.96;;;Air dried weight;;2a Carex sylvatica;37678;actual measurement;one-seeded generative dispersule;1.452;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.452;1.484;1.409;100;;Air dried weight;;2a Carex sylvatica;37678;actual measurement;germinule;1.97;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.97;;;50;;Air dried weight;;3 Carex sylvatica;37678;actual measurement;germinule;2.036;;-4;;BIOLFLOR database;2.036;2.1;1.96;;;Air dried weight;;3 Carex sylvatica;37678;actual measurement;germinule;1.433;;-4;;BIOLFLOR database;1.433;1.65;1.216;;;Air dried weight;;3 Carex sylvatica;37678;other;one-seeded generative dispersule;1.2952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex sylvatica;37678;actual measurement;one-seeded generative dispersule;1.67;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.67;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Carex sylvatica;37678;actual measurement;one-seeded generative dispersule;1.647;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.647;;;100;;Air dried weight;;2a Carex sylvatica;37678;actual measurement;one-seeded generative dispersule;1.97;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.97;;;50;;Air dried weight;;2a Carex tomentosa;37173;actual measurement;one-seeded generative dispersule;1.612;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.612;1.631;1.593;100;;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.02;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.04;10;-2;1.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.05;1.28;.78;;preaggregated value obtained from single record;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.11;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.78;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;.96;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.96;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.22;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.23;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.06;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;.87;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.87;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex tomentosa;37173;actual measurement (following LEDA data standards);one-seeded generative dispersule;.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.95;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Carex trinervis;37174;actual measurement;one-seeded generative dispersule;.2765625;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2765625;.31875;.234375;32;;Air dried weight;;2a Carex umbrosa;37688;actual measurement;generative dispersule;.566;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.566;.568;.564;100;;Air dried weight;;2 Carex umbrosa;37688;actual measurement;generative dispersule;.4;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4;.5;.3;1;;Air dried weight;;2 Carex vaginata;37695;actual measurement;generative dispersule;3.675;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];3.675;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Carex vaginata;37695;actual measurement (following LEDA data standards);germinule;2.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.17;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.24;10;-2;3.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.21;3.46;2.91;;preaggregated value obtained from single record;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.46;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.27;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.18;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.23;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.15;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.25;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.08;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.27;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;other;germinule;2.088;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.088;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.27;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vaginata;37695;actual measurement (following LEDA data standards);germinule;2.17;1;-2;2.17;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.17;2.17;2.17;;preaggregated value obtained from single record;Air dried weight;;3 Carex vaginata;37695;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.91;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.91;;;10;used balance: Mettler H51, fruit;Air dried weight;;2a Carex vesicaria;37183;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;;;100;used balance: Mettler H51, disp.unit;Air dried weight;;2a Carex vesicaria;37183;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-2;.32;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;.32;.32;;preaggregated value obtained from single record;Air dried weight;;2a Carex vesicaria;37183;other;germinule;1.1776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex vesicaria;37183;actual measurement;germinule;3.247;;-4;;BIOLFLOR database;3.247;;;;;Air dried weight;;3 Carex vesicaria;37183;actual measurement;germinule;1.01;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.01;;;20;;Air dried weight;;3 Carex vesicaria;37183;actual measurement;one-seeded generative dispersule;1.0115;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.0115;1.119;.904;100;;Air dried weight;;2a Carex vesicaria;37183;actual measurement;one-seeded generative dispersule;3.247;;-4;;BIOLFLOR database;3.247;;;;;Air dried weight;;2a Carex vesicaria;37183;actual measurement;one-seeded generative dispersule;1.01;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.01;;;20;;Air dried weight;;2a Carex vesicaria;37183;other;one-seeded generative dispersule;1.1776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carex vulpina;37185;actual measurement;one-seeded generative dispersule;.8245;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.8245;.83;.819;100;;Air dried weight;;2a Carex vulpina;37185;other;germinule;1.7192;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7192;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex vulpina;37185;other;germinule;1.5536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carex vulpinoidea;37584;actual measurement;germinule;.188;;-4;;BIOLFLOR database;.188;;;;;Air dried weight;;3 Carex vulpinoidea;37584;actual measurement;germinule;.241;;-4;;BIOLFLOR database;.241;.245;.236;;;Air dried weight;;3 Carex vulpinoidea;37584;actual measurement;one-seeded generative dispersule;.241;;-4;;BIOLFLOR database;.241;.245;.236;;;Air dried weight;;2a Carlina acaulis;3171;actual measurement;generative dispersule;5.2;;-4;;BIOLFLOR database;5.2;;;;;Air dried weight;;2 Carlina acaulis;3171;actual measurement;generative dispersule;3;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3;3.4;2.5;1;;Air dried weight;;2 Carlina acaulis;3171;actual measurement;germinule;4.05;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.05;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Carlina vulgaris s. vulgaris;2945;actual measurement;germinule;1.436;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.436;;;1;summers of 1995 and 1996;Unknown;;3 Carlina vulgaris s. vulgaris;2945;actual measurement;one-seeded generative dispersule;1.528;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.528;;;50;;Air dried weight;;2a Carlina vulgaris s. vulgaris;2945;other;germinule;1.3552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carpesium cernuum;5461;actual measurement;one-seeded generative dispersule;.607;;-4;;BIOLFLOR database;.607;;;;;Air dried weight;;2a Carpesium cernuum;5461;actual measurement;germinule;.607;;-4;;BIOLFLOR database;.607;;;;;Air dried weight;;3 Carpinus betulus;17990;actual measurement;generative dispersule;72.042;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;72.042;72.993;71.091;100;;Fresh weight;;2 Carpinus betulus;17990;actual measurement;germinule;2.87;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.87;;;25;;Air dried weight;;3 Carpinus betulus;17990;actual measurement;germinule;63.801;;-4;;BIOLFLOR database;63.801;84.602;50;;;Air dried weight;;3 Carpinus betulus;17990;actual measurement;one-seeded generative dispersule;2.87;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.87;;;25;;Air dried weight;;2a Carpinus betulus;17990;actual measurement;one-seeded generative dispersule;63.801;;-4;;BIOLFLOR database;63.801;84.602;50;;;Air dried weight;;2a Carpinus betulus;17990;other;one-seeded generative dispersule;43.6616;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);43.6616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Carpinus betulus;17990;other;germinule;43.6616;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);43.6616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carthamus lanatus;2947;actual measurement;generative dispersule;5.27;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.27;;;1;n an replicates unknown;Air dried weight;;2 Carthamus lanatus;2947;actual measurement;generative dispersule;15.51351351;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;15.51351351;15.51351351;15.51351351;74;;Air dried weight;;2 Carthamus tinctorius;3822;actual measurement;germinule;26.152;;-4;;BIOLFLOR database;26.152;;;;;Air dried weight;;3 Carum carvi;2331;actual measurement;germinule;2.6;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2.8;2.4;1;n and replicates unknown;Air dried weight;;3 Carum carvi;2331;actual measurement;germinule;2.613;;-4;;BIOLFLOR database;2.613;3;2.24;;;Air dried weight;;3 Carum carvi;2331;actual measurement;germinule;2.248;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.248;;;1;summers of 1995 and 1996;Unknown;;3 Carum carvi;2331;actual measurement;one-seeded generative dispersule;2.613;;-4;;BIOLFLOR database;2.613;3;2.24;;;Air dried weight;;2a Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.41;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.63;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.79;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.94;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.68;10;-2;1.68;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.71;2.13;1.41;;preaggregated value obtained from single record;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.53;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.66;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;2.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.13;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.77;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.77;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.55;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum carvi;2331;actual measurement (following LEDA data standards);germinule;1.7;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.7;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Carum verticillatum;1858;other;germinule;.948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Carum verticillatum;1858;actual measurement;one-seeded generative dispersule;.948;;-4;;BIOLFLOR database;.948;.966;.932;;;Air dried weight;;2a Carum verticillatum;1858;actual measurement;germinule;.948;;-4;;BIOLFLOR database;.948;.966;.932;;;Air dried weight;;3 Carum verticillatum;1858;other;one-seeded generative dispersule;.948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cassiope hypnoides;19524;actual measurement;generative dispersule;.013;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.013;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Cassiope hypnoides;19524;actual measurement;generative dispersule;.005;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.005;.005;.005;100;;Unknown;;2 Cassiope hypnoides;19524;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;;;89;No. of seeds per individual: 20-200;Air dried weight;;3 Cassiope hypnoides;19524;actual measurement (following LEDA data standards);germinule;.01;3;-2;.01;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;.01;.01;;Preaggregated data obtained from single record. No. of seeds per individual: 20-200;;;3 Cassiope hypnoides;19524;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;;;89;No. of seeds per individual: 20-200;Air dried weight;;3 Cassiope hypnoides;19524;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;;;89;No. of seeds per individual: 20-200;Air dried weight;;3 Castanea sativa;22480;actual measurement;generative dispersule;5347.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5347.59;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Castanea sativa;22480;actual measurement;generative dispersule;1895.172414;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1895.172414;1895.172414;1895.172414;29;;Fresh weight;;2 Castanea sativa;22480;actual measurement;one-seeded generative dispersule;1433;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1433;;;25;;Air dried weight;;2a Catabrosa aquatica;41695;actual measurement;one-seeded generative dispersule;.462;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.462;;;100;;Air dried weight;;2a Catabrosa aquatica;41695;other;one-seeded generative dispersule;.4144;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Catabrosa aquatica;41695;actual measurement;germinule;.46;;-4;;BIOLFLOR database;.46;;;;;Air dried weight;;3 Catabrosa aquatica;41695;actual measurement;germinule;.462;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.462;;;100;;Air dried weight;;3 Catabrosa aquatica;41695;actual measurement;germinule;.461;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.461;;;50;;Air dried weight;;3 Catabrosa aquatica;41695;actual measurement;one-seeded generative dispersule;.46;;-4;;BIOLFLOR database;.46;;;;;Air dried weight;;2a Catabrosa aquatica;41695;actual measurement;one-seeded generative dispersule;.461;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.461;;;50;;Air dried weight;;2a Catabrosa aquatica;41695;actual measurement;one-seeded generative dispersule;.0465;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0465;.049;.044;100;;Air dried weight;;2a Catabrosa aquatica;41695;other;germinule;.4144;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Caucalis platycarpos;2287;actual measurement;one-seeded generative dispersule;21.39;;-4;;BIOLFLOR database;21.39;21.801;21.197;;;Air dried weight;;2a Caucalis platycarpos;2287;actual measurement;generative dispersule;15.98;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);15.98;;;1;n an replicates unknown;Air dried weight;;2 Caucalis platycarpos;2287;actual measurement;germinule;21.39;;-4;;BIOLFLOR database;21.39;21.801;21.197;;;Air dried weight;;3 Celtis australis;35171;actual measurement;generative dispersule;151.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);151.5;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Celtis australis;35171;actual measurement;one-seeded generative dispersule;222;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;222;;;25;;Air dried weight;;2a Centaurea alpestris;5244;actual measurement;unknown;8.82;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];8.82;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Centaurea calcitrapa;2960;other;unknown;2.3032;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Centaurea corymbosa;6173;actual measurement;generative dispersule;2.24;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.24;;;1;n and replicates unknown;Air dried weight;;2 Centaurea cyanus;3132;actual measurement;generative dispersule;4.6708;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.6708;4.863;4.584;100;;Air dried weight;;2 Centaurea cyanus;3132;actual measurement;germinule;3.993;;-4;;BIOLFLOR database;3.993;4.5;2.8;;;Air dried weight;;3 Centaurea cyanus;3132;actual measurement;germinule;14.7925;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;14.7925;15;14.585;1;;Air dried weight;;3 Centaurea cyanus;3132;actual measurement;one-seeded generative dispersule;3.993;;-4;;BIOLFLOR database;3.993;4.5;2.8;;;Air dried weight;;2a Centaurea cyanus;3132;other;one-seeded generative dispersule;4.8248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.8248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Centaurea cyanus;3132;other;germinule;4.8248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.8248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurea jacea;4270;actual measurement;generative dispersule;1.903;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.903;1.903;1.903;100;;Air dried weight;;2 Centaurea jacea;3112;actual measurement;germinule;1.064;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.064;;;1;summers of 1995 and 1996;Unknown;;3 Centaurea jacea;4270;actual measurement;one-seeded generative dispersule;2;;-4;;BIOLFLOR database;2;2.1;1.9;;;Air dried weight;;2a Centaurea jacea;4270;actual measurement;germinule;2.9828;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.9828;3.012;2.96;100;;Air dried weight;;3 Centaurea jacea;4270;actual measurement;germinule;2;;-4;;BIOLFLOR database;2;2.1;1.9;;;Air dried weight;;3 Centaurea maculosa;3140;actual measurement;generative dispersule;2.36;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.36;;;1;n and replicates unknown;Air dried weight;;2 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;17.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.5;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;16.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.09;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;16.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.56;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;17.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.32;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;5.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.39;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;5.39;1;-2;5.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.39;5.39;5.39;;preaggregated value obtained from single record;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;16.72;10;-2;16.72;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.59;18.34;14.02;;preaggregated value obtained from single record;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;15.7;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.7;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;18.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.34;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;14.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.02;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;16.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.11;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;17.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.35;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea montana;2682;actual measurement (following LEDA data standards);germinule;16.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.88;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Centaurea nigra;3754;other;germinule;2.1628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurea nigra;3754;actual measurement;generative dispersule;3.26;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.26;3.6;2.9;1;;Air dried weight;;2 Centaurea nigra;3754;actual measurement;germinule;2.39;;-4;;BIOLFLOR database;2.39;2.9;1.98;;;Air dried weight;;3 Centaurea nigra;3754;actual measurement;germinule;2.547;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.547;;;100;;Air dried weight;;3 Centaurea nigra;3754;other;one-seeded generative dispersule;2.1628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Centaurea nigra;3754;actual measurement;one-seeded generative dispersule;2.39;;-4;;BIOLFLOR database;2.39;2.9;1.98;;;Air dried weight;;2a Centaurea nigra;3754;actual measurement;one-seeded generative dispersule;2.547;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.547;;;100;;Air dried weight;;2a Centaurea nigrescens;2931;actual measurement;germinule;1.47;;-4;;BIOLFLOR database;1.47;1.493;1.442;;;Air dried weight;;3 Centaurea phrygia;2883;actual measurement;one-seeded generative dispersule;2.345;;-4;;BIOLFLOR database;2.345;2.41;2.28;;;Air dried weight;;2a Centaurea phrygia;2883;actual measurement;germinule;2.345;;-4;;BIOLFLOR database;2.345;2.41;2.28;;;Air dried weight;;3 Centaurea rhenana;4249;actual measurement;generative dispersule;1.903333333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.903333333;2.002;1.839333333;150;;Air dried weight;;2 Centaurea rhenana;4249;actual measurement;germinule;1.336;;-4;;BIOLFLOR database;1.336;;;;;Air dried weight;;3 Centaurea scabiosa;3597;actual measurement;one-seeded generative dispersule;6.89;;-4;;BIOLFLOR database;6.89;7.46;5.264;;;Air dried weight;;2a Centaurea scabiosa;3597;actual measurement;one-seeded generative dispersule;9.2602;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;9.2602;9.459;8.846;100;;Air dried weight;;2a Centaurea scabiosa;3597;actual measurement;one-seeded generative dispersule;6.174;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.174;;;100;;Air dried weight;;2a Centaurea scabiosa;3597;actual measurement;one-seeded generative dispersule;7.464;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.464;;;50;;Air dried weight;;2a Centaurea scabiosa;3597;actual measurement;germinule;6.89;;-4;;BIOLFLOR database;6.89;7.46;5.264;;;Air dried weight;;3 Centaurea scabiosa;3597;actual measurement;germinule;4.038;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.038;;;50;;Air dried weight;;3 Centaurea scabiosa;3597;actual measurement;germinule;7.464;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.464;;;50;;Air dried weight;;3 Centaurea scabiosa;3597;actual measurement;germinule;6.174;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.174;;;100;;Air dried weight;;3 Centaurea scabiosa;3597;actual measurement;germinule;5.86;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.86;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Centaurea scabiosa;3597;actual measurement;one-seeded generative dispersule;4.038;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.038;;;50;;Air dried weight;;2a Centaurea scabiosa;3597;other;one-seeded generative dispersule;6.5476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.5476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Centaurea scabiosa;3597;other;germinule;6.5476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.5476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurea solstitialis;3444;actual measurement;germinule;1.682;;-4;;BIOLFLOR database;1.682;;;;;Air dried weight;;3 Centaurea solstitialis;3444;actual measurement;one-seeded generative dispersule;1.682;;-4;;BIOLFLOR database;1.682;;;;;Air dried weight;;2a Centaurea triumfetti;3293;actual measurement;germinule;9.82;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.82;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Centaurium erythraea;22963;actual measurement;germinule;.01;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.01;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Centaurium erythraea;22963;actual measurement;germinule;.008;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.008;;;100;;Air dried weight;;3 Centaurium erythraea;22963;actual measurement;germinule;.009;;-4;;BIOLFLOR database;.009;.01;.007;;;Air dried weight;;3 Centaurium erythraea;22963;other;one-seeded generative dispersule;.0135;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0135;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Centaurium erythraea;22963;other;one-seeded generative dispersule;.016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Centaurium erythraea;22963;other;one-seeded generative dispersule;.0115;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0115;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Centaurium erythraea;22963;actual measurement;one-seeded generative dispersule;.009;;-4;;BIOLFLOR database;.009;.01;.007;;;Air dried weight;;2a Centaurium erythraea;22963;actual measurement;one-seeded generative dispersule;.008;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.008;;;100;;Air dried weight;;2a Centaurium erythraea;22963;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Centaurium erythraea;22963;other;germinule;.016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurium erythraea;22963;other;germinule;.0135;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0135;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurium erythraea;22963;other;germinule;.0115;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0115;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurium erythraea;22963;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Centaurium littorale;22951;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Centaurium littorale;22951;other;germinule;.0172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurium littorale;22951;other;germinule;.02;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurium littorale;22951;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Centaurium littorale;22951;actual measurement;generative dispersule;.012;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.012;.02;.01;1;;Air dried weight;;2 Centaurium pulchellum;22823;actual measurement;germinule;.014;;-4;;BIOLFLOR database;.014;.016;.013;;;Air dried weight;;3 Centaurium pulchellum;22823;actual measurement;one-seeded generative dispersule;.0025;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0025;.003;.002;100;;Air dried weight;;2a Centaurium pulchellum;22823;actual measurement;one-seeded generative dispersule;.014;;-4;;BIOLFLOR database;.014;.016;.013;;;Air dried weight;;2a Centaurium pulchellum;22823;other;one-seeded generative dispersule;.0224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Centaurium pulchellum;22823;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Centaurium pulchellum;22823;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Centaurium pulchellum;22823;other;germinule;.0224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Centaurium pulchellum;22823;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Centaurium pulchellum;22823;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Centaurium tenuiflorum;22724;other;unknown;.02;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Centaurium tenuiflorum;22724;other;unknown;.0112;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Centaurium tenuiflorum;22724;other;unknown;.0112;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Centranthus ruber;34865;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.35;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Centranthus ruber;34865;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.35;1;-2;2.35;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.35;2.35;2.35;;preaggregated value obtained from single record;Air dried weight;;2a Centranthus ruber;34865;actual measurement;one-seeded generative dispersule;1.664;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.664;;;50;;Air dried weight;;2a Centranthus ruber;34865;actual measurement;germinule;1.646;;-4;;BIOLFLOR database;1.646;1.66;1.632;;;Air dried weight;;3 Cephalanthera damasonium;39459;actual measurement;one-seeded generative dispersule;.005;;-4;;BIOLFLOR database;.005;;;;;Air dried weight;;2a Cephalanthera damasonium;39459;actual measurement;germinule;.005;;-4;;BIOLFLOR database;.005;;;;;Air dried weight;;3 Cerastium alpinum;16895;actual measurement;germinule;.268;;-4;;BIOLFLOR database;.268;.296;.25;;;Air dried weight;;3 Cerastium alpinum;16895;actual measurement;one-seeded generative dispersule;.268;;-4;;BIOLFLOR database;.268;.296;.25;;;Air dried weight;;2a Cerastium alpinum;16895;other;one-seeded generative dispersule;.2652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium alpinum;16895;other;one-seeded generative dispersule;.3004;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3004;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium alpinum;16895;other;germinule;.2652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium alpinum;16895;other;germinule;.3004;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3004;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium arvense;16782;other;germinule;.226;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.226;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium arvense;16782;actual measurement;one-seeded generative dispersule;.198;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.198;;;50;;Air dried weight;;2a Cerastium arvense;16782;actual measurement;one-seeded generative dispersule;.1088;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1088;.116;.104;150;;Air dried weight;;2a Cerastium brachypetalum;16786;actual measurement;one-seeded generative dispersule;.053;;-4;;BIOLFLOR database;.053;.055;.052;;;Air dried weight;;2a Cerastium brachypetalum;16786;actual measurement;germinule;.053;;-4;;BIOLFLOR database;.053;.055;.052;;;Air dried weight;;3 Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.0664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.058;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.058;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.0708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.0676;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.0532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.0556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.0476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;one-seeded generative dispersule;.0632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium brachypetalum;16786;other;germinule;.0708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium brachypetalum;16786;other;germinule;.0556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium brachypetalum;16786;other;germinule;.052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium brachypetalum;16786;other;germinule;.0476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium brachypetalum;16786;other;germinule;.0532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium brachypetalum;16786;other;germinule;.058;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.058;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium brachypetalum;16786;other;germinule;.0676;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium brachypetalum;16786;other;germinule;.0664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium brachypetalum;16786;other;germinule;.0632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium cerastoides;17207;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;3;No. of seeds per individual: 3;Air dried weight;;3 Cerastium cerastoides;17207;other;germinule;.2196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium cerastoides;17207;other;germinule;.136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium cerastoides;17207;other;germinule;.2088;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2088;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium cerastoides;17207;actual measurement (following LEDA data standards);germinule;.1;1;-2;.1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;.1;.1;;Preaggregated data obtained from single record. No. of seeds per individual: 3;;;3 Cerastium diffusum;16473;other;germinule;.1112;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium diffusum;16473;other;germinule;.0608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium diffusum;16473;actual measurement;one-seeded generative dispersule;.095;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.095;;;20;;Air dried weight;;2a Cerastium fontanum;16798;actual measurement;one-seeded generative dispersule;.117;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.117;;;100;;Air dried weight;;2a Cerastium fontanum;16798;actual measurement;generative dispersule;.25;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.25;;;1;n an replicates unknown;Air dried weight;;2 Cerastium fontanum;16798;actual measurement;unknown;.13;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.13;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Cerastium fontanum;16798;actual measurement;germinule;.117;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.117;;;100;;Air dried weight;;3 Cerastium fontanum;16798;actual measurement;germinule;.124;;-4;;BIOLFLOR database;.124;.16;.1;;;Air dried weight;;3 Cerastium fontanum;16798;actual measurement;germinule;.118;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.118;;;1;summers of 1995 and 1996;Unknown;;3 Cerastium fontanum;16798;actual measurement;one-seeded generative dispersule;.124;;-4;;BIOLFLOR database;.124;.16;.1;;;Air dried weight;;2a Cerastium fontanum;16798;actual measurement (following LEDA data standards);germinule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;23;No. of seeds per individual: 23;Air dried weight;;3 Cerastium fontanum;16798;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Cerastium fontanum;16798;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Cerastium fontanum;16798;actual measurement (following LEDA data standards);germinule;.17;1;-2;.17;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;.17;.17;;Preaggregated data obtained from single record. No. of seeds per individual: 23;;;3 Cerastium fontanum;16798;actual measurement (following LEDA data standards);germinule;.14;1;-2;.14;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;.14;.14;;preaggregated value obtained from single record;Air dried weight;;3 Cerastium fontanum;16798;actual measurement (following LEDA data standards);germinule;.14;1;-2;.14;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;.14;.14;;preaggregated value obtained from single record;Air dried weight;;3 Cerastium fontanum;16798;actual measurement (following LEDA data standards);germinule;.14;1;-2;.14;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;.14;.14;;preaggregated value obtained from single record;Air dried weight;;3 Cerastium fontanum;16798;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Cerastium fontanum s. vulgare;44993;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;3 Cerastium fontanum s. vulgare;44993;actual measurement;generative dispersule;.088;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.088;.12;.01;1;;Air dried weight;;2 Cerastium fontanum s. vulgare;44993;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;2a Cerastium glomeratum;17356;actual measurement;germinule;.06167;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.06167;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Cerastium glomeratum;17356;actual measurement;one-seeded generative dispersule;.059;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.059;;;60;;Air dried weight;;2a Cerastium glomeratum;17356;actual measurement;one-seeded generative dispersule;.035;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.035;.037;.033;100;;Air dried weight;;2a Cerastium glomeratum;17356;actual measurement;germinule;.062;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.062;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Cerastium glomeratum;17356;other;germinule;.0488;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium latifolium;17367;actual measurement;germinule;.35;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.35;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Cerastium latifolium;17367;actual measurement;germinule;.715;;-4;;BIOLFLOR database;.715;.81;.62;;;Air dried weight;;3 Cerastium latifolium;17367;actual measurement;one-seeded generative dispersule;.715;;-4;;BIOLFLOR database;.715;.81;.62;;;Air dried weight;;2a Cerastium pumilum;16863;other;one-seeded generative dispersule;.0724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium pumilum;16863;actual measurement;one-seeded generative dispersule;.06;;-4;;BIOLFLOR database;.06;;;;;Air dried weight;;2a Cerastium pumilum;16863;actual measurement;germinule;.06;;-4;;BIOLFLOR database;.06;;;;;Air dried weight;;3 Cerastium pumilum;16863;other;germinule;.0724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium pumilum s. pumilum;17371;actual measurement;generative dispersule;.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;1;n an replicates unknown;Air dried weight;;2 Cerastium semidecandrum;15651;actual measurement;germinule;.0349;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0349;;;50;;Air dried weight;;3 Cerastium semidecandrum;15651;actual measurement;germinule;.037;;-4;;BIOLFLOR database;.037;.054;.027;;;Air dried weight;;3 Cerastium semidecandrum;15651;actual measurement;germinule;.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.03;;;50;;Air dried weight;;3 Cerastium semidecandrum;15651;actual measurement;germinule;.03889;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03889;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Cerastium semidecandrum;15651;actual measurement;germinule;.039;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.039;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Cerastium semidecandrum;15651;actual measurement;one-seeded generative dispersule;.037;;-4;;BIOLFLOR database;.037;.054;.027;;;Air dried weight;;2a Cerastium semidecandrum;15651;actual measurement;germinule;.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.04;;;30;collected between 1996-1999;Air dried weight;;3 Cerastium semidecandrum;15651;other;one-seeded generative dispersule;.0424;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0424;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cerastium semidecandrum;15651;actual measurement;one-seeded generative dispersule;.0349;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0349;;;50;;Air dried weight;;2a Cerastium semidecandrum;15651;actual measurement;one-seeded generative dispersule;.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.03;;;50;;Air dried weight;;2a Cerastium semidecandrum;15651;other;germinule;.0424;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0424;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cerastium tomentosum;16387;actual measurement;one-seeded generative dispersule;.348;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.348;;;50;;Air dried weight;;2a Cerastium tomentosum;16387;actual measurement;one-seeded generative dispersule;.4515;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.4515;;;50;;Air dried weight;;2a Cerastium tomentosum;16387;actual measurement;germinule;.348;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.348;;;50;;Air dried weight;;3 Cerastium tomentosum;16387;actual measurement;germinule;.4515;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.4515;;;50;;Air dried weight;;3 Cerastium tomentosum;16387;actual measurement;one-seeded generative dispersule;.548;;-4;;BIOLFLOR database;.548;.556;.538;;;Air dried weight;;2a Cerastium tomentosum;16387;actual measurement;germinule;.548;;-4;;BIOLFLOR database;.548;.556;.538;;;Air dried weight;;3 Ceratocapnos claviculata;45620;actual measurement;one-seeded generative dispersule;1.016;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.016;;;50;;Air dried weight;;2a Ceratocapnos claviculata;45620;actual measurement (following LEDA data standards);germinule;.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Ceratocapnos claviculata;45620;actual measurement (following LEDA data standards);germinule;.61;1;-2;.61;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;.61;.61;;preaggregated value obtained from single record;Air dried weight;;3 Chaenomeles speciosa;29733;actual measurement;germinule;32.125;;-4;;BIOLFLOR database;32.125;;;;;Air dried weight;;3 Chaenorhinum minus;33202;actual measurement;germinule;.072;;-4;;BIOLFLOR database;.072;.074;.07;;;Air dried weight;;3 Chaenorhinum minus;33202;actual measurement;germinule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;3 Chaenorhinum minus;33202;actual measurement;germinule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;3 Chaenorhinum minus;33202;actual measurement;one-seeded generative dispersule;.072;;-4;;BIOLFLOR database;.072;.074;.07;;;Air dried weight;;2a Chaenorhinum minus;33202;actual measurement;one-seeded generative dispersule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;2a Chaenorhinum minus;33202;actual measurement;one-seeded generative dispersule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;2a Chaenorhinum minus;33202;other;one-seeded generative dispersule;.0652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chaenorhinum minus;33202;other;one-seeded generative dispersule;.0776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chaenorhinum minus;33202;other;germinule;.0652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chaenorhinum minus;33202;other;germinule;.0776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chaerophyllum aromaticum;2289;actual measurement;one-seeded generative dispersule;10.029;;-4;;BIOLFLOR database;10.029;10.913;9.145;;;Air dried weight;;2a Chaerophyllum aromaticum;2289;actual measurement;germinule;10.029;;-4;;BIOLFLOR database;10.029;10.913;9.145;;;Air dried weight;;3 Chaerophyllum aromaticum;2289;actual measurement;generative dispersule;1.981166667;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.981166667;2.236;1.727;100;;Air dried weight;;2 Chaerophyllum aromaticum;2289;actual measurement;generative dispersule;9.7955;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;9.7955;9.984;9.607;100;;Air dried weight;;2 Chaerophyllum aureum;1393;actual measurement;germinule;7.077;;-4;;BIOLFLOR database;7.077;7.6;6.553;;;Air dried weight;;3 Chaerophyllum aureum;1393;actual measurement;one-seeded generative dispersule;7.077;;-4;;BIOLFLOR database;7.077;7.6;6.553;;;Air dried weight;;2a Chaerophyllum bulbosum;1394;actual measurement;germinule;1.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;1.5;;;1;n and replicates unknown;Air dried weight;;3 Chaerophyllum bulbosum;1394;actual measurement (following LEDA data standards);germinule;2.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.45;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum bulbosum;1394;actual measurement (following LEDA data standards);germinule;2.45;1;-2;2.45;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.45;2.45;2.45;;preaggregated value obtained from single record;Air dried weight;;3 Chaerophyllum hirsutum;1398;actual measurement;germinule;3.333;;-4;;BIOLFLOR database;3.333;3.606;3.059;;;Air dried weight;;3 Chaerophyllum hirsutum;1398;actual measurement;one-seeded generative dispersule;3.024;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.024;3.046;3.002;100;;Air dried weight;;2a Chaerophyllum hirsutum;1398;actual measurement;one-seeded generative dispersule;3.333;;-4;;BIOLFLOR database;3.333;3.606;3.059;;;Air dried weight;;2a Chaerophyllum temulum;59605;actual measurement;germinule;2.673;;-4;;BIOLFLOR database;2.673;2.918;2.2;;;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement;germinule;1.441;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.441;;;100;;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement;germinule;2.708;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.708;;;50;;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement;one-seeded generative dispersule;2.673;;-4;;BIOLFLOR database;2.673;2.918;2.2;;;Air dried weight;;2a Chaerophyllum temulum;59605;actual measurement;one-seeded generative dispersule;2.708;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.708;;;50;;Air dried weight;;2a Chaerophyllum temulum;59605;actual measurement;one-seeded generative dispersule;1.441;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.441;;;100;;Air dried weight;;2a Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;2.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.27;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;3.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;3.01;10;-2;3.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.08;3.49;2.92;;preaggregated value obtained from single record;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;2.27;1;-2;2.27;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.27;2.27;2.27;;preaggregated value obtained from single record;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;2.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.99;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;3.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.19;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;3.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.49;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;3.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.03;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;2.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.95;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;3.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.07;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;2.96;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.96;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;2.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.98;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chaerophyllum temulum;59605;actual measurement (following LEDA data standards);germinule;2.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.92;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Chamaecytisus hirsutus;19731;actual measurement;germinule;6.87;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.87;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Chamaecytisus purpureus;22372;actual measurement;germinule;6.69;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.69;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Chamaecytisus ratisbonensis;20494;actual measurement;germinule;5.65;;-4;;BIOLFLOR database;5.65;6.1;5.2;;;Air dried weight;;3 Chamaecytisus ratisbonensis;20494;actual measurement;one-seeded generative dispersule;5.65;;-4;;BIOLFLOR database;5.65;6.1;5.2;;;Air dried weight;;2a Chamaecytisus supinus;22377;actual measurement;one-seeded generative dispersule;5.9;;-4;;BIOLFLOR database;5.9;6.3;5.5;;;Air dried weight;;2a Chamaecytisus supinus;22377;actual measurement;germinule;5.9;;-4;;BIOLFLOR database;5.9;6.3;5.5;;;Air dried weight;;3 Chamaedaphne calyculata;19530;actual measurement;one-seeded generative dispersule;.0725;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0725;.082;.063;100;;Unknown;;2a Chamaemelum mixtum;3726;actual measurement;one-seeded generative dispersule;.08;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.08;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Chamaemelum nobile;4366;actual measurement;germinule;.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Chamaemelum nobile;4366;actual measurement;germinule;.16;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Chamaemelum nobile;4366;other;germinule;.08436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.08436;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chamaemelum nobile;4366;other;germinule;.1248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chamaemelum nobile;4366;other;germinule;.0996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chamaespartium sagittale;21791;actual measurement;germinule;2.5;;-4;;BIOLFLOR database;2.5;2.8;2.2;;;Air dried weight;;3 Chamaespartium sagittale;21791;actual measurement;one-seeded generative dispersule;2.5;;-4;;BIOLFLOR database;2.5;2.8;2.2;;;Air dried weight;;2a Chamaesyce humifusa;59612;actual measurement;germinule;.269;;-4;;BIOLFLOR database;.269;.273;.264;;;Air dried weight;;3 Chamaesyce humifusa;59612;actual measurement;one-seeded generative dispersule;.269;;-4;;BIOLFLOR database;.269;.273;.264;;;Air dried weight;;2a Chamaesyce nutans;59613;actual measurement;one-seeded generative dispersule;.294;;-4;;BIOLFLOR database;.294;;;;;Air dried weight;;2a Chamaesyce nutans;59613;actual measurement;germinule;.294;;-4;;BIOLFLOR database;.294;;;;;Air dried weight;;3 Chamomilla recutita;5994;actual measurement;germinule;.054;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.054;;;130;;Air dried weight;;3 Chamomilla recutita;5994;actual measurement;one-seeded generative dispersule;.066;;-4;;BIOLFLOR database;.066;;;;;Air dried weight;;2a Chamomilla recutita;5994;actual measurement;germinule;.066;;-4;;BIOLFLOR database;.066;;;;;Air dried weight;;3 Chamomilla recutita;5994;actual measurement;one-seeded generative dispersule;.054;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.054;;;130;;Air dried weight;;2a Chamomilla suaveolens;5904;actual measurement;generative dispersule;.109066667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.109066667;.114;.106;150;;Air dried weight;;2 Chamomilla suaveolens;5904;actual measurement;germinule;.136;;-4;;BIOLFLOR database;.136;.165;.08;;;Air dried weight;;3 Chamomilla suaveolens;5904;actual measurement;germinule;.077;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.077;;;100;;Air dried weight;;3 Chamomilla suaveolens;5904;actual measurement;one-seeded generative dispersule;.136;;-4;;BIOLFLOR database;.136;.165;.08;;;Air dried weight;;2a Chamomilla suaveolens;5904;actual measurement;one-seeded generative dispersule;.077;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.077;;;100;;Air dried weight;;2a Chamomilla suaveolens;5904;actual measurement (following LEDA data standards);germinule;.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.17;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Chamomilla suaveolens;5904;actual measurement (following LEDA data standards);germinule;.17;1;-2;.17;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.17;.17;.17;;preaggregated value obtained from single record;Air dried weight;;3 Chelidonium majus;25435;other;germinule;.9108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chelidonium majus;25435;other;germinule;.5172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chelidonium majus;25435;actual measurement;germinule;.829;;-4;;BIOLFLOR database;.829;.9;.736;;;Air dried weight;;3 Chelidonium majus;25435;actual measurement;germinule;.61;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];.61;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Chelidonium majus;25435;actual measurement;one-seeded generative dispersule;.813;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.813;;;100;;Air dried weight;;2a Chelidonium majus;25435;actual measurement;germinule;.813;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.813;;;100;;Air dried weight;;3 Chelidonium majus;25435;other;one-seeded generative dispersule;.9108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chelidonium majus;25435;other;one-seeded generative dispersule;.5172;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5172;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chelidonium majus;25435;actual measurement;one-seeded generative dispersule;.829;;-4;;BIOLFLOR database;.829;.9;.736;;;Air dried weight;;2a Chelidonium majus;25435;actual measurement;one-seeded generative dispersule;.65;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];.65;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Chenopodium album;17842;actual measurement;one-seeded generative dispersule;.564;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.564;;;100;;Air dried weight;;2a Chenopodium album;17842;actual measurement;one-seeded generative dispersule;.771;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.771;;;100;;Air dried weight;;2a Chenopodium album;17842;actual measurement;germinule;.754;;-4;;BIOLFLOR database;.754;1.2;.4;;;Air dried weight;;3 Chenopodium album;17842;actual measurement;germinule;1.5;;-4;;BIOLFLOR database;1.5;;;;;Air dried weight;;3 Chenopodium album;17842;other;germinule;.614;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.614;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium album;17842;other;germinule;.5464;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5464;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium album;17842;other;germinule;.434;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.434;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium album;17842;other;germinule;.4608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium album;17842;other;germinule;.1788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium ambrosioides;17719;other;germinule;.1604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium ambrosioides;17719;other;germinule;.1768;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium ambrosioides;17719;actual measurement;unknown;.343;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.343;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Chenopodium bonus-henricus;17724;actual measurement;germinule;2.15;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2.3;2;1;n and replicates unknown;Air dried weight;;3 Chenopodium bonus-henricus;17724;actual measurement;germinule;1.936;;-4;;BIOLFLOR database;1.936;2.3;1.743;;;Air dried weight;;3 Chenopodium bonus-henricus;17724;actual measurement;one-seeded generative dispersule;1.914;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.914;;;50;;Air dried weight;;2a Chenopodium bonus-henricus;17724;actual measurement;one-seeded generative dispersule;1.876;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.876;1.98;1.772;100;;Air dried weight;;2a Chenopodium bonus-henricus;17724;other;germinule;1.8848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium bonus-henricus;17724;other;germinule;1.1484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium botrys;17732;other;germinule;.214;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.214;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium botrys;17732;actual measurement;germinule;.167;;-4;;BIOLFLOR database;.167;.188;.146;;;Air dried weight;;3 Chenopodium capitatum;44805;actual measurement;germinule;.231;;-4;;BIOLFLOR database;.231;.27;.2;;;Air dried weight;;3 Chenopodium capitatum;44805;actual measurement;germinule;.2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.2;;;1;n and replicates unknown;Air dried weight;;3 Chenopodium capitatum;44805;actual measurement;one-seeded generative dispersule;.231;;-4;;BIOLFLOR database;.231;.27;.2;;;Air dried weight;;2a Chenopodium chenopodioides;17727;other;unknown;.178;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.178;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Chenopodium ficifolium;17866;other;germinule;.344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium ficifolium;17866;actual measurement;germinule;.334;;-4;;BIOLFLOR database;.334;;;;;Air dried weight;;3 Chenopodium ficifolium;17866;actual measurement;one-seeded generative dispersule;.279;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.279;;;100;;Air dried weight;;2a Chenopodium ficifolium;17866;actual measurement;one-seeded generative dispersule;.3925;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3925;.399;.386;100;;Air dried weight;;2a Chenopodium ficifolium;17866;actual measurement;one-seeded generative dispersule;.382;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.382;;;50;;Air dried weight;;2a Chenopodium foliosum;44802;actual measurement;one-seeded generative dispersule;.557;;-4;;BIOLFLOR database;.557;;;;;Air dried weight;;2a Chenopodium foliosum;44802;actual measurement;germinule;.557;;-4;;BIOLFLOR database;.557;;;;;Air dried weight;;3 Chenopodium giganteum;17871;other;unknown;.7196;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Chenopodium giganteum;17871;other;unknown;.73;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.73;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Chenopodium glaucum;17874;actual measurement;germinule;.205;;-4;;BIOLFLOR database;.205;.207;.202;;;Air dried weight;;3 Chenopodium glaucum;17874;actual measurement;germinule;.164;;-4;;BIOLFLOR database;.164;.188;.136;;;Air dried weight;;3 Chenopodium glaucum;17874;actual measurement;one-seeded generative dispersule;.205;;-4;;BIOLFLOR database;.205;.207;.202;;;Air dried weight;;2a Chenopodium glaucum;17874;actual measurement;one-seeded generative dispersule;.09;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.09;.095;.085;100;;Air dried weight;;2a Chenopodium glaucum;17874;other;germinule;.2684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2684;;;1000;1000 sd weight, Seeds moist. This seed appears to be from a cultivated population some generations removed from wild parent. No data on sibling or where grown.;Fresh weight;;3 Chenopodium glaucum;17874;other;one-seeded generative dispersule;.2684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2684;;;1000;1000 sd weight, Seeds moist. This seed appears to be from a cultivated population some generations removed from wild parent. No data on sibling or where grown.;Fresh weight;;2a Chenopodium hybridum;17875;other;one-seeded generative dispersule;1.4544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chenopodium hybridum;17875;actual measurement;one-seeded generative dispersule;1.366;;-4;;BIOLFLOR database;1.366;1.441;1.3;;;Air dried weight;;2a Chenopodium hybridum;17875;actual measurement;germinule;1.366;;-4;;BIOLFLOR database;1.366;1.441;1.3;;;Air dried weight;;3 Chenopodium hybridum;17875;other;germinule;1.4544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium murale;17880;actual measurement;germinule;.628;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.628;;;100;;Air dried weight;;3 Chenopodium murale;17880;actual measurement;one-seeded generative dispersule;.64;;-4;;BIOLFLOR database;.64;.693;.611;;;Air dried weight;;2a Chenopodium murale;17880;actual measurement;germinule;.64;;-4;;BIOLFLOR database;.64;.693;.611;;;Air dried weight;;3 Chenopodium murale;17880;actual measurement;one-seeded generative dispersule;.628;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.628;;;100;;Air dried weight;;2a Chenopodium opulifolium;17881;actual measurement;germinule;.583;;-4;;BIOLFLOR database;.583;.677;.489;;;Air dried weight;;3 Chenopodium polyspermum;17882;actual measurement;germinule;.265;;-4;;BIOLFLOR database;.265;.277;.255;;;Air dried weight;;3 Chenopodium polyspermum;17882;actual measurement;germinule;.265;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.265;;;50;;Air dried weight;;3 Chenopodium polyspermum;17882;actual measurement;one-seeded generative dispersule;.265;;-4;;BIOLFLOR database;.265;.277;.255;;;Air dried weight;;2a Chenopodium polyspermum;17882;actual measurement;one-seeded generative dispersule;.265;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.265;;;50;;Air dried weight;;2a Chenopodium pumilio;44801;actual measurement;germinule;.057;;-4;;BIOLFLOR database;.057;;;;;Air dried weight;;3 Chenopodium rubrum;17729;actual measurement;germinule;.07;;-4;;BIOLFLOR database;.07;.09;.05;;;Air dried weight;;3 Chenopodium rubrum;17729;actual measurement;one-seeded generative dispersule;.0545;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0545;.057;.052;100;;Air dried weight;;2a Chenopodium rubrum;17729;actual measurement;one-seeded generative dispersule;.117;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.117;;;100;;Air dried weight;;2a Chenopodium rubrum;17729;actual measurement;one-seeded generative dispersule;.087;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.087;;;50;;Air dried weight;;2a Chenopodium rubrum;17729;actual measurement (following LEDA data standards);germinule;.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.19;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Chenopodium rubrum;17729;actual measurement (following LEDA data standards);germinule;.19;1;-2;.19;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.19;.19;.19;;preaggregated value obtained from single record;Air dried weight;;3 Chenopodium rubrum;17729;other;germinule;.192;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.192;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium rubrum;17729;other;germinule;.108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium schraderianum;44800;actual measurement;germinule;.419;;-4;;BIOLFLOR database;.419;.423;.413;;;Air dried weight;;3 Chenopodium strictum;17718;actual measurement;germinule;.341;;-4;;BIOLFLOR database;.341;.349;.329;;;Air dried weight;;3 Chenopodium suecicum;17888;actual measurement;germinule;.775;;-4;;BIOLFLOR database;.775;.824;.698;;;Air dried weight;;3 Chenopodium suecicum;17888;actual measurement;one-seeded generative dispersule;.775;;-4;;BIOLFLOR database;.775;.824;.698;;;Air dried weight;;2a Chenopodium urbicum;17891;actual measurement;one-seeded generative dispersule;.277;;-4;;BIOLFLOR database;.277;;;;;Air dried weight;;2a Chenopodium urbicum;17891;other;one-seeded generative dispersule;.4228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chenopodium urbicum;17891;actual measurement;germinule;.277;;-4;;BIOLFLOR database;.277;;;;;Air dried weight;;3 Chenopodium urbicum;17891;other;germinule;.4228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium vulvaria;17892;other;germinule;.5552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium vulvaria;17892;other;germinule;.4548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium vulvaria;17892;other;germinule;.4836;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4836;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium vulvaria;17892;other;germinule;.4964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium vulvaria;17892;other;germinule;.4792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chenopodium vulvaria;17892;actual measurement;germinule;.56;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.56;.8;.4;1;;Air dried weight;;3 Chenopodium vulvaria;17892;other;germinule;.5388;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5388;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chondrilla chondrilloides;3564;actual measurement;germinule;.42;;-4;;BIOLFLOR database;.42;;;;;Air dried weight;;3 Chondrilla juncea;5390;actual measurement;one-seeded generative dispersule;.69;;-4;;BIOLFLOR database;.69;;;;;Air dried weight;;2a Chondrilla juncea;5390;actual measurement;germinule;.633;;-4;;BIOLFLOR database;.633;.633;.632;;;Air dried weight;;3 Chondrilla juncea;5390;actual measurement;germinule;.69;;-4;;BIOLFLOR database;.69;;;;;Air dried weight;;3 Chrysanthemum segetum;3728;actual measurement;germinule;1.618;;-4;;BIOLFLOR database;1.618;2.06;1.568;;;Air dried weight;;3 Chrysanthemum segetum;3728;actual measurement;germinule;1.584;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.584;;;50;;Air dried weight;;3 Chrysanthemum segetum;3728;actual measurement;germinule;1.592;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.592;;;50;;Air dried weight;;3 Chrysanthemum segetum;3728;actual measurement;germinule;2.427;;-4;;BIOLFLOR database;2.427;3.39;1.892;;;Air dried weight;;3 Chrysanthemum segetum;3728;actual measurement;germinule;.567;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.567;;;100;;Air dried weight;;3 Chrysanthemum segetum;3728;actual measurement;one-seeded generative dispersule;1.618;;-4;;BIOLFLOR database;1.618;2.06;1.568;;;Air dried weight;;2a Chrysanthemum segetum;3728;actual measurement;one-seeded generative dispersule;2.427;;-4;;BIOLFLOR database;2.427;3.39;1.892;;;Air dried weight;;2a Chrysanthemum segetum;3728;actual measurement;one-seeded generative dispersule;1.592;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.592;;;50;;Air dried weight;;2a Chrysanthemum segetum;3728;other;one-seeded generative dispersule;1.4076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chrysanthemum segetum;3728;other;one-seeded generative dispersule;1.652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chrysanthemum segetum;3728;other;one-seeded generative dispersule;1.4076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chrysanthemum segetum;3728;other;one-seeded generative dispersule;1.652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Chrysanthemum segetum;3728;actual measurement;one-seeded generative dispersule;.567;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.567;;;100;;Air dried weight;;2a Chrysanthemum segetum;3728;actual measurement;one-seeded generative dispersule;1.584;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.584;;;50;;Air dried weight;;2a Chrysanthemum segetum;3728;other;germinule;1.652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chrysanthemum segetum;3728;other;germinule;1.4076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chrysopogon gryllus;40645;actual measurement;generative dispersule;.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.3;;;1;n an replicates unknown;Air dried weight;;2 Chrysopogon gryllus;40645;actual measurement;one-seeded generative dispersule;2.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.9;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Chrysosplenium alternifolium;31308;actual measurement;generative dispersule;.049466667;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.049466667;.053333333;.044666667;150;;Air dried weight;;2 Chrysosplenium alternifolium;31308;actual measurement;generative dispersule;.059333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.059333333;.072;.046666667;75;;Air dried weight;;2 Chrysosplenium oppositifolium;31313;actual measurement;generative dispersule;.065;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.065;.065;.065;100;;Air dried weight;;2 Chrysosplenium oppositifolium;31313;actual measurement;one-seeded generative dispersule;.041;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.041;;;100;;Air dried weight;;2a Chrysosplenium oppositifolium;31313;actual measurement;one-seeded generative dispersule;.036;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.036;;;50;;Air dried weight;;2a Chrysosplenium oppositifolium;31313;other;germinule;.042;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.042;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Chrysosplenium oppositifolium;31313;other;germinule;.0344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cicendia filiformis;22974;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Cicendia filiformis;22974;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Cicendia filiformis;22974;other;germinule;.0022;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0022;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cicendia filiformis;22974;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Cicendia filiformis;22974;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Cicerbita alpina;2692;actual measurement;generative dispersule;.975714286;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.975714286;.991428571;.96;70;;Air dried weight;;2 Cicerbita alpina;2692;actual measurement;generative dispersule;1.1925;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.1925;1.2225;1.1625;40;with pappus;Air dried weight;;2 Cicerbita alpina;2692;actual measurement;germinule;1.071;;-4;;BIOLFLOR database;1.071;1.122;1.02;;;Air dried weight;;3 Cicerbita macrophylla;3060;actual measurement;germinule;1.748;;-4;;BIOLFLOR database;1.748;;;;;Air dried weight;;3 Cichorium endivia;3061;actual measurement;germinule;1.2;;-4;;BIOLFLOR database;1.2;;;;;Air dried weight;;3 Cichorium endivia;3061;actual measurement;germinule;1.2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;1.8;.6;1;n and replicates unknown;Air dried weight;;3 Cichorium endivia;3061;actual measurement;one-seeded generative dispersule;1.2;;-4;;BIOLFLOR database;1.2;;;;;Air dried weight;;2a Cichorium intybus;2694;actual measurement;germinule;1.007;;-4;;BIOLFLOR database;1.007;;;;;Air dried weight;;3 Cichorium intybus;2694;actual measurement;one-seeded generative dispersule;.686;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.686;;;100;;Air dried weight;;2a Cichorium intybus;2694;actual measurement;generative dispersule;.74;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.74;;;1;n an replicates unknown;Air dried weight;;2 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;1.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.97;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;1.82;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.82;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;2.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.03;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;2.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.09;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;1.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.99;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;2.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;other;germinule;1.4796;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;2.06;10;-2;2.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.07;2.3;1.82;;preaggregated value obtained from single record;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;2.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.09;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;1.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.89;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;2.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.3;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cichorium intybus;2694;actual measurement (following LEDA data standards);germinule;2.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.28;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cicuta virosa;2295;other;germinule;1.8584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cicuta virosa;2295;other;germinule;1.148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cicuta virosa;2295;actual measurement;germinule;2.07;;-4;;BIOLFLOR database;2.07;;;;;Air dried weight;;3 Cicuta virosa;2295;actual measurement;one-seeded generative dispersule;2.07;;-4;;BIOLFLOR database;2.07;;;;;Air dried weight;;2a Cicuta virosa;2295;other;one-seeded generative dispersule;1.148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cicuta virosa;2295;other;one-seeded generative dispersule;1.8584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Circaea alpina;26057;other;germinule;.518;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.518;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Circaea alpina;26057;actual measurement;unknown;.512;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.512;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Circaea alpina;26057;actual measurement;unknown;4.154;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4.154;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Circaea lutetiana;26061;actual measurement;germinule;.88;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.88;;;50;;Air dried weight;;3 Circaea lutetiana;26061;actual measurement;germinule;1.97;;-4;;BIOLFLOR database;1.97;;;;;Air dried weight;;3 Circaea lutetiana;26061;other;one-seeded generative dispersule;1.3844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Circaea lutetiana;26061;other;one-seeded generative dispersule;2.2316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Circaea lutetiana;26061;actual measurement;multi-seeded generative dispersule;2.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Circaea lutetiana;26061;other;one-seeded generative dispersule;2.3792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Circaea lutetiana;26061;actual measurement;one-seeded generative dispersule;1.97;;-4;;BIOLFLOR database;1.97;;;;;Air dried weight;;2a Circaea lutetiana;26061;actual measurement;one-seeded generative dispersule;.88;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.88;;;50;;Air dried weight;;2a Circaea lutetiana;26061;other;germinule;1.3844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Circaea lutetiana;26061;other;germinule;2.3792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Circaea lutetiana;26061;other;germinule;2.2316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cirsium acaule;3252;actual measurement;one-seeded generative dispersule;3.878;;-4;;BIOLFLOR database;3.878;4.82;3.526;;;Air dried weight;;2a Cirsium acaule;3252;actual measurement;one-seeded generative dispersule;6.156;;-4;;BIOLFLOR database;6.156;;;;;Air dried weight;;2a Cirsium acaule;3252;actual measurement;germinule;3.878;;-4;;BIOLFLOR database;3.878;4.82;3.526;;;Air dried weight;;3 Cirsium acaule;3252;actual measurement;one-seeded generative dispersule;3.712;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.712;;;100;;Air dried weight;;2a Cirsium acaule;3252;actual measurement;one-seeded generative dispersule;2.464;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.464;;;50;;Air dried weight;;2a Cirsium acaule;3252;actual measurement;germinule;2.464;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.464;;;50;;Air dried weight;;3 Cirsium acaule;3252;actual measurement;germinule;3.712;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.712;;;100;;Air dried weight;;3 Cirsium arvense;5024;actual measurement;generative dispersule;1.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.17;;;1;n an replicates unknown;Air dried weight;;2 Cirsium arvense;5024;actual measurement;germinule;1.24;;-4;;BIOLFLOR database;1.24;1.38;1.15;;;Air dried weight;;3 Cirsium arvense;5024;actual measurement;germinule;1.0547;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.0547;1.113;1.004;100;;Air dried weight;;3 Cirsium arvense;5024;actual measurement;germinule;1.17;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.17;;;50;;Air dried weight;;3 Cirsium arvense;5024;actual measurement;one-seeded generative dispersule;1.24;;-4;;BIOLFLOR database;1.24;1.38;1.15;;;Air dried weight;;2a Cirsium arvense;5024;actual measurement;one-seeded generative dispersule;1.582;;-4;;BIOLFLOR database;1.582;1.663;1.5;;;Air dried weight;;2a Cirsium arvense;5024;actual measurement;one-seeded generative dispersule;1.17;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.17;;;50;;Air dried weight;;2a Cirsium arvense;5024;other;one-seeded generative dispersule;1.2916;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2916;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cirsium arvense;5024;other;germinule;1.2916;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2916;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cirsium canum;2905;actual measurement;one-seeded generative dispersule;1.786;;-4;;BIOLFLOR database;1.786;;;;;Air dried weight;;2a Cirsium canum;2905;actual measurement;germinule;1.786;;-4;;BIOLFLOR database;1.786;;;;;Air dried weight;;3 Cirsium canum;2905;actual measurement;germinule;2.124;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.124;2.189;2.059;100;;Air dried weight;;3 Cirsium dissectum;5048;actual measurement;germinule;1.595;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.595;;;20;;Air dried weight;;3 Cirsium dissectum;5048;actual measurement;germinule;2.777;;-4;;BIOLFLOR database;2.777;;;;;Air dried weight;;3 Cirsium dissectum;5048;actual measurement;germinule;1.461;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.461;;;100;;Air dried weight;;3 Cirsium dissectum;5048;actual measurement;one-seeded generative dispersule;2.777;;-4;;BIOLFLOR database;2.777;;;;;Air dried weight;;2a Cirsium dissectum;5048;other;one-seeded generative dispersule;2.3748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cirsium dissectum;5048;actual measurement;one-seeded generative dispersule;1.595;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.595;;;20;;Air dried weight;;2a Cirsium dissectum;5048;actual measurement;one-seeded generative dispersule;1.461;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.461;;;100;;Air dried weight;;2a Cirsium dissectum;5048;actual measurement (following LEDA data standards);germinule;2.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.16;;;30;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Cirsium dissectum;5048;actual measurement (following LEDA data standards);germinule;2.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.35;;;24;used balance: Mettler H51, seed;Air dried weight;;3 Cirsium dissectum;5048;other;germinule;2.3748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cirsium dissectum;5048;actual measurement (following LEDA data standards);germinule;2.35;1;-2;2.35;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.35;2.35;2.35;;preaggregated value obtained from single record;Air dried weight;;3 Cirsium dissectum;5048;actual measurement (following LEDA data standards);germinule;2.16;1;-2;2.16;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.16;2.16;2.16;;preaggregated value obtained from single record;Air dried weight;;3 Cirsium echinus;4224;actual measurement;generative dispersule;2.26;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.26;;;1;n an replicates unknown;Air dried weight;;2 Cirsium eriophorum;2903;actual measurement;germinule;9.05;;-4;;BIOLFLOR database;9.05;10.3;7.9;;;Air dried weight;;3 Cirsium eriophorum;2903;actual measurement;germinule;7.256;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.256;;;50;;Air dried weight;;3 Cirsium eriophorum;2903;actual measurement;germinule;3.792;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.792;;;100;;Air dried weight;;3 Cirsium eriophorum;2903;actual measurement;one-seeded generative dispersule;9.05;;-4;;BIOLFLOR database;9.05;10.3;7.9;;;Air dried weight;;2a Cirsium eriophorum;2903;actual measurement;one-seeded generative dispersule;3.792;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.792;;;100;;Air dried weight;;2a Cirsium eriophorum;2903;actual measurement;one-seeded generative dispersule;7.256;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.256;;;50;;Air dried weight;;2a Cirsium helenioides;3067;other;unknown;1.7824;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7824;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cirsium oleraceum;6109;actual measurement;one-seeded generative dispersule;2.545;;-4;;BIOLFLOR database;2.545;2.589;2.5;;;Air dried weight;;2a Cirsium oleraceum;6109;actual measurement;one-seeded generative dispersule;2.538;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.538;;;50;;Air dried weight;;2a Cirsium oleraceum;6109;actual measurement;one-seeded generative dispersule;2.694;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.694;;;50;;Air dried weight;;2a Cirsium oleraceum;6109;actual measurement;germinule;2.545;;-4;;BIOLFLOR database;2.545;2.589;2.5;;;Air dried weight;;3 Cirsium oleraceum;6109;actual measurement;germinule;2.538;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.538;;;50;;Air dried weight;;3 Cirsium oleraceum;6109;actual measurement;germinule;2.694;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.694;;;50;;Air dried weight;;3 Cirsium palustre;5896;actual measurement;germinule;1.525;;-4;;BIOLFLOR database;1.525;2;1.05;;;Air dried weight;;3 Cirsium palustre;5896;actual measurement;germinule;2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2;;;50;;Air dried weight;;3 Cirsium palustre;5896;actual measurement;one-seeded generative dispersule;1.525;;-4;;BIOLFLOR database;1.525;2;1.05;;;Air dried weight;;2a Cirsium palustre;5896;actual measurement;one-seeded generative dispersule;2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2;;;50;;Air dried weight;;2a Cirsium palustre;5896;other;one-seeded generative dispersule;1.57;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.57;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cirsium palustre;5896;actual measurement;generative dispersule;.745;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.745;.8;.69;100;;Air dried weight;;2 Cirsium palustre;5896;other;germinule;1.57;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.57;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cirsium pannonicum;4370;actual measurement;germinule;2.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.13;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Cirsium rivulare;4050;actual measurement;germinule;2.398;;-4;;BIOLFLOR database;2.398;;;;;Air dried weight;;3 Cirsium rivulare;4050;actual measurement;germinule;2.3415;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.3415;2.466;2.217;100;;Air dried weight;;3 Cirsium rivulare;4050;actual measurement;one-seeded generative dispersule;2.398;;-4;;BIOLFLOR database;2.398;;;;;Air dried weight;;2a Cirsium spinosissimum;3682;actual measurement;one-seeded generative dispersule;2.611;;-4;;BIOLFLOR database;2.611;2.881;2.34;;;Air dried weight;;2a Cirsium spinosissimum;3682;actual measurement;germinule;2.611;;-4;;BIOLFLOR database;2.611;2.881;2.34;;;Air dried weight;;3 Cirsium tuberosum;3068;other;unknown;3.724;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cirsium tuberosum;3068;other;unknown;2.1472;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1472;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cirsium vulgare;3737;other;germinule;2.8624;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cirsium vulgare;3737;actual measurement;one-seeded generative dispersule;2.644;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.644;;;50;;Air dried weight;;2a Cirsium vulgare;3737;actual measurement;one-seeded generative dispersule;2.369;;-4;;BIOLFLOR database;2.369;4;1;;;Air dried weight;;2a Cirsium vulgare;3737;actual measurement;germinule;2.644;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.644;;;50;;Air dried weight;;3 Cirsium vulgare;3737;actual measurement;germinule;2.369;;-4;;BIOLFLOR database;2.369;4;1;;;Air dried weight;;3 Cirsium vulgare;3737;actual measurement;germinule;1.9078;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.9078;1.995;1.867;100;;Air dried weight;;3 Cirsium vulgare;3737;other;one-seeded generative dispersule;2.8624;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cirsium vulgare;3737;actual measurement;generative dispersule;2.163333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.163333333;2.176666667;2.15;30;with pappus;Air dried weight;;2 Cistus monspeliensis;18760;actual measurement;generative dispersule;1.07;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.07;;;1;n and replicates unknown;Air dried weight;;2 Cistus monspeliensis;18760;actual measurement;germinule;.84;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.84;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Cladium mariscus;37586;actual measurement;one-seeded generative dispersule;2.106;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.106;;;50;;Air dried weight;;2a Cladium mariscus;37586;actual measurement;germinule;2.178;;-4;;BIOLFLOR database;2.178;;;;;Air dried weight;;3 Cladium mariscus;37586;actual measurement;generative dispersule;2.914285714;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.914285714;3.011428571;2.817142857;35;;Air dried weight;;2 Cladium mariscus;37586;actual measurement;one-seeded generative dispersule;1.79;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.79;;;100;;Air dried weight;;2a Cladium mariscus;37586;other;germinule;2.2012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Claytonia perfoliata;27495;actual measurement;germinule;.64;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.64;;;1;n and replicates unknown;Air dried weight;;3 Claytonia perfoliata;27495;actual measurement;one-seeded generative dispersule;.581;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.581;;;100;;Air dried weight;;2a Claytonia perfoliata;27495;actual measurement;one-seeded generative dispersule;.488;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.488;;;50;;Air dried weight;;2a Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.84;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.91;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.91;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.91;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.91;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.91;10;-2;.91;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;.99;.78;;preaggregated value obtained from single record;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.99;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.93;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.8;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.8;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.78;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.96;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.96;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.97;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Claytonia sibirica;27498;actual measurement (following LEDA data standards);germinule;.81;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.81;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Clematis alpina;27310;actual measurement;one-seeded generative dispersule;3.42;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.42;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Clematis recta;27203;actual measurement;one-seeded generative dispersule;10.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);10.2;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Clematis recta;27203;actual measurement;germinule;9.7738;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;9.7738;9.934;9.596;100;;Air dried weight;;3 Clematis vitalba;27205;actual measurement;germinule;2.761;;-4;;BIOLFLOR database;2.761;3.378;2.251;;;Air dried weight;;3 Clematis vitalba;27205;actual measurement;germinule;1.27;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.27;;;100;;Air dried weight;;3 Clematis vitalba;27205;actual measurement;germinule;1.18;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.18;;;100;;Air dried weight;;3 Clematis vitalba;27205;actual measurement;germinule;1.18;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.18;;;100;;Air dried weight;;3 Clematis vitalba;27205;actual measurement;one-seeded generative dispersule;2.761;;-4;;BIOLFLOR database;2.761;3.378;2.251;;;Air dried weight;;2a Clematis vitalba;27205;actual measurement;one-seeded generative dispersule;1.18;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.18;;;100;;Air dried weight;;2a Clematis vitalba;27205;actual measurement;one-seeded generative dispersule;1.18;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.18;;;100;;Air dried weight;;2a Clematis vitalba;27205;actual measurement;one-seeded generative dispersule;1.27;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.27;;;100;;Air dried weight;;2a Clematis vitalba;27205;other;one-seeded generative dispersule;2.5736;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5736;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Clematis vitalba;27205;actual measurement;generative dispersule;3.153333333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.153333333;3.411428571;2.888571429;1;;Air dried weight;;2 Clematis vitalba;27205;other;one-seeded generative dispersule;2.5868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Clematis vitalba;27205;actual measurement;generative dispersule;3.269333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.269333333;3.279333333;3.259333333;60;;Air dried weight;;2 Clematis vitalba;27205;other;one-seeded generative dispersule;2.4364;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.25;10;-2;3.25;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.28;4.12;2.89;;preaggregated value obtained from single record;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.21;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.35;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.12;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.95;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.29;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.4;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.41;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;other;germinule;2.4364;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Clematis vitalba;27205;other;germinule;2.5736;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5736;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Clematis vitalba;27205;other;germinule;2.5868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.09;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.13;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clematis vitalba;27205;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.89;;;10;used balance: Mettler H51, disp. unit with long hairs;Air dried weight;;2a Clinopodium vulgare;24218;other;germinule;.3825;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3825;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Clinopodium vulgare;24218;other;one-seeded generative dispersule;.3825;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3825;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Clinopodium vulgare;24218;actual measurement;generative dispersule;.398666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.398666667;.412;.381;100;;Air dried weight;;2 Clinopodium vulgare;24218;actual measurement;one-seeded generative dispersule;.43;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.43;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Clinopodium vulgare;24218;actual measurement;one-seeded generative dispersule;.401;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.401;;;100;;Air dried weight;;2a Clinopodium vulgare;24218;actual measurement;one-seeded generative dispersule;.49;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.49;;;50;;Air dried weight;;2a Clinopodium vulgare;24218;actual measurement;one-seeded generative dispersule;.49;;-4;;BIOLFLOR database;.49;;;;;Air dried weight;;2a Clinopodium vulgare;24218;actual measurement;one-seeded generative dispersule;.430133333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.430133333;.446666667;.397333333;150;;Air dried weight;;2a Clinopodium vulgare;24218;actual measurement;generative dispersule;.32;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.32;;;1;n an replicates unknown;Air dried weight;;2 Clinopodium vulgare;24218;actual measurement;germinule;.401;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.401;;;100;;Air dried weight;;3 Clinopodium vulgare;24218;actual measurement;germinule;.49;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.49;;;50;;Air dried weight;;3 Clinopodium vulgare;24218;actual measurement;germinule;.49;;-4;;BIOLFLOR database;.49;;;;;Air dried weight;;3 Cnicus benedictus;3260;actual measurement;germinule;30.897;;-4;;BIOLFLOR database;30.897;;;;;Air dried weight;;3 Cnicus benedictus;3260;actual measurement;germinule;27.883;;-4;;BIOLFLOR database;27.883;;;;;Air dried weight;;3 Cnicus benedictus;3260;actual measurement;one-seeded generative dispersule;30.897;;-4;;BIOLFLOR database;30.897;;;;;Air dried weight;;2a Cnidium dubium;1405;actual measurement;one-seeded generative dispersule;1.264;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.264;1.294;1.234;100;;Air dried weight;;2a Cnidium dubium;1405;actual measurement;one-seeded generative dispersule;.782;;-4;;BIOLFLOR database;.782;;;;;Air dried weight;;2a Cnidium dubium;1405;actual measurement;germinule;.782;;-4;;BIOLFLOR database;.782;;;;;Air dried weight;;3 Cnidium silaifolium;1407;actual measurement;germinule;2.319;;-4;;BIOLFLOR database;2.319;2.401;2.27;;;Air dried weight;;3 Cnidium silaifolium;1407;actual measurement;one-seeded generative dispersule;2.319;;-4;;BIOLFLOR database;2.319;2.401;2.27;;;Air dried weight;;2a Cochlearia anglica;13319;actual measurement;generative dispersule;.808;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.808;.98;.66;1;;Air dried weight;;2 Cochlearia anglica;13319;other;germinule;1.5672;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5672;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cochlearia anglica;13319;other;germinule;1.0536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cochlearia danica;12875;other;germinule;.302;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.302;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cochlearia danica;12875;actual measurement;one-seeded generative dispersule;.1455;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1455;.154;.137;100;;Air dried weight;;2a Cochlearia officinalis;14148;actual measurement;one-seeded generative dispersule;.3245;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.3245;;;196;;Air dried weight;;2a Cochlearia officinalis;14148;actual measurement;one-seeded generative dispersule;.285;;-4;;BIOLFLOR database;.285;.29;.281;;;Air dried weight;;2a Cochlearia officinalis;14148;other;one-seeded generative dispersule;.7864;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cochlearia officinalis;14148;other;one-seeded generative dispersule;.6044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cochlearia officinalis;14148;other;one-seeded generative dispersule;.518;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.518;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cochlearia officinalis;14148;other;one-seeded generative dispersule;.4828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cochlearia officinalis;14148;other;one-seeded generative dispersule;.584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cochlearia officinalis;14148;other;one-seeded generative dispersule;.4844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cochlearia officinalis;14148;actual measurement;germinule;.285;;-4;;BIOLFLOR database;.285;.29;.281;;;Air dried weight;;3 Cochlearia officinalis;14148;actual measurement;one-seeded generative dispersule;.431;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.431;.483;.397;100;;Air dried weight;;2a Cochlearia officinalis;14148;actual measurement;germinule;.3245;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.3245;;;196;;Air dried weight;;3 Cochlearia officinalis;14148;other;germinule;.6044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cochlearia officinalis;14148;other;germinule;.518;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.518;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cochlearia officinalis;14148;other;germinule;.4828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cochlearia officinalis;14148;other;germinule;.7864;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cochlearia officinalis;14148;other;germinule;.4844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cochlearia officinalis;14148;other;germinule;.584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Coincya monensis;46061;other;unknown;1.1768;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Coincya monensis;46061;other;unknown;1.104;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Coincya monensis;46061;other;unknown;1.0276;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0276;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Coincya monensis;46061;other;unknown;.9904;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Colchicum autumnale;38684;other;germinule;7.0124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.0124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Colchicum autumnale;38684;actual measurement;generative dispersule;5.4875;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.4875;5.941;5.034;100;;Air dried weight;;2 Coleanthus subtilis;41701;actual measurement;germinule;.027;;-4;;BIOLFLOR database;.027;.029;.025;;;Air dried weight;;3 Coleanthus subtilis;41701;actual measurement;one-seeded generative dispersule;.027;;-4;;BIOLFLOR database;.027;.029;.025;;;Air dried weight;;2a Coleanthus subtilis;41701;actual measurement;one-seeded generative dispersule;.046;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.046;.048;.044;100;;Air dried weight;;2a Collomia grandiflora;28174;actual measurement;one-seeded generative dispersule;3.57;;-4;;BIOLFLOR database;3.57;3.709;3.369;;;Air dried weight;;2a Collomia grandiflora;28174;actual measurement;germinule;3.57;;-4;;BIOLFLOR database;3.57;3.709;3.369;;;Air dried weight;;3 Colutea arborescens;21799;actual measurement;germinule;18.635;;-4;;BIOLFLOR database;18.635;20.33;15.78;;;Air dried weight;;3 Colutea arborescens;21799;actual measurement;one-seeded generative dispersule;18.635;;-4;;BIOLFLOR database;18.635;20.33;15.78;;;Air dried weight;;2a Conium maculatum;1410;actual measurement;germinule;2.755;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.755;;;50;;Air dried weight;;3 Conium maculatum;1410;actual measurement;one-seeded generative dispersule;2.246;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.246;;;100;;Air dried weight;;2a Conium maculatum;1410;actual measurement;one-seeded generative dispersule;2.755;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.755;;;50;;Air dried weight;;2a Conium maculatum;1410;actual measurement;one-seeded generative dispersule;2.224;;-4;;BIOLFLOR database;2.224;2.394;2.027;;;Air dried weight;;2a Conium maculatum;1410;actual measurement;germinule;2.224;;-4;;BIOLFLOR database;2.224;2.394;2.027;;;Air dried weight;;3 Conium maculatum;1410;actual measurement;germinule;2.027;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.027;;;50;;Air dried weight;;3 Conium maculatum;1410;actual measurement;germinule;2.246;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.246;;;100;;Air dried weight;;3 Conium maculatum;1410;other;one-seeded generative dispersule;2.5132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Conium maculatum;1410;actual measurement;generative dispersule;2.346;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.346;2.368;2.324;100;;Air dried weight;;2 Conium maculatum;1410;actual measurement;one-seeded generative dispersule;2.027;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.027;;;50;;Air dried weight;;2a Conium maculatum;1410;other;germinule;2.5132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Conopodium majus;1346;actual measurement;one-seeded generative dispersule;2.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.02;;;50;;Air dried weight;;2a Conopodium majus;1346;actual measurement;one-seeded generative dispersule;2.264;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.264;;;50;;Air dried weight;;2a Conopodium majus;1346;actual measurement;germinule;2.397;;-4;;BIOLFLOR database;2.397;2.533;2.26;;;Air dried weight;;3 Conopodium majus;1346;actual measurement;germinule;2.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.02;;;50;;Air dried weight;;3 Conopodium majus;1346;actual measurement;one-seeded generative dispersule;2.397;;-4;;BIOLFLOR database;2.397;2.533;2.26;;;Air dried weight;;2a Conopodium majus;1346;actual measurement;germinule;2.264;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.264;;;50;;Air dried weight;;3 Conringia orientalis;13624;actual measurement;germinule;1.995;;-4;;BIOLFLOR database;1.995;2.444;1.508;;;Air dried weight;;3 Conringia orientalis;13624;actual measurement;one-seeded generative dispersule;1.995;;-4;;BIOLFLOR database;1.995;2.444;1.508;;;Air dried weight;;2a Consolida ajacis;27212;actual measurement;one-seeded generative dispersule;1.817;;-4;;BIOLFLOR database;1.817;;;;;Air dried weight;;2a Consolida ajacis;27212;actual measurement;germinule;1.817;;-4;;BIOLFLOR database;1.817;;;;;Air dried weight;;3 Consolida regalis;27229;actual measurement;germinule;1.093;;-4;;BIOLFLOR database;1.093;1.2;.985;;;Air dried weight;;3 Consolida regalis;27229;actual measurement;generative dispersule;.63;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.63;;;1;n an replicates unknown;Air dried weight;;2 Consolida regalis;27229;actual measurement;one-seeded generative dispersule;1.093;;-4;;BIOLFLOR database;1.093;1.2;.985;;;Air dried weight;;2a Convallaria majalis;39099;actual measurement;multi-seeded generative dispersule;451;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);451;;;1;n an replicates unknown;Fresh weight;;2b Convallaria majalis;39099;actual measurement;generative dispersule;510.13;;-4;;BIOLFLOR database;510.13;1103.16;307.3;;;Fresh weight;;2 Convallaria majalis;39099;actual measurement;germinule;15.373;;-4;;BIOLFLOR database;15.373;16.02;15.1;;;Air dried weight;;3 Convallaria majalis;39099;actual measurement;germinule;17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);17;;;1;n an replicates unknown;Air dried weight;;3 Convallaria majalis;39099;actual measurement;germinule;29.05;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);29.05;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Convallaria majalis;39099;actual measurement;germinule;17;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);17;;;1;summers of 1995 and 1996;Unknown;;3 Convallaria majalis;39099;actual measurement;one-seeded generative dispersule;16.022;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16.022;;;100;;Air dried weight;;2a Convallaria majalis;39099;other;germinule;14.4904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.4904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Convolvulus arvensis;18911;other;germinule;12.4724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.4724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Convolvulus arvensis;18911;actual measurement;germinule;10.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10.42;;;100;;Air dried weight;;3 Convolvulus arvensis;18911;actual measurement;germinule;.35;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.35;;;30;collected between 1996-1999;Air dried weight;;3 Convolvulus arvensis;18911;actual measurement;one-seeded generative dispersule;34.69;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34.69;;;50;;Air dried weight;;2a Convolvulus arvensis;18911;actual measurement;one-seeded generative dispersule;10.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10.42;;;100;;Air dried weight;;2a Convolvulus arvensis;18911;actual measurement;one-seeded generative dispersule;10.349;;-4;;BIOLFLOR database;10.349;12.08;7.9;;;Air dried weight;;2a Convolvulus arvensis;18911;actual measurement;germinule;.353;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.353;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Convolvulus arvensis;18911;actual measurement;germinule;.353;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.353;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Convolvulus arvensis;18911;actual measurement;generative dispersule;12.99;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);12.99;;;1;n and replicates unknown;Air dried weight;;2 Convolvulus arvensis;18911;actual measurement;germinule;34.69;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34.69;;;50;;Air dried weight;;3 Convolvulus arvensis;18911;actual measurement;germinule;10.349;;-4;;BIOLFLOR database;10.349;12.08;7.9;;;Air dried weight;;3 Convolvulus arvensis;18911;other;one-seeded generative dispersule;12.4724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.4724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Convolvulus lineatus;18941;actual measurement;generative dispersule;4.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.5;;;1;n an replicates unknown;Air dried weight;;2 Conyza albida;59673;actual measurement;germinule;.039;;-4;;BIOLFLOR database;.039;.042;.037;;;Air dried weight;;3 Conyza bonariensis;2911;actual measurement;germinule;.05;;-4;;BIOLFLOR database;.05;;;;;Air dried weight;;3 Conyza bonariensis;2911;other;germinule;.1372;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1372;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Conyza canadensis;5194;actual measurement;germinule;.051;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.051;;;50;;Air dried weight;;3 Conyza canadensis;5194;actual measurement;germinule;.04;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.04;;;50;;Air dried weight;;3 Conyza canadensis;5194;actual measurement;one-seeded generative dispersule;.054;;-4;;BIOLFLOR database;.054;.058;.05;;;Air dried weight;;2a Conyza canadensis;5194;actual measurement;generative dispersule;.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.04;;;1;n an replicates unknown;Air dried weight;;2 Conyza canadensis;5194;actual measurement;germinule;.035;;-4;;BIOLFLOR database;.035;.04;.03;;;Air dried weight;;3 Conyza canadensis;5194;actual measurement;germinule;.054;;-4;;BIOLFLOR database;.054;.058;.05;;;Air dried weight;;3 Conyza canadensis;5194;actual measurement;one-seeded generative dispersule;.051;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.051;;;50;;Air dried weight;;2a Conyza canadensis;5194;actual measurement;one-seeded generative dispersule;.04;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.04;;;50;;Air dried weight;;2a Coriandrum sativum;2310;actual measurement;germinule;9.45;;-4;;BIOLFLOR database;9.45;15;9.1;;;Air dried weight;;3 Coriandrum sativum;2310;actual measurement;germinule;12.05;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;15;9.1;1;n and replicates unknown;Air dried weight;;3 Coriandrum sativum;2310;actual measurement;one-seeded generative dispersule;9.45;;-4;;BIOLFLOR database;9.45;15;9.1;;;Air dried weight;;2a Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.47;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.49;10;-2;1.49;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.47;1.6;1.35;;preaggregated value obtained from single record;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.42;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.42;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.53;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.51;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.51;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.35;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.6;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Corispermum intermedium;17909;actual measurement (following LEDA data standards);germinule;1.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.36;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Cornus mas;18428;actual measurement;generative dispersule;1214.6;;-4;;BIOLFLOR database;1214.6;;;;;Unknown;;2 Cornus mas;18428;actual measurement;germinule;160;;-4;;BIOLFLOR database;160;;;;;Air dried weight;;3 Cornus mas;18428;actual measurement;generative dispersule;88;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);88;;;1;n an replicates unknown;Air dried weight;;2 Cornus sanguinea;18429;actual measurement;generative dispersule;55.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);55.2;;;1;n an replicates unknown;Air dried weight;;2 Cornus sanguinea;18429;actual measurement;germinule;35.157;;-4;;BIOLFLOR database;35.157;40.313;30;;;Air dried weight;;3 Cornus sanguinea;18429;actual measurement;generative dispersule;169.4;;-4;;BIOLFLOR database;169.4;;;;;Unknown;;2 Cornus sanguinea;18429;actual measurement;one-seeded generative dispersule;35.8;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35.8;;;57;;Air dried weight;;2a Cornus sanguinea;18429;other;germinule;102.4;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);102.4;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cornus suecica;18440;actual measurement (following LEDA data standards);germinule;3.42;7;-2;3.42;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.42;4.25;2.71;;preaggregated value obtained from single record;Air dried weight;;3 Cornus suecica;18440;actual measurement (following LEDA data standards);germinule;3.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.42;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cornus suecica;18440;actual measurement (following LEDA data standards);germinule;3.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.14;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cornus suecica;18440;actual measurement (following LEDA data standards);germinule;2.71;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.71;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cornus suecica;18440;actual measurement (following LEDA data standards);germinule;2.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.88;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cornus suecica;18440;actual measurement (following LEDA data standards);germinule;3.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.94;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cornus suecica;18440;actual measurement (following LEDA data standards);germinule;3.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.62;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cornus suecica;18440;actual measurement (following LEDA data standards);germinule;4.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.25;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cornus suecica;18440;actual measurement;germinule;8.5;;-4;;BIOLFLOR database;8.5;9.15;7.85;;;Air dried weight;;3 Coronilla coronata;21803;actual measurement;germinule;2.1;;-4;;BIOLFLOR database;2.1;;;;;Air dried weight;;3 Coronilla coronata;21803;actual measurement;one-seeded generative dispersule;2.1;;-4;;BIOLFLOR database;2.1;;;;;Air dried weight;;2a Coronilla coronata;21803;actual measurement;multi-seeded generative dispersule;11.768;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;11.768;11.791;11.745;100;;Air dried weight;;2b Coronilla coronata;21803;actual measurement;one-seeded generative dispersule;12.12;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);12.12;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Coronilla emerus;21806;actual measurement;one-seeded generative dispersule;6.09;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.09;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Coronilla vaginalis;21349;actual measurement;one-seeded generative dispersule;.104;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.104;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Coronilla varia;21810;actual measurement;one-seeded generative dispersule;6.98;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.98;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Coronilla varia;21810;actual measurement;one-seeded generative dispersule;4.778;;-4;;BIOLFLOR database;4.778;5.2;4.356;;;Air dried weight;;2a Coronilla varia;21810;actual measurement;germinule;3.472;;-4;;BIOLFLOR database;3.472;3.6;3.344;;;Air dried weight;;3 Coronilla varia;21810;actual measurement;germinule;4.778;;-4;;BIOLFLOR database;4.778;5.2;4.356;;;Air dried weight;;3 Coronilla varia;21810;actual measurement (following LEDA data standards);germinule;6.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.03;;;30;used balance: Mettler H51, seed;Air dried weight;;3 Coronilla varia;21810;actual measurement (following LEDA data standards);germinule;6.03;1;-2;6.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.03;6.03;6.03;;preaggregated value obtained from single record;Air dried weight;;3 Coronopus didymus;13200;other;germinule;.578;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.578;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Coronopus didymus;13200;other;germinule;.5724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Coronopus didymus;13200;actual measurement;one-seeded generative dispersule;.472;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.472;;;100;;Air dried weight;;2a Coronopus didymus;13200;actual measurement;one-seeded generative dispersule;.474;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.474;;;50;;Air dried weight;;2a Coronopus didymus;13200;actual measurement;generative dispersule;.450966667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.450966667;.4535;.4484;100;;Air dried weight;;2 Coronopus squamatus;14154;actual measurement;germinule;.825;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.825;;;10;;Air dried weight;;3 Coronopus squamatus;14154;actual measurement;germinule;3.23;;-4;;BIOLFLOR database;3.23;;;;;Air dried weight;;3 Coronopus squamatus;14154;actual measurement;one-seeded generative dispersule;.825;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.825;;;10;;Air dried weight;;2a Coronopus squamatus;14154;actual measurement;one-seeded generative dispersule;3.23;;-4;;BIOLFLOR database;3.23;;;;;Air dried weight;;2a Coronopus squamatus;14154;actual measurement;multi-seeded generative dispersule;1.27675;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.27675;1.3023;1.2512;100;;Air dried weight;;2b Corrigiola litoralis;15658;actual measurement;one-seeded generative dispersule;.33;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.33;;;50;;Air dried weight;;2a Corrigiola litoralis;15658;actual measurement;one-seeded generative dispersule;.078;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.078;.078;.078;100;;Air dried weight;;2a Corrigiola litoralis;15658;actual measurement;germinule;.3;;-4;;BIOLFLOR database;.3;;;;;Air dried weight;;3 Corrigiola litoralis;15658;other;germinule;.3688;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3688;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Corrigiola litoralis;15658;other;germinule;.29;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.29;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Corrigiola litoralis;15658;other;germinule;.2884;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2884;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Corydalis cava;25389;actual measurement;germinule;11.8;;-4;;BIOLFLOR database;11.8;;;;;Air dried weight;;3 Corydalis cava;25389;actual measurement;one-seeded generative dispersule;11.8;;-4;;BIOLFLOR database;11.8;;;;;Air dried weight;;2a Corydalis solida;25469;actual measurement;generative dispersule;2.012133333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.012133333;2.034666667;1.969333333;150;;Air dried weight;;2 Corydalis solida;25469;actual measurement;generative dispersule;1.472888889;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.472888889;1.562;1.411333333;150;;Air dried weight;;2 Corylus avellana;18083;actual measurement;one-seeded generative dispersule;684;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;684;;;24;;Air dried weight;;2a Corylus avellana;18083;actual measurement;one-seeded generative dispersule;691;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;691;;;50;;Air dried weight;;2a Corylus avellana;18083;actual measurement;one-seeded generative dispersule;1041.95;;-4;;BIOLFLOR database;1041.95;1083.9;1000;;;Air dried weight;;2a Corylus avellana;18083;actual measurement;germinule;684;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;684;;;24;;Air dried weight;;3 Corylus avellana;18083;actual measurement;germinule;691;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;691;;;50;;Air dried weight;;3 Corylus avellana;18083;actual measurement;germinule;1041.95;;-4;;BIOLFLOR database;1041.95;1083.9;1000;;;Air dried weight;;3 Corynephorus canescens;41702;actual measurement;germinule;.12;;-4;;BIOLFLOR database;.12;;;;;Air dried weight;;3 Corynephorus canescens;41702;actual measurement;germinule;9.743;;-4;;BIOLFLOR database;9.743;;;;;Air dried weight;;3 Corynephorus canescens;41702;other;one-seeded generative dispersule;.0988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Corynephorus canescens;41702;actual measurement;one-seeded generative dispersule;.12;;-4;;BIOLFLOR database;.12;;;;;Air dried weight;;2a Corynephorus canescens;41702;other;germinule;.0988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cotinus coggygria;944;actual measurement;generative dispersule;6.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.02;;;1;n an replicates unknown;Air dried weight;;2 Cotinus coggygria;944;actual measurement;generative dispersule;9.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.9;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Cotoneaster horizontalis;29735;actual measurement;germinule;10.185;;-4;;BIOLFLOR database;10.185;;;;;Air dried weight;;3 Cotoneaster integerrimus;30932;actual measurement;germinule;9.747;;-4;;BIOLFLOR database;9.747;;;;;Air dried weight;;3 Cotoneaster integerrimus;30932;actual measurement;germinule;9.4;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.4;;;1;n an replicates unknown;Air dried weight;;3 Cotoneaster integerrimus;30932;actual measurement;multi-seeded generative dispersule;209;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);209;;;1;n an replicates unknown;Fresh weight;;2b Cotoneaster nebrodensis;29737;actual measurement;generative dispersule;156.7;;-4;;BIOLFLOR database;156.7;;;;;Fresh weight;;2 Cotoneaster nebrodensis;29737;actual measurement;germinule;13.259;;-4;;BIOLFLOR database;13.259;14.8;11.718;;;Air dried weight;;3 Cotoneaster simonsii;29738;actual measurement;germinule;21.46;;-4;;BIOLFLOR database;21.46;;;;;Air dried weight;;3 Cotula coronopifolia;5009;actual measurement;germinule;.067;;-4;;BIOLFLOR database;.067;.07;.064;;;Air dried weight;;3 Cotula coronopifolia;5009;actual measurement;germinule;.067;;-4;;BIOLFLOR database;.067;.07;.064;;;Air dried weight;;3 Cotula coronopifolia;5009;actual measurement;one-seeded generative dispersule;.067;;-4;;BIOLFLOR database;.067;.07;.064;;;Air dried weight;;2a Cotula coronopifolia;5009;actual measurement;one-seeded generative dispersule;.0825;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0825;.083;.082;100;;Air dried weight;;2a Cotula coronopifolia;5009;actual measurement;one-seeded generative dispersule;.067;;-4;;BIOLFLOR database;.067;.07;.064;;;Air dried weight;;2a Crambe maritima;14463;actual measurement;one-seeded generative dispersule;61;;-4;;BIOLFLOR database;61;87;35;;;Air dried weight;;2a Crambe maritima;14463;actual measurement;germinule;61;;-4;;BIOLFLOR database;61;87;35;;;Air dried weight;;3 Crambe maritima;14463;actual measurement;germinule;61;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;87;35;1;n and replicates unknown;Air dried weight;;3 Crambe maritima;14463;other;one-seeded generative dispersule;57.6272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);57.6272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Crambe maritima;14463;other;one-seeded generative dispersule;95.5;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);95.5;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Crambe maritima;14463;other;germinule;95.5;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);95.5;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crambe maritima;14463;other;germinule;57.6272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);57.6272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crassula tillaea;18116;other;germinule;.0092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crassula tillaea;18116;actual measurement;germinule;.01092;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.01092;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Crassula tillaea;18116;actual measurement;germinule;.011;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.011;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Crassula tillaea;18116;actual measurement;germinule;.01;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.01;;;30;collected between 1996-1999;Air dried weight;;3 Crataegus calycina;29408;actual measurement;germinule;116.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);116.5;;;1;n an replicates unknown;Air dried weight;;3 Crataegus calycina;29408;actual measurement;multi-seeded generative dispersule;629;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);629;;;1;n an replicates unknown;Fresh weight;;2b Crataegus coccinea;30936;actual measurement;generative dispersule;66.7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);66.7;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Crataegus crus-galli;30375;actual measurement;generative dispersule;74.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);74.9;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Crataegus laevigata;29749;actual measurement;generative dispersule;525;;-4;;BIOLFLOR database;525;;;;;Fresh weight;;2 Crataegus laevigata;29749;actual measurement;germinule;59.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);59.5;;;1;n an replicates unknown;Air dried weight;;3 Crataegus laevigata;29749;actual measurement;germinule;40.8;;-4;;BIOLFLOR database;40.8;;;;;Air dried weight;;3 Crataegus laevigata;29749;actual measurement;one-seeded generative dispersule;154;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;154;;;25;;Air dried weight;;2a Crataegus laevigata;29749;actual measurement;multi-seeded generative dispersule;817;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);817;;;1;n an replicates unknown;Fresh weight;;2b Crataegus laevigata;29749;other;germinule;262.178;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);262.178;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crataegus laevigata;29749;other;germinule;168.1592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);168.1592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crataegus laevigata;29749;other;germinule;181.354;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);181.354;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crataegus monogyna;29980;other;germinule;112.4336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);112.4336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crataegus monogyna;29980;other;germinule;178.28;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);178.28;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crataegus monogyna;29980;actual measurement;one-seeded generative dispersule;476;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);476;;;1;n an replicates unknown;Fresh weight;;2a Crataegus monogyna;29980;actual measurement;germinule;64.873;;-4;;BIOLFLOR database;64.873;69.545;60.2;;;Air dried weight;;3 Crataegus monogyna;29980;actual measurement;one-seeded generative dispersule;49.6;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;49.6;;;50;;Air dried weight;;2a Crataegus monogyna;29980;actual measurement;germinule;96.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);96.8;;;1;n an replicates unknown;Air dried weight;;3 Crataegus monogyna;29980;actual measurement;generative dispersule;82.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);82.6;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Crataegus monogyna;29980;actual measurement;generative dispersule;280;;-4;;BIOLFLOR database;280;;;;;Fresh weight;;2 Crataegus monogyna s. monogyna;29751;actual measurement;generative dispersule;4.07;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.07;;;1;n and replicates unknown;Air dried weight;;2 Crepis alpestris;5873;actual measurement;generative dispersule;.826;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.826;1.06;.64;1;;Air dried weight;;2 Crepis aurea;2623;actual measurement;germinule;.65;;-4;;BIOLFLOR database;.65;;;;;Air dried weight;;3 Crepis biennis;4230;actual measurement;germinule;.999;;-4;;BIOLFLOR database;.999;1.098;.9;;;Air dried weight;;3 Crepis biennis;4230;actual measurement;one-seeded generative dispersule;1.694;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.694;;;50;;Air dried weight;;2a Crepis biennis;4230;other;germinule;1.2316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis capillaris;3071;other;germinule;.282;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.282;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis capillaris;3071;other;germinule;.2384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis capillaris;3071;actual measurement;one-seeded generative dispersule;.213;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.213;;;50;;Air dried weight;;2a Crepis capillaris;3071;actual measurement;one-seeded generative dispersule;.06;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.06;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Crepis capillaris;3071;other;one-seeded generative dispersule;.282;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.282;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Crepis capillaris;3071;other;one-seeded generative dispersule;.2384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Crepis capillaris;3071;actual measurement;germinule;.213;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.213;;;50;;Air dried weight;;3 Crepis capillaris;3071;actual measurement;one-seeded generative dispersule;.255;;-4;;BIOLFLOR database;.255;.3;.21;;;Air dried weight;;2a Crepis capillaris;3071;actual measurement;germinule;.18;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.18;;;30;collected between 1996-1999;Air dried weight;;3 Crepis capillaris;3071;actual measurement;germinule;.18167;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.18167;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Crepis capillaris;3071;actual measurement;germinule;.182;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.182;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Crepis capillaris;3071;actual measurement;germinule;.255;;-4;;BIOLFLOR database;.255;.3;.21;;;Air dried weight;;3 Crepis conyzifolia;6115;actual measurement;germinule;3.112;;-4;;BIOLFLOR database;3.112;3.162;3.075;;;Air dried weight;;3 Crepis conyzifolia;6115;actual measurement;germinule;2.17;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.17;2.302;2.038;100;;Air dried weight;;3 Crepis foetida;3405;actual measurement;germinule;.883;;-4;;BIOLFLOR database;.883;;;;;Air dried weight;;3 Crepis foetida;3405;actual measurement;germinule;.69;;-4;;BIOLFLOR database;.69;;;;;Air dried weight;;3 Crepis foetida;3405;actual measurement;generative dispersule;1.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.9;;;1;n an replicates unknown;Air dried weight;;2 Crepis foetida;3405;actual measurement;generative dispersule;.356;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.356;.356;.356;75;;Air dried weight;;2 Crepis foetida;3405;other;germinule;.3948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis foetida;3405;other;germinule;.4668;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis foetida;3405;other;germinule;.3412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis mollis;5768;other;germinule;.998;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.998;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis mollis;5768;other;germinule;.7056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis mollis;5768;actual measurement;germinule;.362;;-4;;BIOLFLOR database;.362;;;;;Air dried weight;;3 Crepis mollis;5768;actual measurement;germinule;.33;;-4;;BIOLFLOR database;.33;;;;;Air dried weight;;3 Crepis mollis;5768;actual measurement;one-seeded generative dispersule;.362;;-4;;BIOLFLOR database;.362;;;;;Air dried weight;;2a Crepis mollis;5768;actual measurement;one-seeded generative dispersule;.33;;-4;;BIOLFLOR database;.33;;;;;Air dried weight;;2a Crepis mollis;5768;other;one-seeded generative dispersule;.998;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.998;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Crepis mollis;5768;other;one-seeded generative dispersule;.7056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Crepis mollis;5768;other;one-seeded generative dispersule;.7056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Crepis mollis;5768;other;one-seeded generative dispersule;.998;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.998;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Crepis mollis;5768;actual measurement;generative dispersule;.4335;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4335;.438;.429;100;;Air dried weight;;2 Crepis paludosa;5882;actual measurement;one-seeded generative dispersule;.436;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.436;;;50;;Air dried weight;;2a Crepis paludosa;5882;actual measurement;germinule;.57;;-4;;BIOLFLOR database;.57;;;;;Air dried weight;;3 Crepis paludosa;5882;actual measurement (following LEDA data standards);germinule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;50;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Crepis paludosa;5882;actual measurement (following LEDA data standards);germinule;.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.88;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Crepis paludosa;5882;other;germinule;.6524;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis paludosa;5882;other;germinule;.5536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis paludosa;5882;actual measurement (following LEDA data standards);one-seeded generative dispersule;.65;1;-2;.65;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.65;.65;.65;;preaggregated value obtained from single record;Air dried weight;;2a Crepis paludosa;5882;actual measurement (following LEDA data standards);one-seeded generative dispersule;.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.65;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Crepis paludosa;5882;actual measurement (following LEDA data standards);germinule;.63;1;-2;.63;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;.63;.63;;preaggregated value obtained from single record;Air dried weight;;3 Crepis paludosa;5882;actual measurement (following LEDA data standards);germinule;.88;1;-2;.88;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.88;.88;.88;;preaggregated value obtained from single record;Air dried weight;;3 Crepis praemorsa;2633;actual measurement;generative dispersule;.093;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.093;.095;.091;100;;Air dried weight;;2 Crepis praemorsa s. corymbosa;5875;actual measurement;germinule;.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.59;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Crepis pulchra;5675;actual measurement;generative dispersule;.384;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.384;.61;.23;1;;Air dried weight;;2 Crepis pyrenaica;4706;actual measurement;germinule;3.27;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.27;3.271;3.269;100;;Air dried weight;;3 Crepis vesicaria;3710;actual measurement;germinule;.58828;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.58828;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Crepis vesicaria;3710;actual measurement;one-seeded generative dispersule;.352;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.352;;;50;;Air dried weight;;2a Crepis vesicaria;3710;other;germinule;.2964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crepis vesicaria;3710;other;germinule;.3048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;2.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.21;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;1.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.65;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;1.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.65;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;1.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.83;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;1.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.86;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;2.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.25;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;other;germinule;3.9544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;1.93;10;-2;1.93;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.94;2.25;1.65;;preaggregated value obtained from single record;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;2.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.01;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;1.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.99;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;2.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.17;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Crithmum maritimum;1350;actual measurement (following LEDA data standards);multi-seeded generative dispersule;1.76;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.76;;;10;used balance: Mettler H51, fruit 2-seeded;Air dried weight;;2b Cruciata glabra;31855;actual measurement;multi-seeded generative dispersule;1.43;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.43;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Cruciata laevipes;32133;other;germinule;3.5856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.5856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cruciata laevipes;32133;actual measurement;one-seeded generative dispersule;5.34;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.34;;;50;;Air dried weight;;2a Cucubalus baccifer;16443;actual measurement;germinule;1.613;;-4;;BIOLFLOR database;1.613;;;;;Air dried weight;;3 Cucumis sativus;18481;actual measurement;germinule;24;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;27;21;1;n and replicates unknown;Air dried weight;;3 Cucurbita pepo;18484;actual measurement;germinule;270;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;480;60;1;n and replicates unknown;Air dried weight;;3 Cuscuta epilinum;18845;actual measurement;germinule;.608;;-4;;BIOLFLOR database;.608;.65;.565;;;Air dried weight;;3 Cuscuta epilinum;18845;actual measurement;generative dispersule;.564;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.564;.567;.561;100;;Air dried weight;;2 Cuscuta epilinum;18845;actual measurement;one-seeded generative dispersule;.608;;-4;;BIOLFLOR database;.608;.65;.565;;;Air dried weight;;2a Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.26;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;other;germinule;.414;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.414;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.3;10;-2;.3;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;.32;.26;;preaggregated value obtained from single record;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.27;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.27;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.31;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.31;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta epithymum;18799;actual measurement (following LEDA data standards);germinule;.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta europaea;18822;actual measurement (following LEDA data standards);germinule;.5;1;-2;.5;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.5;.5;.5;;preaggregated value obtained from single record;Air dried weight;;3 Cuscuta europaea;18822;actual measurement (following LEDA data standards);germinule;.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.5;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Cuscuta europaea;18822;other;germinule;.456;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.456;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cuscuta europaea;18822;other;germinule;.4696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cuscuta europaea;18822;other;germinule;.4528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cuscuta europaea;18822;other;germinule;.3928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cuscuta europaea;18822;other;germinule;.4684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cuscuta europaea;18822;other;germinule;.56;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.56;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cuscuta europaea;18822;other;one-seeded generative dispersule;.4696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cuscuta europaea;18822;other;one-seeded generative dispersule;.4528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cuscuta europaea;18822;other;one-seeded generative dispersule;.456;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.456;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cuscuta europaea;18822;other;one-seeded generative dispersule;.3928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cuscuta europaea;18822;other;one-seeded generative dispersule;.56;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.56;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cuscuta europaea;18822;other;one-seeded generative dispersule;.4684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cuscuta europaea;18822;actual measurement;germinule;.513;;-4;;BIOLFLOR database;.513;.555;.46;;;Air dried weight;;3 Cuscuta europaea;18822;actual measurement;one-seeded generative dispersule;.513;;-4;;BIOLFLOR database;.513;.555;.46;;;Air dried weight;;2a Cuscuta gronovii;18827;actual measurement;germinule;.522;;-4;;BIOLFLOR database;.522;.524;.52;;;Air dried weight;;3 Cuscuta gronovii;18827;actual measurement;one-seeded generative dispersule;.522;;-4;;BIOLFLOR database;.522;.524;.52;;;Air dried weight;;2a Cuscuta gronovii;18827;actual measurement;one-seeded generative dispersule;10.4245;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;10.4245;10.52;10.329;100;;Air dried weight;;2a Cuscuta lupuliformis;18833;actual measurement;one-seeded generative dispersule;5.3;;-4;;BIOLFLOR database;5.3;;;;;Air dried weight;;2a Cuscuta lupuliformis;18833;actual measurement;germinule;5.3;;-4;;BIOLFLOR database;5.3;;;;;Air dried weight;;3 Cuscuta suaveolens Ser.;18803;actual measurement;germinule;.82;;-4;;BIOLFLOR database;.82;;;;;Air dried weight;;3 Cuscuta suaveolens Ser.;18803;actual measurement;one-seeded generative dispersule;.82;;-4;;BIOLFLOR database;.82;;;;;Air dried weight;;2a Cyclamen balearicum;28972;actual measurement;generative dispersule;2.91;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.91;;;1;n and replicates unknown;Air dried weight;;2 Cymbalaria muralis;33224;actual measurement;germinule;.139;;-4;;BIOLFLOR database;.139;.174;.104;;;Air dried weight;;3 Cymbalaria muralis;33224;actual measurement;germinule;.107;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.107;;;50;;Air dried weight;;3 Cymbalaria muralis;33224;actual measurement;one-seeded generative dispersule;.139;;-4;;BIOLFLOR database;.139;.174;.104;;;Air dried weight;;2a Cymbalaria muralis;33224;actual measurement;one-seeded generative dispersule;.107;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.107;;;50;;Air dried weight;;2a Cymbalaria pallida;33229;actual measurement;one-seeded generative dispersule;.34;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.34;;;61;;Air dried weight;;2a Cynodon dactylon;41221;actual measurement;one-seeded generative dispersule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;2a Cynodon dactylon;41221;actual measurement;germinule;.097;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.097;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Cynodon dactylon;41221;actual measurement;germinule;.097;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.097;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Cynodon dactylon;41221;actual measurement;germinule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;3 Cynodon dactylon;41221;actual measurement;germinule;.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1;;;30;collected between 1996-1999;Air dried weight;;3 Cynodon dactylon;41221;actual measurement;generative dispersule;.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.06;;;1;n an replicates unknown;Air dried weight;;2 Cynodon dactylon;41221;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;;;50;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Cynodon dactylon;41221;actual measurement (following LEDA data standards);germinule;.12;1;-2;.12;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;.12;.12;;preaggregated value obtained from single record;Air dried weight;;3 Cynoglossum germanicum;12512;other;unknown;19.8884;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);19.8884;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cynoglossum germanicum;12512;other;unknown;19.8872;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);19.8872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cynoglossum germanicum;12512;other;unknown;14.7632;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.7632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cynoglossum germanicum;12512;other;unknown;20.2476;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.2476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cynoglossum officinale;12519;actual measurement (following LEDA data standards);germinule;21.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21.83;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Cynoglossum officinale;12519;other;germinule;28.2252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);28.2252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cynoglossum officinale;12519;other;germinule;30.7708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);30.7708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cynoglossum officinale;12519;actual measurement (following LEDA data standards);one-seeded generative dispersule;22;1;-2;22;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22;22;22;;preaggregated value obtained from single record;Air dried weight;;2a Cynoglossum officinale;12519;actual measurement (following LEDA data standards);one-seeded generative dispersule;22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22;;;20;used balance: Mettler Toledo 4, disp. unit;Air dried weight;;2a Cynoglossum officinale;12519;actual measurement (following LEDA data standards);germinule;21.83;1;-2;21.83;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21.83;21.83;21.83;;preaggregated value obtained from single record;Air dried weight;;3 Cynoglossum officinale;12519;actual measurement;germinule;26.049;;-4;;BIOLFLOR database;26.049;57;20;;;Air dried weight;;3 Cynoglossum officinale;12519;actual measurement;germinule;30.165;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30.165;;;50;;Air dried weight;;3 Cynoglossum officinale;12519;actual measurement;germinule;41.7;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41.7;;;20;;Air dried weight;;3 Cynoglossum officinale;12519;actual measurement;one-seeded generative dispersule;26.049;;-4;;BIOLFLOR database;26.049;57;20;;;Air dried weight;;2a Cynoglossum officinale;12519;actual measurement;one-seeded generative dispersule;30.165;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30.165;;;50;;Air dried weight;;2a Cynoglossum officinale;12519;actual measurement;one-seeded generative dispersule;41.7;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41.7;;;20;;Air dried weight;;2a Cynoglossum officinale;12519;other;one-seeded generative dispersule;28.2252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);28.2252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cynoglossum officinale;12519;other;one-seeded generative dispersule;30.7708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);30.7708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cynosurus cristatus;40659;other;germinule;.4968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cynosurus cristatus;40659;other;one-seeded generative dispersule;.4968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cynosurus cristatus;40659;other;one-seeded generative dispersule;.5948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cynosurus cristatus;40659;actual measurement;one-seeded generative dispersule;.697;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.697;;;50;;Air dried weight;;2a Cynosurus cristatus;40659;actual measurement;one-seeded generative dispersule;.6;;-4;;BIOLFLOR database;.6;.7;.5;;;Air dried weight;;2a Cynosurus cristatus;40659;actual measurement;germinule;.6;;-4;;BIOLFLOR database;.6;.7;.5;;;Air dried weight;;3 Cynosurus cristatus;40659;actual measurement;generative dispersule;.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.5;;;1;n and replicates unknown;Air dried weight;;2 Cynosurus cristatus;40659;actual measurement;germinule;.697;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.697;;;50;;Air dried weight;;3 Cynosurus cristatus;40659;actual measurement (following LEDA data standards);germinule;.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.56;;;100;used balance: Mettler H51, germ. unit;Air dried weight;;3 Cynosurus cristatus;40659;other;germinule;.5948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cynosurus cristatus;40659;actual measurement (following LEDA data standards);germinule;.56;1;-2;.56;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.56;.56;.56;;preaggregated value obtained from single record;Air dried weight;;3 Cynosurus cristatus;40659;actual measurement (following LEDA data standards);germinule;.36;1;-2;.36;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;.36;.36;;preaggregated value obtained from single record;Air dried weight;;3 Cynosurus cristatus;40659;actual measurement (following LEDA data standards);germinule;.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;;;100;used balance: Mettler H51, germ. unit;Air dried weight;;3 Cynosurus echinatus;41222;other;unknown;1.3948;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Cyperus eragrostis;37597;actual measurement;germinule;.093;;-4;;BIOLFLOR database;.093;.101;.089;;;Air dried weight;;3 Cyperus eragrostis;37597;actual measurement;one-seeded generative dispersule;.093;;-4;;BIOLFLOR database;.093;.101;.089;;;Air dried weight;;2a Cyperus flavescens;37602;actual measurement;one-seeded generative dispersule;.1435;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1435;.179;.108;100;;Air dried weight;;2a Cyperus flavescens;37602;actual measurement;one-seeded generative dispersule;.166;;-4;;BIOLFLOR database;.166;.169;.163;;;Air dried weight;;2a Cyperus flavescens;37602;actual measurement;germinule;.166;;-4;;BIOLFLOR database;.166;.169;.163;;;Air dried weight;;3 Cyperus fuscus;37606;actual measurement;generative dispersule;.048;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.048;.048;.048;1;;Air dried weight;;2 Cyperus fuscus;37606;actual measurement;one-seeded generative dispersule;.0375;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0375;.038;.037;100;;Air dried weight;;2a Cyperus fuscus;37606;other;germinule;.0735;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0735;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cyperus fuscus;37606;other;germinule;.0584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cyperus fuscus;37606;other;germinule;.0496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cyperus fuscus;37606;other;germinule;.0564;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0564;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cyperus fuscus;37606;other;germinule;.074;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.074;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cyperus fuscus;37606;other;germinule;.044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cyperus longus;37214;actual measurement;germinule;.063;;-4;;BIOLFLOR database;.063;;;;;Air dried weight;;3 Cyperus longus;37214;actual measurement;one-seeded generative dispersule;.063;;-4;;BIOLFLOR database;.063;;;;;Air dried weight;;2a Cyperus michelianus;37621;actual measurement;one-seeded generative dispersule;.024;;-4;;BIOLFLOR database;.024;;;;;Air dried weight;;2a Cyperus michelianus;37621;actual measurement;germinule;.024;;-4;;BIOLFLOR database;.024;;;;;Air dried weight;;3 Cytisus multiflorus;21704;actual measurement;germinule;5.9;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];5.9;;;90;;Unknown;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Cytisus oromediterraneus;59690;actual measurement;germinule;10.3;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];10.3;;;60;;Unknown;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Cytisus scoparius;21757;actual measurement;germinule;8.156;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.156;;;100;;Air dried weight;;3 Cytisus scoparius;21757;actual measurement;germinule;8.456;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.456;;;50;;Air dried weight;;3 Cytisus scoparius;21757;actual measurement;germinule;7.785;;-4;;BIOLFLOR database;7.785;10.48;6.734;;;Air dried weight;;3 Cytisus scoparius;21757;actual measurement;germinule;3.25;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3.25;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Cytisus scoparius;21757;actual measurement;germinule;7.2;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];7.2;;;90;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Cytisus scoparius;21757;actual measurement;germinule;7.09;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.09;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Cytisus scoparius;21757;actual measurement;one-seeded generative dispersule;8.156;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.156;;;100;;Air dried weight;;2a Cytisus scoparius;21757;actual measurement;one-seeded generative dispersule;3.39;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3.39;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Cytisus scoparius;21757;actual measurement;one-seeded generative dispersule;7.785;;-4;;BIOLFLOR database;7.785;10.48;6.734;;;Air dried weight;;2a Cytisus scoparius;21757;actual measurement;one-seeded generative dispersule;8.456;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.456;;;50;;Air dried weight;;2a Cytisus scoparius;21757;other;one-seeded generative dispersule;9.522;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);9.522;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Cytisus scoparius;21757;other;germinule;9.522;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);9.522;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Cytisus sessilifolius;20935;actual measurement;germinule;13.63;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);13.63;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Cytisus striatus;19707;actual measurement;germinule;6.267;;-4;;BIOLFLOR database;6.267;6.6;6;;;Air dried weight;;3 Cytisus striatus;19707;actual measurement;germinule;11;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];11;;;90;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Cytisus striatus;19707;actual measurement;one-seeded generative dispersule;6.267;;-4;;BIOLFLOR database;6.267;6.6;6;;;Air dried weight;;2a Cytisus villosus;19710;actual measurement;germinule;6.86;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.86;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Dactylis glomerata;40290;actual measurement;one-seeded generative dispersule;.991;;-4;;BIOLFLOR database;.991;1.3;.7;;;Air dried weight;;2a Dactylis glomerata;40290;actual measurement;generative dispersule;.47;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.47;;;1;n an replicates unknown;Air dried weight;;2 Dactylis glomerata;40290;actual measurement;generative dispersule;.55;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.55;;;1;n and replicates unknown;Air dried weight;;2 Dactylis glomerata;40290;actual measurement;germinule;1.059;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.059;;;100;;Air dried weight;;3 Dactylis glomerata;40290;actual measurement;germinule;.508;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.508;;;50;;Air dried weight;;3 Dactylis glomerata;40290;actual measurement;germinule;.9;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.9;;;1;n and replicates unknown;Air dried weight;;3 Dactylis glomerata;40290;actual measurement;germinule;.79;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.79;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Dactylis glomerata;40290;actual measurement;germinule;.37034;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.37034;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Dactylis glomerata;40290;actual measurement;germinule;.633;;-4;;BIOLFLOR database;.633;.755;.51;;;Air dried weight;;3 Dactylis glomerata;40290;actual measurement;germinule;.991;;-4;;BIOLFLOR database;.991;1.3;.7;;;Air dried weight;;3 Dactylis glomerata;40290;other;one-seeded generative dispersule;.8748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dactylis glomerata;40290;other;one-seeded generative dispersule;1.2896;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2896;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dactylis glomerata;40290;other;one-seeded generative dispersule;.9644;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9644;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dactylis glomerata;40290;other;one-seeded generative dispersule;1.1948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dactylis glomerata;40290;other;one-seeded generative dispersule;1.1992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dactylis glomerata;40290;other;one-seeded generative dispersule;.9996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dactylis glomerata;40290;actual measurement;one-seeded generative dispersule;1.059;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.059;;;100;;Air dried weight;;2a Dactylis glomerata;40290;actual measurement;one-seeded generative dispersule;.508;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.508;;;50;;Air dried weight;;2a Dactylis glomerata;40290;other;germinule;1.2896;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2896;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dactylis glomerata;40290;other;germinule;.8748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dactylis glomerata;40290;other;germinule;1.1948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dactylis glomerata;40290;other;germinule;.9996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dactylis glomerata;40290;other;germinule;.9644;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9644;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dactylis glomerata;40290;other;germinule;1.1992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Damasonium alisma;35641;other;unknown;3.7924;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.7924;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Damasonium alisma;35641;other;unknown;.9664;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Damasonium alisma;35641;other;unknown;1.0584;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Damasonium alisma;35641;other;unknown;2.8711765;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8711765;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Damasonium alisma;35641;other;unknown;1.042;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.042;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Damasonium alisma;35641;other;unknown;1.004;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.004;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Damasonium alisma;35641;other;unknown;1.1448;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1448;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Damasonium alisma;35641;other;unknown;.8948;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Danthonia decumbens;42203;actual measurement;one-seeded generative dispersule;2.296;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.296;;;50;;Air dried weight;;2a Danthonia decumbens;42203;actual measurement;one-seeded generative dispersule;.87;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.87;;;20;;Air dried weight;;2a Danthonia decumbens;42203;actual measurement;generative dispersule;1.9945;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.9945;2.002;1.987;100;;Air dried weight;;2 Danthonia decumbens;42203;actual measurement;germinule;.835;;-4;;BIOLFLOR database;.835;.87;.8;;;Air dried weight;;3 Danthonia decumbens;42203;actual measurement;germinule;1.296;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.296;;;1;summers of 1995 and 1996;Unknown;;3 Daphne cneorum;34621;actual measurement;generative dispersule;4.4;;-4;;BIOLFLOR database;4.4;;;;;Unknown;;2 Daphne laureola;34606;actual measurement;generative dispersule;103.4;;-4;;BIOLFLOR database;103.4;;;;;Unknown;;2 Daphne mezereum;34610;actual measurement;one-seeded generative dispersule;43.9;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43.9;;;62;;Air dried weight;;2a Datura innoxia;34991;actual measurement;generative dispersule;16;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;16;18.3;14.9;1;;Air dried weight;;2 Datura stramonium;34907;actual measurement;germinule;8.73;;-4;;BIOLFLOR database;8.73;11.056;7.236;;;Air dried weight;;3 Datura stramonium;34907;actual measurement;one-seeded generative dispersule;8.73;;-4;;BIOLFLOR database;8.73;11.056;7.236;;;Air dried weight;;2a Datura stramonium;34907;other;one-seeded generative dispersule;7.5984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.5984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Datura stramonium;34907;other;one-seeded generative dispersule;10.7728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.7728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Datura stramonium;34907;other;germinule;10.7728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.7728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Datura stramonium;34907;other;germinule;7.5984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.5984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.4;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.35;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.41;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;other;germinule;1.1408;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.0684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;.9756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.3148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;.862;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.862;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.0488;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.378;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.378;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.4492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;.962;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.962;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;.756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;.872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;.9468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;.9548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.0352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.3036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.7352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.1704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.2176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.1552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;other;germinule;1.0248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.41;10;-2;1.41;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.43;1.78;1.26;;preaggregated value obtained from single record;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.26;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.55;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.78;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.45;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.48;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.3;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.31;;;10;used balance: Mettler H51, disp. unit 1-seeded;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;.9468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.0488;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.1408;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;.862;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.862;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;.9756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.4492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.0684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.0248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;.872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.1704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.7352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;.756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.3148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;.9548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.378;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.378;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.0352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.1552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;.962;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.962;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.2176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;other;one-seeded generative dispersule;1.3036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Daucus carota;1358;actual measurement;one-seeded generative dispersule;1.093;;-4;;BIOLFLOR database;1.093;1.5;.773;;;Air dried weight;;2a Daucus carota;1358;actual measurement;one-seeded generative dispersule;.883;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.883;;;100;;Air dried weight;;2a Daucus carota;1358;actual measurement;one-seeded generative dispersule;.97025;8;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.97025;1.022;.898666667;100;;Air dried weight;;2a Daucus carota;1358;actual measurement;one-seeded generative dispersule;1.004;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.004;;;50;;Air dried weight;;2a Daucus carota;1358;actual measurement;one-seeded generative dispersule;.773;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.773;;;100;;Air dried weight;;2a Daucus carota;1358;actual measurement;germinule;1.093;;-4;;BIOLFLOR database;1.093;1.5;.773;;;Air dried weight;;3 Daucus carota;1358;actual measurement;germinule;.883;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.883;;;100;;Air dried weight;;3 Daucus carota;1358;actual measurement;germinule;.773;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.773;;;100;;Air dried weight;;3 Daucus carota;1358;actual measurement;germinule;1.004;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.004;;;50;;Air dried weight;;3 Daucus carota;1358;actual measurement;germinule;2.2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2.4;2;1;n and replicates unknown;Air dried weight;;3 Daucus carota;1358;actual measurement;generative dispersule;.98;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.98;;;1;n and replicates unknown;Air dried weight;;2 Delphinium elatum;27141;actual measurement;germinule;1.86;;-4;;BIOLFLOR database;1.86;1.917;1.835;;;Air dried weight;;3 Delphinium elatum;27141;actual measurement;one-seeded generative dispersule;1.86;;-4;;BIOLFLOR database;1.86;1.917;1.835;;;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement;germinule;.311;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.311;;;100;;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement;one-seeded generative dispersule;.266;;-4;;BIOLFLOR database;.266;.32;.2;;;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement;generative dispersule;.289066667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.289066667;.300666667;.28;150;;Air dried weight;;2 Deschampsia cespitosa;40299;actual measurement;germinule;.266;;-4;;BIOLFLOR database;.266;.32;.2;;;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement;one-seeded generative dispersule;.311;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.311;;;100;;Air dried weight;;2a Deschampsia cespitosa;40299;other;one-seeded generative dispersule;.202;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.202;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Deschampsia cespitosa;40299;unknown;generative dispersule;.25;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.25;;;0;;Air dried weight;Grime, J. P.(1988): Comparative Plant Ecology: A functional approach to common British species;2 Deschampsia cespitosa;40299;other;one-seeded generative dispersule;.2176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;;;10;No. of seeds per individual: 10;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;10;No. of seeds per individual: 10;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;No. of seeds per individual: 10;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;10;No. of seeds per individual: 10;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;;;10;No. of seeds per individual: 10;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;10;No. of seeds per individual: 10;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.42;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.42;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.19;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.26;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.26;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.22;2;-2;.22;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.22;.31;.12;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.14;6;-2;.14;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;.18;.07;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Deschampsia cespitosa;40299;other;germinule;.202;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.202;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Deschampsia cespitosa;40299;other;germinule;.2176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.29;2;-2;.29;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;.42;.16;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.18;6;-2;.18;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;.3;.11;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.19;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.26;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.26;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.42;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.42;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);one-seeded generative dispersule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;No. of seeds per individual: 10;Air dried weight;;3 Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);germinule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;10;No. of seeds per individual: 10;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.24;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.24;;;7;No. of seeds per individual: 5-9;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;7;No. of seeds per individual: 5-9;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.22;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.22;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.52;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.52;;;7;Weight including appendages. No. of seeds per individual: 5-9;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.23;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.23;;;7;Weight including appendages. No. of seeds per individual: 5-9;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.22;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.22;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;other;germinule;.6704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;2;-2;.38;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.38;.52;.23;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 5-9;;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.22;5;-2;.22;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.23;.31;.17;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 9-10;;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.52;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.52;;;7;Weight including appendages. No. of seeds per individual: 5-9;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.23;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.23;;;7;Weight including appendages. No. of seeds per individual: 5-9;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.18;2;-2;.18;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;.24;.12;;Preaggregated data obtained from single record. No. of seeds per individual: 5-9;;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.11;6;-2;.11;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;.13;.07;;Preaggregated data obtained from single record. No. of seeds per individual: 9-10;;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);germinule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;10;No. of seeds per individual: 9-10;Air dried weight;;3 Deschampsia flexuosa;41982;other;one-seeded generative dispersule;.6704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement;generative dispersule;.354133333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.354133333;.384666667;.325333333;150;;Air dried weight;;2 Deschampsia flexuosa;41982;unknown;generative dispersule;.43;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.43;;;0;;Air dried weight;Grime, J. P.(1988): Comparative Plant Ecology: A functional approach to common British species;2 Deschampsia flexuosa;41982;actual measurement;germinule;.43;;-4;;BIOLFLOR database;.43;;;;;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement;germinule;.685;;-4;;BIOLFLOR database;.685;.7;.669;;;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement;germinule;.464;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.464;;;50;;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement;germinule;.505;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.505;;;100;;Air dried weight;;3 Deschampsia flexuosa;41982;actual measurement;one-seeded generative dispersule;.685;;-4;;BIOLFLOR database;.685;.7;.669;;;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement;one-seeded generative dispersule;.464;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.464;;;50;;Air dried weight;;2a Deschampsia flexuosa;41982;actual measurement;one-seeded generative dispersule;.505;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.505;;;100;;Air dried weight;;2a Deschampsia media;40981;actual measurement;germinule;.231;;-4;;BIOLFLOR database;.231;.234;.228;;;Air dried weight;;3 Deschampsia media;40981;actual measurement;one-seeded generative dispersule;.231;;-4;;BIOLFLOR database;.231;.234;.228;;;Air dried weight;;2a Deschampsia setacea;40982;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Deschampsia setacea;40982;actual measurement (following LEDA data standards);germinule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;3 Deschampsia setacea;40982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;;;100;used balance: Mettler Toledo 4, fruit seed with jacket;Air dried weight;;2a Deschampsia setacea;40982;other;germinule;.1244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Deschampsia setacea;40982;actual measurement (following LEDA data standards);one-seeded generative dispersule;.13;1;-2;.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;.13;.13;;preaggregated value obtained from single record;Air dried weight;;2a Descurainia sophia;13207;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;.116;.089;;;Air dried weight;;2a Descurainia sophia;13207;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;.116;.089;;;Air dried weight;;3 Desmazeria rigida;40985;actual measurement;generative dispersule;.186842105;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.186842105;.186842105;.186842105;76;;Air dried weight;;2 Desmazeria rigida;40985;actual measurement;germinule;.175;;-4;;BIOLFLOR database;.175;.19;.16;;;Air dried weight;;3 Desmazeria rigida;40985;actual measurement;germinule;.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.16;;;50;;Air dried weight;;3 Desmazeria rigida;40985;actual measurement;germinule;.204;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.204;;;50;;Air dried weight;;3 Desmazeria rigida;40985;actual measurement;germinule;.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.192;;;50;;Air dried weight;;3 Desmazeria rigida;40985;actual measurement;one-seeded generative dispersule;.175;;-4;;BIOLFLOR database;.175;.19;.16;;;Air dried weight;;2a Desmazeria rigida;40985;actual measurement;one-seeded generative dispersule;.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.192;;;50;;Air dried weight;;2a Desmazeria rigida;40985;actual measurement;one-seeded generative dispersule;.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.16;;;50;;Air dried weight;;2a Desmazeria rigida;40985;actual measurement;one-seeded generative dispersule;.204;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.204;;;50;;Air dried weight;;2a Dianthus arenarius;16445;actual measurement;one-seeded generative dispersule;.532;;-4;;BIOLFLOR database;.532;;;;;Air dried weight;;2a Dianthus arenarius;16445;actual measurement;germinule;.532;;-4;;BIOLFLOR database;.532;;;;;Air dried weight;;3 Dianthus armeria;16115;actual measurement;one-seeded generative dispersule;.272;;-4;;BIOLFLOR database;.272;.3;.257;;;Air dried weight;;2a Dianthus armeria;16115;actual measurement;germinule;.272;;-4;;BIOLFLOR database;.272;.3;.257;;;Air dried weight;;3 Dianthus armeria;16115;other;one-seeded generative dispersule;.2076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dianthus armeria;16115;other;one-seeded generative dispersule;.2688;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2688;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dianthus armeria;16115;other;germinule;.2076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dianthus armeria;16115;other;germinule;.2688;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2688;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dianthus carthusianorum;16880;actual measurement;generative dispersule;1.03;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.03;1.03;1.03;1;;Air dried weight;;2 Dianthus carthusianorum;16880;actual measurement;germinule;1.026;;-4;;BIOLFLOR database;1.026;1.1;.952;;;Air dried weight;;3 Dianthus carthusianorum;16880;actual measurement;one-seeded generative dispersule;1.026;;-4;;BIOLFLOR database;1.026;1.1;.952;;;Air dried weight;;2a Dianthus deltoides;16129;actual measurement;germinule;.247;;-4;;BIOLFLOR database;.247;.293;.2;;;Air dried weight;;3 Dianthus deltoides;16129;actual measurement;germinule;.141;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.141;;;1;summers of 1995 and 1996;Unknown;;3 Dianthus deltoides;16129;actual measurement;germinule;.148;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.148;;;50;;Air dried weight;;3 Dianthus deltoides;16129;other;one-seeded generative dispersule;.2264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dianthus deltoides;16129;other;one-seeded generative dispersule;.2228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dianthus deltoides;16129;actual measurement;one-seeded generative dispersule;.148;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.148;;;50;;Air dried weight;;2a Dianthus deltoides;16129;actual measurement;one-seeded generative dispersule;.247;;-4;;BIOLFLOR database;.247;.293;.2;;;Air dried weight;;2a Dianthus deltoides;16129;actual measurement (following LEDA data standards);germinule;.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Dianthus deltoides;16129;actual measurement (following LEDA data standards);germinule;.2;1;-2;.2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;.2;.2;;preaggregated value obtained from single record;Air dried weight;;3 Dianthus deltoides;16129;other;germinule;.2228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dianthus deltoides;16129;other;germinule;.2264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dianthus gratianopolitanus;16472;other;germinule;1.1984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dianthus gratianopolitanus;16472;other;germinule;1.1868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dianthus gratianopolitanus;16472;other;germinule;.9416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dianthus gratianopolitanus;16472;other;germinule;.9528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dianthus gratianopolitanus;16472;other;one-seeded generative dispersule;1.1868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dianthus gratianopolitanus;16472;other;one-seeded generative dispersule;1.1984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dianthus gratianopolitanus;16472;other;one-seeded generative dispersule;.9528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dianthus gratianopolitanus;16472;other;one-seeded generative dispersule;.9416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dianthus gratianopolitanus;16472;actual measurement;germinule;1.453;;-4;;BIOLFLOR database;1.453;1.526;1.371;;;Air dried weight;;3 Dianthus gratianopolitanus;16472;actual measurement;one-seeded generative dispersule;1.453;;-4;;BIOLFLOR database;1.453;1.526;1.371;;;Air dried weight;;2a Dianthus monspessulanus;16538;actual measurement;germinule;1.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.03;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Dianthus seguieri;16914;actual measurement;one-seeded generative dispersule;.736;;-4;;BIOLFLOR database;.736;.761;.716;;;Air dried weight;;2a Dianthus seguieri;16914;actual measurement;one-seeded generative dispersule;.793;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.793;.819;.767;100;;Air dried weight;;2a Dianthus seguieri;16914;actual measurement;germinule;.736;;-4;;BIOLFLOR database;.736;.761;.716;;;Air dried weight;;3 Dianthus seguieri;16914;actual measurement;germinule;1.69;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.69;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Dianthus superbus;16439;actual measurement;one-seeded generative dispersule;.916;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.916;.919;.913;100;;Air dried weight;;2a Dianthus sylvestris;16923;actual measurement;germinule;.468;;-4;;BIOLFLOR database;.468;;;;;Air dried weight;;3 Dianthus sylvestris;16923;actual measurement;germinule;.42;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.42;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Dianthus sylvestris;16923;actual measurement;one-seeded generative dispersule;.468;;-4;;BIOLFLOR database;.468;;;;;Air dried weight;;2a Diapensia lapponica;19591;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;60;No. of seeds per individual: 60;Air dried weight;;3 Diapensia lapponica;19591;actual measurement (following LEDA data standards);germinule;.12;1;-2;.12;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;.12;.12;;Preaggregated data obtained from single record. No. of seeds per individual: 60;;;3 Dichanthium ischaemum;41730;actual measurement;generative dispersule;.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.17;;;1;n an replicates unknown;Air dried weight;;2 Dichanthium ischaemum;41730;actual measurement;generative dispersule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;2 Dictamnus albus;31688;actual measurement;germinule;15.89;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);15.89;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Dictamnus albus;31688;actual measurement;germinule;16.394;;-4;;BIOLFLOR database;16.394;18.283;12.9;;;Air dried weight;;3 Dictamnus albus;31688;actual measurement;one-seeded generative dispersule;16.394;;-4;;BIOLFLOR database;16.394;18.283;12.9;;;Air dried weight;;2a Digitalis ferruginea;34167;actual measurement;generative dispersule;.92;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.92;1.1;.7;1;;Air dried weight;;2 Digitalis grandiflora;33169;actual measurement;germinule;.166;;-4;;BIOLFLOR database;.166;.18;.16;;;Air dried weight;;3 Digitalis grandiflora;33169;actual measurement;one-seeded generative dispersule;.166;;-4;;BIOLFLOR database;.166;.18;.16;;;Air dried weight;;2a Digitalis lanata;33171;actual measurement;one-seeded generative dispersule;.187;;-4;;BIOLFLOR database;.187;;;;;Air dried weight;;2a Digitalis lanata;33171;actual measurement;germinule;.187;;-4;;BIOLFLOR database;.187;;;;;Air dried weight;;3 Digitalis lutea;33173;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;3 Digitalis lutea;33173;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;2a Digitalis purpurea;33178;actual measurement;one-seeded generative dispersule;.071;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.071;;;100;;Air dried weight;;2a Digitalis purpurea;33178;actual measurement;one-seeded generative dispersule;.072;;-4;;BIOLFLOR database;.072;.077;.07;;;Air dried weight;;2a Digitalis purpurea;33178;actual measurement;one-seeded generative dispersule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;2a Digitalis purpurea;33178;actual measurement;germinule;.071;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.071;;;100;;Air dried weight;;3 Digitalis purpurea;33178;actual measurement;germinule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;3 Digitalis purpurea;33178;actual measurement;germinule;.072;;-4;;BIOLFLOR database;.072;.077;.07;;;Air dried weight;;3 Digitaria ischaemum;40681;actual measurement;one-seeded generative dispersule;.748;;-4;;BIOLFLOR database;.748;;;;;Air dried weight;;2a Digitaria ischaemum;40681;actual measurement;germinule;.748;;-4;;BIOLFLOR database;.748;;;;;Air dried weight;;3 Digitaria sanguinalis;40683;actual measurement;germinule;.97;;-4;;BIOLFLOR database;.97;.974;.962;;;Air dried weight;;3 Digitaria sanguinalis;40683;actual measurement;one-seeded generative dispersule;.97;;-4;;BIOLFLOR database;.97;.974;.962;;;Air dried weight;;2a Dipcadi serotinum;39101;actual measurement;germinule;1.553;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.553;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Dipcadi serotinum;39101;actual measurement;germinule;1.553;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.553;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Dipcadi serotinum;39101;actual measurement;germinule;1.55;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.55;;;30;collected between 1996-1999;Air dried weight;;3 Diphasiastrum alpinum;44384;estimation (following LEDA data standards);generative dispersule;0;1;-2;0;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;0;0;0;;Preaggregated data obtained from single record. No. of seeds per individual: 500;;;2 Diphasiastrum alpinum;44384;estimation (following LEDA data standards);generative dispersule;0;1;-2;0;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;0;0;0;;Preaggregated data obtained from single record. No. of seeds per individual: 500;;;2 Diplotaxis muralis;13634;actual measurement;germinule;.181;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.181;;;68;;Air dried weight;;3 Diplotaxis muralis;13634;actual measurement;germinule;.193;;-4;;BIOLFLOR database;.193;.212;.167;;;Air dried weight;;3 Diplotaxis muralis;13634;actual measurement;germinule;.254;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.254;;;50;;Air dried weight;;3 Diplotaxis muralis;13634;actual measurement;one-seeded generative dispersule;.193;;-4;;BIOLFLOR database;.193;.212;.167;;;Air dried weight;;2a Diplotaxis muralis;13634;actual measurement;one-seeded generative dispersule;.181;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.181;;;68;;Air dried weight;;2a Diplotaxis muralis;13634;actual measurement;one-seeded generative dispersule;.254;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.254;;;50;;Air dried weight;;2a Diplotaxis tenuifolia;14468;actual measurement;one-seeded generative dispersule;.32;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.32;;;50;;Air dried weight;;2a Diplotaxis tenuifolia;14468;actual measurement;one-seeded generative dispersule;.281;;-4;;BIOLFLOR database;.281;.32;.241;;;Air dried weight;;2a Diplotaxis tenuifolia;14468;actual measurement;germinule;.32;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.32;;;50;;Air dried weight;;3 Diplotaxis tenuifolia;14468;actual measurement;germinule;.281;;-4;;BIOLFLOR database;.281;.32;.241;;;Air dried weight;;3 Diplotaxis tenuifolia;14468;actual measurement;generative dispersule;.216;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.216;.216;.216;75;;Air dried weight;;2 Dipsacus fullonum;19359;actual measurement;germinule;2.984;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.984;;;50;;Air dried weight;;3 Dipsacus fullonum;19359;actual measurement;germinule;2.263;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.263;;;100;;Air dried weight;;3 Dipsacus fullonum;19359;actual measurement;germinule;2.933;;-4;;BIOLFLOR database;2.933;3.538;2.26;;;Air dried weight;;3 Dipsacus fullonum;19359;actual measurement;one-seeded generative dispersule;2.984;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.984;;;50;;Air dried weight;;2a Dipsacus fullonum;19359;actual measurement;one-seeded generative dispersule;2.263;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.263;;;100;;Air dried weight;;2a Dipsacus fullonum;19359;actual measurement;one-seeded generative dispersule;2.933;;-4;;BIOLFLOR database;2.933;3.538;2.26;;;Air dried weight;;2a Dipsacus fullonum;19359;actual measurement;one-seeded generative dispersule;2.605;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.605;2.667;2.543;100;;Air dried weight;;2a Dipsacus laciniatus;19264;actual measurement;one-seeded generative dispersule;4.374;;-4;;BIOLFLOR database;4.374;;;;;Air dried weight;;2a Dipsacus laciniatus;19264;actual measurement;germinule;4.374;;-4;;BIOLFLOR database;4.374;;;;;Air dried weight;;3 Dipsacus pilosus;19256;actual measurement;one-seeded generative dispersule;5.2998;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.2998;7.456;1.847;100;;Air dried weight;;2a Dipsacus pilosus;19256;actual measurement;one-seeded generative dispersule;5.854;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.854;;;50;;Air dried weight;;2a Dipsacus pilosus;19256;other;germinule;4.2452;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.2452;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dipsacus pilosus;19256;other;germinule;4.9152;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.9152;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dipsacus sativus;19175;actual measurement;one-seeded generative dispersule;2.58;;-4;;BIOLFLOR database;2.58;;;;;Air dried weight;;2a Dipsacus sativus;19175;actual measurement;germinule;2.58;;-4;;BIOLFLOR database;2.58;;;;;Air dried weight;;3 Dipsacus sativus;19175;actual measurement;generative dispersule;2.92;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.92;3.3;2.2;1;;Air dried weight;;2 Doronicum austriacum;4827;actual measurement;germinule;1.162;;-4;;BIOLFLOR database;1.162;;;;;Air dried weight;;3 Doronicum austriacum;4827;actual measurement;one-seeded generative dispersule;1.162;;-4;;BIOLFLOR database;1.162;;;;;Air dried weight;;2a Doronicum clusii;3276;actual measurement;generative dispersule;.7712;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.7712;.82;.714;100;;Air dried weight;;2 Doronicum columnae;3889;actual measurement;one-seeded generative dispersule;.766;;-4;;BIOLFLOR database;.766;;;;;Air dried weight;;2a Doronicum columnae;3889;actual measurement;germinule;.766;;-4;;BIOLFLOR database;.766;;;;;Air dried weight;;3 Doronicum pardalianches;3685;actual measurement;one-seeded generative dispersule;.27;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.27;;;53;;Air dried weight;;2a Dorycnium pentaphyllum;21240;actual measurement;generative dispersule;.86;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.86;;;1;n an replicates unknown;Air dried weight;;2 Dorycnium pentaphyllum;21240;actual measurement;generative dispersule;3.23;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.23;;;1;n and replicates unknown;Air dried weight;;2 Dorycnium pentaphyllum;21240;actual measurement;germinule;1.87;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.87;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Dorycnium pentaphyllum s. germanicum;21241;actual measurement;germinule;2.8;;-4;;BIOLFLOR database;2.8;;;;;Air dried weight;;3 Dorycnium pentaphyllum s. germanicum;21241;actual measurement;one-seeded generative dispersule;2.8;;-4;;BIOLFLOR database;2.8;;;;;Air dried weight;;2a Dorycnium pentaphyllum s. herbaceum;20546;actual measurement;germinule;2.091;;-4;;BIOLFLOR database;2.091;2.155;2.018;;;Air dried weight;;3 Dorycnium pentaphyllum s. herbaceum;20546;actual measurement;one-seeded generative dispersule;2.091;;-4;;BIOLFLOR database;2.091;2.155;2.018;;;Air dried weight;;2a Draba aizoides;14170;actual measurement;one-seeded generative dispersule;.29;;-4;;BIOLFLOR database;.29;;;;;Air dried weight;;2a Draba aizoides;14170;other;one-seeded generative dispersule;.1908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Draba aizoides;14170;other;one-seeded generative dispersule;.1848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Draba aizoides;14170;actual measurement;germinule;.29;;-4;;BIOLFLOR database;.29;;;;;Air dried weight;;3 Draba aizoides;14170;actual measurement;generative dispersule;.222;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.222;.25;.2;1;;Air dried weight;;2 Draba aizoides;14170;other;germinule;.1908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Draba aizoides;14170;other;germinule;.1848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Draba dubia;14185;actual measurement;germinule;.15;;-4;;BIOLFLOR database;.15;.151;.147;;;Air dried weight;;3 Draba dubia;14185;actual measurement;one-seeded generative dispersule;.15;;-4;;BIOLFLOR database;.15;.151;.147;;;Air dried weight;;2a Draba fladnizensis;13651;actual measurement;one-seeded generative dispersule;.22;;-4;;BIOLFLOR database;.22;.226;.212;;;Air dried weight;;2a Draba fladnizensis;13651;actual measurement;germinule;.22;;-4;;BIOLFLOR database;.22;.226;.212;;;Air dried weight;;3 Draba incana;14189;other;unknown;.124;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Draba muralis;14065;other;germinule;.0364;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Draba muralis;14065;actual measurement;germinule;.059;;-4;;BIOLFLOR database;.059;.061;.056;;;Air dried weight;;3 Draba muralis;14065;actual measurement;one-seeded generative dispersule;.049;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.049;;;228;;Air dried weight;;2a Draba muralis;14065;actual measurement;generative dispersule;.0658;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0658;.072;.063;100;;Air dried weight;;2 Draba muralis;14065;actual measurement;germinule;.049;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.049;;;228;;Air dried weight;;3 Draba muralis;14065;actual measurement;generative dispersule;.077333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.077333333;.08;.074666667;75;;Air dried weight;;2 Draba muralis;14065;actual measurement;one-seeded generative dispersule;.059;;-4;;BIOLFLOR database;.059;.061;.056;;;Air dried weight;;2a Draba muralis;14065;other;one-seeded generative dispersule;.0364;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Draba sauteri;13658;actual measurement;germinule;.224;;-4;;BIOLFLOR database;.224;.235;.212;;;Air dried weight;;3 Draba sauteri;13658;actual measurement;one-seeded generative dispersule;.224;;-4;;BIOLFLOR database;.224;.235;.212;;;Air dried weight;;2a Draba tomentosa;13232;actual measurement;one-seeded generative dispersule;.15;;-4;;BIOLFLOR database;.15;.154;.147;;;Air dried weight;;2a Draba tomentosa;13232;actual measurement;germinule;.15;;-4;;BIOLFLOR database;.15;.154;.147;;;Air dried weight;;3 Dracocephalum ruyschiana;23487;actual measurement;germinule;2.482;;-4;;BIOLFLOR database;2.482;;;;;Air dried weight;;3 Dracocephalum ruyschiana;23487;actual measurement;one-seeded generative dispersule;2.482;;-4;;BIOLFLOR database;2.482;;;;;Air dried weight;;2a Drosera anglica;18994;actual measurement;germinule;.023;;-4;;BIOLFLOR database;.023;.026;.019;;;Air dried weight;;3 Drosera anglica;18994;actual measurement;generative dispersule;.036;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.036;.038;.034;100;;Air dried weight;;2 Drosera anglica;18994;other;one-seeded generative dispersule;.0328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Drosera anglica;18994;other;one-seeded generative dispersule;.0232;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0232;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Drosera anglica;18994;actual measurement;one-seeded generative dispersule;.023;;-4;;BIOLFLOR database;.023;.026;.019;;;Air dried weight;;2a Drosera anglica;18994;other;germinule;.0328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Drosera anglica;18994;other;germinule;.0232;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0232;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Drosera intermedia;18996;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Drosera intermedia;18996;other;germinule;.0324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Drosera intermedia;18996;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Drosera intermedia;18996;other;one-seeded generative dispersule;.0324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Drosera intermedia;18996;actual measurement;germinule;.024;;-4;;BIOLFLOR database;.024;.028;.013;;;Air dried weight;;3 Drosera intermedia;18996;actual measurement;one-seeded generative dispersule;.024;;-4;;BIOLFLOR database;.024;.028;.013;;;Air dried weight;;2a Drosera rotundifolia;18999;actual measurement;germinule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;3 Drosera rotundifolia;18999;actual measurement;germinule;.018;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.018;;;50;;Air dried weight;;3 Drosera rotundifolia;18999;actual measurement;germinule;.014;;-4;;BIOLFLOR database;.014;.019;.01;;;Air dried weight;;3 Drosera rotundifolia;18999;actual measurement;generative dispersule;.0105;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0105;.012;.009;100;;Air dried weight;;2 Drosera rotundifolia;18999;other;one-seeded generative dispersule;.0148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Drosera rotundifolia;18999;other;one-seeded generative dispersule;.0324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Drosera rotundifolia;18999;actual measurement;one-seeded generative dispersule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;2a Drosera rotundifolia;18999;actual measurement;one-seeded generative dispersule;.014;;-4;;BIOLFLOR database;.014;.019;.01;;;Air dried weight;;2a Drosera rotundifolia;18999;actual measurement;one-seeded generative dispersule;.018;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.018;;;50;;Air dried weight;;2a Drosera rotundifolia;18999;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Drosera rotundifolia;18999;other;germinule;.0148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Drosera rotundifolia;18999;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Drosera rotundifolia;18999;other;germinule;.0324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dryas octopetala;31232;other;germinule;.6288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Dryas octopetala;31232;actual measurement;one-seeded generative dispersule;.4;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.4;;;100;;Air dried weight;;2a Dryas octopetala;31232;other;one-seeded generative dispersule;.6288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Dryas octopetala;31232;actual measurement;germinule;1.189;;-4;;BIOLFLOR database;1.189;;;;;Air dried weight;;3 Dryas octopetala;31232;actual measurement;germinule;.4;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.4;;;100;;Air dried weight;;3 Dryas octopetala;31232;actual measurement;one-seeded generative dispersule;1.189;;-4;;BIOLFLOR database;1.189;;;;;Air dried weight;;2a Duchesnea indica;30010;actual measurement;germinule;.411;;-4;;BIOLFLOR database;.411;.413;.409;;;Air dried weight;;3 Duchesnea indica;30010;actual measurement (following LEDA data standards);germinule;.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Duchesnea indica;30010;actual measurement (following LEDA data standards);germinule;.28;1;-2;.28;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;.28;.28;;preaggregated value obtained from single record;Air dried weight;;3 Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.67;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.67;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.52;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.54;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.55;10;-2;2.55;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.51;2.7;2.21;;preaggregated value obtained from single record;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.46;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.21;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.56;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.7;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.7;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.67;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.67;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.24;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.57;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Echinochloa crus-galli;42222;actual measurement;germinule;1.331;;-4;;BIOLFLOR database;1.331;1.628;1.191;;;Air dried weight;;3 Echinochloa crus-galli;42222;actual measurement;one-seeded generative dispersule;1.331;;-4;;BIOLFLOR database;1.331;1.628;1.191;;;Air dried weight;;2a Echinocystis lobata;18465;actual measurement;germinule;237.452;;-4;;BIOLFLOR database;237.452;;;;;Unknown;;3 Echinops exaltatus;3278;actual measurement;germinule;41.141;;-4;;BIOLFLOR database;41.141;;;;;Air dried weight;;3 Echinops exaltatus;3278;actual measurement;one-seeded generative dispersule;41.141;;-4;;BIOLFLOR database;41.141;;;;;Air dried weight;;2a Echinops sphaerocephalus;2586;actual measurement;one-seeded generative dispersule;22.6;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22.6;;;20;;Air dried weight;;2a Echinops sphaerocephalus;2586;actual measurement;generative dispersule;13.103;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;13.103;13.103;13.103;100;;Air dried weight;;2 Echinops sphaerocephalus;2586;actual measurement;one-seeded generative dispersule;41.865;;-4;;BIOLFLOR database;41.865;42.187;41.357;;;Air dried weight;;2a Echinops sphaerocephalus;2586;actual measurement;germinule;41.865;;-4;;BIOLFLOR database;41.865;42.187;41.357;;;Air dried weight;;3 Echinops sphaerocephalus;2586;actual measurement;germinule;22.6;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22.6;;;20;;Air dried weight;;3 Echium plantagineum;12090;actual measurement;germinule;2.38804;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.38804;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Echium plantagineum;12090;other;germinule;3.5476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.5476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Echium vulgare;12105;actual measurement (following LEDA data standards);germinule;2.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.37;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Echium vulgare;12105;other;germinule;2.6572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Echium vulgare;12105;actual measurement (following LEDA data standards);germinule;2.37;1;-2;2.37;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.37;2.37;2.37;;preaggregated value obtained from single record;Air dried weight;;3 Echium vulgare;12105;actual measurement;germinule;3.162;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.162;;;50;;Air dried weight;;3 Echium vulgare;12105;actual measurement;germinule;3.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.028;;;50;;Air dried weight;;3 Echium vulgare;12105;actual measurement;germinule;2.91;;-4;;BIOLFLOR database;2.91;3.4;2.21;;;Air dried weight;;3 Echium vulgare;12105;actual measurement;germinule;2.76;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.76;;;50;;Air dried weight;;3 Echium vulgare;12105;actual measurement;generative dispersule;5.479;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.479;5.479;5.479;1;;Air dried weight;;2 Echium vulgare;12105;actual measurement;generative dispersule;2.823;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.823;2.823;2.823;1;;Air dried weight;;2 Echium vulgare;12105;other;one-seeded generative dispersule;2.6572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Echium vulgare;12105;actual measurement;multi-seeded generative dispersule;2.46;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.46;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Echium vulgare;12105;actual measurement;one-seeded generative dispersule;3.162;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.162;;;50;;Air dried weight;;2a Echium vulgare;12105;actual measurement;one-seeded generative dispersule;3.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.028;;;50;;Air dried weight;;2a Echium vulgare;12105;actual measurement;one-seeded generative dispersule;2.91;;-4;;BIOLFLOR database;2.91;3.4;2.21;;;Air dried weight;;2a Echium vulgare;12105;actual measurement;one-seeded generative dispersule;2.8128;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.8128;2.918666667;2.696666667;150;;Air dried weight;;2a Echium vulgare;12105;actual measurement;one-seeded generative dispersule;2.76;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.76;;;50;;Air dried weight;;2a Elaeagnus angustifolia;19005;actual measurement;germinule;149.511;;-4;;BIOLFLOR database;149.511;;;;;Air dried weight;;3 Elatine hexandra;19033;other;germinule;.0186;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0186;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;3 Elatine hexandra;19033;actual measurement;generative dispersule;.023;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.023;.025;.021;100;;Air dried weight;;2 Elatine hydropiper;19010;actual measurement;generative dispersule;.01;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.01;.01;.01;1;;Air dried weight;;2 Eleocharis acicularis;37636;actual measurement;germinule;.075;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.075;.076;.074;100;;Air dried weight;;3 Eleocharis austriaca;37639;actual measurement;germinule;.499;;-4;;BIOLFLOR database;.499;;;;;Air dried weight;;3 Eleocharis austriaca;37639;actual measurement;one-seeded generative dispersule;.499;;-4;;BIOLFLOR database;.499;;;;;Air dried weight;;2a Eleocharis austriaca;37639;other;one-seeded generative dispersule;.7164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Eleocharis austriaca;37639;other;one-seeded generative dispersule;.706;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.706;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Eleocharis austriaca;37639;other;one-seeded generative dispersule;.7004;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7004;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Eleocharis austriaca;37639;other;germinule;.706;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.706;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eleocharis austriaca;37639;other;germinule;.7164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eleocharis austriaca;37639;other;germinule;.7004;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7004;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eleocharis mamillata;37523;actual measurement;one-seeded generative dispersule;.961;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.961;.972;.95;50;;Air dried weight;;2a Eleocharis multicaulis;37116;actual measurement;generative dispersule;.216;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.216;.225;.207;100;;Air dried weight;;2 Eleocharis multicaulis;37116;actual measurement;one-seeded generative dispersule;1.12;;-4;;BIOLFLOR database;1.12;;;;;Air dried weight;;2a Eleocharis multicaulis;37116;actual measurement;germinule;1.12;;-4;;BIOLFLOR database;1.12;;;;;Air dried weight;;3 Eleocharis multicaulis;37116;actual measurement (following LEDA data standards);germinule;.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.25;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Eleocharis multicaulis;37116;actual measurement (following LEDA data standards);germinule;.25;1;-2;.25;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.25;.25;.25;;preaggregated value obtained from single record;Air dried weight;;3 Eleocharis ovata;37118;actual measurement;germinule;.132;;-4;;BIOLFLOR database;.132;;;;;Air dried weight;;3 Eleocharis ovata;37118;actual measurement;germinule;.107;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.107;.114;.1;100;;Air dried weight;;3 Eleocharis ovata;37118;actual measurement;one-seeded generative dispersule;.132;;-4;;BIOLFLOR database;.132;;;;;Air dried weight;;2a Eleocharis palustris;37120;actual measurement;one-seeded generative dispersule;.976;;-4;;BIOLFLOR database;.976;1.075;.925;;;Air dried weight;;2a Eleocharis palustris;37120;other;one-seeded generative dispersule;1.0956;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Eleocharis palustris;37120;actual measurement;germinule;.976;;-4;;BIOLFLOR database;.976;1.075;.925;;;Air dried weight;;3 Eleocharis palustris;37120;actual measurement;one-seeded generative dispersule;.964;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.964;;;50;;Air dried weight;;2a Eleocharis palustris;37120;actual measurement;germinule;.964;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.964;;;50;;Air dried weight;;3 Eleocharis palustris;37120;other;germinule;1.0956;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);germinule;.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.93;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Eleocharis quinqueflora;37539;other;germinule;1.1432;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);germinule;.92;1;-2;.92;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.92;.92;.92;;preaggregated value obtained from single record;Air dried weight;;3 Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);germinule;.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.92;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);germinule;.93;1;-2;.93;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.93;.93;.93;;preaggregated value obtained from single record;Air dried weight;;3 Eleocharis quinqueflora;37539;actual measurement;one-seeded generative dispersule;.954;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.954;.977;.931;100;;Air dried weight;;2a Eleocharis quinqueflora;37539;actual measurement;one-seeded generative dispersule;.954;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.954;;;50;;Air dried weight;;2a Eleocharis uniglumis;37127;actual measurement;germinule;1.807;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.807;1.864;1.75;100;;Air dried weight;;3 Eleocharis uniglumis;37127;other;germinule;1.176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eleusine indica;40688;actual measurement;germinule;.432;;-4;;BIOLFLOR database;.432;.45;.419;;;Air dried weight;;3 Eleusine indica;40688;actual measurement;one-seeded generative dispersule;.432;;-4;;BIOLFLOR database;.432;.45;.419;;;Air dried weight;;2a Eleusine indica;40688;actual measurement;one-seeded generative dispersule;.504;;-4;;BIOLFLOR database;.504;;;;;Air dried weight;;2a Elsholtzia ciliata;25121;actual measurement;one-seeded generative dispersule;.311;;-4;;BIOLFLOR database;.311;;;;;Air dried weight;;2a Elsholtzia ciliata;25121;actual measurement;germinule;.311;;-4;;BIOLFLOR database;.311;;;;;Air dried weight;;3 Elymus caninus;42231;actual measurement;germinule;4.04;;-4;;BIOLFLOR database;4.04;;;;;Air dried weight;;3 Elymus caninus;42231;actual measurement;germinule;4.134;;-4;;BIOLFLOR database;4.134;4.4;3.867;;;Air dried weight;;3 Elymus caninus;42231;actual measurement;germinule;4.04;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.04;;;100;;Air dried weight;;3 Elymus caninus;42231;actual measurement;one-seeded generative dispersule;4.134;;-4;;BIOLFLOR database;4.134;4.4;3.867;;;Air dried weight;;2a Elymus caninus;42231;actual measurement;one-seeded generative dispersule;2.1205;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.1205;2.259;1.982;100;;Air dried weight;;2a Elymus caninus;42231;actual measurement;one-seeded generative dispersule;6.745;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.745;9.309;5.973333333;150;;Air dried weight;;2a Elymus caninus;42231;actual measurement;germinule;5.454;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.454;;;50;;Air dried weight;;3 Elymus caninus;42231;actual measurement;one-seeded generative dispersule;5.454;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.454;;;50;;Air dried weight;;2a Elymus caninus;42231;actual measurement;one-seeded generative dispersule;4.04;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.04;;;100;;Air dried weight;;2a Elymus farctus;40994;actual measurement;one-seeded generative dispersule;9.305;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;9.305;10.20333333;8.406666667;30;;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);germinule;9.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.61;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.78;10;-2;14.78;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.71;15.58;13.41;;preaggregated value obtained from single record;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.15;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.74;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.15;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;13.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.41;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.36;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.24;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.81;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.81;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.61;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.58;;;10;used balance: Mettler H51, disp. unit incl. lemma and palea;Air dried weight;;2a Elymus farctus;40994;actual measurement (following LEDA data standards);germinule;8.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.78;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Elymus farctus;40994;actual measurement (following LEDA data standards);germinule;9.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.03;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Elymus farctus;40994;actual measurement (following LEDA data standards);germinule;10.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.99;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Elymus farctus;40994;actual measurement (following LEDA data standards);germinule;9.61;5;-2;9.61;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.61;10.99;8.78;;preaggregated value obtained from single record;Air dried weight;;3 Elymus farctus;40994;actual measurement (following LEDA data standards);germinule;9.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.63;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Elymus pungens;40717;other;unknown;4.8364;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.8364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Elymus pycnanthus;41771;actual measurement (following LEDA data standards);germinule;3.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.86;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Elymus pycnanthus;41771;actual measurement (following LEDA data standards);germinule;3.86;1;-2;3.86;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.86;3.86;3.86;;preaggregated value obtained from single record;Air dried weight;;3 Elymus repens;40238;actual measurement;one-seeded generative dispersule;3.333;;-4;;BIOLFLOR database;3.333;4;2.239;;;Air dried weight;;2a Elymus repens;40238;actual measurement;germinule;1.995;;-4;;BIOLFLOR database;1.995;2.02;1.97;;;Air dried weight;;3 Elymus repens;40238;actual measurement;germinule;2.017;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.017;;;100;;Air dried weight;;3 Elymus repens;40238;actual measurement;germinule;3.333;;-4;;BIOLFLOR database;3.333;4;2.239;;;Air dried weight;;3 Elymus repens;40238;actual measurement;germinule;1.646;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.646;;;50;;Air dried weight;;3 Elymus repens;40238;actual measurement;one-seeded generative dispersule;2.017;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.017;;;100;;Air dried weight;;2a Elymus repens;40238;actual measurement;one-seeded generative dispersule;1.646;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.646;;;50;;Air dried weight;;2a Elymus repens;40238;actual measurement;generative dispersule;3.015;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.015;3.25;2.78;1;;Air dried weight;;2 Elymus repens subsp. arenosus;41015;actual measurement;generative dispersule;3.38;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.38;4.6;3;1;;Air dried weight;;2 Elymus repens subsp. arenosus;41015;actual measurement;germinule;2.1;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.1;2.3;1.9;1;;Air dried weight;;3 Empetrum nigrum;19449;other;germinule;.9412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Empetrum nigrum;19449;other;germinule;1.0276;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0276;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Empetrum nigrum;19449;actual measurement;one-seeded generative dispersule;.904;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.904;;;100;;Air dried weight;;2a Empetrum nigrum;19449;actual measurement;one-seeded generative dispersule;.753;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.753;;;88;;Air dried weight;;2a Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.13;10;-2;1.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.15;1.26;1.06;;preaggregated value obtained from single record;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;.6;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.6;;;12;Weight without appendages. No. of seeds per individual: 10-14;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.04;;;12;Weight without appendages. No. of seeds per individual: 10-14;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;.96;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.96;;;8;Weight without appendages. No. of seeds per individual: 6-10;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.47;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.47;;;8;Weight without appendages. No. of seeds per individual: 6-10;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.04;;;9;Weight without appendages. No. of seeds per individual: 8-10;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1;;;9;Weight without appendages. No. of seeds per individual: 8-10;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;.83;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.83;;;9;Weight without appendages. No. of seeds per individual: 8-10;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;.79;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.79;;;9;Weight without appendages. No. of seeds per individual: 8-10;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;.82;2;-2;.82;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.82;1.04;.6;;Preaggregated data obtained from single record. Weight without appendages. No. of seeds per individual: 10-14;;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.22;2;-2;1.22;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.22;1.47;.96;;Preaggregated data obtained from single record. Weight without appendages. No. of seeds per individual: 6-10;;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;.92;4;-2;.92;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.92;1.04;.79;;Preaggregated data obtained from single record. Weight without appendages. No. of seeds per individual: 8-10;;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.19;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.06;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.11;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.26;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.12;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum;19449;actual measurement (following LEDA data standards);germinule;1.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.15;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Empetrum nigrum s. nigrum;19450;actual measurement;multi-seeded generative dispersule;137;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);137;;;1;n an replicates unknown;Fresh weight;;2b Empetrum nigrum s. nigrum;19450;actual measurement;germinule;.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.8;;;1;n an replicates unknown;Air dried weight;;3 Epilobium adenocaulon;26066;actual measurement;germinule;.084;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.084;;;50;;Air dried weight;;3 Epilobium alpestre;26069;actual measurement;germinule;.219;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.219;.224;.214;100;;Air dried weight;;3 Epilobium alsinifolium;26071;actual measurement;germinule;.071326413;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.071326413;;;867;;Air dried weight;;3 Epilobium alsinifolium;26071;other;germinule;.1136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);germinule;.05;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;;;30;No. of seeds per individual: 30;Air dried weight;;3 Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;30;No. of seeds per individual: 30;Air dried weight;;3 Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;30;No. of seeds per individual: 30;Air dried weight;;3 Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;;;30;No. of seeds per individual: 30;Air dried weight;;3 Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;30;Weight including appendages. No. of seeds per individual: 30;Air dried weight;;2a Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;30;Weight including appendages. No. of seeds per individual: 30;Air dried weight;;2a Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;30;Weight including appendages. No. of seeds per individual: 30;Air dried weight;;2a Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;30;Weight including appendages. No. of seeds per individual: 30;Air dried weight;;2a Epilobium anagallidifolium;26073;other;germinule;.066;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.066;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.07;4;-2;.07;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;.07;.06;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 30;;;2a Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;30;Weight including appendages. No. of seeds per individual: 30;Air dried weight;;2a Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;30;Weight including appendages. No. of seeds per individual: 30;Air dried weight;;2a Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;30;Weight including appendages. No. of seeds per individual: 30;Air dried weight;;2a Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);one-seeded generative dispersule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;30;Weight including appendages. No. of seeds per individual: 30;Air dried weight;;2a Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);germinule;.06;4;-2;.06;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;.06;.04;;Preaggregated data obtained from single record. No. of seeds per individual: 30;;;3 Epilobium anagallidifolium;26073;actual measurement;generative dispersule;.0645;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0645;.068;.061;100;with pappus;Air dried weight;;2 Epilobium angustifolium;26075;unknown;generative dispersule;.05;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.05;;;0;;Air dried weight;Grime, J. P.(1988): Comparative Plant Ecology: A functional approach to common British species;2 Epilobium angustifolium;26075;actual measurement;one-seeded generative dispersule;.053;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.053;;;100;;Air dried weight;;2a Epilobium angustifolium;26075;actual measurement;one-seeded generative dispersule;.041;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.041;;;100;;Air dried weight;;2a Epilobium angustifolium;26075;actual measurement;one-seeded generative dispersule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;2a Epilobium angustifolium;26075;actual measurement;generative dispersule;.014;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.014;.016;.012;50;with pappus;Air dried weight;;2 Epilobium angustifolium;26075;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;30;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Epilobium angustifolium;26075;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;2a Epilobium angustifolium;26075;other;germinule;.0564;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0564;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium ciliatum;26518;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Epilobium ciliatum;26518;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Epilobium ciliatum;26518;actual measurement (following LEDA data standards);germinule;.06;1;-2;.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;.06;.06;;preaggregated value obtained from single record;Air dried weight;;3 Epilobium ciliatum;26518;actual measurement (following LEDA data standards);germinule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;3 Epilobium ciliatum;26518;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-2;.11;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;.11;.11;;preaggregated value obtained from single record;Air dried weight;;2a Epilobium ciliatum;26518;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;;;100;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Epilobium ciliatum;26518;actual measurement;germinule;.073;;-4;;BIOLFLOR database;.073;.087;.06;;;Air dried weight;;3 Epilobium ciliatum;26518;actual measurement;germinule;.056;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.056;;;100;;Air dried weight;;3 Epilobium ciliatum;26518;actual measurement;one-seeded generative dispersule;.073;;-4;;BIOLFLOR database;.073;.087;.06;;;Air dried weight;;2a Epilobium ciliatum;26518;actual measurement;one-seeded generative dispersule;.056;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.056;;;100;;Air dried weight;;2a Epilobium ciliatum;26518;actual measurement;one-seeded generative dispersule;.057;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.057;.061;.053;100;;Air dried weight;;2a Epilobium fleischeri;26533;actual measurement;unknown;.17;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.17;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Epilobium hirsutum;26536;actual measurement;germinule;.145;;-4;;BIOLFLOR database;.145;.152;.138;;;Air dried weight;;3 Epilobium hirsutum;26536;actual measurement;germinule;.138;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.138;;;50;;Air dried weight;;3 Epilobium hirsutum;26536;actual measurement;one-seeded generative dispersule;.138;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.138;;;50;;Air dried weight;;2a Epilobium hirsutum;26536;actual measurement;one-seeded generative dispersule;.145;;-4;;BIOLFLOR database;.145;.152;.138;;;Air dried weight;;2a Epilobium hirsutum;26536;actual measurement;generative dispersule;.104;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.104;.104;.104;100;;Air dried weight;;2 Epilobium hirsutum;26536;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Epilobium hirsutum;26536;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;;;21;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Epilobium hirsutum;26536;actual measurement (following LEDA data standards);germinule;.12;1;-2;.12;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;.12;.12;;preaggregated value obtained from single record;Air dried weight;;3 Epilobium hirsutum;26536;actual measurement (following LEDA data standards);germinule;.12;1;-2;.12;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;.12;.12;;preaggregated value obtained from single record;Air dried weight;;3 Epilobium lanceolatum;26540;other;germinule;.1124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium lanceolatum;26540;actual measurement;germinule;.0745;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0745;;;100;;Air dried weight;;3 Epilobium montanum;26496;actual measurement;one-seeded generative dispersule;.133;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.133;;;100;;Air dried weight;;2a Epilobium montanum;26496;other;germinule;.1204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium nutans;26501;actual measurement;one-seeded generative dispersule;.075;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.075;.077;.073;100;;Air dried weight;;2a Epilobium obscurum;26502;actual measurement;one-seeded generative dispersule;.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.05;;;50;;Air dried weight;;2a Epilobium obscurum;26502;other;germinule;.0856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium palustre;26504;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;100;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Epilobium palustre;26504;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-2;.1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;.1;.1;;preaggregated value obtained from single record;Air dried weight;;2a Epilobium palustre;26504;other;germinule;.0472;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0472;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium palustre;26504;actual measurement;germinule;.1185;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1185;.125;.112;100;;Air dried weight;;3 Epilobium palustre;26504;actual measurement;one-seeded generative dispersule;.08;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.08;.081;.079;100;;Air dried weight;;2a Epilobium palustre;26504;actual measurement;one-seeded generative dispersule;.043;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.043;;;100;;Air dried weight;;2a Epilobium parviflorum;26505;actual measurement;germinule;.050033333;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.050033333;.06;.038666667;100;;Air dried weight;;3 Epilobium parviflorum;26505;actual measurement;one-seeded generative dispersule;.113;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.113;;;50;;Air dried weight;;2a Epilobium parviflorum;26505;other;germinule;.0752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium roseum;26508;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;50;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Epilobium roseum;26508;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.09;;preaggregated value obtained from single record;Air dried weight;;2a Epilobium roseum;26508;other;germinule;.0932;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Epilobium roseum;26508;actual measurement;germinule;.08;;-4;;BIOLFLOR database;.08;;;;;Air dried weight;;3 Epilobium roseum;26508;actual measurement;germinule;.102;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.102;;;50;;Air dried weight;;3 Epilobium roseum;26508;actual measurement;germinule;.089;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.089;;;100;;Air dried weight;;3 Epilobium roseum;26508;actual measurement;one-seeded generative dispersule;.08;;-4;;BIOLFLOR database;.08;;;;;Air dried weight;;2a Epilobium roseum;26508;actual measurement;one-seeded generative dispersule;.102;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.102;;;50;;Air dried weight;;2a Epilobium roseum;26508;actual measurement;one-seeded generative dispersule;.089;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.089;;;100;;Air dried weight;;2a Epilobium roseum;26508;other;one-seeded generative dispersule;.0932;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Epilobium tetragonum;26469;actual measurement;one-seeded generative dispersule;.091;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.091;.11;.07;100;;Air dried weight;;2a Epilobium tetragonum;26469;actual measurement;generative dispersule;.11;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.11;;;1;n an replicates unknown;Air dried weight;;2 Epilobium tetragonum;26469;other;germinule;.0572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0572;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Epilobium tetragonum;26469;other;germinule;.12264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12264;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Epipactis atrorubens;39603;actual measurement;germinule;.01;;-4;;BIOLFLOR database;.01;;;;;Air dried weight;;3 Epipactis atrorubens;39603;actual measurement;one-seeded generative dispersule;.01;;-4;;BIOLFLOR database;.01;;;;;Air dried weight;;2a Epipactis helleborine;39609;actual measurement;one-seeded generative dispersule;.004;;-4;;BIOLFLOR database;.004;;;;;Air dried weight;;2a Epipactis helleborine;39609;actual measurement;germinule;.004;;-4;;BIOLFLOR database;.004;;;;;Air dried weight;;3 Eragrostis minor;41786;actual measurement;germinule;.092;;-4;;BIOLFLOR database;.092;.093;.092;;;Air dried weight;;3 Eragrostis minor;41786;actual measurement;one-seeded generative dispersule;.092;;-4;;BIOLFLOR database;.092;.093;.092;;;Air dried weight;;2a Eragrostis pilosa;40736;actual measurement;one-seeded generative dispersule;.071;;-4;;BIOLFLOR database;.071;;;;;Air dried weight;;2a Eragrostis pilosa;40736;actual measurement;germinule;.071;;-4;;BIOLFLOR database;.071;;;;;Air dried weight;;3 Eragrostis pilosa;40736;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Eragrostis pilosa;40736;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.07;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Eragrostis pilosa;40736;actual measurement (following LEDA data standards);germinule;.06;3;-2;.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;.07;.06;;preaggregated value obtained from single record;Air dried weight;;3 Eragrostis pilosa;40736;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Eranthis hyemalis;27181;actual measurement;germinule;5.3884;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.3884;;;25;;Air dried weight;;3 Erica arborea;19540;actual measurement;germinule;.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Erica ciliaris;19544;actual measurement;one-seeded generative dispersule;.0154;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0154;;;100;;Air dried weight;;2a Erica ciliaris;19544;other;germinule;.04684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erica cinerea;19545;other;germinule;.0872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erica cinerea;19545;other;germinule;.0768;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erica cinerea;19545;actual measurement;germinule;.04;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.04;;;50;;Air dried weight;;3 Erica cinerea;19545;actual measurement;one-seeded generative dispersule;.047;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.047;;;100;;Air dried weight;;2a Erica cinerea;19545;actual measurement;one-seeded generative dispersule;.04;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.04;;;50;;Air dried weight;;2a Erica cinerea;19545;actual measurement;germinule;.04;;-4;;BIOLFLOR database;.04;;;;;Air dried weight;;3 Erica cinerea;19545;actual measurement;one-seeded generative dispersule;.066;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.066;;;50;;Air dried weight;;2a Erica cinerea;19545;actual measurement;germinule;.047;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.047;;;100;;Air dried weight;;3 Erica cinerea;19545;actual measurement;germinule;.066;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.066;;;50;;Air dried weight;;3 Erica cinerea;19545;actual measurement;one-seeded generative dispersule;.04;;-4;;BIOLFLOR database;.04;;;;;Air dried weight;;2a Erica cinerea;19545;other;one-seeded generative dispersule;.0872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Erica cinerea;19545;other;one-seeded generative dispersule;.0768;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Erica herbacea;19550;actual measurement;one-seeded generative dispersule;.2;;-4;;BIOLFLOR database;.2;.3;.1;;;Air dried weight;;2a Erica herbacea;19550;actual measurement;germinule;.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Erica herbacea;19550;actual measurement;germinule;.2;;-4;;BIOLFLOR database;.2;.3;.1;;;Air dried weight;;3 Erica scoparia;19560;actual measurement;germinule;.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Erica tetralix;19489;actual measurement;one-seeded generative dispersule;.012;;-4;;BIOLFLOR database;.012;.014;.01;;;Air dried weight;;2a Erica tetralix;19489;actual measurement;one-seeded generative dispersule;.01;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.01;.011;.009;100;;Air dried weight;;2a Erica tetralix;19489;actual measurement;germinule;.012;;-4;;BIOLFLOR database;.012;.014;.01;;;Air dried weight;;3 Erica tetralix;19489;actual measurement;germinule;.012;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.012;;;100;;Air dried weight;;3 Erica tetralix;19489;actual measurement;germinule;.017;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.017;;;100;;Air dried weight;;3 Erica tetralix;19489;actual measurement;one-seeded generative dispersule;.012;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.012;;;100;;Air dried weight;;2a Erica tetralix;19489;actual measurement;one-seeded generative dispersule;.017;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.017;;;100;;Air dried weight;;2a Erica tetralix;19489;other;one-seeded generative dispersule;.012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Erica tetralix;19489;actual measurement;generative dispersule;.0148;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0148;.016;.014;100;;Air dried weight;;2 Erica tetralix;19489;other;one-seeded generative dispersule;.0155;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0155;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Erica tetralix;19489;actual measurement;generative dispersule;.012133333;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.012133333;.012666667;.011333333;150;;Air dried weight;;2 Erica tetralix;19489;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Erica tetralix;19489;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Erica tetralix;19489;other;germinule;.0155;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0155;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erica tetralix;19489;other;germinule;.012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erica vagans;19491;other;unknown;.048;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Erigeron acer;3429;other;germinule;.1316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erigeron acer;3429;other;one-seeded generative dispersule;.1316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Erigeron acer;3429;actual measurement;generative dispersule;.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.06;;;1;n an replicates unknown;Air dried weight;;2 Erigeron acer;3429;actual measurement;germinule;.121;;-4;;BIOLFLOR database;.121;.166;.087;;;Air dried weight;;3 Erigeron acer;3429;actual measurement;germinule;.108;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.108;;;50;;Air dried weight;;3 Erigeron acer;3429;actual measurement;germinule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;3 Erigeron acer;3429;actual measurement;one-seeded generative dispersule;.07;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.07;;;50;;Air dried weight;;2a Erigeron acer;3429;actual measurement;one-seeded generative dispersule;.108;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.108;;;50;;Air dried weight;;2a Erigeron acer;3429;actual measurement;one-seeded generative dispersule;.184;;-4;;BIOLFLOR database;.184;;;;;Air dried weight;;2a Erigeron acer;3429;actual measurement;one-seeded generative dispersule;.121;;-4;;BIOLFLOR database;.121;.166;.087;;;Air dried weight;;2a Erigeron alpinus;2651;actual measurement;one-seeded generative dispersule;.23;;-4;;BIOLFLOR database;.23;;;;;Air dried weight;;2a Erigeron alpinus;2651;actual measurement;germinule;.23;;-4;;BIOLFLOR database;.23;;;;;Air dried weight;;3 Erigeron atticus;6101;actual measurement;germinule;.238;;-4;;BIOLFLOR database;.238;;;;;Air dried weight;;3 Erigeron atticus;6101;actual measurement;one-seeded generative dispersule;.238;;-4;;BIOLFLOR database;.238;;;;;Air dried weight;;2a Erigeron borealis;4210;other;unknown;.258;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.258;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Erigeron gaudinii;5343;actual measurement;one-seeded generative dispersule;.332;;-4;;BIOLFLOR database;.332;.336;.325;;;Air dried weight;;2a Erigeron gaudinii;5343;actual measurement;germinule;.332;;-4;;BIOLFLOR database;.332;.336;.325;;;Air dried weight;;3 Erigeron karvinskianus;3551;actual measurement;one-seeded generative dispersule;.049818182;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.049818182;.050909091;.047272727;55;;Air dried weight;;2a Erigeron uniflorus;2653;actual measurement;germinule;.18;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.18;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Erigeron uniflorus;2653;actual measurement;germinule;.258;;-4;;BIOLFLOR database;.258;;;;;Air dried weight;;3 Erigeron uniflorus;2653;actual measurement;one-seeded generative dispersule;.258;;-4;;BIOLFLOR database;.258;;;;;Air dried weight;;2a Eriocaulon aquaticum;36863;other;unknown;.1178;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1178;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Eriocaulon aquaticum;36863;other;unknown;.10384;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.10384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);one-seeded generative dispersule;.98;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.98;;;10;Weight;Air dried weight;;2a Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);one-seeded generative dispersule;.65;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.65;;;7;Weight;Air dried weight;;2a Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;2;-2;.39;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;.65;.12;;Preaggregated data obtained from single record. Weight;;;2a Eriophorum angustifolium;37550;other;germinule;.598;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.598;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);one-seeded generative dispersule;.86;4;-2;.86;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.76;.98;.35;;Preaggregated data obtained from single record. Weight;;;2a Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);one-seeded generative dispersule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;7;Weight;Air dried weight;;2a Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);one-seeded generative dispersule;.9;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.9;;;10;Weight;Air dried weight;;2a Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);one-seeded generative dispersule;.82;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.82;;;10;Weight;Air dried weight;;2a Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);one-seeded generative dispersule;.35;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.35;;;10;Weight;Air dried weight;;2a Eriophorum angustifolium;37550;actual measurement;one-seeded generative dispersule;.529;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.529;1.058;0;100;;Air dried weight;;2a Eriophorum angustifolium;37550;actual measurement;one-seeded generative dispersule;.61;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.61;;;50;;Air dried weight;;2a Eriophorum angustifolium;37550;actual measurement;germinule;.545;;-4;;BIOLFLOR database;.545;.65;.44;;;Air dried weight;;3 Eriophorum angustifolium;37550;actual measurement;one-seeded generative dispersule;.444;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.444;;;100;;Air dried weight;;2a Eriophorum gracile;37137;other;unknown;.338;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.338;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Eriophorum gracile;37137;other;unknown;.3204;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Eriophorum gracile;37137;other;unknown;.3396;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Eriophorum gracile;37137;other;unknown;.3128;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3128;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Eriophorum gracile;37137;other;unknown;.3544;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Eriophorum latifolium;37555;other;germinule;.6524;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6524;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Eriophorum latifolium;37555;actual measurement;one-seeded generative dispersule;1.11;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.11;1.146666667;1.073333333;30;;Air dried weight;;2a Eriophorum latifolium;37555;actual measurement;one-seeded generative dispersule;.64;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.64;.654;.626;30;;Air dried weight;;2a Eriophorum latifolium;37555;actual measurement;generative dispersule;1.313333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.313333333;1.376666667;1.25;30;with pappus;Air dried weight;;2 Eriophorum latifolium;37555;actual measurement;germinule;.719;;-4;;BIOLFLOR database;.719;.82;.617;;;Air dried weight;;3 Eriophorum latifolium;37555;actual measurement;one-seeded generative dispersule;.727;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.727;;;70;;Air dried weight;;2a Eriophorum vaginatum;37560;actual measurement;one-seeded generative dispersule;1.024;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.024;;;100;;Air dried weight;;2a Eriophorum vaginatum;37560;actual measurement;one-seeded generative dispersule;.881;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.881;;;50;;Air dried weight;;2a Eriophorum vaginatum;37560;actual measurement;germinule;1.02;;-4;;BIOLFLOR database;1.02;;;;;Air dried weight;;3 Eriophorum vaginatum;37560;actual measurement;germinule;.577;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.577;.597;.557;100;;Air dried weight;;3 Eriophorum vaginatum;37560;actual measurement;generative dispersule;.75;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.75;.755;.745;40;with pappus;Air dried weight;;2 Eriophorum vaginatum;37560;other;germinule;.9456;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9456;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erodium ciconium;22676;actual measurement;germinule;2.292;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.292;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Erodium ciconium;22676;actual measurement;germinule;2.292;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.292;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Erodium cicutarium;22675;actual measurement;germinule;1.445;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.445;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Erodium cicutarium;22675;actual measurement;germinule;1.445;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.445;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Erodium cicutarium;22675;actual measurement;germinule;1.45;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.45;;;30;collected between 1996-1999;Air dried weight;;3 Erodium cicutarium;22675;actual measurement;one-seeded generative dispersule;1.25;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.25;;;10;;Air dried weight;;2a Erodium cicutarium;22675;actual measurement;one-seeded generative dispersule;1.533;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.533;;;50;;Air dried weight;;2a Erodium cicutarium;22675;other;germinule;1.2104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erodium cicutarium;22675;other;germinule;1.5344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erodium lebelii;50011;actual measurement (following LEDA data standards);germinule;.5;1;-2;.5;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.5;.5;.5;;preaggregated value obtained from single record;Air dried weight;;3 Erodium lebelii;50011;actual measurement (following LEDA data standards);germinule;.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.5;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erodium maritimum;22679;other;unknown;.4952;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Erodium moschatum;22680;other;germinule;1.8136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erodium moschatum;22680;actual measurement;germinule;.19736;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.19736;;;100;;Air dried weight;;3 Erophila glabrescens;13237;other;unknown;.044;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Erophila glabrescens;13237;other;unknown;.048;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Erophila verna;14075;other;germinule;.0228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Erophila verna;14075;actual measurement;germinule;.021;;-4;;BIOLFLOR database;.021;.032;.013;;;Air dried weight;;3 Erophila verna;14075;actual measurement;germinule;.031;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.031;;;100;;Air dried weight;;3 Erophila verna;14075;actual measurement;germinule;.032;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.032;;;100;;Air dried weight;;3 Erophila verna;14075;actual measurement;germinule;.025;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.025;;;1;summers of 1995 and 1996;Unknown;;3 Erophila verna;14075;actual measurement;one-seeded generative dispersule;.021;;-4;;BIOLFLOR database;.021;.032;.013;;;Air dried weight;;2a Erophila verna;14075;actual measurement;one-seeded generative dispersule;.032;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.032;;;100;;Air dried weight;;2a Erophila verna;14075;actual measurement;one-seeded generative dispersule;.031;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.031;;;100;;Air dried weight;;2a Erophila verna;14075;actual measurement;one-seeded generative dispersule;.0175;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0175;.018;.017;100;;Air dried weight;;2a Erophila verna;14075;other;one-seeded generative dispersule;.0228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Erucastrum gallicum;13240;actual measurement;one-seeded generative dispersule;.182;;-4;;BIOLFLOR database;.182;.194;.169;;;Air dried weight;;2a Erucastrum gallicum;13240;actual measurement;germinule;.182;;-4;;BIOLFLOR database;.182;.194;.169;;;Air dried weight;;3 Erucastrum nasturtiifolium;12804;actual measurement;one-seeded generative dispersule;.431;;-4;;BIOLFLOR database;.431;.455;.397;;;Air dried weight;;2a Erucastrum nasturtiifolium;12804;actual measurement;germinule;.431;;-4;;BIOLFLOR database;.431;.455;.397;;;Air dried weight;;3 Eryngium campestre;1324;actual measurement;generative dispersule;3.24;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.24;3.8;2.3;1;;Air dried weight;;2 Eryngium campestre;1324;actual measurement;generative dispersule;.72;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.72;;;1;n and replicates unknown;Air dried weight;;2 Eryngium campestre;1324;actual measurement;germinule;.0655;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0655;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Eryngium campestre;1324;actual measurement;germinule;.66;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.66;;;30;collected between 1996-1999;Air dried weight;;3 Eryngium campestre;1324;actual measurement;germinule;.655;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.655;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Eryngium campestre;1324;other;germinule;1.262;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.262;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eryngium campestre;1324;other;germinule;2.9992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.9992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eryngium maritimum;1328;other;germinule;14.4204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.4204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eryngium maritimum;1328;actual measurement;one-seeded generative dispersule;35.01;;-4;;BIOLFLOR database;35.01;;;;;Air dried weight;;2a Eryngium maritimum;1328;actual measurement;germinule;35.01;;-4;;BIOLFLOR database;35.01;;;;;Air dried weight;;3 Eryngium maritimum;1328;other;one-seeded generative dispersule;14.4204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.4204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Erysimum cheiranthoides;14097;actual measurement;one-seeded generative dispersule;.359;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.359;;;100;;Air dried weight;;2a Erysimum cheiranthoides;14097;actual measurement;one-seeded generative dispersule;.242;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.242;;;50;;Air dried weight;;2a Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;1.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.12;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;1.04;10;-2;1.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.02;1.23;.72;;preaggregated value obtained from single record;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;1.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.02;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;.72;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.72;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.99;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.93;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;1.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.1;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;1.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.08;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;1.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.05;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.98;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);germinule;1.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.23;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Erysimum cheiri;12871;actual measurement;one-seeded generative dispersule;1.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.06;;;50;;Air dried weight;;2a Erysimum cheiri;12871;actual measurement;one-seeded generative dispersule;1.41;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.41;;;50;;Air dried weight;;2a Erysimum cheiri;12871;actual measurement;generative dispersule;1.360666667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.360666667;1.421333333;1.309333333;150;;Air dried weight;;2 Erysimum cheiri;12871;actual measurement;one-seeded generative dispersule;2.3347;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.3347;2.406;2.2537;100;;Air dried weight;;2a Erysimum crepidifolium;13679;actual measurement;germinule;.392;;-4;;BIOLFLOR database;.392;.429;.355;;;Air dried weight;;3 Erysimum crepidifolium;13679;actual measurement;one-seeded generative dispersule;.392;;-4;;BIOLFLOR database;.392;.429;.355;;;Air dried weight;;2a Erysimum marschallianum;14107;actual measurement;one-seeded generative dispersule;.21;;-4;;BIOLFLOR database;.21;.221;.203;;;Air dried weight;;2a Erysimum marschallianum;14107;actual measurement;germinule;.21;;-4;;BIOLFLOR database;.21;.221;.203;;;Air dried weight;;3 Erysimum odoratum;13255;actual measurement;generative dispersule;.238;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.238;.33;.19;1;;Air dried weight;;2 Erysimum odoratum;13255;actual measurement;germinule;.324;;-4;;BIOLFLOR database;.324;.331;.314;;;Air dried weight;;3 Erysimum odoratum;13255;actual measurement;one-seeded generative dispersule;.324;;-4;;BIOLFLOR database;.324;.331;.314;;;Air dried weight;;2a Eschscholzia californica;25478;actual measurement;one-seeded generative dispersule;1.745;;-4;;BIOLFLOR database;1.745;;;;;Air dried weight;;2a Eschscholzia californica;25478;actual measurement;germinule;1.745;;-4;;BIOLFLOR database;1.745;;;;;Air dried weight;;3 Euonymus europaeus;18402;actual measurement;generative dispersule;39.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);39.8;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Euonymus europaeus;18402;actual measurement;one-seeded generative dispersule;9.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.42;;;37;;Air dried weight;;2a Euonymus europaeus;18402;actual measurement;generative dispersule;58.54;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;58.54;62.8;52.6;1;;Air dried weight;;2 Euonymus europaeus;18402;other;germinule;100.7968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);100.7968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euonymus latifolius;18405;actual measurement;generative dispersule;25.63;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);25.63;;;1;n an replicates unknown;Air dried weight;;2 Eupatorium cannabinum;3585;actual measurement;germinule;.274;;-4;;BIOLFLOR database;.274;.301;.25;;;Air dried weight;;3 Eupatorium cannabinum;3585;actual measurement;one-seeded generative dispersule;.352;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.352;;;50;;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement;one-seeded generative dispersule;.271;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.271;;;100;;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.27;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);germinule;.39;1;-2;.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;.39;.39;;preaggregated value obtained from single record;Air dried weight;;3 Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;other;germinule;.3132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eupatorium cannabinum;3585;other;germinule;.2396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.36;10;-2;.36;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.35;.38;.29;;preaggregated value obtained from single record;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.33;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.35;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);one-seeded generative dispersule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);germinule;.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Eupatorium cannabinum;3585;actual measurement (following LEDA data standards);germinule;.27;1;-2;.27;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.27;.27;.27;;preaggregated value obtained from single record;Air dried weight;;3 Euphorbia amygdaloides;20294;other;germinule;4.3824;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.3824;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphorbia amygdaloides;20294;other;germinule;3.9356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphorbia amygdaloides;20294;other;germinule;3.8708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphorbia amygdaloides;20294;actual measurement;one-seeded generative dispersule;4.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.15;;;30;;Air dried weight;;2a Euphorbia amygdaloides;20294;other;one-seeded generative dispersule;3.8708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Euphorbia amygdaloides;20294;other;one-seeded generative dispersule;4.3824;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.3824;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Euphorbia amygdaloides;20294;other;one-seeded generative dispersule;3.9356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Euphorbia amygdaloides;20294;actual measurement;germinule;4.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.15;;;30;;Air dried weight;;3 Euphorbia amygdaloides;20294;actual measurement;one-seeded generative dispersule;4.6;;-4;;BIOLFLOR database;4.6;;;;;Air dried weight;;2a Euphorbia amygdaloides;20294;actual measurement;germinule;4.6;;-4;;BIOLFLOR database;4.6;;;;;Air dried weight;;3 Euphorbia chamaesyce;20257;actual measurement;germinule;.152;;-4;;BIOLFLOR database;.152;;;;;Air dried weight;;3 Euphorbia chamaesyce;20257;actual measurement;one-seeded generative dispersule;.152;;-4;;BIOLFLOR database;.152;;;;;Air dried weight;;2a Euphorbia corallioides;20274;actual measurement;germinule;10.54;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];10.54;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Euphorbia corallioides;20274;actual measurement;one-seeded generative dispersule;11.45;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];11.45;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Euphorbia cyparissias;20238;actual measurement;one-seeded generative dispersule;2.506;;-4;;BIOLFLOR database;2.506;2.8;2.03;;;Air dried weight;;2a Euphorbia cyparissias;20238;actual measurement;one-seeded generative dispersule;1.48;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];1.48;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Euphorbia cyparissias;20238;actual measurement;multi-seeded generative dispersule;1.91;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.91;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Euphorbia cyparissias;20238;actual measurement;germinule;2.506;;-4;;BIOLFLOR database;2.506;2.8;2.03;;;Air dried weight;;3 Euphorbia cyparissias;20238;actual measurement;germinule;1.41;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];1.41;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Euphorbia dulcis;20247;actual measurement;germinule;2.121;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.121;;;30;;Air dried weight;;3 Euphorbia esula;20227;actual measurement;one-seeded generative dispersule;3.738;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.738;;;50;;Air dried weight;;2a Euphorbia esula;20227;actual measurement (following LEDA data standards);germinule;3.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.37;;;50;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Euphorbia esula;20227;actual measurement (following LEDA data standards);germinule;3.37;1;-2;3.37;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.37;3.37;3.37;;preaggregated value obtained from single record;Air dried weight;;3 Euphorbia exigua;20206;actual measurement;germinule;.1475;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1475;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Euphorbia exigua;20206;actual measurement;germinule;.148;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.148;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Euphorbia exigua;20206;actual measurement;one-seeded generative dispersule;.476;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.476;;;100;;Air dried weight;;2a Euphorbia exigua;20206;actual measurement;one-seeded generative dispersule;.596;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.596;;;50;;Air dried weight;;2a Euphorbia exigua;20206;actual measurement;germinule;.15;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.15;;;30;collected between 1996-1999;Air dried weight;;3 Euphorbia helioscopia;20189;actual measurement;germinule;2.76;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.76;;;50;;Air dried weight;;3 Euphorbia helioscopia;20189;actual measurement;germinule;2.8;;-4;;BIOLFLOR database;2.8;;;;;Air dried weight;;3 Euphorbia helioscopia;20189;actual measurement;germinule;1.71;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];1.71;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Euphorbia helioscopia;20189;actual measurement;one-seeded generative dispersule;2.76;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.76;;;50;;Air dried weight;;2a Euphorbia helioscopia;20189;actual measurement;one-seeded generative dispersule;2.8;;-4;;BIOLFLOR database;2.8;;;;;Air dried weight;;2a Euphorbia helioscopia;20189;actual measurement;one-seeded generative dispersule;1.81;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];1.81;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Euphorbia lathyris;20168;actual measurement;one-seeded generative dispersule;57.62;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];57.62;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Euphorbia lathyris;20168;actual measurement;germinule;53.17;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];53.17;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Euphorbia lathyris;20168;actual measurement;one-seeded generative dispersule;42.377;;-4;;BIOLFLOR database;42.377;;;;;Air dried weight;;2a Euphorbia lathyris;20168;actual measurement;germinule;42.377;;-4;;BIOLFLOR database;42.377;;;;;Air dried weight;;3 Euphorbia lucida;20175;actual measurement;generative dispersule;4.434444444;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.434444444;4.513333333;4.355555556;45;;Air dried weight;;2 Euphorbia maculata;20176;actual measurement;one-seeded generative dispersule;.068;;-4;;BIOLFLOR database;.068;;;;;Air dried weight;;2a Euphorbia maculata;20176;actual measurement;germinule;.068;;-4;;BIOLFLOR database;.068;;;;;Air dried weight;;3 Euphorbia palustris;20139;actual measurement;one-seeded generative dispersule;9.4425;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;9.4425;9.491;9.394;100;;Air dried weight;;2a Euphorbia peplus;20109;actual measurement;germinule;.56;;-4;;BIOLFLOR database;.56;.563;.553;;;Air dried weight;;3 Euphorbia peplus;20109;actual measurement;one-seeded generative dispersule;.482;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.482;;;100;;Air dried weight;;2a Euphorbia peplus;20109;actual measurement;one-seeded generative dispersule;.456;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.456;;;50;;Air dried weight;;2a Euphorbia peplus;20109;actual measurement;germinule;.42;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];.42;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Euphorbia peplus;20109;actual measurement;generative dispersule;.593;;-4;;BIOLFLOR database;.593;;;;;Air dried weight;;2 Euphorbia peplus;20109;actual measurement;one-seeded generative dispersule;.45;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];.45;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Euphorbia platyphyllos;20091;other;unknown;2.4516;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Euphorbia portlandica;20094;other;unknown;1.704;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Euphorbia serrulata;20055;other;unknown;.7936;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Euphorbia variabilis;20003;actual measurement;multi-seeded generative dispersule;3.66;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.66;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Euphrasia campbelliae;34200;other;unknown;.178;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.178;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Euphrasia campbelliae;34200;other;unknown;.1672;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1672;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Euphrasia foulaensis;34091;other;unknown;.2964;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Euphrasia frigida;34486;actual measurement (following LEDA data standards);germinule;.41;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.41;;;11;No. of seeds per individual: 10-11;Air dried weight;;3 Euphrasia frigida;34486;actual measurement (following LEDA data standards);germinule;.39;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;;;11;No. of seeds per individual: 10-11;Air dried weight;;3 Euphrasia frigida;34486;actual measurement (following LEDA data standards);germinule;.41;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.41;;;10;No. of seeds per individual: 10;Air dried weight;;3 Euphrasia frigida;34486;actual measurement (following LEDA data standards);germinule;.4;2;-2;.4;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;.41;.39;;Preaggregated data obtained from single record. No. of seeds per individual: 10-11;;;3 Euphrasia frigida;34486;other;germinule;.174;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.174;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphrasia frigida;34486;other;germinule;.1816;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1816;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphrasia frigida;34486;other;germinule;.1972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphrasia frigida;34486;actual measurement (following LEDA data standards);germinule;.41;1;-2;.41;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.41;.41;.41;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Euphrasia frigida;34486;actual measurement;generative dispersule;.424468085;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.424468085;.436170213;.412765957;47;;Air dried weight;;2 Euphrasia frigida;34486;actual measurement;generative dispersule;.169;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.169;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Euphrasia nemorosa;33614;actual measurement;germinule;.12;;-4;;BIOLFLOR database;.12;.12;.11;;;Air dried weight;;3 Euphrasia nemorosa;33614;actual measurement;one-seeded generative dispersule;.12;;-4;;BIOLFLOR database;.12;.12;.11;;;Air dried weight;;2a Euphrasia nemorosa;33614;other;one-seeded generative dispersule;.186;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.186;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Euphrasia nemorosa;33614;other;one-seeded generative dispersule;.2256;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2256;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Euphrasia nemorosa;33614;other;one-seeded generative dispersule;.1636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Euphrasia nemorosa;33614;other;one-seeded generative dispersule;.1532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Euphrasia nemorosa;33614;other;germinule;.1532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphrasia nemorosa;33614;other;germinule;.2256;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2256;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphrasia nemorosa;33614;other;germinule;.186;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.186;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphrasia nemorosa;33614;other;germinule;.1636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Euphrasia officinalis;33149;actual measurement;one-seeded generative dispersule;.132;;-4;;BIOLFLOR database;.132;.2;.096;;;Air dried weight;;2a Euphrasia officinalis;33149;actual measurement;one-seeded generative dispersule;.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.13;;;100;;Air dried weight;;2a Euphrasia officinalis;33149;actual measurement;germinule;.132;;-4;;BIOLFLOR database;.132;.2;.096;;;Air dried weight;;3 Euphrasia officinalis;33149;actual measurement;germinule;.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.13;;;100;;Air dried weight;;3 Euphrasia ostenfeldii;34242;other;unknown;.1212;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1212;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Euphrasia stricta;33166;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Euphrasia stricta;33166;actual measurement (following LEDA data standards);germinule;.1;1;-2;.1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;.1;.1;;preaggregated value obtained from single record;Air dried weight;;3 Euphrasia stricta;33166;actual measurement;germinule;.159;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.159;;;1;summers of 1995 and 1996;Unknown;;3 Euphrasia stricta;33166;actual measurement;one-seeded generative dispersule;.126;;-4;;BIOLFLOR database;.126;;;;;Air dried weight;;2a Euphrasia stricta;33166;actual measurement;germinule;.126;;-4;;BIOLFLOR database;.126;;;;;Air dried weight;;3 Euphrasia tetraquetra;34295;other;unknown;.198;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.198;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Euphrasia vigursii;33589;other;unknown;.1356;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fagopyrum tataricum;27706;actual measurement;germinule;18.528;;-4;;BIOLFLOR database;18.528;18.655;18.4;;;Air dried weight;;3 Fagopyrum tataricum;27706;actual measurement;one-seeded generative dispersule;18.528;;-4;;BIOLFLOR database;18.528;18.655;18.4;;;Air dried weight;;2a Fagus sylvatica;22485;actual measurement;one-seeded generative dispersule;140;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;140;;;30;;Air dried weight;;2a Fagus sylvatica;22485;actual measurement;one-seeded generative dispersule;158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;158;;;20;;Air dried weight;;2a Fagus sylvatica;22485;actual measurement;one-seeded generative dispersule;156;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;156;;;17;;Air dried weight;;2a Fagus sylvatica;22485;other;one-seeded generative dispersule;177.4;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);177.4;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fagus sylvatica;22485;actual measurement;germinule;158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;158;;;20;;Air dried weight;;3 Fagus sylvatica;22485;actual measurement;germinule;156;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;156;;;17;;Air dried weight;;3 Fagus sylvatica;22485;actual measurement;germinule;140;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;140;;;30;;Air dried weight;;3 Fagus sylvatica;22485;actual measurement;one-seeded generative dispersule;254.012;;-4;;BIOLFLOR database;254.012;256.1;252.937;;;Air dried weight;;2a Fagus sylvatica;22485;actual measurement;germinule;254.012;;-4;;BIOLFLOR database;254.012;256.1;252.937;;;Air dried weight;;3 Fagus sylvatica;22485;other;germinule;177.4;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);177.4;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Falcaria vulgaris;2255;actual measurement;germinule;.93;;-4;;BIOLFLOR database;.93;1.149;.6;;;Air dried weight;;3 Falcaria vulgaris;2255;actual measurement;one-seeded generative dispersule;.93;;-4;;BIOLFLOR database;.93;1.149;.6;;;Air dried weight;;2a Fallopia convolvulus;44736;actual measurement;one-seeded generative dispersule;1.275;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.275;;;353;;Air dried weight;;2a Fallopia convolvulus;44736;actual measurement;one-seeded generative dispersule;7.095;;-4;;BIOLFLOR database;7.095;7.19;6.676;;;Air dried weight;;2a Fallopia convolvulus;44736;actual measurement;germinule;1.275;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.275;;;353;;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement;germinule;7.095;;-4;;BIOLFLOR database;7.095;7.19;6.676;;;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement;germinule;3.034;;-4;;BIOLFLOR database;3.034;4.72;1.28;;;Air dried weight;;3 Fallopia convolvulus;44736;other;one-seeded generative dispersule;6.708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;4.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.26;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;3.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.37;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;3.43;10;-2;3.43;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.56;5.17;2.25;;preaggregated value obtained from single record;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;4.26;1;-2;4.26;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.26;4.26;4.26;;preaggregated value obtained from single record;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;2.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.58;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;4.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.06;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;4.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;2.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.25;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;3.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.49;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;3.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.36;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;other;germinule;6.708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;5.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.17;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;3.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.17;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia convolvulus;44736;actual measurement (following LEDA data standards);germinule;3.77;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.77;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Fallopia dumetorum;44738;other;unknown;3.3956;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.3956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Festuca airoides;41792;actual measurement;one-seeded generative dispersule;.438;;-4;;BIOLFLOR database;.438;.453;.425;;;Air dried weight;;2a Festuca airoides;41792;actual measurement;germinule;.438;;-4;;BIOLFLOR database;.438;.453;.425;;;Air dried weight;;3 Festuca altissima;41544;actual measurement;germinule;.906;;-4;;BIOLFLOR database;.906;;;;;Air dried weight;;3 Festuca altissima;41544;actual measurement;germinule;.664;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.664;;;50;;Air dried weight;;3 Festuca altissima;41544;actual measurement;one-seeded generative dispersule;.906;;-4;;BIOLFLOR database;.906;;;;;Air dried weight;;2a Festuca altissima;41544;actual measurement;one-seeded generative dispersule;.664;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.664;;;50;;Air dried weight;;2a Festuca altissima;41544;other;one-seeded generative dispersule;.862;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.862;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Festuca altissima;41544;other;one-seeded generative dispersule;.4495575;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4495575;;;1000;1000 seed weight, unknown number of individuals, Most plants had finished flowering. Plants also collected.;Air dried weight;;2a Festuca altissima;41544;other;germinule;.4495575;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4495575;;;1000;1000 seed weight, unknown number of individuals, Most plants had finished flowering. Plants also collected.;Air dried weight;;3 Festuca altissima;41544;other;germinule;.862;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.862;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Festuca arundinacea;40254;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.04;;;100;used balance: Mettler H51, fruit;Air dried weight;;2a Festuca arundinacea;40254;other;germinule;2.5996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Festuca arundinacea;40254;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.04;1;-2;2.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.04;2.04;2.04;;preaggregated value obtained from single record;Air dried weight;;2a Festuca arundinacea;40254;other;germinule;3.0344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Festuca arundinacea;40254;other;one-seeded generative dispersule;3.0344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Festuca arundinacea;40254;other;one-seeded generative dispersule;2.5996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Festuca arundinacea;40254;actual measurement;one-seeded generative dispersule;2.264;;-4;;BIOLFLOR database;2.264;2.6;1.8;;;Air dried weight;;2a Festuca arundinacea;40254;actual measurement;generative dispersule;.927;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.927;.927;.927;1;;Air dried weight;;2 Festuca arundinacea;40254;actual measurement;germinule;1.26;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.26;;;50;;Air dried weight;;3 Festuca arundinacea;40254;actual measurement;germinule;1.26;;-4;;BIOLFLOR database;1.26;;;;;Air dried weight;;3 Festuca arundinacea;40254;actual measurement;one-seeded generative dispersule;1.26;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.26;;;50;;Air dried weight;;2a Festuca arundinacea;40254;actual measurement;germinule;2.264;;-4;;BIOLFLOR database;2.264;2.6;1.8;;;Air dried weight;;3 Festuca brevipila;41305;actual measurement;generative dispersule;.269;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.269;.269;.269;1;;Air dried weight;;2 Festuca filiformis;40113;actual measurement;generative dispersule;.261;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.261;.261;.261;1;;Air dried weight;;2 Festuca filiformis;40113;actual measurement;one-seeded generative dispersule;.2802;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2802;.321;.186;100;;Air dried weight;;2a Festuca filiformis;40113;other;germinule;.3884;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3884;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Festuca gigantea;40761;actual measurement (following LEDA data standards);germinule;2.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.64;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Festuca gigantea;40761;actual measurement (following LEDA data standards);germinule;2.64;1;-2;2.64;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.64;2.64;2.64;;preaggregated value obtained from single record;Air dried weight;;3 Festuca gigantea;40761;actual measurement (following LEDA data standards);germinule;2.55;1;-2;2.55;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.55;2.55;2.55;;preaggregated value obtained from single record;Air dried weight;;3 Festuca gigantea;40761;actual measurement (following LEDA data standards);germinule;2.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.55;;;50;used balance: Mettler H51, fruit;Air dried weight;;3 Festuca gigantea;40761;actual measurement;germinule;3.124;;-4;;BIOLFLOR database;3.124;3.171;3.084;;;Air dried weight;;3 Festuca gigantea;40761;actual measurement;one-seeded generative dispersule;3.116;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.116;;;50;;Air dried weight;;2a Festuca gigantea;40761;actual measurement;germinule;3.116;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.116;;;50;;Air dried weight;;3 Festuca gigantea;40761;actual measurement;one-seeded generative dispersule;3.124;;-4;;BIOLFLOR database;3.124;3.171;3.084;;;Air dried weight;;2a Festuca heterophylla;41814;actual measurement;one-seeded generative dispersule;1.44;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.44;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Festuca heterophylla;41814;actual measurement;germinule;1.284;;-4;;BIOLFLOR database;1.284;1.325;1.262;;;Air dried weight;;3 Festuca heterophylla;41814;actual measurement;one-seeded generative dispersule;1.284;;-4;;BIOLFLOR database;1.284;1.325;1.262;;;Air dried weight;;2a Festuca heterophylla;41814;actual measurement;one-seeded generative dispersule;1.28;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.28;1.28;1.28;1;;Air dried weight;;2a Festuca longifolia;42295;other;unknown;.3812;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Festuca nigrescens;40182;actual measurement;generative dispersule;1.182;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.182;1.182;1.182;1;;Air dried weight;;2 Festuca ovina;40171;unknown;generative dispersule;.35;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.35;;;0;;Air dried weight;Grime, J. P.(1988): Comparative Plant Ecology: A functional approach to common British species;2 Festuca ovina;40171;actual measurement;one-seeded generative dispersule;.692;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.692;;;100;;Air dried weight;;2a Festuca ovina;40171;actual measurement;one-seeded generative dispersule;.48;;-4;;BIOLFLOR database;.48;.7;.4;;;Air dried weight;;2a Festuca ovina;40171;actual measurement;one-seeded generative dispersule;.833371429;7;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.833371429;.918;.734;1;;Air dried weight;;2a Festuca ovina;40171;actual measurement;one-seeded generative dispersule;.38;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.38;;;20;;Air dried weight;;2a Festuca ovina;40171;actual measurement;germinule;.692;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.692;;;100;;Air dried weight;;3 Festuca ovina;40171;actual measurement;germinule;.38;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.38;;;20;;Air dried weight;;3 Festuca ovina;40171;actual measurement;germinule;.132;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.132;;;1;summers of 1995 and 1996;Unknown;;3 Festuca ovina;40171;actual measurement;germinule;.48;;-4;;BIOLFLOR database;.48;.7;.4;;;Air dried weight;;3 Festuca ovina;40171;actual measurement;germinule;.325;;-4;;BIOLFLOR database;.325;.38;.244;;;Air dried weight;;3 Festuca ovina;40171;actual measurement;generative dispersule;.66;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.66;;;1;n an replicates unknown;Air dried weight;;2 Festuca ovina;40171;actual measurement (following LEDA data standards);germinule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;4;No. of seeds per individual: 4;Air dried weight;;3 Festuca ovina;40171;actual measurement (following LEDA data standards);germinule;.13;1;-2;.13;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;.13;.13;;Preaggregated data obtained from single record. No. of seeds per individual: 4;;;3 Festuca pallens;40789;actual measurement;germinule;1.761;;-4;;BIOLFLOR database;1.761;;;;;Air dried weight;;3 Festuca pallens;40789;actual measurement;one-seeded generative dispersule;.5;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.5;.5;.5;1;;Air dried weight;;2a Festuca pallens;40789;actual measurement;one-seeded generative dispersule;1.761;;-4;;BIOLFLOR database;1.761;;;;;Air dried weight;;2a Festuca polesica;42303;actual measurement;one-seeded generative dispersule;.723;;-4;;BIOLFLOR database;.723;;;;;Air dried weight;;2a Festuca polesica;42303;actual measurement;germinule;.723;;-4;;BIOLFLOR database;.723;;;;;Air dried weight;;3 Festuca pratensis;41343;actual measurement;generative dispersule;2.1;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;2.1;;;1;n and replicates unknown;Air dried weight;;2 Festuca pratensis;41343;actual measurement;germinule;1.53;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.53;;;80;;Air dried weight;;3 Festuca pratensis;41343;actual measurement;germinule;1.53;;-4;;BIOLFLOR database;1.53;;;;;Air dried weight;;3 Festuca pratensis;41343;actual measurement;germinule;2.086;;-4;;BIOLFLOR database;2.086;2.305;1.5;;;Air dried weight;;3 Festuca pratensis;41343;actual measurement;one-seeded generative dispersule;1.53;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.53;;;80;;Air dried weight;;2a Festuca pratensis;41343;actual measurement;one-seeded generative dispersule;2.086;;-4;;BIOLFLOR database;2.086;2.305;1.5;;;Air dried weight;;2a Festuca pratensis;41343;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.36;;;50;used balance: Mettler H51, fruit;Air dried weight;;2a Festuca pratensis;41343;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.36;1;-2;2.36;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.36;2.36;2.36;;preaggregated value obtained from single record;Air dried weight;;2a Festuca rubra;40103;other;germinule;1.108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Festuca rubra;40103;actual measurement;one-seeded generative dispersule;.422;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.422;;;100;;Air dried weight;;2a Festuca rubra;40103;actual measurement;one-seeded generative dispersule;.783;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.783;;;100;;Air dried weight;;2a Festuca rubra;40103;actual measurement;one-seeded generative dispersule;1.299;;-4;;BIOLFLOR database;1.299;1.5;1;;;Air dried weight;;2a Festuca rubra;40103;actual measurement;one-seeded generative dispersule;.788;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.788;;;50;;Air dried weight;;2a Festuca rubra;40103;other;one-seeded generative dispersule;1.108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Festuca rubra;40103;actual measurement;germinule;.79;;-4;;BIOLFLOR database;.79;;;;;Air dried weight;;3 Festuca rubra;40103;actual measurement;germinule;1.299;;-4;;BIOLFLOR database;1.299;1.5;1;;;Air dried weight;;3 Festuca rubra;40103;actual measurement;germinule;.79;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.79;;;1;summers of 1995 and 1996;Unknown;;3 Festuca rubra;40103;actual measurement;generative dispersule;1.2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;1.2;;;1;n and replicates unknown;Air dried weight;;2 Festuca rubra;40103;actual measurement;germinule;.788;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.788;;;50;;Air dried weight;;3 Festuca rubra;40103;actual measurement;germinule;.783;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.783;;;100;;Air dried weight;;3 Festuca rubra;40103;actual measurement;generative dispersule;1.1672;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.1672;1.227333333;1.103333333;150;;Air dried weight;;2 Festuca rubra;40103;actual measurement;germinule;.422;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.422;;;100;;Air dried weight;;3 Festuca rupicola;40189;actual measurement;generative dispersule;.58;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.58;;;1;n an replicates unknown;Air dried weight;;2 Festuca rupicola;40189;actual measurement;germinule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;3 Festuca rupicola;40189;actual measurement;one-seeded generative dispersule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;2a Festuca trichophylla;41078;actual measurement;generative dispersule;1.113;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.113;1.14;1.095;1;;Air dried weight;;2 Festuca trichophylla;41078;actual measurement;generative dispersule;1.253333333;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.253333333;1.315333333;1.172666667;150;;Air dried weight;;2 Festuca trichophylla;41078;actual measurement;generative dispersule;1.49;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.49;1.49;1.49;1;;Air dried weight;;2 Festuca valesiaca;40152;actual measurement;one-seeded generative dispersule;.86;;-4;;BIOLFLOR database;.86;;;;;Air dried weight;;2a Festuca valesiaca;40152;actual measurement;germinule;.86;;-4;;BIOLFLOR database;.86;;;;;Air dried weight;;3 Filaginella uliginosa;3719;actual measurement;one-seeded generative dispersule;.005;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.005;.006;.004;100;;Air dried weight;;2a Filaginella uliginosa;3719;actual measurement;one-seeded generative dispersule;.013;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.013;;;50;;Air dried weight;;2a Filaginella uliginosa;3719;actual measurement;one-seeded generative dispersule;.011;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.011;;;100;;Air dried weight;;2a Filago lutescens;2658;actual measurement;germinule;.0164;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0164;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Filago lutescens;2658;actual measurement;germinule;.016;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.016;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Filago lutescens;2658;actual measurement;germinule;.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02;;;30;collected between 1996-1999;Air dried weight;;3 Filago lutescens;2658;other;germinule;.0336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago lutescens;2658;other;germinule;.0516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago lutescens;2658;other;germinule;.0316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago lutescens;2658;other;germinule;.0376;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0376;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago lutescens;2658;other;germinule;.0728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.0416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.0468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.0536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.05;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.05;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.0608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.0412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.0356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.05396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.05396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.0588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.0664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;other;germinule;.048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filago pyramidata;3396;actual measurement;generative dispersule;.05;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.05;;;1;n an replicates unknown;Air dried weight;;2 Filago vulgaris;5888;other;one-seeded generative dispersule;.092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Filago vulgaris;5888;actual measurement;one-seeded generative dispersule;.009;;-4;;BIOLFLOR database;.009;.01;.008;;;Air dried weight;;2a Filago vulgaris;5888;actual measurement;germinule;.009;;-4;;BIOLFLOR database;.009;.01;.008;;;Air dried weight;;3 Filago vulgaris;5888;actual measurement;one-seeded generative dispersule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;2a Filago vulgaris;5888;actual measurement;germinule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;3 Filago vulgaris;5888;other;germinule;.092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Filipendula ulmaria;29764;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Filipendula ulmaria;29764;actual measurement (following LEDA data standards);germinule;.55;1;-2;.55;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;.55;.55;;preaggregated value obtained from single record;Air dried weight;;3 Filipendula ulmaria;29764;actual measurement;germinule;.706;;-4;;BIOLFLOR database;.706;.99;.5;;;Air dried weight;;3 Filipendula ulmaria;29764;actual measurement;germinule;.991;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.991;;;100;;Air dried weight;;3 Filipendula ulmaria;29764;actual measurement;one-seeded generative dispersule;.706;;-4;;BIOLFLOR database;.706;.99;.5;;;Air dried weight;;2a Filipendula ulmaria;29764;actual measurement;one-seeded generative dispersule;.991;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.991;;;100;;Air dried weight;;2a Filipendula ulmaria;29764;actual measurement;one-seeded generative dispersule;.7545;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.7545;.785;.724;100;;Air dried weight;;2a Filipendula vulgaris;29429;actual measurement;one-seeded generative dispersule;.717;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.717;;;50;;Air dried weight;;2a Filipendula vulgaris;29429;actual measurement;one-seeded generative dispersule;.584;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.584;;;50;;Air dried weight;;2a Filipendula vulgaris;29429;other;one-seeded generative dispersule;.9252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Filipendula vulgaris;29429;actual measurement;germinule;.584;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.584;;;50;;Air dried weight;;3 Filipendula vulgaris;29429;actual measurement;one-seeded generative dispersule;.831;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.831;.896;.766;100;;Air dried weight;;2a Filipendula vulgaris;29429;actual measurement;one-seeded generative dispersule;.771;;-4;;BIOLFLOR database;.771;1;.513;;;Air dried weight;;2a Filipendula vulgaris;29429;actual measurement;germinule;.717;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.717;;;50;;Air dried weight;;3 Filipendula vulgaris;29429;actual measurement;germinule;.518;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.518;;;1;summers of 1995 and 1996;Unknown;;3 Filipendula vulgaris;29429;actual measurement;generative dispersule;1.31;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.31;;;1;n an replicates unknown;Air dried weight;;2 Filipendula vulgaris;29429;actual measurement;germinule;.771;;-4;;BIOLFLOR database;.771;1;.513;;;Air dried weight;;3 Filipendula vulgaris;29429;other;germinule;.9252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Foeniculum vulgare;1281;actual measurement;germinule;5.25;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;8.5;2;1;n and replicates unknown;Air dried weight;;3 Foeniculum vulgare;1281;actual measurement;one-seeded generative dispersule;1.99;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.99;;;100;;Air dried weight;;2a Foeniculum vulgare;1281;actual measurement;one-seeded generative dispersule;.874;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.874;;;50;;Air dried weight;;2a Fragaria vesca;30633;actual measurement;one-seeded generative dispersule;.313;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.313;;;100;;Air dried weight;;2a Fragaria vesca;30633;actual measurement;multi-seeded generative dispersule;235;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);235;;;1;n an replicates unknown;Fresh weight;;2b Fragaria vesca;30633;actual measurement;germinule;.346;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.346;;;1;summers of 1995 and 1996;Unknown;;3 Fragaria vesca;30633;actual measurement;germinule;.338;;-4;;BIOLFLOR database;.338;.371;.3;;;Air dried weight;;3 Fragaria vesca;30633;actual measurement;germinule;.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.3;;;1;n an replicates unknown;Air dried weight;;3 Fragaria vesca;30633;actual measurement;germinule;.36;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.36;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Fragaria vesca;30633;other;germinule;.272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fragaria vesca;30633;other;germinule;.30852;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.30852;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fragaria vesca;30633;other;germinule;.3024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fragaria vesca;30633;other;germinule;.3244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fragaria vesca;30633;other;germinule;.3436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3436;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fragaria vesca;30633;other;germinule;.3128;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3128;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fragaria viridis;29358;actual measurement;germinule;.474;;-4;;BIOLFLOR database;.474;.569;.35;;;Air dried weight;;3 Fragaria viridis;29358;actual measurement;germinule;.27625;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.27625;.305;.245;40;;Air dried weight;;3 Frangula alnus;28032;actual measurement;germinule;17.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);17.9;;;1;n an replicates unknown;Air dried weight;;3 Frangula alnus;28032;actual measurement;germinule;16.71;;-4;;BIOLFLOR database;16.71;18;15.8;;;Air dried weight;;3 Frangula alnus;28032;actual measurement;one-seeded generative dispersule;17.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17.05;;;20;;Air dried weight;;2a Frangula alnus;28032;actual measurement;generative dispersule;493.6;;-4;;BIOLFLOR database;493.6;;;;;Fresh weight;;2 Frangula alnus;28032;actual measurement;multi-seeded generative dispersule;301;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);301;;;1;n an replicates unknown;Fresh weight;;2b Frangula alnus;28032;actual measurement;one-seeded generative dispersule;15.14;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15.14;;;47;;Air dried weight;;2a Frangula alnus;28032;other;germinule;20.104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Frankenia laevis;22690;other;unknown;1.217;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.217;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fraxinus excelsior;26381;other;germinule;65.0728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);65.0728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fraxinus excelsior;26381;actual measurement;one-seeded generative dispersule;77.4;;-4;;BIOLFLOR database;77.4;80;74.8;;;Air dried weight;;2a Fraxinus excelsior;26381;other;one-seeded generative dispersule;65.0728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);65.0728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fraxinus excelsior;26381;actual measurement;generative dispersule;56.7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);56.7;;;1;n an replicates unknown;Air dried weight;;2 Fraxinus excelsior;26381;actual measurement;germinule;46.185;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;46.185;;;100;;Air dried weight;;3 Fraxinus excelsior;26381;actual measurement;germinule;38.3;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38.3;;;25;;Air dried weight;;3 Fraxinus excelsior;26381;actual measurement;generative dispersule;73.597875;8;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;73.597875;78.224;69.313;100;;Unknown;;2 Fraxinus excelsior;26381;actual measurement;germinule;77.4;;-4;;BIOLFLOR database;77.4;80;74.8;;;Air dried weight;;3 Fraxinus excelsior;26381;actual measurement;one-seeded generative dispersule;38.3;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38.3;;;25;;Air dried weight;;2a Fraxinus excelsior;26381;actual measurement;one-seeded generative dispersule;46.185;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;46.185;;;100;;Air dried weight;;2a Fraxinus ornus;26396;actual measurement;one-seeded generative dispersule;65.1;;-4;;BIOLFLOR database;65.1;70;60;;;Air dried weight;;2a Fraxinus ornus;26396;actual measurement;germinule;65.1;;-4;;BIOLFLOR database;65.1;70;60;;;Air dried weight;;3 Fraxinus pennsylvanica;26402;actual measurement;generative dispersule;35.7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);35.7;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Fritillaria meleagris;39121;actual measurement;germinule;2.9;;-4;;BIOLFLOR database;2.9;;;;;Air dried weight;;3 Fritillaria meleagris;39121;other;one-seeded generative dispersule;2.0396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0396;;;1000;1000 seed weight, unknown number of individuals, % of population producing seed very low. Seeds both dry & moist. About 100 seeds/pod.;Air dried weight;;2a Fritillaria meleagris;39121;other;one-seeded generative dispersule;2.05908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.05908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement;one-seeded generative dispersule;2.9;;-4;;BIOLFLOR database;2.9;;;;;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement;one-seeded generative dispersule;2.039;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.039;2.083;1.995;100;;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.52;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.66;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.62;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.59;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.55;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;other;germinule;2.05908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.05908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fritillaria meleagris;39121;other;germinule;2.0396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0396;;;1000;1000 seed weight, unknown number of individuals, % of population producing seed very low. Seeds both dry & moist. About 100 seeds/pod.;Air dried weight;;3 Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.58;10;-2;2.58;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.58;2.78;2.39;;preaggregated value obtained from single record;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.53;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.78;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.56;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.39;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fritillaria meleagris;39121;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.61;;;10;used balance: Mettler H51, seed with wings;Air dried weight;;2a Fuchsia magellanica;26476;actual measurement;one-seeded generative dispersule;.185;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.185;;;20;;Air dried weight;;2a Fumana procumbens;18723;actual measurement;one-seeded generative dispersule;3.5;;-4;;BIOLFLOR database;3.5;;;;;Air dried weight;;2a Fumana procumbens;18723;actual measurement;one-seeded generative dispersule;1.99;;-4;;BIOLFLOR database;1.99;;;;;Air dried weight;;2a Fumana procumbens;18723;actual measurement;one-seeded generative dispersule;3.4992;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.4992;3.586666667;3.266;150;;Air dried weight;;2a Fumana procumbens;18723;actual measurement;germinule;1.99;;-4;;BIOLFLOR database;1.99;;;;;Air dried weight;;3 Fumana procumbens;18723;actual measurement;germinule;2.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Fumaria bastardii;25483;other;unknown;2.1728;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria bastardii;25483;other;unknown;2.8788;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria capreolata;25443;other;germinule;4.1592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.1592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fumaria capreolata;25443;other;germinule;3.8656;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8656;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fumaria capreolata;25443;actual measurement;germinule;2.99;;-4;;BIOLFLOR database;2.99;;;;;Air dried weight;;3 Fumaria capreolata;25443;actual measurement;one-seeded generative dispersule;2.99;;-4;;BIOLFLOR database;2.99;;;;;Air dried weight;;2a Fumaria capreolata;25443;other;one-seeded generative dispersule;4.1592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.1592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fumaria capreolata;25443;other;one-seeded generative dispersule;3.8656;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8656;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fumaria martinii;25460;other;unknown;2.6852;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6852;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria muralis;25544;other;unknown;3.43;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.43;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria muralis;25544;other;unknown;3.3376;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.3376;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria muralis;25544;other;unknown;3.3312;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.3312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria muralis;25544;other;unknown;2.3636;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria muralis;25544;other;unknown;2.9776;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.9776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria occidentalis;25548;other;unknown;5.8804;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.8804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Fumaria officinalis;25549;actual measurement (following LEDA data standards);germinule;3.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.32;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Fumaria officinalis;25549;actual measurement (following LEDA data standards);germinule;3.32;1;-2;3.32;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.32;3.32;3.32;;preaggregated value obtained from single record;Air dried weight;;3 Fumaria officinalis;25549;other;germinule;3.648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fumaria officinalis;25549;other;germinule;2.5728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fumaria officinalis;25549;other;germinule;3.0884;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0884;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Fumaria officinalis;25549;other;one-seeded generative dispersule;3.648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fumaria officinalis;25549;other;one-seeded generative dispersule;2.5728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fumaria officinalis;25549;other;one-seeded generative dispersule;3.0884;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0884;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Fumaria officinalis;25549;actual measurement;one-seeded generative dispersule;3.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.1;;;50;;Air dried weight;;2a Fumaria officinalis;25549;actual measurement;one-seeded generative dispersule;2.561;;-4;;BIOLFLOR database;2.561;4;1.3;;;Air dried weight;;2a Fumaria officinalis;25549;actual measurement;one-seeded generative dispersule;3.354;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.354;;;50;;Air dried weight;;2a Fumaria officinalis;25549;actual measurement;germinule;3.354;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.354;;;50;;Air dried weight;;3 Fumaria officinalis;25549;actual measurement;germinule;3.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.1;;;50;;Air dried weight;;3 Fumaria officinalis;25549;actual measurement;germinule;2.561;;-4;;BIOLFLOR database;2.561;4;1.3;;;Air dried weight;;3 Fumaria parviflora;25553;actual measurement;one-seeded generative dispersule;1.99;;-4;;BIOLFLOR database;1.99;;;;;Air dried weight;;2a Fumaria parviflora;25553;actual measurement;germinule;1.99;;-4;;BIOLFLOR database;1.99;;;;;Air dried weight;;3 Fumaria vaillantii;25522;actual measurement;germinule;2.49;;-4;;BIOLFLOR database;2.49;;;;;Air dried weight;;3 Fumaria vaillantii;25522;actual measurement;one-seeded generative dispersule;2.49;;-4;;BIOLFLOR database;2.49;;;;;Air dried weight;;2a Gagea lutea;39025;actual measurement;one-seeded generative dispersule;3.754;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.754;;;13;;Air dried weight;;2a Gagea lutea;39025;actual measurement;one-seeded generative dispersule;2.973;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.973;3.057;2.889;100;;Air dried weight;;2a Galanthus nivalis;35672;actual measurement;germinule;5.8;;-4;;BIOLFLOR database;5.8;;;;;Air dried weight;;3 Galanthus nivalis;35672;actual measurement;one-seeded generative dispersule;5.8;;-4;;BIOLFLOR database;5.8;;;;;Air dried weight;;2a Galanthus nivalis;35672;other;one-seeded generative dispersule;6.984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galanthus nivalis;35672;other;germinule;6.984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galega officinalis;21307;other;germinule;9.3336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);9.3336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galega officinalis;21307;other;one-seeded generative dispersule;9.3336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);9.3336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galega officinalis;21307;actual measurement;one-seeded generative dispersule;6.99;;-4;;BIOLFLOR database;6.99;8.54;5.44;;;Air dried weight;;2a Galega officinalis;21307;actual measurement;one-seeded generative dispersule;6.484;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.484;6.517;6.451;100;;Air dried weight;;2a Galega officinalis;21307;actual measurement;germinule;6.99;;-4;;BIOLFLOR database;6.99;8.54;5.44;;;Air dried weight;;3 Galega officinalis;21307;actual measurement;one-seeded generative dispersule;8.23;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.23;;;50;;Air dried weight;;2a Galega officinalis;21307;actual measurement;one-seeded generative dispersule;8.834;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.834;;;50;;Air dried weight;;2a Galega officinalis;21307;actual measurement;germinule;8.23;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.23;;;50;;Air dried weight;;3 Galega officinalis;21307;actual measurement;germinule;8.834;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.834;;;50;;Air dried weight;;3 Galeopsis angustifolia;23489;actual measurement;germinule;1.354;;-4;;BIOLFLOR database;1.354;;;;;Air dried weight;;3 Galeopsis angustifolia;23489;actual measurement;germinule;1.92;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.92;;;50;;Air dried weight;;3 Galeopsis angustifolia;23489;actual measurement;germinule;2.056;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.056;;;50;;Air dried weight;;3 Galeopsis angustifolia;23489;actual measurement;one-seeded generative dispersule;1.354;;-4;;BIOLFLOR database;1.354;;;;;Air dried weight;;2a Galeopsis angustifolia;23489;actual measurement;one-seeded generative dispersule;2.056;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.056;;;50;;Air dried weight;;2a Galeopsis angustifolia;23489;actual measurement;one-seeded generative dispersule;1.92;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.92;;;50;;Air dried weight;;2a Galeopsis angustifolia;23489;other;one-seeded generative dispersule;1.4228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galeopsis angustifolia;23489;other;germinule;1.4228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galeopsis bifida;24586;actual measurement (following LEDA data standards);germinule;3.59;1;-2;3.59;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.59;3.59;3.59;;preaggregated value obtained from single record;Air dried weight;;3 Galeopsis bifida;24586;other;germinule;3.4844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.4844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galeopsis bifida;24586;actual measurement (following LEDA data standards);germinule;3.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.59;;;30;used balance: Mettler H51, seed;Air dried weight;;3 Galeopsis bifida;24586;other;one-seeded generative dispersule;3.4844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.4844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galeopsis bifida;24586;actual measurement;one-seeded generative dispersule;3.554;;-4;;BIOLFLOR database;3.554;;;;;Air dried weight;;2a Galeopsis bifida;24586;actual measurement;one-seeded generative dispersule;3.664333333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.664333333;3.783;3.565;100;;Air dried weight;;2a Galeopsis bifida;24586;actual measurement;germinule;3.554;;-4;;BIOLFLOR database;3.554;;;;;Air dried weight;;3 Galeopsis ladanum;24587;actual measurement;germinule;1.2;;-4;;BIOLFLOR database;1.2;;;;;Air dried weight;;3 Galeopsis ladanum;24587;actual measurement;one-seeded generative dispersule;1.2;;-4;;BIOLFLOR database;1.2;;;;;Air dried weight;;2a Galeopsis pubescens;24228;actual measurement;one-seeded generative dispersule;4.409;;-4;;BIOLFLOR database;4.409;;;;;Air dried weight;;2a Galeopsis pubescens;24228;actual measurement;germinule;4.409;;-4;;BIOLFLOR database;4.409;;;;;Air dried weight;;3 Galeopsis segetum;24230;actual measurement;germinule;1.377;;-4;;BIOLFLOR database;1.377;;;;;Air dried weight;;3 Galeopsis segetum;24230;actual measurement;one-seeded generative dispersule;1.377;;-4;;BIOLFLOR database;1.377;;;;;Air dried weight;;2a Galeopsis speciosa;23861;actual measurement;one-seeded generative dispersule;4.188;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.188;;;50;;Air dried weight;;2a Galeopsis speciosa;23861;other;one-seeded generative dispersule;3.7056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.7056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galeopsis speciosa;23861;actual measurement;germinule;4.188;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.188;;;50;;Air dried weight;;3 Galeopsis speciosa;23861;actual measurement;one-seeded generative dispersule;2.072;;-4;;BIOLFLOR database;2.072;;;;;Air dried weight;;2a Galeopsis speciosa;23861;actual measurement;germinule;2.072;;-4;;BIOLFLOR database;2.072;;;;;Air dried weight;;3 Galeopsis speciosa;23861;other;germinule;3.7056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.7056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galeopsis tetrahit;24648;other;germinule;3.6948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galeopsis tetrahit;24648;actual measurement;germinule;4.6;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.6;;;100;;Air dried weight;;3 Galeopsis tetrahit;24648;actual measurement;germinule;4.832;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.832;;;50;;Air dried weight;;3 Galeopsis tetrahit;24648;actual measurement;germinule;4.648;;-4;;BIOLFLOR database;4.648;4.83;4.4;;;Air dried weight;;3 Galeopsis tetrahit;24648;other;one-seeded generative dispersule;3.6948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galeopsis tetrahit;24648;actual measurement;one-seeded generative dispersule;4.648;;-4;;BIOLFLOR database;4.648;4.83;4.4;;;Air dried weight;;2a Galeopsis tetrahit;24648;actual measurement;one-seeded generative dispersule;4.6;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.6;;;100;;Air dried weight;;2a Galeopsis tetrahit;24648;actual measurement;one-seeded generative dispersule;3.5816;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.5816;3.961;3.012;100;;Air dried weight;;2a Galeopsis tetrahit;24648;actual measurement;one-seeded generative dispersule;4.832;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.832;;;50;;Air dried weight;;2a Galinsoga ciliata;6801;actual measurement;one-seeded generative dispersule;.158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.158;;;50;;Air dried weight;;2a Galinsoga ciliata;6801;actual measurement;one-seeded generative dispersule;.181;;-4;;BIOLFLOR database;.181;;;;;Air dried weight;;2a Galinsoga ciliata;6801;actual measurement;one-seeded generative dispersule;.174;;-4;;BIOLFLOR database;.174;;;;;Air dried weight;;2a Galinsoga ciliata;6801;other;one-seeded generative dispersule;.2652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galinsoga ciliata;6801;other;one-seeded generative dispersule;.2652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galinsoga ciliata;6801;actual measurement;germinule;.174;;-4;;BIOLFLOR database;.174;;;;;Air dried weight;;3 Galinsoga ciliata;6801;actual measurement;one-seeded generative dispersule;.164;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.164;;;50;;Air dried weight;;2a Galinsoga ciliata;6801;actual measurement;germinule;.181;;-4;;BIOLFLOR database;.181;;;;;Air dried weight;;3 Galinsoga ciliata;6801;actual measurement;generative dispersule;.368;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.368;.44;.31;1;;Air dried weight;;2 Galinsoga ciliata;6801;actual measurement;germinule;.158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.158;;;50;;Air dried weight;;3 Galinsoga ciliata;6801;actual measurement;germinule;.164;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.164;;;50;;Air dried weight;;3 Galinsoga ciliata;6801;actual measurement (following LEDA data standards);one-seeded generative dispersule;.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;;;50;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Galinsoga ciliata;6801;actual measurement (following LEDA data standards);one-seeded generative dispersule;.15;1;-2;.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;.15;.15;;preaggregated value obtained from single record;Air dried weight;;2a Galinsoga ciliata;6801;other;germinule;.2652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galinsoga parviflora;7147;actual measurement;germinule;.179;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.179;;;150;;Air dried weight;;3 Galinsoga parviflora;7147;actual measurement;germinule;.234;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.234;.3;.21;1;;Air dried weight;;3 Galinsoga parviflora;7147;actual measurement;germinule;.211;;-4;;BIOLFLOR database;.211;;;;;Air dried weight;;3 Galinsoga parviflora;7147;actual measurement;germinule;.194;;-4;;BIOLFLOR database;.194;;;;;Air dried weight;;3 Galinsoga parviflora;7147;actual measurement;one-seeded generative dispersule;.211;;-4;;BIOLFLOR database;.211;;;;;Air dried weight;;2a Galinsoga parviflora;7147;actual measurement;one-seeded generative dispersule;.194;;-4;;BIOLFLOR database;.194;;;;;Air dried weight;;2a Galinsoga parviflora;7147;actual measurement;one-seeded generative dispersule;.179;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.179;;;150;;Air dried weight;;2a Galium album;31949;actual measurement;one-seeded generative dispersule;.526;;-4;;BIOLFLOR database;.526;;;;;Air dried weight;;2a Galium album;31949;actual measurement;germinule;.526;;-4;;BIOLFLOR database;.526;;;;;Air dried weight;;3 Galium anisophyllon;32317;actual measurement;one-seeded generative dispersule;.666;;-4;;BIOLFLOR database;.666;.79;.536;;;Air dried weight;;2a Galium anisophyllon;32317;actual measurement;unknown;.48;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.48;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Galium anisophyllon;32317;actual measurement;germinule;.666;;-4;;BIOLFLOR database;.666;.79;.536;;;Air dried weight;;3 Galium aparine;31956;actual measurement;generative dispersule;8.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);8.08;;;1;n an replicates unknown;Air dried weight;;2 Galium aparine;31956;actual measurement;germinule;7.246;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.246;;;50;;Air dried weight;;3 Galium aparine;31956;actual measurement;germinule;9.656;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.656;;;50;;Air dried weight;;3 Galium aparine;31956;actual measurement;generative dispersule;8.1755;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;8.1755;9.005;7.346;100;;Air dried weight;;2 Galium aparine;31956;actual measurement;germinule;8.336;;-4;;BIOLFLOR database;8.336;9.948;5.7;;;Air dried weight;;3 Galium aparine;31956;actual measurement;one-seeded generative dispersule;7.246;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.246;;;50;;Air dried weight;;2a Galium aparine;31956;actual measurement;one-seeded generative dispersule;9.656;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.656;;;50;;Air dried weight;;2a Galium aparine;31956;actual measurement;germinule;7.3708;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.3708;7.843;6.874;100;;Air dried weight;;3 Galium aparine;31956;actual measurement;one-seeded generative dispersule;8.336;;-4;;BIOLFLOR database;8.336;9.948;5.7;;;Air dried weight;;2a Galium aparine;31956;actual measurement (following LEDA data standards);germinule;13.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.43;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Galium aparine;31956;actual measurement (following LEDA data standards);one-seeded generative dispersule;9.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.54;;;50;used balance: Mettler H51, fruit;Air dried weight;;2a Galium aparine;31956;actual measurement (following LEDA data standards);one-seeded generative dispersule;10.82;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.82;;;50;used balance: Mettler Toledo 4, disp. unit;Air dried weight;;2a Galium aparine;31956;actual measurement (following LEDA data standards);germinule;13.43;1;-2;13.43;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.43;13.43;13.43;;preaggregated value obtained from single record;Air dried weight;;3 Galium aparine;31956;actual measurement (following LEDA data standards);one-seeded generative dispersule;9.54;1;-2;9.54;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.54;9.54;9.54;;preaggregated value obtained from single record;Air dried weight;;2a Galium aparine;31956;actual measurement (following LEDA data standards);one-seeded generative dispersule;10.82;1;-2;10.82;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.82;10.82;10.82;;preaggregated value obtained from single record;Air dried weight;;2a Galium aristatum;31963;actual measurement;one-seeded generative dispersule;1.157;;-4;;BIOLFLOR database;1.157;1.202;1.087;;;Air dried weight;;2a Galium aristatum;31963;actual measurement;germinule;1.157;;-4;;BIOLFLOR database;1.157;1.202;1.087;;;Air dried weight;;3 Galium boreale;31917;actual measurement;one-seeded generative dispersule;.608;;-4;;BIOLFLOR database;.608;.644;.59;;;Air dried weight;;2a Galium boreale;31917;actual measurement;germinule;.608;;-4;;BIOLFLOR database;.608;.644;.59;;;Air dried weight;;3 Galium boreale;31917;other;one-seeded generative dispersule;.854;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.854;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium boreale;31917;actual measurement;generative dispersule;.621;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.621;.63;.612;100;;Air dried weight;;2 Galium boreale;31917;other;germinule;.854;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.854;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium glaucum;31858;actual measurement;one-seeded generative dispersule;1.577;;-4;;BIOLFLOR database;1.577;1.666;1.341;;;Air dried weight;;2a Galium glaucum;31858;actual measurement;germinule;1.577;;-4;;BIOLFLOR database;1.577;1.666;1.341;;;Air dried weight;;3 Galium lucidum;31829;actual measurement;germinule;.77;;-4;;BIOLFLOR database;.77;.8;.71;;;Air dried weight;;3 Galium lucidum;31829;actual measurement;one-seeded generative dispersule;.77;;-4;;BIOLFLOR database;.77;.8;.71;;;Air dried weight;;2a Galium lucidum;31829;actual measurement;multi-seeded generative dispersule;.84;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.84;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Galium mollugo;31782;other;one-seeded generative dispersule;.7092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium mollugo;31782;actual measurement;one-seeded generative dispersule;.998;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.998;;;50;;Air dried weight;;2a Galium mollugo;31782;actual measurement;one-seeded generative dispersule;.87;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.87;;;20;;Air dried weight;;2a Galium mollugo;31782;actual measurement;one-seeded generative dispersule;.53;;-4;;BIOLFLOR database;.53;.6;.43;;;Air dried weight;;2a Galium mollugo;31782;actual measurement;one-seeded generative dispersule;.674;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.674;;;50;;Air dried weight;;2a Galium mollugo;31782;actual measurement;generative dispersule;.4928;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4928;.5;.472;100;;Air dried weight;;2 Galium mollugo;31782;actual measurement;germinule;.87;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.87;;;20;;Air dried weight;;3 Galium mollugo;31782;actual measurement;germinule;.674;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.674;;;50;;Air dried weight;;3 Galium mollugo;31782;actual measurement;germinule;.998;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.998;;;50;;Air dried weight;;3 Galium mollugo;31782;actual measurement;germinule;.53;;-4;;BIOLFLOR database;.53;.6;.43;;;Air dried weight;;3 Galium mollugo;31782;other;germinule;.7092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium odoratum;31805;actual measurement;generative dispersule;5.121;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.121;5.121;5.121;100;;Air dried weight;;2 Galium odoratum;31805;actual measurement;germinule;5.8;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;6.2;5.4;1;n and replicates unknown;Air dried weight;;3 Galium odoratum;31805;actual measurement;germinule;10.087;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10.087;;;50;;Air dried weight;;3 Galium odoratum;31805;actual measurement;germinule;8.248;;-4;;BIOLFLOR database;8.248;10.143;6.6;;;Air dried weight;;3 Galium odoratum;31805;actual measurement;germinule;3.955;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.955;;;20;;Air dried weight;;3 Galium odoratum;31805;actual measurement;one-seeded generative dispersule;3.955;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.955;;;20;;Air dried weight;;2a Galium odoratum;31805;actual measurement;one-seeded generative dispersule;8.248;;-4;;BIOLFLOR database;8.248;10.143;6.6;;;Air dried weight;;2a Galium odoratum;31805;actual measurement;one-seeded generative dispersule;10.087;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10.087;;;50;;Air dried weight;;2a Galium odoratum;31805;actual measurement;generative dispersule;5.35;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.35;;;1;n an replicates unknown;Air dried weight;;2 Galium palustre;31813;actual measurement;one-seeded generative dispersule;.91;;-4;;BIOLFLOR database;.91;;;;;Air dried weight;;2a Galium palustre;31813;actual measurement;germinule;.91;;-4;;BIOLFLOR database;.91;;;;;Air dried weight;;3 Galium palustre;31813;actual measurement;one-seeded generative dispersule;.909;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.909;;;100;;Air dried weight;;2a Galium palustre;31813;actual measurement;germinule;.909;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.909;;;100;;Air dried weight;;3 Galium parisiense;31817;actual measurement;generative dispersule;.076056338;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.076056338;.076056338;.076056338;71;;Air dried weight;;2 Galium parisiense;31817;actual measurement;germinule;.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;30;collected between 1996-1999;Air dried weight;;3 Galium parisiense;31817;actual measurement;germinule;.158;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.158;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Galium parisiense;31817;actual measurement;germinule;.15767;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.15767;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Galium parisiense;31817;actual measurement;germinule;.767;;-4;;BIOLFLOR database;.767;;;;;Air dried weight;;3 Galium parisiense;31817;actual measurement;one-seeded generative dispersule;.767;;-4;;BIOLFLOR database;.767;;;;;Air dried weight;;2a Galium parisiense;31817;other;one-seeded generative dispersule;.11044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.11044;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;2a Galium parisiense;31817;other;one-seeded generative dispersule;.1516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium parisiense;31817;other;germinule;.11044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.11044;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Galium parisiense;31817;other;germinule;.1516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium pumilum;31750;actual measurement;generative dispersule;.358;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.358;.44;.22;1;;Air dried weight;;2 Galium pumilum;31750;actual measurement;unknown;.5;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.5;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Galium rotundifolium;32103;actual measurement;generative dispersule;.78;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.78;1;.6;1;;Air dried weight;;2 Galium rotundifolium;32103;actual measurement;germinule;1.043;;-4;;BIOLFLOR database;1.043;;;;;Air dried weight;;3 Galium rotundifolium;32103;actual measurement;one-seeded generative dispersule;1.043;;-4;;BIOLFLOR database;1.043;;;;;Air dried weight;;2a Galium saxatile;31769;actual measurement;one-seeded generative dispersule;.426;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.426;;;50;;Air dried weight;;2a Galium saxatile;31769;actual measurement;one-seeded generative dispersule;.558;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.558;;;100;;Air dried weight;;2a Galium saxatile;31769;actual measurement;one-seeded generative dispersule;.531;;-4;;BIOLFLOR database;.531;.56;.502;;;Air dried weight;;2a Galium saxatile;31769;other;one-seeded generative dispersule;.7336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium saxatile;31769;actual measurement;germinule;.558;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.558;;;100;;Air dried weight;;3 Galium saxatile;31769;actual measurement;germinule;.426;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.426;;;50;;Air dried weight;;3 Galium saxatile;31769;actual measurement;germinule;.531;;-4;;BIOLFLOR database;.531;.56;.502;;;Air dried weight;;3 Galium saxatile;31769;actual measurement (following LEDA data standards);germinule;.81;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.81;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Galium saxatile;31769;actual measurement (following LEDA data standards);germinule;.81;1;-2;.81;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.81;.81;.81;;preaggregated value obtained from single record;Air dried weight;;3 Galium saxatile;31769;other;germinule;.7336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium schultesii;32114;actual measurement;germinule;.9252;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.9252;;;100;;Air dried weight;;3 Galium spurium;31775;actual measurement;one-seeded generative dispersule;2.67;;-4;;BIOLFLOR database;2.67;;;;;Air dried weight;;2a Galium spurium;31775;actual measurement;germinule;2.67;;-4;;BIOLFLOR database;2.67;;;;;Air dried weight;;3 Galium spurium;31775;other;one-seeded generative dispersule;1.2556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium spurium;31775;other;one-seeded generative dispersule;2.1928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium spurium;31775;other;one-seeded generative dispersule;1.69392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.69392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium spurium;31775;other;germinule;2.1928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium spurium;31775;other;germinule;1.69392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.69392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium spurium;31775;other;germinule;1.2556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium sterneri;31777;other;germinule;.546;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.546;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium sterneri;31777;other;germinule;.4152;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4152;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium sterneri;31777;other;germinule;.4316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium sterneri;31777;other;germinule;.4792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium sterneri;31777;other;one-seeded generative dispersule;.4316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium sterneri;31777;other;one-seeded generative dispersule;.4792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium sterneri;31777;other;one-seeded generative dispersule;.546;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.546;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium sterneri;31777;other;one-seeded generative dispersule;.4152;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4152;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium sterneri;31777;actual measurement;one-seeded generative dispersule;.39;;-4;;BIOLFLOR database;.39;;;;;Air dried weight;;2a Galium sterneri;31777;actual measurement;germinule;.39;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.39;;;50;;Air dried weight;;3 Galium sterneri;31777;actual measurement;germinule;.39;;-4;;BIOLFLOR database;.39;;;;;Air dried weight;;3 Galium sterneri;31777;actual measurement;one-seeded generative dispersule;.39;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.39;;;50;;Air dried weight;;2a Galium sylvaticum;31699;actual measurement;one-seeded generative dispersule;1.004;;-4;;BIOLFLOR database;1.004;1.1;.908;;;Air dried weight;;2a Galium sylvaticum;31699;actual measurement;germinule;1.004;;-4;;BIOLFLOR database;1.004;1.1;.908;;;Air dried weight;;3 Galium sylvaticum;31699;actual measurement;one-seeded generative dispersule;1.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.3;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Galium tenuissimum;32198;actual measurement;generative dispersule;3.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.02;;;1;n an replicates unknown;Air dried weight;;2 Galium tricornutum;31719;actual measurement;germinule;8.446;;-4;;BIOLFLOR database;8.446;;;;;Air dried weight;;3 Galium tricornutum;31719;actual measurement;one-seeded generative dispersule;8.446;;-4;;BIOLFLOR database;8.446;;;;;Air dried weight;;2a Galium uliginosum;31724;actual measurement;generative dispersule;.444;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.444;.449;.439;100;;Air dried weight;;2 Galium uliginosum;31724;other;germinule;.3532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium verrucosum;32204;actual measurement;one-seeded generative dispersule;15.488;;-4;;BIOLFLOR database;15.488;;;;;Air dried weight;;2a Galium verrucosum;32204;actual measurement;germinule;15.488;;-4;;BIOLFLOR database;15.488;;;;;Air dried weight;;3 Galium verum;31730;actual measurement;germinule;.435;;-4;;BIOLFLOR database;.435;.6;.24;;;Air dried weight;;3 Galium verum;31730;actual measurement;one-seeded generative dispersule;.401;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.401;;;100;;Air dried weight;;2a Galium verum;31730;actual measurement;germinule;.659;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.659;;;1;summers of 1995 and 1996;Unknown;;3 Galium verum;31730;actual measurement;one-seeded generative dispersule;.359333333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.359333333;.372;.344;100;;Air dried weight;;2a Galium verum;31730;actual measurement;generative dispersule;.34;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.34;;;1;n an replicates unknown;Air dried weight;;2 Galium verum;31730;actual measurement;germinule;.64;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.64;;;50;;Air dried weight;;3 Galium verum;31730;actual measurement;germinule;.401;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.401;;;100;;Air dried weight;;3 Galium verum;31730;actual measurement;one-seeded generative dispersule;.64;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.64;;;50;;Air dried weight;;2a Galium verum;31730;actual measurement;one-seeded generative dispersule;.435;;-4;;BIOLFLOR database;.435;.6;.24;;;Air dried weight;;2a Galium verum;31730;other;one-seeded generative dispersule;.6964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium verum;31730;other;one-seeded generative dispersule;.4812;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Galium verum;31730;actual measurement;multi-seeded generative dispersule;.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Galium verum;31730;actual measurement (following LEDA data standards);germinule;.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.57;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Galium verum;31730;actual measurement (following LEDA data standards);germinule;.57;1;-2;.57;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.57;.57;.57;;preaggregated value obtained from single record;Air dried weight;;3 Galium verum;31730;other;germinule;.6964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Galium verum;31730;other;germinule;.4812;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gastridium ventricosum;40811;other;germinule;.0984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gastridium ventricosum;40811;actual measurement;one-seeded generative dispersule;.101351351;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.101351351;.101351351;.101351351;74;;Air dried weight;;2a Gaultheria shallon;19494;actual measurement;one-seeded generative dispersule;.098;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.098;;;50;;Air dried weight;;2a Genista anglica;19775;actual measurement;one-seeded generative dispersule;2.364;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.364;;;50;;Air dried weight;;2a Genista anglica;19775;unknown;germinule;1.5;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];1.5;;;30;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Genista anglica;19775;other;germinule;2.3276;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3276;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Genista germanica;20906;actual measurement;one-seeded generative dispersule;2.878;;-4;;BIOLFLOR database;2.878;3.88;2.415;;;Air dried weight;;2a Genista germanica;20906;actual measurement;germinule;2.878;;-4;;BIOLFLOR database;2.878;3.88;2.415;;;Air dried weight;;3 Genista pilosa;20915;actual measurement;generative dispersule;2.48;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.48;;;1;n and replicates unknown;Air dried weight;;2 Genista pilosa;20915;other;germinule;2.858;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.858;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Genista pulchella;22327;actual measurement;generative dispersule;2.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.59;;;1;n and replicates unknown;Air dried weight;;2 Genista tinctoria;21390;actual measurement;germinule;3.134;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.134;;;50;;Air dried weight;;3 Genista tinctoria;21390;actual measurement;germinule;3.855;;-4;;BIOLFLOR database;3.855;4.64;2.95;;;Air dried weight;;3 Genista tinctoria;21390;actual measurement;one-seeded generative dispersule;3.134;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.134;;;50;;Air dried weight;;2a Genista tinctoria;21390;other;one-seeded generative dispersule;4.2944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.2944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Genista tinctoria;21390;actual measurement;one-seeded generative dispersule;3.855;;-4;;BIOLFLOR database;3.855;4.64;2.95;;;Air dried weight;;2a Genista tinctoria;21390;actual measurement;one-seeded generative dispersule;2.434;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.434;2.462;2.406;100;;Air dried weight;;2a Genista tinctoria;21390;other;germinule;4.2944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.2944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentiana acaulis;23091;actual measurement;one-seeded generative dispersule;.452;;-4;;BIOLFLOR database;.452;.459;.447;;;Air dried weight;;2a Gentiana acaulis;23091;actual measurement;germinule;.452;;-4;;BIOLFLOR database;.452;.459;.447;;;Air dried weight;;3 Gentiana asclepiadea;23062;actual measurement;germinule;.122;;-4;;BIOLFLOR database;.122;.126;.118;;;Air dried weight;;3 Gentiana asclepiadea;23062;actual measurement;one-seeded generative dispersule;.122;;-4;;BIOLFLOR database;.122;.126;.118;;;Air dried weight;;2a Gentiana asclepiadea;23062;actual measurement;one-seeded generative dispersule;.091;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.091;.094;.088;100;;Air dried weight;;2a Gentiana clusii;23011;actual measurement;germinule;.44;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.44;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Gentiana cruciata;22980;actual measurement;generative dispersule;.134;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.134;.16;.12;1;;Air dried weight;;2 Gentiana lutea;22882;actual measurement;germinule;1.34;;-4;;BIOLFLOR database;1.34;1.741;1;;;Air dried weight;;3 Gentiana lutea;22882;actual measurement;one-seeded generative dispersule;1.34;;-4;;BIOLFLOR database;1.34;1.741;1;;;Air dried weight;;2a Gentiana lutea;22882;actual measurement;one-seeded generative dispersule;1.0775;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.0775;1.083333333;1.071666667;60;;Air dried weight;;2a Gentiana nivalis;22851;actual measurement;one-seeded generative dispersule;.015;;-4;;BIOLFLOR database;.015;;;;;Air dried weight;;2a Gentiana nivalis;22851;other;one-seeded generative dispersule;.02976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Gentiana nivalis;22851;actual measurement;germinule;.015;;-4;;BIOLFLOR database;.015;;;;;Air dried weight;;3 Gentiana nivalis;22851;other;germinule;.02976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentiana pannonica;22862;actual measurement;germinule;.581;;-4;;BIOLFLOR database;.581;.597;.565;;;Air dried weight;;3 Gentiana pannonica;22862;actual measurement;one-seeded generative dispersule;.581;;-4;;BIOLFLOR database;.581;.597;.565;;;Air dried weight;;2a Gentiana pneumonanthe;22875;other;one-seeded generative dispersule;.0584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Gentiana pneumonanthe;22875;other;one-seeded generative dispersule;.0584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Gentiana pneumonanthe;22875;actual measurement;generative dispersule;.072;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.072;.09;.05;1;;Air dried weight;;2 Gentiana pneumonanthe;22875;actual measurement;generative dispersule;.0605;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0605;.062;.059;100;;Air dried weight;;2 Gentiana pneumonanthe;22875;actual measurement;one-seeded generative dispersule;.046;;-4;;BIOLFLOR database;.046;;;;;Air dried weight;;2a Gentiana pneumonanthe;22875;actual measurement;germinule;.046;;-4;;BIOLFLOR database;.046;;;;;Air dried weight;;3 Gentiana pneumonanthe;22875;actual measurement (following LEDA data standards);germinule;.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.05;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Gentiana pneumonanthe;22875;actual measurement (following LEDA data standards);germinule;.05;1;-2;.05;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.05;.05;.05;;preaggregated value obtained from single record;Air dried weight;;3 Gentiana pneumonanthe;22875;other;germinule;.0584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentiana pneumonanthe;22875;other;germinule;.0584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentiana punctata;22828;actual measurement;germinule;.657;;-4;;BIOLFLOR database;.657;.723;.581;;;Air dried weight;;3 Gentiana punctata;22828;actual measurement;one-seeded generative dispersule;.657;;-4;;BIOLFLOR database;.657;.723;.581;;;Air dried weight;;2a Gentiana purpurea;22830;actual measurement;one-seeded generative dispersule;.48;;-4;;BIOLFLOR database;.48;;;;;Air dried weight;;2a Gentiana purpurea;22830;actual measurement;germinule;.48;;-4;;BIOLFLOR database;.48;;;;;Air dried weight;;3 Gentiana utriculosa;22754;actual measurement;one-seeded generative dispersule;.0705;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0705;.071;.07;100;;Air dried weight;;2a Gentiana utriculosa;22754;actual measurement;germinule;.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Gentiana verna;22708;actual measurement;germinule;.074;;-4;;BIOLFLOR database;.074;.08;.067;;;Air dried weight;;3 Gentiana verna;22708;actual measurement;one-seeded generative dispersule;.074;;-4;;BIOLFLOR database;.074;.08;.067;;;Air dried weight;;2a Gentianella amarella;23102;actual measurement;one-seeded generative dispersule;.124;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.124;;;50;;Air dried weight;;2a Gentianella amarella;23102;actual measurement;one-seeded generative dispersule;.121;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.121;;;100;;Air dried weight;;2a Gentianella amarella;23102;other;germinule;.1748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentianella amarella;23102;other;germinule;.1576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentianella anglica;23105;other;unknown;.2244;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Gentianella anglica;23105;other;unknown;.2224;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Gentianella anglica;23105;other;unknown;.2136;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Gentianella anglica;23105;other;unknown;.1956;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Gentianella anglica;23105;other;unknown;.194;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.194;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Gentianella anglica;23105;other;unknown;.1464;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1464;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Gentianella anglica;23105;other;unknown;.1556;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Gentianella anglica;23105;other;unknown;.1812;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Gentianella campestris;23049;actual measurement (following LEDA data standards);germinule;.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.19;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Gentianella campestris;23049;other;germinule;.21;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.21;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentianella campestris;23049;actual measurement (following LEDA data standards);germinule;.19;1;-2;.19;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.19;.19;.19;;preaggregated value obtained from single record;Air dried weight;;3 Gentianella campestris s. campestris;23051;actual measurement;generative dispersule;.183076923;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.183076923;.189230769;.176923077;65;;Air dried weight;;2 Gentianella campestris s. campestris;23051;actual measurement;germinule;.171;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.171;;;1;summers of 1995 and 1996;Unknown;;3 Gentianella ciliata;23007;actual measurement;germinule;.127;;-4;;BIOLFLOR database;.127;.129;.124;;;Air dried weight;;3 Gentianella ciliata;23007;actual measurement;one-seeded generative dispersule;.127;;-4;;BIOLFLOR database;.127;.129;.124;;;Air dried weight;;2a Gentianella germanica;22958;other;one-seeded generative dispersule;.1748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Gentianella germanica;22958;actual measurement;generative dispersule;.285;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.285;.286;.284;100;;Air dried weight;;2 Gentianella germanica;22958;actual measurement;one-seeded generative dispersule;.134;;-4;;BIOLFLOR database;.134;;;;;Air dried weight;;2a Gentianella germanica;22958;actual measurement;germinule;.134;;-4;;BIOLFLOR database;.134;;;;;Air dried weight;;3 Gentianella germanica;22958;other;germinule;.1748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentianella uliginosa;22746;other;germinule;.1344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Gentianella uliginosa;22746;actual measurement;one-seeded generative dispersule;.132;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.132;.133;.131;100;;Air dried weight;;2a Geranium bohemicum;22580;actual measurement;germinule;6.995;;-4;;BIOLFLOR database;6.995;;;;;Air dried weight;;3 Geranium bohemicum;22580;actual measurement;one-seeded generative dispersule;6.995;;-4;;BIOLFLOR database;6.995;;;;;Air dried weight;;2a Geranium columbinum;22581;other;one-seeded generative dispersule;3.1464;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1464;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium columbinum;22581;actual measurement;one-seeded generative dispersule;4;;-4;;BIOLFLOR database;4;;;;;Air dried weight;;2a Geranium columbinum;22581;actual measurement;germinule;4;;-4;;BIOLFLOR database;4;;;;;Air dried weight;;3 Geranium columbinum;22581;other;germinule;3.1464;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1464;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium dissectum;22583;other;germinule;2.586;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.586;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium dissectum;22583;actual measurement;germinule;2.642;;-4;;BIOLFLOR database;2.642;2.9;2.5;;;Air dried weight;;3 Geranium dissectum;22583;actual measurement;germinule;2.468;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.468;;;50;;Air dried weight;;3 Geranium dissectum;22583;other;one-seeded generative dispersule;2.586;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.586;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium dissectum;22583;actual measurement;one-seeded generative dispersule;2.642;;-4;;BIOLFLOR database;2.642;2.9;2.5;;;Air dried weight;;2a Geranium dissectum;22583;actual measurement;one-seeded generative dispersule;2.468;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.468;;;50;;Air dried weight;;2a Geranium divaricatum;22564;actual measurement;one-seeded generative dispersule;2.899;;-4;;BIOLFLOR database;2.899;2.931;2.867;;;Air dried weight;;2a Geranium divaricatum;22564;actual measurement;germinule;2.899;;-4;;BIOLFLOR database;2.899;2.931;2.867;;;Air dried weight;;3 Geranium divaricatum;22564;actual measurement;germinule;2.545;;-4;;BIOLFLOR database;2.545;;;;;Air dried weight;;3 Geranium lucidum;22584;actual measurement;generative dispersule;.27;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.27;;;1;n an replicates unknown;Air dried weight;;2 Geranium lucidum;22584;actual measurement;germinule;.742;;-4;;BIOLFLOR database;.742;.759;.724;;;Air dried weight;;3 Geranium lucidum;22584;actual measurement;one-seeded generative dispersule;.835;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.835;;;50;;Air dried weight;;2a Geranium lucidum;22584;actual measurement;one-seeded generative dispersule;1.093;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.093;;;100;;Air dried weight;;2a Geranium macrorrhizum;22582;actual measurement;generative dispersule;2.52;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.52;3;2.1;1;;Air dried weight;;2 Geranium molle;22585;actual measurement;germinule;1.24;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.24;;;5;;Air dried weight;;3 Geranium molle;22585;actual measurement;germinule;1.07;;-4;;BIOLFLOR database;1.07;1.1;.97;;;Air dried weight;;3 Geranium molle;22585;actual measurement;germinule;1.24;;-4;;BIOLFLOR database;1.24;1.33;1.15;;;Air dried weight;;3 Geranium molle;22585;actual measurement;one-seeded generative dispersule;1.24;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.24;;;5;;Air dried weight;;2a Geranium molle;22585;actual measurement;one-seeded generative dispersule;1.24;;-4;;BIOLFLOR database;1.24;1.33;1.15;;;Air dried weight;;2a Geranium molle;22585;actual measurement (following LEDA data standards);germinule;1.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.07;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;1.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.07;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;1.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.01;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.93;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.98;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;1.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.05;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;1.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.08;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;1.05;10;-2;1.05;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.03;1.09;.93;;preaggregated value obtained from single record;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;1.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.09;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;1.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.04;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium molle;22585;actual measurement (following LEDA data standards);germinule;.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.99;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium nodosum;22586;actual measurement;one-seeded generative dispersule;5.978;;-4;;BIOLFLOR database;5.978;;;;;Air dried weight;;2a Geranium nodosum;22586;actual measurement;germinule;5.978;;-4;;BIOLFLOR database;5.978;;;;;Air dried weight;;3 Geranium palustre;22587;actual measurement;germinule;4.31;;-4;;BIOLFLOR database;4.31;5;3.937;;;Air dried weight;;3 Geranium palustre;22587;actual measurement;one-seeded generative dispersule;4.31;;-4;;BIOLFLOR database;4.31;5;3.937;;;Air dried weight;;2a Geranium pratense;22589;actual measurement;germinule;7.413;;-4;;BIOLFLOR database;7.413;8.826;6;;;Air dried weight;;3 Geranium pratense;22589;actual measurement;one-seeded generative dispersule;8.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.192;;;50;;Air dried weight;;2a Geranium pratense;22589;actual measurement;one-seeded generative dispersule;6.367;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.367;;;100;;Air dried weight;;2a Geranium pratense;22589;actual measurement;germinule;6.367;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.367;;;100;;Air dried weight;;3 Geranium pratense;22589;actual measurement;germinule;8.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.192;;;50;;Air dried weight;;3 Geranium pratense;22589;actual measurement;one-seeded generative dispersule;7.413;;-4;;BIOLFLOR database;7.413;8.826;6;;;Air dried weight;;2a Geranium pratense;22589;other;one-seeded generative dispersule;11.3512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.3512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium pratense;22589;actual measurement (following LEDA data standards);germinule;8.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.48;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Geranium pratense;22589;other;germinule;11.3512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.3512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium pratense;22589;actual measurement (following LEDA data standards);germinule;8.48;1;-2;8.48;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.48;8.48;8.48;;preaggregated value obtained from single record;Air dried weight;;3 Geranium purpureum;22518;other;unknown;1.87512;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.87512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Geranium purpureum;22518;other;unknown;1.864;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Geranium pusillum;22590;other;germinule;.6708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium pusillum;22590;other;germinule;.7392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium pusillum;22590;other;one-seeded generative dispersule;.6708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium pusillum;22590;other;one-seeded generative dispersule;.7392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium pusillum;22590;actual measurement;one-seeded generative dispersule;.97;;-4;;BIOLFLOR database;.97;1.1;.798;;;Air dried weight;;2a Geranium pusillum;22590;actual measurement;generative dispersule;.97;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.97;.97;.97;1;;Air dried weight;;2 Geranium pusillum;22590;actual measurement;germinule;.692;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.692;;;50;;Air dried weight;;3 Geranium pusillum;22590;actual measurement;generative dispersule;.979;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.979;1.006;.933;1;;Air dried weight;;2 Geranium pusillum;22590;actual measurement;germinule;.714;;-4;;BIOLFLOR database;.714;;;;;Air dried weight;;3 Geranium pusillum;22590;actual measurement;one-seeded generative dispersule;.692;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.692;;;50;;Air dried weight;;2a Geranium pusillum;22590;actual measurement;germinule;.97;;-4;;BIOLFLOR database;.97;1.1;.798;;;Air dried weight;;3 Geranium pyrenaicum;22631;actual measurement;germinule;2.2;;-4;;BIOLFLOR database;2.2;2.3;2.1;;;Air dried weight;;3 Geranium pyrenaicum;22631;actual measurement;one-seeded generative dispersule;1.792;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.792;;;50;;Air dried weight;;2a Geranium pyrenaicum;22631;actual measurement;one-seeded generative dispersule;1.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.1;;;100;;Air dried weight;;2a Geranium pyrenaicum;22631;actual measurement;germinule;1.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.1;;;100;;Air dried weight;;3 Geranium pyrenaicum;22631;actual measurement;germinule;1.792;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.792;;;50;;Air dried weight;;3 Geranium pyrenaicum;22631;actual measurement;one-seeded generative dispersule;2.2;;-4;;BIOLFLOR database;2.2;2.3;2.1;;;Air dried weight;;2a Geranium pyrenaicum;22631;other;one-seeded generative dispersule;1.4104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium pyrenaicum;22631;other;one-seeded generative dispersule;1.878;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.878;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium pyrenaicum;22631;other;germinule;1.878;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.878;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium pyrenaicum;22631;other;germinule;1.4104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium robertianum;22592;actual measurement (following LEDA data standards);germinule;1.68;1;-2;1.68;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.68;1.68;1.68;;preaggregated value obtained from single record;Air dried weight;;3 Geranium robertianum;22592;actual measurement (following LEDA data standards);germinule;1.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.68;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.76;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.76;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.71;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.71;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.43;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.67;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.67;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.56;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.49;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.72;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.72;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.49;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.53;10;-2;1.53;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.56;1.76;1.29;;preaggregated value obtained from single record;Air dried weight;;2a Geranium robertianum;22592;other;germinule;1.2496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium robertianum;22592;other;germinule;1.638;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.638;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.47;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.29;;;10;used balance: Mettler H51, seed with long hairs;Air dried weight;;2a Geranium robertianum;22592;other;one-seeded generative dispersule;1.2496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium robertianum;22592;actual measurement;generative dispersule;.86;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.86;;;1;n an replicates unknown;Air dried weight;;2 Geranium robertianum;22592;other;one-seeded generative dispersule;1.638;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.638;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium robertianum;22592;actual measurement;one-seeded generative dispersule;1.147;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.147;1.28;1.014;100;;Air dried weight;;2a Geranium robertianum;22592;actual measurement;one-seeded generative dispersule;1.138;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.138;;;50;;Air dried weight;;2a Geranium robertianum;22592;actual measurement;germinule;1.138;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.138;;;50;;Air dried weight;;3 Geranium robertianum;22592;actual measurement;germinule;1.14;;-4;;BIOLFLOR database;1.14;;;;;Air dried weight;;3 Geranium robertianum;22592;actual measurement;germinule;1.6;;-4;;BIOLFLOR database;1.6;;;;;Air dried weight;;3 Geranium robertianum;22592;actual measurement;one-seeded generative dispersule;1.6;;-4;;BIOLFLOR database;1.6;;;;;Air dried weight;;2a Geranium rotundifolium;22593;actual measurement;germinule;1.302;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.302;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Geranium rotundifolium;22593;actual measurement;one-seeded generative dispersule;2.224;;-4;;BIOLFLOR database;2.224;2.24;2.206;;;Air dried weight;;2a Geranium rotundifolium;22593;actual measurement;germinule;2.224;;-4;;BIOLFLOR database;2.224;2.24;2.206;;;Air dried weight;;3 Geranium rotundifolium;22593;other;one-seeded generative dispersule;1.3892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium rotundifolium;22593;other;germinule;1.3892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium sanguineum;22557;other;germinule;10.2204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.2204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium sanguineum;22557;other;germinule;10.2044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.2044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium sanguineum;22557;other;germinule;8.8156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);8.8156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geranium sanguineum;22557;other;one-seeded generative dispersule;10.2044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.2044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium sanguineum;22557;other;one-seeded generative dispersule;10.2204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.2204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium sanguineum;22557;other;one-seeded generative dispersule;8.8156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);8.8156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geranium sanguineum;22557;actual measurement;one-seeded generative dispersule;11.168;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11.168;;;100;;Air dried weight;;2a Geranium sanguineum;22557;actual measurement;one-seeded generative dispersule;8;;-4;;BIOLFLOR database;8;;;;;Air dried weight;;2a Geranium sanguineum;22557;actual measurement;germinule;11.168;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11.168;;;100;;Air dried weight;;3 Geranium sanguineum;22557;actual measurement;germinule;9.648;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.648;;;50;;Air dried weight;;3 Geranium sanguineum;22557;actual measurement;germinule;8;;-4;;BIOLFLOR database;8;;;;;Air dried weight;;3 Geranium sanguineum;22557;actual measurement;one-seeded generative dispersule;9.648;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.648;;;50;;Air dried weight;;2a Geranium sibiricum;22558;actual measurement;germinule;3.089;;-4;;BIOLFLOR database;3.089;;;;;Air dried weight;;3 Geranium sibiricum;22558;actual measurement;one-seeded generative dispersule;3.089;;-4;;BIOLFLOR database;3.089;;;;;Air dried weight;;2a Geranium sylvaticum;22559;actual measurement;one-seeded generative dispersule;4.88;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.88;5.066666667;4.693333333;30;;Air dried weight;;2a Geranium sylvaticum;22559;actual measurement;one-seeded generative dispersule;6.299;;-4;;BIOLFLOR database;6.299;7.098;5.5;;;Air dried weight;;2a Geranium sylvaticum;22559;actual measurement;germinule;6.299;;-4;;BIOLFLOR database;6.299;7.098;5.5;;;Air dried weight;;3 Geranium sylvaticum;22559;actual measurement (following LEDA data standards);germinule;5.6;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;5.6;;;2;No. of seeds per individual: 1-4;Air dried weight;;3 Geranium sylvaticum;22559;actual measurement (following LEDA data standards);germinule;8.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;8.1;;;2;No. of seeds per individual: 1-4;Air dried weight;;3 Geranium sylvaticum;22559;actual measurement (following LEDA data standards);germinule;3.8;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;3.8;;;2;No. of seeds per individual: 1-4;Air dried weight;;3 Geranium sylvaticum;22559;actual measurement (following LEDA data standards);germinule;6.25;5;-2;6.25;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;6.09;8.1;3.8;;Preaggregated data obtained from single record. No. of seeds per individual: 1-4;;;3 Geranium sylvaticum;22559;actual measurement (following LEDA data standards);germinule;6.7;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;6.7;;;2;No. of seeds per individual: 1-4;Air dried weight;;3 Geranium sylvaticum;22559;actual measurement (following LEDA data standards);germinule;6.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;6.25;;;2;No. of seeds per individual: 1-4;Air dried weight;;3 Geum montanum;29982;actual measurement;germinule;1.762;;-4;;BIOLFLOR database;1.762;1.784;1.74;;;Air dried weight;;3 Geum montanum;29982;actual measurement;one-seeded generative dispersule;1.762;;-4;;BIOLFLOR database;1.762;1.784;1.74;;;Air dried weight;;2a Geum reptans;29707;actual measurement;generative dispersule;.849666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.849666667;1.016;.673;100;;Air dried weight;;2 Geum rivale;29366;actual measurement;germinule;1.402;;-4;;BIOLFLOR database;1.402;1.66;1.29;;;Air dried weight;;3 Geum rivale;29366;actual measurement;germinule;1.216;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.216;;;50;;Air dried weight;;3 Geum rivale;29366;actual measurement;one-seeded generative dispersule;1.402;;-4;;BIOLFLOR database;1.402;1.66;1.29;;;Air dried weight;;2a Geum rivale;29366;actual measurement;germinule;.671;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.671;;;50;;Air dried weight;;3 Geum rivale;29366;actual measurement;germinule;1.34;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.34;;;1;summers of 1995 and 1996;Unknown;;3 Geum rivale;29366;actual measurement;one-seeded generative dispersule;1.216;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.216;;;50;;Air dried weight;;2a Geum rivale;29366;actual measurement;one-seeded generative dispersule;.671;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.671;;;50;;Air dried weight;;2a Geum rivale;29366;other;one-seeded generative dispersule;.5352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geum rivale;29366;other;one-seeded generative dispersule;.9544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Geum rivale;29366;actual measurement;generative dispersule;1.4;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.4;1.4;1.4;1;;Air dried weight;;2 Geum rivale;29366;other;germinule;.9544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geum rivale;29366;other;germinule;.5352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Geum urbanum;30638;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.26;;;50;used balance: Mettler H51, seed with hook;Air dried weight;;2a Geum urbanum;30638;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.26;1;-2;3.26;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.26;3.26;3.26;;preaggregated value obtained from single record;Air dried weight;;2a Geum urbanum;30638;actual measurement;generative dispersule;2.477066667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.477066667;2.534666667;2.430666667;150;;Air dried weight;;2 Geum urbanum;30638;actual measurement;one-seeded generative dispersule;.732;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.732;;;100;;Air dried weight;;2a Geum urbanum;30638;actual measurement;germinule;.732;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.732;;;100;;Air dried weight;;3 Geum urbanum;30638;actual measurement;one-seeded generative dispersule;2.449;;-4;;BIOLFLOR database;2.449;2.894;1.85;;;Air dried weight;;2a Geum urbanum;30638;actual measurement;generative dispersule;1.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.02;;;1;n an replicates unknown;Air dried weight;;2 Geum urbanum;30638;actual measurement;germinule;2.449;;-4;;BIOLFLOR database;2.449;2.894;1.85;;;Air dried weight;;3 Gladiolus illyricus;36567;actual measurement;germinule;4.106;;-4;;BIOLFLOR database;4.106;4.6;3.621;;;Air dried weight;;3 Gladiolus illyricus;36567;actual measurement;one-seeded generative dispersule;4.106;;-4;;BIOLFLOR database;4.106;4.6;3.621;;;Air dried weight;;2a Gladiolus imbricatus;36569;actual measurement;one-seeded generative dispersule;2.92;;-4;;BIOLFLOR database;2.92;;;;;Air dried weight;;2a Gladiolus imbricatus;36569;actual measurement;germinule;2.92;;-4;;BIOLFLOR database;2.92;;;;;Air dried weight;;3 Gladiolus palustris;36576;actual measurement;germinule;2.525;;-4;;BIOLFLOR database;2.525;;;;;Air dried weight;;3 Gladiolus palustris;36576;actual measurement;germinule;1.66;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.66;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Gladiolus palustris;36576;actual measurement;one-seeded generative dispersule;2.752083333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.752083333;2.789583333;2.714583333;48;;Air dried weight;;2a Gladiolus palustris;36576;actual measurement;one-seeded generative dispersule;2.525;;-4;;BIOLFLOR database;2.525;;;;;Air dried weight;;2a Glaucium flavum;25533;actual measurement;one-seeded generative dispersule;1.148;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.148;1.153;1.143;1;;Air dried weight;;2a Glaucium flavum;25533;actual measurement;one-seeded generative dispersule;1.091;;-4;;BIOLFLOR database;1.091;;;;;Air dried weight;;2a Glaucium flavum;25533;actual measurement;germinule;1.091;;-4;;BIOLFLOR database;1.091;;;;;Air dried weight;;3 Glaucium flavum;25533;other;one-seeded generative dispersule;1.2664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Glaucium flavum;25533;other;one-seeded generative dispersule;.3308;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3308;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Glaucium flavum;25533;other;germinule;1.2664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Glaucium flavum;25533;other;germinule;.3308;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3308;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Glaux maritima;28861;actual measurement (following LEDA data standards);germinule;.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Glaux maritima;28861;actual measurement (following LEDA data standards);germinule;.36;1;-2;.36;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;.36;.36;;preaggregated value obtained from single record;Air dried weight;;3 Glaux maritima;28861;other;germinule;.4448;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4448;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Glaux maritima;28861;actual measurement;one-seeded generative dispersule;.1735;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1735;.177;.17;100;;Air dried weight;;2a Glechoma hederacea;24650;actual measurement;germinule;.686;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.686;;;100;;Air dried weight;;3 Glechoma hederacea;24650;actual measurement;one-seeded generative dispersule;.685;;-4;;BIOLFLOR database;.685;.69;.68;;;Air dried weight;;2a Glechoma hederacea;24650;actual measurement;germinule;.685;;-4;;BIOLFLOR database;.685;.69;.68;;;Air dried weight;;3 Glechoma hederacea;24650;actual measurement;generative dispersule;.6;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.6;.65;.52;1;;Air dried weight;;2 Glechoma hederacea;24650;actual measurement;one-seeded generative dispersule;.686;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.686;;;100;;Air dried weight;;2a Gleditsia triacanthos;20520;actual measurement;generative dispersule;185.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);185.2;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Globularia cordifolia;25184;actual measurement;germinule;.318;;-4;;BIOLFLOR database;.318;;;;;Air dried weight;;3 Globularia cordifolia;25184;actual measurement;germinule;.7;;-4;;BIOLFLOR database;.7;;;;;Air dried weight;;3 Globularia cordifolia;25184;actual measurement;one-seeded generative dispersule;.7;;-4;;BIOLFLOR database;.7;;;;;Air dried weight;;2a Globularia cordifolia;25184;actual measurement;one-seeded generative dispersule;.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.59;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Globularia nudicaulis;25197;actual measurement;one-seeded generative dispersule;.72;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.72;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Globularia punctata;25198;actual measurement;generative dispersule;.61;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.61;.68;.53;1;;Air dried weight;;2 Globularia punctata;25198;actual measurement;one-seeded generative dispersule;.66;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.66;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Globularia punctata;25198;actual measurement;one-seeded generative dispersule;.8;;-4;;BIOLFLOR database;.8;;;;;Air dried weight;;2a Globularia punctata;25198;actual measurement;germinule;.257;;-4;;BIOLFLOR database;.257;;;;;Air dried weight;;3 Globularia punctata;25198;actual measurement;germinule;.8;;-4;;BIOLFLOR database;.8;;;;;Air dried weight;;3 Glyceria declinata;42323;actual measurement;one-seeded generative dispersule;1.306;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.306;;;50;;Air dried weight;;2a Glyceria declinata;42323;actual measurement;generative dispersule;1.336;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.336;1.476;1.196;100;;Air dried weight;;2 Glyceria declinata;42323;other;germinule;1.02;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.02;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Glyceria fluitans;40814;actual measurement;one-seeded generative dispersule;1.197;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.197;;;50;;Air dried weight;;2a Glyceria fluitans;40814;actual measurement;one-seeded generative dispersule;1.2;;-4;;BIOLFLOR database;1.2;;;;;Air dried weight;;2a Glyceria fluitans;40814;actual measurement;germinule;1.197;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.197;;;50;;Air dried weight;;3 Glyceria fluitans;40814;actual measurement;germinule;1.2;;-4;;BIOLFLOR database;1.2;;;;;Air dried weight;;3 Glyceria maxima;40135;actual measurement;one-seeded generative dispersule;.789;;-4;;BIOLFLOR database;.789;.796;.68;;;Air dried weight;;2a Glyceria maxima;40135;actual measurement;germinule;.789;;-4;;BIOLFLOR database;.789;.796;.68;;;Air dried weight;;3 Glyceria maxima;40135;actual measurement;generative dispersule;.135;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.135;.143;.128;1;;Air dried weight;;2 Glyceria plicata;40816;actual measurement;generative dispersule;.3615;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3615;.37;.353;100;;Air dried weight;;2 Glyceria plicata;40816;actual measurement;germinule;1.017;;-4;;BIOLFLOR database;1.017;;;;;Air dried weight;;3 Glyceria plicata;40816;actual measurement;one-seeded generative dispersule;1.017;;-4;;BIOLFLOR database;1.017;;;;;Air dried weight;;2a Glyceria plicata;40816;actual measurement;one-seeded generative dispersule;1.48;;-4;;BIOLFLOR database;1.48;;;;;Air dried weight;;2a Glyceria striata;40817;actual measurement;one-seeded generative dispersule;.304;;-4;;BIOLFLOR database;.304;.312;.3;;;Air dried weight;;2a Glyceria striata;40817;actual measurement;one-seeded generative dispersule;.244;;-4;;BIOLFLOR database;.244;;;;;Air dried weight;;2a Glyceria striata;40817;actual measurement;germinule;.1615;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1615;.163;.16;100;;Air dried weight;;3 Glyceria striata;40817;actual measurement;germinule;.244;;-4;;BIOLFLOR database;.244;;;;;Air dried weight;;3 Gnaphalium luteo-album;7695;actual measurement;germinule;.014;;-4;;BIOLFLOR database;.014;.105;.013;;;Air dried weight;;3 Gnaphalium luteo-album;7695;actual measurement;one-seeded generative dispersule;.014;;-4;;BIOLFLOR database;.014;.105;.013;;;Air dried weight;;2a Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Goodyera repens;39636;actual measurement;germinule;.002;;-4;;BIOLFLOR database;.002;;;;;Air dried weight;;3 Goodyera repens;39636;actual measurement;one-seeded generative dispersule;.002;;-4;;BIOLFLOR database;.002;;;;;Air dried weight;;2a Gratiola officinalis;33117;actual measurement;one-seeded generative dispersule;.028;;-4;;BIOLFLOR database;.028;;;;;Air dried weight;;2a Gratiola officinalis;33117;actual measurement;one-seeded generative dispersule;.02;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.02;.02;.02;100;;Air dried weight;;2a Gratiola officinalis;33117;actual measurement;germinule;.028;;-4;;BIOLFLOR database;.028;;;;;Air dried weight;;3 Groenlandia densa;43982;actual measurement;one-seeded generative dispersule;2.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.13;;;30;;Air dried weight;;2a Groenlandia densa;43982;actual measurement (following LEDA data standards);germinule;2.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.15;;;30;used balance: Mettler H51, seed;Air dried weight;;3 Groenlandia densa;43982;actual measurement (following LEDA data standards);germinule;2.15;1;-2;2.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.15;2.15;2.15;;preaggregated value obtained from single record;Air dried weight;;3 Groenlandia densa;43982;other;germinule;2.1996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Groenlandia densa;43982;other;germinule;2.2716;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Guizotia abyssinica;7463;actual measurement;one-seeded generative dispersule;3.266;;-4;;BIOLFLOR database;3.266;3.314;3.233;;;Air dried weight;;2a Guizotia abyssinica;7463;actual measurement;germinule;3.266;;-4;;BIOLFLOR database;3.266;3.314;3.233;;;Air dried weight;;3 Gymnadenia conopsea;39638;actual measurement;germinule;.006;;-4;;BIOLFLOR database;.006;.008;.003;;;Air dried weight;;3 Gymnadenia conopsea;39638;actual measurement;one-seeded generative dispersule;.006;;-4;;BIOLFLOR database;.006;.008;.003;;;Air dried weight;;2a Gypsophila acutifolia;16502;actual measurement;germinule;.6202;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.6202;;;50;;Air dried weight;;3 Gypsophila fastigiata;16936;actual measurement;germinule;.439;;-4;;BIOLFLOR database;.439;;;;;Air dried weight;;3 Gypsophila fastigiata;16936;actual measurement;one-seeded generative dispersule;.439;;-4;;BIOLFLOR database;.439;;;;;Air dried weight;;2a Gypsophila muralis;16075;actual measurement;one-seeded generative dispersule;.032;;-4;;BIOLFLOR database;.032;.033;.031;;;Air dried weight;;2a Gypsophila muralis;16075;actual measurement;one-seeded generative dispersule;.0296;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0296;.03;.029;100;;Air dried weight;;2a Gypsophila muralis;16075;actual measurement;germinule;.032;;-4;;BIOLFLOR database;.032;.033;.031;;;Air dried weight;;3 Gypsophila paniculata;16941;actual measurement;germinule;.687;;-4;;BIOLFLOR database;.687;;;;;Air dried weight;;3 Gypsophila paniculata;16941;actual measurement;one-seeded generative dispersule;.687;;-4;;BIOLFLOR database;.687;;;;;Air dried weight;;2a Gypsophila repens;17131;actual measurement;one-seeded generative dispersule;.711;;-4;;BIOLFLOR database;.711;.764;.67;;;Air dried weight;;2a Gypsophila repens;17131;actual measurement;germinule;.711;;-4;;BIOLFLOR database;.711;.764;.67;;;Air dried weight;;3 Gypsophila scorzonerifolia Ser.;17132;actual measurement;germinule;.592;;-4;;BIOLFLOR database;.592;;;;;Air dried weight;;3 Gypsophila scorzonerifolia Ser.;17132;actual measurement;one-seeded generative dispersule;.592;;-4;;BIOLFLOR database;.592;;;;;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);germinule;1.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.34;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione pedunculata;17799;actual measurement (following LEDA data standards);germinule;1.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.61;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione pedunculata;17799;other;germinule;.7864;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Halimione pedunculata;17799;other;germinule;.8752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Halimione pedunculata;17799;other;germinule;.8824;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8824;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.77;10;-2;4.77;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.86;5.62;3.84;;preaggregated value obtained from single record;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.76;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.76;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.55;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.84;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.84;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.62;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.41;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.78;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.41;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.22;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.38;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Halimione pedunculata;17799;actual measurement (following LEDA data standards);germinule;1.39;5;-2;1.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.47;1.74;1.26;;preaggregated value obtained from single record;Air dried weight;;3 Halimione pedunculata;17799;actual measurement (following LEDA data standards);germinule;1.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.26;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione pedunculata;17799;actual measurement (following LEDA data standards);germinule;1.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.74;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione pedunculata;17799;actual measurement (following LEDA data standards);germinule;1.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.39;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;4.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.14;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;3.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.07;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;3.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.48;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;3.43;10;-2;3.43;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.95;4.24;0;;preaggregated value obtained from single record;Air dried weight;;3 Halimione portulacoides;17931;other;germinule;5.0752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.0752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Halimione portulacoides;17931;other;germinule;.9784;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9784;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;3.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.17;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;3.85;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.85;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;4.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;4.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.19;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Halimione portulacoides;17931;actual measurement (following LEDA data standards);germinule;3.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.37;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hedera helix;2449;other;germinule;27.69;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);27.69;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hedera helix;2449;other;germinule;31.6516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);31.6516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hedera helix;2449;other;germinule;15.4928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.4928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hedera helix;2449;actual measurement;one-seeded generative dispersule;12.7;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.7;;;25;;Air dried weight;;2a Hedera helix;2449;actual measurement;one-seeded generative dispersule;20.43;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.43;;;20;;Air dried weight;;2a Hedera helix;2449;actual measurement;germinule;20.43;;-4;;BIOLFLOR database;20.43;;;;;Air dried weight;;3 Hedera helix;2449;actual measurement;generative dispersule;205;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;205;;;1;n and replicates unknown;Air dried weight;;2 Hedera helix;2449;actual measurement;generative dispersule;256.167;;-4;;BIOLFLOR database;256.167;358.6;205;;;Unknown;;2 Hedypnois cretica;9226;actual measurement;germinule;1.18767;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.18767;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Hedypnois cretica;9226;actual measurement;one-seeded generative dispersule;.51;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.51;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Hedysarum hedysaroides;21399;actual measurement;one-seeded generative dispersule;7.425;;-4;;BIOLFLOR database;7.425;7.5;7.26;;;Air dried weight;;2a Hedysarum hedysaroides;21399;actual measurement;germinule;4.125;;-4;;BIOLFLOR database;4.125;4.4;3.85;;;Air dried weight;;3 Hedysarum hedysaroides;21399;actual measurement;germinule;5.46;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.46;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Hedysarum hedysaroides;21399;actual measurement;germinule;7.425;;-4;;BIOLFLOR database;7.425;7.5;7.26;;;Air dried weight;;3 Helianthemum apenninum;18679;actual measurement;germinule;1.34;;-4;;BIOLFLOR database;1.34;1.4;1.22;;;Air dried weight;;3 Helianthemum apenninum;18679;actual measurement;one-seeded generative dispersule;1.34;;-4;;BIOLFLOR database;1.34;1.4;1.22;;;Air dried weight;;2a Helianthemum apenninum;18679;other;one-seeded generative dispersule;1.274;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.274;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Helianthemum apenninum;18679;other;germinule;1.274;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.274;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Helianthemum canum;18656;actual measurement;one-seeded generative dispersule;.977;;-4;;BIOLFLOR database;.977;1.4;.7;;;Air dried weight;;2a Helianthemum canum;18656;actual measurement;unknown;.39;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.39;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Helianthemum canum;18656;actual measurement;germinule;.977;;-4;;BIOLFLOR database;.977;1.4;.7;;;Air dried weight;;3 Helianthemum nummularium;18594;actual measurement;generative dispersule;.984;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.984;1.038666667;.921333333;150;;Air dried weight;;2 Helianthemum nummularium;18594;actual measurement;generative dispersule;.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.5;;;1;n an replicates unknown;Air dried weight;;2 Helianthemum nummularium;18594;actual measurement;generative dispersule;1.24;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.24;;;1;n and replicates unknown;Air dried weight;;2 Helianthemum nummularium;18594;actual measurement;germinule;1.381;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.381;;;50;;Air dried weight;;3 Helianthemum nummularium;18594;actual measurement;germinule;1.375;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.375;;;60;;Air dried weight;;3 Helianthemum nummularium;18594;actual measurement;germinule;.57;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.57;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Helianthemum nummularium;18594;actual measurement;germinule;1.122;;-4;;BIOLFLOR database;1.122;1.329;.72;;;Air dried weight;;3 Helianthemum nummularium;18594;actual measurement;germinule;.948;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.948;;;1;summers of 1995 and 1996;Unknown;;3 Helianthemum nummularium;18594;actual measurement;one-seeded generative dispersule;1.381;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.381;;;50;;Air dried weight;;2a Helianthemum nummularium;18594;actual measurement;one-seeded generative dispersule;1.122;;-4;;BIOLFLOR database;1.122;1.329;.72;;;Air dried weight;;2a Helianthemum nummularium;18594;actual measurement;one-seeded generative dispersule;1.375;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.375;;;60;;Air dried weight;;2a Helianthemum nummularium s. nummularium;18632;actual measurement (following LEDA data standards);germinule;1.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.08;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Helianthemum nummularium s. nummularium;18632;actual measurement (following LEDA data standards);germinule;1.08;1;-2;1.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.08;1.08;1.08;;preaggregated value obtained from single record;Air dried weight;;3 Helianthemum oelandicum;18580;actual measurement;germinule;.51;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.51;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Helianthemum oelandicum s. alpestre;18606;actual measurement;germinule;.924;;-4;;BIOLFLOR database;.924;;;;;Air dried weight;;3 Helianthemum oelandicum s. alpestre;18606;actual measurement;unknown;.6;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.6;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Helianthemum oelandicum s. alpestre;18606;actual measurement;one-seeded generative dispersule;.924;;-4;;BIOLFLOR database;.924;;;;;Air dried weight;;2a Helianthemum salicifolium;18548;actual measurement;generative dispersule;.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29;;;1;n an replicates unknown;Air dried weight;;2 Helichrysum arenarium;7066;actual measurement;germinule;.052;;-4;;BIOLFLOR database;.052;.053;.051;;;Air dried weight;;3 Helichrysum arenarium;7066;actual measurement;one-seeded generative dispersule;.052;;-4;;BIOLFLOR database;.052;.053;.051;;;Air dried weight;;2a Heliopsis helianthoides;7176;actual measurement;unknown;4.154;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4.154;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Heliotropium ellipticum;12432;actual measurement;generative dispersule;.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.5;;;1;n an replicates unknown;Air dried weight;;2 Helleborus foetidus;27081;actual measurement;germinule;11.294;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);11.294;;;5;;Air dried weight;;3 Helleborus foetidus;27081;other;germinule;11.4228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.4228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Helleborus niger;26973;actual measurement;one-seeded generative dispersule;8.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);8.59;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Helleborus viridis;27076;actual measurement;one-seeded generative dispersule;.896;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.896;;;50;;Air dried weight;;2a Helleborus viridis;27076;actual measurement;one-seeded generative dispersule;12.5;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];12.5;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Helleborus viridis;27076;actual measurement;germinule;11.35;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];11.35;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Helleborus viridis;27076;other;germinule;11.8692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.8692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hemerocallis lilioasphodelus;38653;actual measurement;germinule;30.66;;-4;;BIOLFLOR database;30.66;;;;;Air dried weight;;3 Hemerocallis lilioasphodelus;38653;actual measurement;one-seeded generative dispersule;30.66;;-4;;BIOLFLOR database;30.66;;;;;Air dried weight;;2a Hepatica nobilis;26984;actual measurement;one-seeded generative dispersule;2.27;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.27;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Hepatica nobilis;26984;actual measurement;germinule;2.3605;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.3605;;;100;;Air dried weight;;3 Heracleum mantegazzianum;1295;actual measurement;one-seeded generative dispersule;12.517;;-4;;BIOLFLOR database;12.517;23.2;4.6;;;Air dried weight;;2a Heracleum mantegazzianum;1295;actual measurement;germinule;12.698;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.698;;;50;;Air dried weight;;3 Heracleum mantegazzianum;1295;actual measurement;germinule;11.906;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11.906;;;25;;Air dried weight;;3 Heracleum mantegazzianum;1295;actual measurement;germinule;12.517;;-4;;BIOLFLOR database;12.517;23.2;4.6;;;Air dried weight;;3 Heracleum mantegazzianum;1295;actual measurement;one-seeded generative dispersule;11.906;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11.906;;;25;;Air dried weight;;2a Heracleum mantegazzianum;1295;actual measurement;one-seeded generative dispersule;12.698;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.698;;;50;;Air dried weight;;2a Heracleum sibiricum;62348;actual measurement;generative dispersule;6.266;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.266;6.372;6.16;50;;Air dried weight;;2 Heracleum sphondylium;1232;other;one-seeded generative dispersule;6.0804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Heracleum sphondylium;1232;other;one-seeded generative dispersule;5.1624;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.1624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Heracleum sphondylium;1232;actual measurement;one-seeded generative dispersule;5.876;;-4;;BIOLFLOR database;5.876;10;2;;;Air dried weight;;2a Heracleum sphondylium;1232;actual measurement;germinule;5.524;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.524;;;25;;Air dried weight;;3 Heracleum sphondylium;1232;actual measurement;germinule;6.918;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.918;;;50;;Air dried weight;;3 Heracleum sphondylium;1232;actual measurement;germinule;5.876;;-4;;BIOLFLOR database;5.876;10;2;;;Air dried weight;;3 Heracleum sphondylium;1232;actual measurement;one-seeded generative dispersule;6.918;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.918;;;50;;Air dried weight;;2a Heracleum sphondylium;1232;actual measurement;one-seeded generative dispersule;5.524;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.524;;;25;;Air dried weight;;2a Heracleum sphondylium;1232;other;germinule;5.1624;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.1624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Heracleum sphondylium;1232;other;germinule;6.0804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Herniaria alpina;15801;actual measurement;unknown;.21;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.21;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Herniaria ciliolata;15803;other;unknown;.14848;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.14848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Herniaria ciliolata;15803;other;unknown;.1264;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Herniaria glabra;16521;other;germinule;.0912;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0912;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Herniaria glabra;16521;other;germinule;.0744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Herniaria glabra;16521;other;germinule;.10032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.10032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Herniaria glabra;16521;other;germinule;.0792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Herniaria glabra;16521;other;germinule;.0568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Herniaria glabra;16521;actual measurement;germinule;.066;;-4;;BIOLFLOR database;.066;.072;.06;;;Air dried weight;;3 Herniaria glabra;16521;actual measurement;one-seeded generative dispersule;.066;;-4;;BIOLFLOR database;.066;.072;.06;;;Air dried weight;;2a Herniaria glabra;16521;other;one-seeded generative dispersule;.0568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Herniaria glabra;16521;other;one-seeded generative dispersule;.0912;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0912;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Herniaria glabra;16521;other;one-seeded generative dispersule;.10032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.10032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Herniaria glabra;16521;other;one-seeded generative dispersule;.0744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Herniaria glabra;16521;other;one-seeded generative dispersule;.0792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Herniaria hirsuta;17001;actual measurement;germinule;.04767;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.04767;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Herniaria hirsuta;17001;actual measurement;germinule;.048;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.048;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Herniaria hirsuta;17001;actual measurement;germinule;.05;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.05;;;30;collected between 1996-1999;Air dried weight;;3 Herniaria hirsuta;17001;actual measurement;germinule;.079;;-4;;BIOLFLOR database;.079;.082;.077;;;Air dried weight;;3 Herniaria incana;15807;actual measurement;unknown;.14;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.14;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Hesperis matronalis;14004;actual measurement;generative dispersule;1.7336;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.7336;1.77;1.679333333;150;;Air dried weight;;2 Hesperis matronalis;14004;actual measurement;germinule;2.6;;-4;;BIOLFLOR database;2.6;3;2.195;;;Air dried weight;;3 Hesperis matronalis;14004;actual measurement;germinule;2.752;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.752;;;50;;Air dried weight;;3 Hesperis matronalis;14004;actual measurement;germinule;1.932;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.932;;;50;;Air dried weight;;3 Hesperis matronalis;14004;actual measurement;one-seeded generative dispersule;2.6;;-4;;BIOLFLOR database;2.6;3;2.195;;;Air dried weight;;2a Hesperis matronalis;14004;actual measurement;one-seeded generative dispersule;2.752;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.752;;;50;;Air dried weight;;2a Hesperis matronalis;14004;actual measurement;one-seeded generative dispersule;1.932;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.932;;;50;;Air dried weight;;2a Hibiscus trionum;25723;actual measurement;one-seeded generative dispersule;5.724;;-4;;BIOLFLOR database;5.724;;;;;Air dried weight;;2a Hibiscus trionum;25723;actual measurement;germinule;5.724;;-4;;BIOLFLOR database;5.724;;;;;Air dried weight;;3 Hieracium acuminatum;7467;actual measurement;germinule;.437;;-4;;BIOLFLOR database;.437;.489;.384;;;Air dried weight;;3 Hieracium acuminatum;7467;other;germinule;.4056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hieracium alpinum;30615;unknown;generative dispersule;1.014;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];1.014;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Hieracium alpinum gr.;8507;actual measurement;germinule;.8237;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.8237;;;100;;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement;germinule;.551;;-4;;BIOLFLOR database;.551;.593;.511;;;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.7;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.7;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.86;10;-2;.86;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.85;1;.7;;preaggregated value obtained from single record;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.77;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.77;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.87;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.87;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.98;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.81;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.81;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.86;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);one-seeded generative dispersule;.78;1;-2;.78;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.78;.78;.78;;preaggregated value obtained from single record;Air dried weight;;2a Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);one-seeded generative dispersule;.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.78;;;50;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.85;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.85;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);germinule;.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);germinule;.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;;;100;used balance: Mettler Toledo 4, seed without pappus;Air dried weight;;3 Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);one-seeded generative dispersule;.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.16;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);germinule;.13;1;-2;.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;.13;.13;;preaggregated value obtained from single record;Air dried weight;;3 Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);one-seeded generative dispersule;.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);one-seeded generative dispersule;.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);one-seeded generative dispersule;.16;4;-2;.16;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.16;.18;.14;;preaggregated value obtained from single record;Air dried weight;;2a Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);one-seeded generative dispersule;.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hieracium aurantiacum;7024;actual measurement;germinule;.152;;-4;;BIOLFLOR database;.152;.16;.137;;;Air dried weight;;3 Hieracium aurantiacum;7024;actual measurement;one-seeded generative dispersule;.1245;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1245;.125;.124;100;;Air dried weight;;2a Hieracium bifidum;14677;actual measurement;one-seeded generative dispersule;.5;;-4;;BIOLFLOR database;.5;;;;;Air dried weight;;2a Hieracium bifidum;14677;actual measurement;germinule;.5;;-4;;BIOLFLOR database;.5;;;;;Air dried weight;;3 Hieracium bupleuroides;36033;actual measurement;germinule;.699;;-4;;BIOLFLOR database;.699;;;;;Air dried weight;;3 Hieracium caespitosum;8116;actual measurement;one-seeded generative dispersule;.1065;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1065;.11;.103;1;;Air dried weight;;2a Hieracium cymosum;6921;actual measurement;germinule;.115;;-4;;BIOLFLOR database;.115;.118;.112;;;Air dried weight;;3 Hieracium dentatum;22806;actual measurement;germinule;1.02;;-4;;BIOLFLOR database;1.02;;;;;Air dried weight;;3 Hieracium echioides;6543;actual measurement;germinule;.161;;-4;;BIOLFLOR database;.161;.167;.157;;;Air dried weight;;3 Hieracium flagellare;7042;actual measurement;one-seeded generative dispersule;.074;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.074;;;50;;Air dried weight;;2a Hieracium flagellare;7042;actual measurement;one-seeded generative dispersule;.09;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.09;;;100;;Air dried weight;;2a Hieracium flagellare;7042;actual measurement;one-seeded generative dispersule;.116;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.116;;;50;;Air dried weight;;2a Hieracium franconicum;7806;actual measurement;germinule;.709;;-4;;BIOLFLOR database;.709;;;;;Air dried weight;;3 Hieracium glaucum;36455;actual measurement;germinule;.9;;-4;;BIOLFLOR database;.9;;;;;Air dried weight;;3 Hieracium glaucum;36455;actual measurement;one-seeded generative dispersule;.9;;-4;;BIOLFLOR database;.9;;;;;Air dried weight;;2a Hieracium intybaceum;7054;actual measurement;germinule;.714;;-4;;BIOLFLOR database;.714;;;;;Air dried weight;;3 Hieracium lactucella;7271;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;3 Hieracium lactucella;7271;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;2a Hieracium laevigatum;44220;actual measurement;one-seeded generative dispersule;.525;;-4;;BIOLFLOR database;.525;.565;.485;;;Air dried weight;;2a Hieracium laevigatum;44220;actual measurement;germinule;.525;;-4;;BIOLFLOR database;.525;.565;.485;;;Air dried weight;;3 Hieracium laevigatum;44220;actual measurement (following LEDA data standards);germinule;.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.43;;;50;used balance: Mettler Toledo 4, seed without pappus;Air dried weight;;3 Hieracium laevigatum;44220;actual measurement (following LEDA data standards);one-seeded generative dispersule;.29;1;-2;.29;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;.29;.29;;preaggregated value obtained from single record;Air dried weight;;2a Hieracium laevigatum;44220;actual measurement (following LEDA data standards);one-seeded generative dispersule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hieracium laevigatum;44220;actual measurement (following LEDA data standards);germinule;.43;1;-2;.43;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.43;.43;.43;;preaggregated value obtained from single record;Air dried weight;;3 Hieracium laurinum;7752;actual measurement;germinule;.933;;-4;;BIOLFLOR database;.933;;;;;Air dried weight;;3 Hieracium maculatum;16770;actual measurement;generative dispersule;.584;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.584;.69;.5;1;;Air dried weight;;2 Hieracium maculatum;16770;other;germinule;.3872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hieracium murorum;14443;actual measurement;germinule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;3 Hieracium murorum;14443;actual measurement;one-seeded generative dispersule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;2a Hieracium peleteranum s. tenuiscapum;7852;actual measurement;germinule;.198;;-4;;BIOLFLOR database;.198;.202;.196;;;Air dried weight;;3 Hieracium pilosella;6658;actual measurement;generative dispersule;1.45;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.45;;;1;n an replicates unknown;Air dried weight;;2 Hieracium pilosella;6658;actual measurement;germinule;.149;;-4;;BIOLFLOR database;.149;.185;.1;;;Air dried weight;;3 Hieracium pilosella;6658;actual measurement;germinule;.155;;-4;;BIOLFLOR database;.155;.23;.1;;;Air dried weight;;3 Hieracium pilosella;6658;actual measurement;germinule;.152;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.152;;;98;;Air dried weight;;3 Hieracium pilosella;6658;actual measurement;germinule;.144;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.144;;;50;;Air dried weight;;3 Hieracium pilosella;6658;actual measurement;germinule;.232;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.232;;;100;;Air dried weight;;3 Hieracium pilosella;6658;actual measurement;germinule;.27;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.27;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Hieracium pilosella;6658;actual measurement;germinule;.105;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.105;;;1;summers of 1995 and 1996;Unknown;;3 Hieracium pilosella;6658;actual measurement;one-seeded generative dispersule;.144;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.144;;;50;;Air dried weight;;2a Hieracium pilosella;6658;actual measurement;one-seeded generative dispersule;.152;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.152;;;98;;Air dried weight;;2a Hieracium pilosella;6658;actual measurement;one-seeded generative dispersule;.232;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.232;;;100;;Air dried weight;;2a Hieracium pilosella;6658;actual measurement;one-seeded generative dispersule;.155;;-4;;BIOLFLOR database;.155;.23;.1;;;Air dried weight;;2a Hieracium pilosella;6658;actual measurement;generative dispersule;.11;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.11;.123333333;.096666667;30;;Air dried weight;;2 Hieracium pilosella;6658;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hieracium pilosella;6658;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-2;.11;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;.11;.11;;preaggregated value obtained from single record;Air dried weight;;2a Hieracium piloselloides;6837;actual measurement;generative dispersule;.72;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.72;.78;.52;1;;Air dried weight;;2 Hieracium piloselloides;6837;actual measurement;one-seeded generative dispersule;.124;;-4;;BIOLFLOR database;.124;;;;;Air dried weight;;2a Hieracium piloselloides;6837;actual measurement;germinule;.124;;-4;;BIOLFLOR database;.124;;;;;Air dried weight;;3 Hieracium porrifolium;7322;actual measurement;germinule;.64;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.64;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Hieracium sabaudum;44218;actual measurement;germinule;.555;;-4;;BIOLFLOR database;.555;.653;.504;;;Air dried weight;;3 Hieracium sabaudum;44218;other;germinule;.3852;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3852;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hieracium schmidtii;19273;actual measurement;germinule;.633;;-4;;BIOLFLOR database;.633;.635;.63;;;Air dried weight;;3 Hieracium tridentatum;7223;actual measurement;generative dispersule;.333333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.333333333;.346666667;.32;1;;Air dried weight;;2 Hieracium umbellatum;7093;actual measurement;germinule;.378533333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.378533333;.396666667;.356666667;150;;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.39;10;-2;.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;.49;.3;;preaggregated value obtained from single record;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.38;1;-2;.38;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;.38;.38;;preaggregated value obtained from single record;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.33;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.45;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;3 Hieracium umbellatum;7093;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hieracium valdepilosum;22807;actual measurement;one-seeded generative dispersule;1.24;;-4;;BIOLFLOR database;1.24;1.274;1.212;;;Air dried weight;;2a Hieracium valdepilosum;22807;actual measurement;germinule;1.24;;-4;;BIOLFLOR database;1.24;1.274;1.212;;;Air dried weight;;3 Hieracium villosum;22612;actual measurement;germinule;.73;;-4;;BIOLFLOR database;.73;.737;.724;;;Air dried weight;;3 Hieracium vulgatum;17779;actual measurement (following LEDA data standards);one-seeded generative dispersule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hieracium vulgatum;17779;actual measurement (following LEDA data standards);one-seeded generative dispersule;.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;;;100;used balance: Mettler Toledo 4, seed with pappus;Air dried weight;;2a Hieracium vulgatum;17779;actual measurement (following LEDA data standards);one-seeded generative dispersule;.34;1;-2;.34;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;.34;.34;;preaggregated value obtained from single record;Air dried weight;;2a Hieracium vulgatum;17779;other;germinule;.3524;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hieracium vulgatum;17779;actual measurement (following LEDA data standards);one-seeded generative dispersule;.59;1;-2;.59;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;.59;.59;;preaggregated value obtained from single record;Air dried weight;;2a Hieracium vulgatum gr.;7774;actual measurement;generative dispersule;.475;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.475;.52;.43;1;;Air dried weight;;2 Hieracium x fallax;8975;actual measurement;germinule;.108;;-4;;BIOLFLOR database;.108;;;;;Air dried weight;;3 Hieracium x fallax;8975;actual measurement;one-seeded generative dispersule;.108;;-4;;BIOLFLOR database;.108;;;;;Air dried weight;;2a Hieracium x floribundum;8859;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;3 Hieracium x floribundum;8859;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;2a Hierochloe australis;42515;actual measurement;one-seeded generative dispersule;1.154;;-4;;BIOLFLOR database;1.154;1.165;1.145;;;Air dried weight;;2a Hierochloe australis;42515;actual measurement;one-seeded generative dispersule;.6645;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.6645;.73;.599;100;;Air dried weight;;2a Hierochloe australis;42515;actual measurement;germinule;.831;;-4;;BIOLFLOR database;.831;.85;.811;;;Air dried weight;;3 Hierochloe australis;42515;actual measurement;germinule;1.154;;-4;;BIOLFLOR database;1.154;1.165;1.145;;;Air dried weight;;3 Hierochloe odorata;42519;actual measurement;one-seeded generative dispersule;.639;;-4;;BIOLFLOR database;.639;;;;;Air dried weight;;2a Hierochloe odorata;42519;actual measurement;one-seeded generative dispersule;.75825;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.75825;.778;.738;100;;Air dried weight;;2a Hierochloe odorata;42519;actual measurement;germinule;.639;;-4;;BIOLFLOR database;.639;;;;;Air dried weight;;3 Hippocrepis comosa;21868;actual measurement;germinule;2.91;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.91;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Hippocrepis comosa;21868;actual measurement;germinule;4.24;;-4;;BIOLFLOR database;4.24;4.48;4;;;Air dried weight;;3 Hippocrepis comosa;21868;actual measurement;germinule;3.194;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.194;;;50;;Air dried weight;;3 Hippocrepis comosa;21868;actual measurement;one-seeded generative dispersule;4.24;;-4;;BIOLFLOR database;4.24;4.48;4;;;Air dried weight;;2a Hippocrepis comosa;21868;actual measurement;one-seeded generative dispersule;3.194;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.194;;;50;;Air dried weight;;2a Hippocrepis comosa;21868;other;one-seeded generative dispersule;3.8952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hippocrepis comosa;21868;other;one-seeded generative dispersule;4.084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hippocrepis comosa;21868;other;germinule;4.084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hippocrepis comosa;21868;other;germinule;3.8952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hippophae rhamnoides;19002;other;germinule;12.4852;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.4852;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hippophae rhamnoides;19002;actual measurement;multi-seeded generative dispersule;20.5685;8;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;20.5685;23.84;18.664;25;;Air dried weight;;2b Hippophae rhamnoides;19002;actual measurement;germinule;11.012;;-4;;BIOLFLOR database;11.012;14;7.5;;;Air dried weight;;3 Hippophae rhamnoides;19002;actual measurement;one-seeded generative dispersule;9.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.02;;;50;;Air dried weight;;2a Hippophae rhamnoides;19002;actual measurement;generative dispersule;250.777;;-4;;BIOLFLOR database;250.777;286.77;216.392;;;Air dried weight;;2 Hippuris vulgaris;24425;actual measurement;germinule;.935;;-4;;BIOLFLOR database;.935;;;;;Air dried weight;;3 Hippuris vulgaris;24425;actual measurement;one-seeded generative dispersule;.746;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.746;;;50;;Air dried weight;;2a Hippuris vulgaris;24425;other;germinule;1.0224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hippuris vulgaris;24425;other;germinule;.6512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hirschfeldia incana;14011;other;germinule;.4356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4356;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Hirschfeldia incana;14011;actual measurement;one-seeded generative dispersule;.364;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.364;;;50;;Air dried weight;;2a Hirschfeldia incana;14011;actual measurement;generative dispersule;.18;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.18;;;1;n an replicates unknown;Air dried weight;;2 Holcus lanatus;42613;other;one-seeded generative dispersule;.3572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Holcus lanatus;42613;actual measurement;generative dispersule;.3527;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3527;.375;.335333333;150;;Air dried weight;;2 Holcus lanatus;42613;other;one-seeded generative dispersule;.5612;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5612;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Holcus lanatus;42613;actual measurement;one-seeded generative dispersule;.361;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.361;;;50;;Air dried weight;;2a Holcus lanatus;42613;actual measurement;one-seeded generative dispersule;.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Holcus lanatus;42613;actual measurement;one-seeded generative dispersule;.322;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.322;;;50;;Air dried weight;;2a Holcus lanatus;42613;actual measurement;germinule;.31;;-4;;BIOLFLOR database;.31;.32;.3;;;Air dried weight;;3 Holcus lanatus;42613;actual measurement;germinule;.361;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.361;;;50;;Air dried weight;;3 Holcus lanatus;42613;actual measurement;germinule;.348;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.348;;;50;;Air dried weight;;3 Holcus lanatus;42613;actual measurement;germinule;.322;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.322;;;50;;Air dried weight;;3 Holcus lanatus;42613;actual measurement;one-seeded generative dispersule;.466;;-4;;BIOLFLOR database;.466;.508;.4;;;Air dried weight;;2a Holcus lanatus;42613;actual measurement;one-seeded generative dispersule;.31;;-4;;BIOLFLOR database;.31;.32;.3;;;Air dried weight;;2a Holcus lanatus;42613;actual measurement;one-seeded generative dispersule;.348;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.348;;;50;;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;;;100;used balance: Mettler H51, seed;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);germinule;.22;1;-2;.22;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;.22;.22;;preaggregated value obtained from single record;Air dried weight;;3 Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.45;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;other;germinule;.5612;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5612;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Holcus lanatus;42613;other;germinule;.3572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.48;10;-2;.48;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;.58;.4;;preaggregated value obtained from single record;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.47;1;-2;.47;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;.47;.47;;preaggregated value obtained from single record;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.46;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.53;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.58;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus lanatus;42613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.51;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.51;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Holcus mollis;42614;actual measurement (following LEDA data standards);one-seeded generative dispersule;.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.44;;;40;used balance: Mettler Toledo 4, disp. unit;Air dried weight;;2a Holcus mollis;42614;actual measurement (following LEDA data standards);one-seeded generative dispersule;.44;1;-2;.44;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.44;.44;.44;;preaggregated value obtained from single record;Air dried weight;;2a Holcus mollis;42614;actual measurement;germinule;.308;;-4;;BIOLFLOR database;.308;.32;.295;;;Air dried weight;;3 Holcus mollis;42614;actual measurement;one-seeded generative dispersule;.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.192;;;50;;Air dried weight;;2a Holcus mollis;42614;actual measurement;generative dispersule;.3;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3;.3;.3;1;;Air dried weight;;2 Holcus mollis;42614;actual measurement;germinule;.477;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.477;;;50;;Air dried weight;;3 Holcus mollis;42614;actual measurement;germinule;.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.192;;;50;;Air dried weight;;3 Holcus mollis;42614;actual measurement;one-seeded generative dispersule;.477;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.477;;;50;;Air dried weight;;2a Holcus mollis;42614;actual measurement;one-seeded generative dispersule;.308;;-4;;BIOLFLOR database;.308;.32;.295;;;Air dried weight;;2a Holcus mollis;42614;actual measurement;one-seeded generative dispersule;.35;;-4;;BIOLFLOR database;.35;.4;.3;;;Air dried weight;;2a Holosteum umbellatum;17010;actual measurement;one-seeded generative dispersule;.08;;-4;;BIOLFLOR database;.08;.085;.075;;;Air dried weight;;2a Holosteum umbellatum;17010;actual measurement;germinule;.08;;-4;;BIOLFLOR database;.08;.085;.075;;;Air dried weight;;3 Homogyne alpina;9177;actual measurement;germinule;.238;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.238;.244;.232;100;;Air dried weight;;3 Homogyne alpina;9177;actual measurement;generative dispersule;1.28;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.28;1.32;1.24;20;;Air dried weight;;2 Homogyne alpina;9177;actual measurement;generative dispersule;.855344444;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.855344444;1.276;.1167;100;;Air dried weight;;2 Honkenya peploides;16523;actual measurement;germinule;8.518;;-4;;BIOLFLOR database;8.518;;;;;Air dried weight;;3 Honkenya peploides;16523;actual measurement;one-seeded generative dispersule;8.518;;-4;;BIOLFLOR database;8.518;;;;;Air dried weight;;2a Honkenya peploides;16523;actual measurement;one-seeded generative dispersule;7.4705;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.4705;7.481;7.46;100;;Air dried weight;;2a Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.33;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.37;10;-2;.37;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;.4;.33;;preaggregated value obtained from single record;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.35;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Honkenya peploides;16523;actual measurement (following LEDA data standards);germinule;.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Hordelymus europaeus;42617;other;germinule;6.684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hordelymus europaeus;42617;other;germinule;8.4992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);8.4992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hordelymus europaeus;42617;other;germinule;7.2508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.2508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hordelymus europaeus;42617;actual measurement;one-seeded generative dispersule;7.767;;-4;;BIOLFLOR database;7.767;8.133;7.4;;;Air dried weight;;2a Hordelymus europaeus;42617;actual measurement;one-seeded generative dispersule;4.927;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.927;4.927;4.927;1;;Air dried weight;;2a Hordelymus europaeus;42617;other;one-seeded generative dispersule;7.2508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.2508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hordelymus europaeus;42617;other;one-seeded generative dispersule;6.684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hordelymus europaeus;42617;other;one-seeded generative dispersule;8.4992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);8.4992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hordelymus europaeus;42617;actual measurement;germinule;4.226;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.226;;;50;;Air dried weight;;3 Hordelymus europaeus;42617;actual measurement;one-seeded generative dispersule;4.226;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.226;;;50;;Air dried weight;;2a Hordelymus europaeus;42617;actual measurement;germinule;7.767;;-4;;BIOLFLOR database;7.767;8.133;7.4;;;Air dried weight;;3 Hordelymus europaeus;42617;actual measurement;one-seeded generative dispersule;6.335;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.335;;;20;;Air dried weight;;2a Hordelymus europaeus;42617;actual measurement;one-seeded generative dispersule;8.01;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.01;;;50;;Air dried weight;;2a Hordelymus europaeus;42617;actual measurement;germinule;8.01;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.01;;;50;;Air dried weight;;3 Hordelymus europaeus;42617;actual measurement;germinule;6.335;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.335;;;20;;Air dried weight;;3 Hordeum distichon;43701;actual measurement;generative dispersule;58.28;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;58.28;58.4;58.2;1;;Air dried weight;;2 Hordeum jubatum;43702;actual measurement;one-seeded generative dispersule;.871;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.871;;;96;;Air dried weight;;2a Hordeum murinum;42447;actual measurement;generative dispersule;.38;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.38;;;1;n an replicates unknown;Air dried weight;;2 Hordeum murinum;42447;actual measurement;germinule;5.198701299;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.198701299;5.198701299;5.198701299;77;;Air dried weight;;3 Hordeum murinum;42447;actual measurement;one-seeded generative dispersule;6.548;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.548;;;50;;Air dried weight;;2a Hordeum murinum;42447;actual measurement (following LEDA data standards);one-seeded generative dispersule;17.11;1;-2;17.11;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.11;17.11;17.11;;preaggregated value obtained from single record;Air dried weight;;2a Hordeum murinum;42447;actual measurement (following LEDA data standards);one-seeded generative dispersule;17.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.11;;;7;used balance: Mettler Toledo 4, disp. unit with 3 needles;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.53;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.62;10;-2;3.62;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.63;4.11;3.37;;preaggregated value obtained from single record;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.11;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.65;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.46;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.37;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.66;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.79;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.58;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.7;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.7;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement (following LEDA data standards);one-seeded generative dispersule;3.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.49;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Hordeum secalinum;43182;actual measurement;one-seeded generative dispersule;4.178;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.178;;;50;;Air dried weight;;2a Hordeum secalinum;43182;actual measurement;one-seeded generative dispersule;3.735;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.735;;;37;;Air dried weight;;2a Hordeum vulgare;42448;actual measurement;one-seeded generative dispersule;37.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37.81;;;100;;Air dried weight;;2a Hordeum vulgare;42448;actual measurement;germinule;44;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;58;30;1;n and replicates unknown;Air dried weight;;3 Horminum pyrenaicum;25138;actual measurement;one-seeded generative dispersule;1.011;;-4;;BIOLFLOR database;1.011;;;;;Air dried weight;;2a Horminum pyrenaicum;25138;actual measurement;germinule;.71;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.71;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Horminum pyrenaicum;25138;actual measurement;germinule;1.011;;-4;;BIOLFLOR database;1.011;;;;;Air dried weight;;3 Hornungia petraea;14530;actual measurement;germinule;.07;;-4;;BIOLFLOR database;.07;;;;;Air dried weight;;3 Hornungia petraea;14530;actual measurement;germinule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;20;;Air dried weight;;3 Hornungia petraea;14530;actual measurement;one-seeded generative dispersule;.07;;-4;;BIOLFLOR database;.07;;;;;Air dried weight;;2a Hornungia petraea;14530;actual measurement;one-seeded generative dispersule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;20;;Air dried weight;;2a Hornungia petraea;14530;other;one-seeded generative dispersule;.0828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hornungia petraea;14530;other;germinule;.0828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hottonia palustris;28918;other;germinule;.1328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hottonia palustris;28918;other;germinule;.1156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hottonia palustris;28918;actual measurement;one-seeded generative dispersule;.156;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.156;;;50;;Air dried weight;;2a Humulus lupulus;14697;actual measurement;one-seeded generative dispersule;2.3842;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.3842;2.577;2.264;100;;Air dried weight;;2a Humulus lupulus;14697;actual measurement;one-seeded generative dispersule;2.638;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.638;;;50;;Air dried weight;;2a Humulus lupulus;14697;actual measurement;germinule;4.268;;-4;;BIOLFLOR database;4.268;;;;;Air dried weight;;3 Humulus lupulus;14697;actual measurement (following LEDA data standards);germinule;3.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.08;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Humulus lupulus;14697;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.19;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Humulus lupulus;14697;other;germinule;3.4608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.4608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Humulus lupulus;14697;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.66;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Humulus lupulus;14697;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.3;5;-2;5.3;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.03;5.66;4.19;;preaggregated value obtained from single record;Air dried weight;;2a Humulus lupulus;14697;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.36;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Humulus lupulus;14697;actual measurement (following LEDA data standards);one-seeded generative dispersule;5.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.3;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Humulus lupulus;14697;actual measurement (following LEDA data standards);one-seeded generative dispersule;4.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Humulus lupulus;14697;actual measurement (following LEDA data standards);germinule;3.08;1;-2;3.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.08;3.08;3.08;;preaggregated value obtained from single record;Air dried weight;;3 Huperzia selago;464;estimation (following LEDA data standards);generative dispersule;0;2;-2;0;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;0;0;0;;Preaggregated data obtained from single record. No. of seeds per individual: 1500;;;2 Huperzia selago;464;estimation (following LEDA data standards);generative dispersule;0;3;-2;0;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;0;0;0;;Preaggregated data obtained from single record. No. of seeds per individual: 1500;;;2 Hyacinthoides hispanica;38119;actual measurement;one-seeded generative dispersule;7.2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.2;;;50;;Air dried weight;;2a Hyacinthoides non-scripta;38541;actual measurement;germinule;5.84;;-4;;BIOLFLOR database;5.84;6.17;5.39;;;Air dried weight;;3 Hyacinthoides non-scripta;38541;actual measurement;germinule;6.17;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.17;;;47;;Air dried weight;;3 Hyacinthoides non-scripta;38541;actual measurement;one-seeded generative dispersule;5.84;;-4;;BIOLFLOR database;5.84;6.17;5.39;;;Air dried weight;;2a Hyacinthoides non-scripta;38541;actual measurement;one-seeded generative dispersule;6.17;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.17;;;47;;Air dried weight;;2a Hyacinthoides non-scripta;38541;other;one-seeded generative dispersule;4.954;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.954;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hyacinthoides non-scripta;38541;other;one-seeded generative dispersule;6.0984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hyacinthoides non-scripta;38541;other;one-seeded generative dispersule;4.9204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.9204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hyacinthoides non-scripta;38541;other;germinule;4.9204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.9204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hyacinthoides non-scripta;38541;other;germinule;4.954;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.954;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hyacinthoides non-scripta;38541;other;germinule;6.0984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hydrocotyle vulgaris;2206;other;germinule;.552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hydrocotyle vulgaris;2206;other;one-seeded generative dispersule;.552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hydrocotyle vulgaris;2206;actual measurement;one-seeded generative dispersule;.283;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.283;;;50;;Air dried weight;;2a Hydrocotyle vulgaris;2206;actual measurement;one-seeded generative dispersule;.312;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.312;;;50;;Air dried weight;;2a Hydrocotyle vulgaris;2206;actual measurement;one-seeded generative dispersule;.293;;-4;;BIOLFLOR database;.293;.31;.275;;;Air dried weight;;2a Hydrocotyle vulgaris;2206;actual measurement;germinule;.312;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.312;;;50;;Air dried weight;;3 Hydrocotyle vulgaris;2206;actual measurement;germinule;.283;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.283;;;50;;Air dried weight;;3 Hydrocotyle vulgaris;2206;actual measurement;germinule;.293;;-4;;BIOLFLOR database;.293;.31;.275;;;Air dried weight;;3 Hyoscyamus niger;34956;actual measurement;germinule;.853;;-4;;BIOLFLOR database;.853;.9;.805;;;Air dried weight;;3 Hyoscyamus niger;34956;actual measurement;generative dispersule;.44;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.44;;;1;n an replicates unknown;Air dried weight;;2 Hyoscyamus niger;34956;actual measurement;one-seeded generative dispersule;.853;;-4;;BIOLFLOR database;.853;.9;.805;;;Air dried weight;;2a Hypericum androsaemum;23335;other;unknown;.1024;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Hypericum elegans;23277;actual measurement;germinule;.097;;-4;;BIOLFLOR database;.097;.099;.094;;;Air dried weight;;3 Hypericum elegans;23277;actual measurement;one-seeded generative dispersule;.097;;-4;;BIOLFLOR database;.097;.099;.094;;;Air dried weight;;2a Hypericum elodes;23279;other;unknown;.0624;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Hypericum elodes;23279;other;unknown;.0864;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Hypericum elodes;23279;other;unknown;.076;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Hypericum hirsutum;23250;other;germinule;.094;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.094;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum hirsutum;23250;actual measurement;germinule;.073;;-4;;BIOLFLOR database;.073;.075;.07;;;Air dried weight;;3 Hypericum hirsutum;23250;actual measurement;generative dispersule;.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.6;;;1;n an replicates unknown;Air dried weight;;2 Hypericum hirsutum;23250;actual measurement;germinule;.103;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.103;;;50;;Air dried weight;;3 Hypericum hirsutum;23250;actual measurement;germinule;.071;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.071;;;100;;Air dried weight;;3 Hypericum hirsutum;23250;actual measurement;germinule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;3 Hypericum hirsutum;23250;actual measurement;one-seeded generative dispersule;.073;;-4;;BIOLFLOR database;.073;.075;.07;;;Air dried weight;;2a Hypericum hirsutum;23250;actual measurement;one-seeded generative dispersule;.103;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.103;;;50;;Air dried weight;;2a Hypericum hirsutum;23250;actual measurement;one-seeded generative dispersule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;2a Hypericum hirsutum;23250;actual measurement;one-seeded generative dispersule;.071;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.071;;;100;;Air dried weight;;2a Hypericum hirsutum;23250;other;one-seeded generative dispersule;.094;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.094;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum humifusum;23252;other;one-seeded generative dispersule;.0452;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0452;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum humifusum;23252;actual measurement;generative dispersule;.030366667;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.030366667;.034;.027;100;;Air dried weight;;2 Hypericum humifusum;23252;actual measurement;germinule;.043;;-4;;BIOLFLOR database;.043;;;;;Air dried weight;;3 Hypericum humifusum;23252;actual measurement;germinule;.068;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.068;;;50;;Air dried weight;;3 Hypericum humifusum;23252;actual measurement;one-seeded generative dispersule;.043;;-4;;BIOLFLOR database;.043;;;;;Air dried weight;;2a Hypericum humifusum;23252;actual measurement;one-seeded generative dispersule;.068;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.068;;;50;;Air dried weight;;2a Hypericum humifusum;23252;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Hypericum humifusum;23252;actual measurement (following LEDA data standards);germinule;.04;1;-2;.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;.04;.04;;preaggregated value obtained from single record;Air dried weight;;3 Hypericum humifusum;23252;other;germinule;.0452;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0452;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum maculatum;23226;actual measurement;one-seeded generative dispersule;.443;;-4;;BIOLFLOR database;.443;;;;;Air dried weight;;2a Hypericum maculatum;23226;actual measurement;one-seeded generative dispersule;.073;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.073;;;50;;Air dried weight;;2a Hypericum maculatum;23226;actual measurement;one-seeded generative dispersule;.059;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.059;;;60;;Air dried weight;;2a Hypericum maculatum;23226;actual measurement;germinule;.443;;-4;;BIOLFLOR database;.443;;;;;Air dried weight;;3 Hypericum maculatum;23226;actual measurement;germinule;.073;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.073;;;50;;Air dried weight;;3 Hypericum maculatum;23226;actual measurement;germinule;.059;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.059;;;60;;Air dried weight;;3 Hypericum maculatum;23226;actual measurement;generative dispersule;.0405;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0405;.047;.034;100;;Air dried weight;;2 Hypericum majus;23240;actual measurement;unknown;.01;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.01;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Hypericum montanum;23241;actual measurement;germinule;.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Hypericum montanum;23241;actual measurement;germinule;.062;;-4;;BIOLFLOR database;.062;.07;.053;;;Air dried weight;;3 Hypericum montanum;23241;actual measurement;germinule;.068;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.068;;;50;;Air dried weight;;3 Hypericum montanum;23241;actual measurement;germinule;.067;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.067;;;100;;Air dried weight;;3 Hypericum montanum;23241;other;germinule;.0728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum montanum;23241;other;one-seeded generative dispersule;.0728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum montanum;23241;other;one-seeded generative dispersule;.0552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum montanum;23241;other;one-seeded generative dispersule;.0648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum montanum;23241;other;germinule;.0648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum montanum;23241;other;germinule;.0552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum montanum;23241;actual measurement;one-seeded generative dispersule;.062;;-4;;BIOLFLOR database;.062;.07;.053;;;Air dried weight;;2a Hypericum montanum;23241;actual measurement;one-seeded generative dispersule;.067;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.067;;;100;;Air dried weight;;2a Hypericum montanum;23241;actual measurement;one-seeded generative dispersule;.068;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.068;;;50;;Air dried weight;;2a Hypericum perforatum;23212;actual measurement;one-seeded generative dispersule;.105;;-4;;BIOLFLOR database;.105;.121;.099;;;Air dried weight;;2a Hypericum perforatum;23212;other;one-seeded generative dispersule;.1484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum perforatum;23212;other;one-seeded generative dispersule;.12;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum perforatum;23212;other;one-seeded generative dispersule;.1164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum perforatum;23212;actual measurement;germinule;.105;;-4;;BIOLFLOR database;.105;.121;.099;;;Air dried weight;;3 Hypericum perforatum;23212;actual measurement;germinule;.037;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.037;;;1;summers of 1995 and 1996;Unknown;;3 Hypericum perforatum;23212;actual measurement;generative dispersule;.32;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.32;;;1;n an replicates unknown;Air dried weight;;2 Hypericum perforatum;23212;actual measurement;germinule;.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Hypericum perforatum;23212;actual measurement;generative dispersule;.1206;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1206;.124;.118;100;;Air dried weight;;2 Hypericum perforatum;23212;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Hypericum perforatum;23212;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Hypericum perforatum;23212;actual measurement (following LEDA data standards);germinule;.09;1;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.09;;preaggregated value obtained from single record;Air dried weight;;3 Hypericum perforatum;23212;actual measurement (following LEDA data standards);germinule;.09;1;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.09;;preaggregated value obtained from single record;Air dried weight;;3 Hypericum perforatum;23212;other;germinule;.12;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum perforatum;23212;other;germinule;.1484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum perforatum;23212;other;germinule;.1164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum pulchrum;23219;other;germinule;.0944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum pulchrum;23219;actual measurement;germinule;.086;;-4;;BIOLFLOR database;.086;;;;;Air dried weight;;3 Hypericum pulchrum;23219;actual measurement;germinule;.077;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.077;;;100;;Air dried weight;;3 Hypericum pulchrum;23219;actual measurement;one-seeded generative dispersule;.086;;-4;;BIOLFLOR database;.086;;;;;Air dried weight;;2a Hypericum pulchrum;23219;actual measurement;germinule;.08;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.08;;;50;;Air dried weight;;3 Hypericum pulchrum;23219;other;one-seeded generative dispersule;.0944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum pulchrum;23219;actual measurement;one-seeded generative dispersule;.077;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.077;;;100;;Air dried weight;;2a Hypericum pulchrum;23219;actual measurement;one-seeded generative dispersule;.08;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.08;;;50;;Air dried weight;;2a Hypericum tetrapterum;23203;actual measurement;one-seeded generative dispersule;.052;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.052;;;100;;Air dried weight;;2a Hypericum tetrapterum;23203;actual measurement;one-seeded generative dispersule;.044;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.044;;;50;;Air dried weight;;2a Hypericum tetrapterum;23203;other;one-seeded generative dispersule;.0352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum tetrapterum;23203;other;one-seeded generative dispersule;.0335;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0335;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypericum tetrapterum;23203;actual measurement;germinule;.044;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.044;;;50;;Air dried weight;;3 Hypericum tetrapterum;23203;actual measurement;germinule;.052;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.052;;;100;;Air dried weight;;3 Hypericum tetrapterum;23203;actual measurement;one-seeded generative dispersule;.045;;-4;;BIOLFLOR database;.045;.05;.04;;;Air dried weight;;2a Hypericum tetrapterum;23203;actual measurement;germinule;.045;;-4;;BIOLFLOR database;.045;.05;.04;;;Air dried weight;;3 Hypericum tetrapterum;23203;other;germinule;.0335;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0335;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum tetrapterum;23203;other;germinule;.0352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypericum undulatum;23176;other;unknown;.0392;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;other;germinule;.8792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypochaeris glabra;7007;other;germinule;.646;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.646;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.59;10;-2;.59;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;.78;.52;;preaggregated value obtained from single record;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.58;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.68;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.56;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.65;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement (following LEDA data standards);one-seeded generative dispersule;.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.78;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement;germinule;.497;;-4;;BIOLFLOR database;.497;;;;;Air dried weight;;3 Hypochaeris glabra;7007;actual measurement;germinule;.407;;-4;;BIOLFLOR database;.407;;;;;Air dried weight;;3 Hypochaeris glabra;7007;actual measurement;germinule;.77808;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.77808;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Hypochaeris glabra;7007;actual measurement;germinule;.778;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.778;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Hypochaeris glabra;7007;actual measurement;germinule;.78;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.78;;;30;collected between 1996-1999;Air dried weight;;3 Hypochaeris glabra;7007;actual measurement;one-seeded generative dispersule;.705;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.705;;;50;;Air dried weight;;2a Hypochaeris glabra;7007;actual measurement;one-seeded generative dispersule;.29;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.29;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Hypochaeris maculata;8386;other;one-seeded generative dispersule;2.1192;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1192;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Hypochaeris maculata;8386;actual measurement;germinule;1.112;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.112;;;1;summers of 1995 and 1996;Unknown;;3 Hypochaeris maculata;8386;actual measurement;one-seeded generative dispersule;1.85;;-4;;BIOLFLOR database;1.85;2.873;1.323;;;Air dried weight;;2a Hypochaeris maculata;8386;actual measurement;germinule;1.85;;-4;;BIOLFLOR database;1.85;2.873;1.323;;;Air dried weight;;3 Hypochaeris maculata;8386;actual measurement;germinule;1.521;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.521;1.525;1.517;100;;Air dried weight;;3 Hypochaeris maculata;8386;actual measurement;germinule;.9421875;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.9421875;.984375;.9;32;;Air dried weight;;3 Hypochaeris maculata;8386;other;germinule;2.1192;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1192;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Hypochaeris uniflora;8453;actual measurement;germinule;2.749;;-4;;BIOLFLOR database;2.749;3.072;2.425;;;Air dried weight;;3 Hypochoeris radicata;6499;actual measurement;germinule;.65519;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.65519;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Hypochoeris radicata;6499;actual measurement;germinule;.655;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.655;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Hypochoeris radicata;6499;actual measurement;generative dispersule;.736214286;7;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.736214286;.84;.6425;100;;Air dried weight;;2 Hypochoeris radicata;6499;actual measurement;one-seeded generative dispersule;.958;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.958;;;100;;Air dried weight;;2a Hypochoeris radicata;6499;actual measurement;one-seeded generative dispersule;1.166;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.166;;;50;;Air dried weight;;2a Hypochoeris radicata;6499;actual measurement (following LEDA data standards);one-seeded generative dispersule;.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.24;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hypochoeris radicata;6499;actual measurement (following LEDA data standards);one-seeded generative dispersule;.52;1;-2;.52;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;.52;.52;;preaggregated value obtained from single record;Air dried weight;;2a Hypochoeris radicata;6499;actual measurement (following LEDA data standards);one-seeded generative dispersule;.24;1;-2;.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.24;.24;.24;;preaggregated value obtained from single record;Air dried weight;;2a Hypochoeris radicata;6499;actual measurement (following LEDA data standards);one-seeded generative dispersule;.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;;;30;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Hyssopus officinalis;24658;actual measurement (following LEDA data standards);germinule;.89;1;-2;.89;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;.89;.89;;preaggregated value obtained from single record;Air dried weight;;3 Hyssopus officinalis;24658;actual measurement (following LEDA data standards);germinule;.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;;;30;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Hyssopus officinalis;24658;actual measurement;germinule;.901;;-4;;BIOLFLOR database;.901;1;.802;;;Air dried weight;;3 Hyssopus officinalis;24658;actual measurement;one-seeded generative dispersule;.901;;-4;;BIOLFLOR database;.901;1;.802;;;Air dried weight;;2a Iberis amara;14025;other;unknown;1.8844;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Iberis umbellata;14042;actual measurement;germinule;1.743;;-4;;BIOLFLOR database;1.743;1.788;1.677;;;Air dried weight;;3 Iberis umbellata;14042;actual measurement;one-seeded generative dispersule;1.743;;-4;;BIOLFLOR database;1.743;;1.677;;;Air dried weight;;2a Ilex aquifolium;2439;actual measurement;one-seeded generative dispersule;32.688;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32.688;;;17;;Air dried weight;;2a Ilex aquifolium;2439;other;germinule;21.9792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);21.9792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ilex aquifolium;2439;actual measurement;one-seeded generative dispersule;32;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32;;;50;;Air dried weight;;2a Ilex aquifolium;2439;actual measurement;generative dispersule;140;;-4;;BIOLFLOR database;140;150;130;;;Unknown;;2 Ilex aquifolium;2439;other;germinule;26.3848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);26.3848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Illecebrum verticillatum;17139;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.07;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Illecebrum verticillatum;17139;actual measurement (following LEDA data standards);germinule;.07;1;-2;.07;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.07;.07;.07;;preaggregated value obtained from single record;Air dried weight;;3 Illecebrum verticillatum;17139;other;germinule;.0612;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0612;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Illecebrum verticillatum;17139;actual measurement;germinule;.078;;-4;;BIOLFLOR database;.078;;;;;Air dried weight;;3 Illecebrum verticillatum;17139;actual measurement;one-seeded generative dispersule;.103;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.103;.105;.101;100;;Air dried weight;;2a Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.37;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.79;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.64;10;-2;3.64;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.61;3.89;3.37;;preaggregated value obtained from single record;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.66;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.69;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.69;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.37;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.57;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.61;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.89;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.74;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens balfourii;11743;actual measurement (following LEDA data standards);germinule;3.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.37;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;14.57;10;-2;14.57;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.4;15.9;13.12;;preaggregated value obtained from single record;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;13.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.15;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;15.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.44;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;13.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.34;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;other;germinule;13.4708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.4708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;13.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.12;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;15.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.15;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;15.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.12;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;14.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.01;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;15.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.9;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;13.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13.52;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement (following LEDA data standards);germinule;15.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.22;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement;one-seeded generative dispersule;14.373;;-4;;BIOLFLOR database;14.373;35;2;;;Air dried weight;;2a Impatiens glandulifera;11749;other;one-seeded generative dispersule;13.4708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.4708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Impatiens glandulifera;11749;actual measurement;germinule;14.373;;-4;;BIOLFLOR database;14.373;35;2;;;Air dried weight;;3 Impatiens glandulifera;11749;actual measurement;one-seeded generative dispersule;7.315;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.315;;;20;;Air dried weight;;2a Impatiens glandulifera;11749;actual measurement;generative dispersule;11.0145;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;11.0145;11.089;10.94;100;;Air dried weight;;2 Impatiens glandulifera;11749;actual measurement;germinule;7.315;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.315;;;20;;Air dried weight;;3 Impatiens noli-tangere;11751;actual measurement;one-seeded generative dispersule;6.169974359;13;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.169974359;6.955;5.51;100;;Air dried weight;;2a Impatiens parviflora;11752;actual measurement;one-seeded generative dispersule;7.372;;-4;;BIOLFLOR database;7.372;7.948;6.938;;;Air dried weight;;2a Impatiens parviflora;11752;actual measurement;germinule;7.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.2;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Impatiens parviflora;11752;actual measurement;germinule;7.372;;-4;;BIOLFLOR database;7.372;7.948;6.938;;;Air dried weight;;3 Impatiens parviflora;11752;actual measurement;germinule;6.572;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.572;;;50;;Air dried weight;;3 Impatiens parviflora;11752;actual measurement;germinule;6.913;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.913;;;50;;Air dried weight;;3 Impatiens parviflora;11752;actual measurement;one-seeded generative dispersule;6.572;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.572;;;50;;Air dried weight;;2a Impatiens parviflora;11752;actual measurement;one-seeded generative dispersule;6.913;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.913;;;50;;Air dried weight;;2a Impatiens parviflora;11752;actual measurement (following LEDA data standards);germinule;6.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.56;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Impatiens parviflora;11752;actual measurement (following LEDA data standards);germinule;6.56;1;-2;6.56;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.56;6.56;6.56;;preaggregated value obtained from single record;Air dried weight;;3 Inula britannica;8741;actual measurement;germinule;.092;;-4;;BIOLFLOR database;.092;;;;;Air dried weight;;3 Inula britannica;8741;actual measurement;one-seeded generative dispersule;.0825;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0825;.09;.075;100;;Air dried weight;;2a Inula conyza;8404;actual measurement;germinule;.258;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.258;;;50;;Air dried weight;;3 Inula conyza;8404;actual measurement;one-seeded generative dispersule;.338;;-4;;BIOLFLOR database;.338;;;;;Air dried weight;;2a Inula conyza;8404;actual measurement;one-seeded generative dispersule;.126;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.126;.127;.125;100;;Air dried weight;;2a Inula conyza;8404;actual measurement;germinule;.206;;-4;;BIOLFLOR database;.206;.26;.159;;;Air dried weight;;3 Inula conyza;8404;actual measurement;germinule;.338;;-4;;BIOLFLOR database;.338;;;;;Air dried weight;;3 Inula conyza;8404;actual measurement;one-seeded generative dispersule;.258;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.258;;;50;;Air dried weight;;2a Inula conyza;8404;other;germinule;.1644;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1644;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Inula conyza;8404;other;one-seeded generative dispersule;.3556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Inula conyza;8404;other;one-seeded generative dispersule;.1644;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1644;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Inula conyza;8404;other;germinule;.3556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Inula crithmoides;9035;other;unknown;.3732;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Inula germanica;6798;actual measurement;germinule;.135;;-4;;BIOLFLOR database;.135;;;;;Air dried weight;;3 Inula germanica;6798;actual measurement;one-seeded generative dispersule;.135;;-4;;BIOLFLOR database;.135;;;;;Air dried weight;;2a Inula helenium;7875;actual measurement;one-seeded generative dispersule;.711;;-4;;BIOLFLOR database;.711;;;;;Air dried weight;;2a Inula helenium;7875;actual measurement;one-seeded generative dispersule;2.135;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.135;;;60;;Air dried weight;;2a Inula helenium;7875;actual measurement;germinule;2.18;;-4;;BIOLFLOR database;2.18;;;;;Air dried weight;;3 Inula helenium;7875;actual measurement;germinule;2.135;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.135;;;60;;Air dried weight;;3 Inula helenium;7875;actual measurement;germinule;.711;;-4;;BIOLFLOR database;.711;;;;;Air dried weight;;3 Inula helvetica;7341;actual measurement;generative dispersule;.1445;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1445;.147;.142;100;;Air dried weight;;2 Inula helvetica;7341;actual measurement;germinule;.168;;-4;;BIOLFLOR database;.168;;;;;Air dried weight;;3 Inula hirta;8244;actual measurement;germinule;.173;;-4;;BIOLFLOR database;.173;;;;;Air dried weight;;3 Inula hirta;8244;actual measurement;germinule;.27;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.27;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Inula salicina;6502;actual measurement;germinule;.242;;-4;;BIOLFLOR database;.242;;;;;Air dried weight;;3 Inula salicina;6502;actual measurement;one-seeded generative dispersule;.0975;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0975;.102;.093;100;;Air dried weight;;2a Inula salicina;6502;actual measurement;one-seeded generative dispersule;.242;;-4;;BIOLFLOR database;.242;;;;;Air dried weight;;2a Iris foetidissima;36612;other;unknown;144.9988;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);144.9988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Iris foetidissima;36612;other;unknown;57.5224;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);57.5224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Iris graminea;36621;other;germinule;22.8228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);22.8228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Iris graminea;36621;actual measurement;germinule;33.298;;-4;;BIOLFLOR database;33.298;;;;;Air dried weight;;3 Iris graminea;36621;actual measurement;germinule;12.79;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);12.79;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Iris graminea;36621;other;one-seeded generative dispersule;22.8228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);22.8228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Iris graminea;36621;actual measurement;one-seeded generative dispersule;33.298;;-4;;BIOLFLOR database;33.298;;;;;Air dried weight;;2a Iris pseudacorus;36664;actual measurement;one-seeded generative dispersule;47.597;;-4;;BIOLFLOR database;47.597;63.4;35.5;;;Air dried weight;;2a Iris pseudacorus;36664;actual measurement;one-seeded generative dispersule;48.4935;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;48.4935;50.976;46.011;100;;Air dried weight;;2a Iris pseudacorus;36664;actual measurement;one-seeded generative dispersule;46.67;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;46.67;;;50;;Air dried weight;;2a Iris pseudacorus;36664;other;one-seeded generative dispersule;54.3992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);54.3992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Iris pseudacorus;36664;other;one-seeded generative dispersule;37.976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);37.976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Iris pseudacorus;36664;actual measurement;germinule;47.597;;-4;;BIOLFLOR database;47.597;63.4;35.5;;;Air dried weight;;3 Iris pseudacorus;36664;actual measurement;germinule;46.67;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;46.67;;;50;;Air dried weight;;3 Iris pseudacorus;36664;other;germinule;54.3992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);54.3992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Iris pseudacorus;36664;other;germinule;37.976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);37.976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Iris pumila;36669;actual measurement;germinule;24.384;;-4;;BIOLFLOR database;24.384;;;;;Air dried weight;;3 Iris pumila;36669;actual measurement;one-seeded generative dispersule;24.384;;-4;;BIOLFLOR database;24.384;;;;;Air dried weight;;2a Iris sibirica;36687;actual measurement;one-seeded generative dispersule;14.794;;-4;;BIOLFLOR database;14.794;;;;;Air dried weight;;2a Iris sibirica;36687;actual measurement;one-seeded generative dispersule;12.135;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;12.135;12.138;12.132;100;;Air dried weight;;2a Iris sibirica;36687;actual measurement;germinule;14.794;;-4;;BIOLFLOR database;14.794;;;;;Air dried weight;;3 Iris spuria;36693;actual measurement;one-seeded generative dispersule;18.217;;-4;;BIOLFLOR database;18.217;;;;;Air dried weight;;2a Iris spuria;36693;actual measurement;one-seeded generative dispersule;27.3795;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;27.3795;27.491;27.268;100;;Air dried weight;;2a Iris spuria;36693;actual measurement;germinule;18.217;;-4;;BIOLFLOR database;18.217;;;;;Air dried weight;;3 Iris spuria;36693;other;one-seeded generative dispersule;24.2336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);24.2336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Iris spuria;36693;other;one-seeded generative dispersule;25.75;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);25.75;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Iris spuria;36693;other;germinule;24.2336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);24.2336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Iris spuria;36693;other;germinule;25.75;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);25.75;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Iris variegata;36717;actual measurement;one-seeded generative dispersule;35.7;;-4;;BIOLFLOR database;35.7;;;;;Air dried weight;;2a Iris variegata;36717;actual measurement;germinule;35.7;;-4;;BIOLFLOR database;35.7;;;;;Air dried weight;;3 Iris versicolor;36721;actual measurement;one-seeded generative dispersule;16.308;;-4;;BIOLFLOR database;16.308;;;;;Air dried weight;;2a Iris versicolor;36721;actual measurement;germinule;16.308;;-4;;BIOLFLOR database;16.308;;;;;Air dried weight;;3 Isatis tinctoria;14558;actual measurement;germinule;4.319;;-4;;BIOLFLOR database;4.319;4.43;4.158;;;Air dried weight;;3 Isatis tinctoria;14558;actual measurement;one-seeded generative dispersule;4.319;;-4;;BIOLFLOR database;4.319;4.43;4.158;;;Air dried weight;;2a Iva xanthifolia;8135;actual measurement;one-seeded generative dispersule;.968;;-4;;BIOLFLOR database;.968;.992;.946;;;Air dried weight;;2a Iva xanthifolia;8135;actual measurement;germinule;.968;;-4;;BIOLFLOR database;.968;.992;.946;;;Air dried weight;;3 Jasione laevis;14870;actual measurement;generative dispersule;.078;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.078;.082;.07;100;;Air dried weight;;2 Jasione laevis;14870;actual measurement;germinule;.053;;-4;;BIOLFLOR database;.053;;;;;Air dried weight;;3 Jasione laevis;14870;actual measurement;one-seeded generative dispersule;.053;;-4;;BIOLFLOR database;.053;;;;;Air dried weight;;2a Jasione montana;14880;other;one-seeded generative dispersule;.0268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Jasione montana;14880;other;one-seeded generative dispersule;.0272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Jasione montana;14880;actual measurement;generative dispersule;.023285302;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.023285302;.026530612;.016;1;;Air dried weight;;2 Jasione montana;14880;other;one-seeded generative dispersule;.0268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Jasione montana;14880;other;one-seeded generative dispersule;.0188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Jasione montana;14880;actual measurement;one-seeded generative dispersule;.053;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.053;;;50;;Air dried weight;;2a Jasione montana;14880;actual measurement;one-seeded generative dispersule;.024;;-4;;BIOLFLOR database;.024;.026;.022;;;Air dried weight;;2a Jasione montana;14880;actual measurement;germinule;.053;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.053;;;50;;Air dried weight;;3 Jasione montana;14880;actual measurement;germinule;.024;;-4;;BIOLFLOR database;.024;.026;.022;;;Air dried weight;;3 Jasione montana;14880;other;germinule;.0268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Jasione montana;14880;other;germinule;.0272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Jasione montana;14880;other;germinule;.0188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Jasione montana;14880;other;germinule;.0268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Jasminum fruticans;26405;actual measurement;generative dispersule;18.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);18.8;;;1;n an replicates unknown;Air dried weight;;2 Jovibarba globifera;46120;actual measurement;germinule;.085;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.085;;;50;;Air dried weight;;3 Juglans nigra;23152;actual measurement;generative dispersule;12500;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);12500;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Juglans regia;23153;actual measurement;generative dispersule;6500;;-4;;BIOLFLOR database;6500;7000;6000;;;Unknown;;2 Juglans regia;23153;actual measurement;one-seeded generative dispersule;3006;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3006;;;10;;Air dried weight;;2a Juncus acutiflorus;35974;other;one-seeded generative dispersule;.0128;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0128;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus acutiflorus;35974;actual measurement;germinule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;3 Juncus acutiflorus;35974;actual measurement;germinule;.036;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.036;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Juncus acutiflorus;35974;actual measurement;germinule;.017;;-4;;BIOLFLOR database;.017;;;;;Air dried weight;;3 Juncus acutiflorus;35974;actual measurement;germinule;.036;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.036;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Juncus acutiflorus;35974;actual measurement;one-seeded generative dispersule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;2a Juncus acutiflorus;35974;actual measurement;one-seeded generative dispersule;.0105;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0105;.012;.009;100;;Air dried weight;;2a Juncus acutiflorus;35974;actual measurement;one-seeded generative dispersule;.017;;-4;;BIOLFLOR database;.017;;;;;Air dried weight;;2a Juncus acutiflorus;35974;other;germinule;.0128;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0128;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus alpinus s. alpinus;35907;actual measurement;generative dispersule;.024;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.024;.025;.023;100;;Air dried weight;;2 Juncus anceps;35959;actual measurement (following LEDA data standards);germinule;.02;4;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Juncus anceps;35959;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Juncus anceps;35959;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus anceps;35959;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus anceps;35959;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus anceps;35959;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus anceps;35959;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus articulatus;35965;other;germinule;.024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus articulatus;35965;other;germinule;.016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus articulatus;35965;actual measurement;germinule;.019;;-4;;BIOLFLOR database;.019;.02;.015;;;Air dried weight;;3 Juncus articulatus;35965;actual measurement;germinule;.024;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.024;;;100;;Air dried weight;;3 Juncus articulatus;35965;actual measurement;one-seeded generative dispersule;.019;;-4;;BIOLFLOR database;.019;.02;.015;;;Air dried weight;;2a Juncus articulatus;35965;actual measurement;one-seeded generative dispersule;.0195;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0195;.02;.019;100;;Air dried weight;;2a Juncus articulatus;35965;actual measurement;one-seeded generative dispersule;.024;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.024;;;100;;Air dried weight;;2a Juncus articulatus;35965;other;one-seeded generative dispersule;.024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus articulatus;35965;other;one-seeded generative dispersule;.016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus atratus;35939;actual measurement;generative dispersule;.0145;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0145;.015;.014;100;;Air dried weight;;2 Juncus atratus;35939;actual measurement;one-seeded generative dispersule;.013;;-4;;BIOLFLOR database;.013;.013;.012;;;Air dried weight;;2a Juncus atratus;35939;actual measurement;germinule;.013;;-4;;BIOLFLOR database;.013;.013;.012;;;Air dried weight;;3 Juncus balticus;35943;actual measurement;germinule;.065;;-4;;BIOLFLOR database;.065;;;;;Air dried weight;;3 Juncus balticus;35943;actual measurement;one-seeded generative dispersule;.065;;-4;;BIOLFLOR database;.065;;;;;Air dried weight;;2a Juncus balticus;35943;other;one-seeded generative dispersule;.0666;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0666;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus balticus;35943;other;one-seeded generative dispersule;.04836;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04836;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus balticus;35943;other;germinule;.04836;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04836;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus balticus;35943;other;germinule;.0666;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0666;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus bufonius;36128;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus bufonius;36128;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Juncus bufonius;36128;other;germinule;.0204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus bufonius;36128;other;one-seeded generative dispersule;.0204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus bufonius;36128;actual measurement;one-seeded generative dispersule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;2a Juncus bufonius;36128;actual measurement;germinule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;3 Juncus bufonius;36128;actual measurement;one-seeded generative dispersule;.024;;-4;;BIOLFLOR database;.024;.03;.02;;;Air dried weight;;2a Juncus bufonius;36128;actual measurement;germinule;.024;;-4;;BIOLFLOR database;.024;.03;.02;;;Air dried weight;;3 Juncus bufonius;36128;actual measurement;germinule;.02859;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02859;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Juncus bufonius;36128;actual measurement;germinule;.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;30;collected between 1996-1999;Air dried weight;;3 Juncus bufonius;36128;actual measurement;germinule;.029;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.029;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Juncus bulbosus;36026;actual measurement;germinule;.03;;-4;;BIOLFLOR database;.03;;;;;Air dried weight;;3 Juncus bulbosus;36026;actual measurement;germinule;.024;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.024;;;100;;Air dried weight;;3 Juncus bulbosus;36026;actual measurement;one-seeded generative dispersule;.03;;-4;;BIOLFLOR database;.03;;;;;Air dried weight;;2a Juncus bulbosus;36026;actual measurement;one-seeded generative dispersule;.024;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.024;;;100;;Air dried weight;;2a Juncus bulbosus;36026;other;one-seeded generative dispersule;.0125;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0125;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus bulbosus;36026;actual measurement;generative dispersule;.01;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.01;.01;.01;100;;Air dried weight;;2 Juncus bulbosus;36026;other;germinule;.0125;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0125;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus capitatus;36042;actual measurement;one-seeded generative dispersule;.0085;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0085;.01;.007;100;;Air dried weight;;2a Juncus capitatus;36042;actual measurement;germinule;.0208;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0208;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Juncus capitatus;36042;actual measurement;germinule;.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02;;;30;collected between 1996-1999;Air dried weight;;3 Juncus capitatus;36042;actual measurement;germinule;.021;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.021;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Juncus castaneus;35925;other;unknown;.1092;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Juncus castaneus;35925;other;unknown;.0496;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Juncus castaneus;35925;other;unknown;.0884;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0884;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Juncus castaneus;35925;other;unknown;.0776;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Juncus castaneus;35925;other;unknown;.05644;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.05644;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Juncus compressus;36003;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Juncus compressus;36003;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus compressus;36003;other;germinule;.014;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.014;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus compressus;36003;actual measurement;generative dispersule;.0138;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0138;.015;.012;100;;Air dried weight;;2 Juncus compressus;36003;actual measurement;germinule;.01;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.01;;;50;;Air dried weight;;3 Juncus compressus;36003;actual measurement;germinule;.012;;-4;;BIOLFLOR database;.012;.013;.012;;;Air dried weight;;3 Juncus compressus;36003;actual measurement;one-seeded generative dispersule;.01;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.01;;;50;;Air dried weight;;2a Juncus compressus;36003;other;one-seeded generative dispersule;.014;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.014;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus compressus;36003;actual measurement;one-seeded generative dispersule;.012;;-4;;BIOLFLOR database;.012;.013;.012;;;Air dried weight;;2a Juncus conglomeratus;36007;actual measurement;one-seeded generative dispersule;.017;;-4;;BIOLFLOR database;.017;.021;.013;;;Air dried weight;;2a Juncus conglomeratus;36007;actual measurement;one-seeded generative dispersule;.017;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.017;;;100;;Air dried weight;;2a Juncus conglomeratus;36007;actual measurement;one-seeded generative dispersule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;2a Juncus conglomeratus;36007;actual measurement;one-seeded generative dispersule;.012;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.012;.014;.01;100;;Air dried weight;;2a Juncus conglomeratus;36007;other;one-seeded generative dispersule;.0188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus conglomeratus;36007;actual measurement;germinule;.017;;-4;;BIOLFLOR database;.017;.021;.013;;;Air dried weight;;3 Juncus conglomeratus;36007;actual measurement;germinule;.017;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.017;;;100;;Air dried weight;;3 Juncus conglomeratus;36007;actual measurement;germinule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;3 Juncus conglomeratus;36007;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus conglomeratus;36007;other;germinule;.0188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus conglomeratus;36007;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus conglomeratus;36007;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Juncus conglomeratus;36007;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Juncus effusus;36014;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus effusus;36014;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Juncus effusus;36014;other;germinule;.022;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.022;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus effusus;36014;actual measurement;germinule;.013;;-4;;BIOLFLOR database;.013;.016;.01;;;Air dried weight;;3 Juncus effusus;36014;actual measurement;germinule;.015;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.015;;;50;;Air dried weight;;3 Juncus effusus;36014;other;one-seeded generative dispersule;.022;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.022;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus effusus;36014;actual measurement;one-seeded generative dispersule;.013;;-4;;BIOLFLOR database;.013;.016;.01;;;Air dried weight;;2a Juncus effusus;36014;actual measurement;one-seeded generative dispersule;.027466667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.027466667;.029333333;.026666667;150;;Air dried weight;;2a Juncus effusus;36014;actual measurement;one-seeded generative dispersule;.015;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.015;;;50;;Air dried weight;;2a Juncus filiformis;36023;actual measurement;generative dispersule;.0235;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0235;.024;.023;100;;Air dried weight;;2 Juncus filiformis;36023;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Juncus filiformis;36023;other;germinule;.0236;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus filiformis;36023;other;germinule;.0276;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0276;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus filiformis;36023;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus foliosus;36102;other;unknown;.0408;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Juncus foliosus;36102;other;unknown;.0488;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Juncus gerardi;36081;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus gerardi;36081;actual measurement (following LEDA data standards);germinule;.04;1;-2;.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;.04;.04;;preaggregated value obtained from single record;Air dried weight;;3 Juncus gerardi;36081;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Juncus gerardi;36081;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus gerardi;36081;actual measurement;germinule;.047078652;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.047078652;;;89;;Air dried weight;;3 Juncus gerardi;36081;actual measurement;one-seeded generative dispersule;.0165;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0165;.019;.014;100;;Air dried weight;;2a Juncus inflexus;36061;actual measurement;one-seeded generative dispersule;.02;;-4;;BIOLFLOR database;.02;.024;.015;;;Air dried weight;;2a Juncus inflexus;36061;actual measurement;one-seeded generative dispersule;1.0115;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.0115;1.035;.988;100;;Air dried weight;;2a Juncus inflexus;36061;other;germinule;.032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus inflexus;36061;other;one-seeded generative dispersule;.032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus inflexus;36061;other;one-seeded generative dispersule;.0448;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0448;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus inflexus;36061;other;one-seeded generative dispersule;.0384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus inflexus;36061;other;one-seeded generative dispersule;.0376;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0376;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus inflexus;36061;other;one-seeded generative dispersule;.0344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus inflexus;36061;other;one-seeded generative dispersule;.0256;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0256;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus inflexus;36061;other;one-seeded generative dispersule;.0312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus inflexus;36061;other;one-seeded generative dispersule;.03516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus inflexus;36061;actual measurement;germinule;.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.028;;;100;;Air dried weight;;3 Juncus inflexus;36061;actual measurement;germinule;.034;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.034;;;50;;Air dried weight;;3 Juncus inflexus;36061;actual measurement;germinule;.02;;-4;;BIOLFLOR database;.02;.024;.015;;;Air dried weight;;3 Juncus inflexus;36061;actual measurement;one-seeded generative dispersule;.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.028;;;100;;Air dried weight;;2a Juncus inflexus;36061;actual measurement;one-seeded generative dispersule;.034;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.034;;;50;;Air dried weight;;2a Juncus inflexus;36061;other;germinule;.0256;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0256;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus inflexus;36061;other;germinule;.0384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus inflexus;36061;other;germinule;.0448;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0448;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus inflexus;36061;other;germinule;.0312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus inflexus;36061;other;germinule;.0376;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0376;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus inflexus;36061;other;germinule;.0344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus inflexus;36061;other;germinule;.03516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus maritimus;36160;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus maritimus;36160;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus maritimus;36160;other;germinule;.03048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus maritimus;36160;actual measurement (following LEDA data standards);germinule;.04;3;-2;.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;.04;.03;;preaggregated value obtained from single record;Air dried weight;;3 Juncus maritimus;36160;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus maritimus;36160;actual measurement;one-seeded generative dispersule;.0315;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0315;.032;.031;100;;Air dried weight;;2a Juncus pygmaeus;36048;other;unknown;.0116;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Juncus ranarius;36052;actual measurement;germinule;.021;;-4;;BIOLFLOR database;.021;;;;;Air dried weight;;3 Juncus ranarius;36052;actual measurement;one-seeded generative dispersule;.021;;-4;;BIOLFLOR database;.021;;;;;Air dried weight;;2a Juncus ranarius;36052;actual measurement;one-seeded generative dispersule;.023;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.023;.024;.022;100;;Air dried weight;;2a Juncus sphaerocarpus;36141;actual measurement;one-seeded generative dispersule;.01;;-4;;BIOLFLOR database;.01;;;;;Air dried weight;;2a Juncus sphaerocarpus;36141;actual measurement;germinule;.01;;-4;;BIOLFLOR database;.01;;;;;Air dried weight;;3 Juncus squarrosus;36142;actual measurement;one-seeded generative dispersule;.073;;-4;;BIOLFLOR database;.073;.086;.05;;;Air dried weight;;2a Juncus squarrosus;36142;actual measurement;one-seeded generative dispersule;.087;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.087;;;50;;Air dried weight;;2a Juncus squarrosus;36142;actual measurement;germinule;.073;;-4;;BIOLFLOR database;.073;.086;.05;;;Air dried weight;;3 Juncus squarrosus;36142;actual measurement;germinule;.051;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.051;;;50;;Air dried weight;;3 Juncus squarrosus;36142;actual measurement;germinule;.087;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.087;;;50;;Air dried weight;;3 Juncus squarrosus;36142;actual measurement;one-seeded generative dispersule;.051;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.051;;;50;;Air dried weight;;2a Juncus squarrosus;36142;other;germinule;.0804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus squarrosus;36142;other;one-seeded generative dispersule;.0804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus squarrosus;36142;actual measurement (following LEDA data standards);germinule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;3 Juncus squarrosus;36142;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus squarrosus;36142;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus squarrosus;36142;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus squarrosus;36142;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus squarrosus;36142;actual measurement (following LEDA data standards);germinule;.09;5;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.08;;preaggregated value obtained from single record;Air dried weight;;3 Juncus squarrosus;36142;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus squarrosus;36142;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Juncus subnodulosus;36148;other;germinule;.01496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.01496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus subnodulosus;36148;other;one-seeded generative dispersule;.01496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.01496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus subnodulosus;36148;actual measurement;one-seeded generative dispersule;.017;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.017;;;50;;Air dried weight;;2a Juncus subnodulosus;36148;actual measurement;germinule;.014;;-4;;BIOLFLOR database;.014;.014;.013;;;Air dried weight;;3 Juncus subnodulosus;36148;actual measurement;germinule;.017;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.017;;;50;;Air dried weight;;3 Juncus subnodulosus;36148;actual measurement;one-seeded generative dispersule;.014;;-4;;BIOLFLOR database;.014;.014;.013;;;Air dried weight;;2a Juncus tenageia;36111;actual measurement;one-seeded generative dispersule;.016;;-4;;BIOLFLOR database;.016;;;;;Air dried weight;;2a Juncus tenageia;36111;actual measurement;germinule;.016;;-4;;BIOLFLOR database;.016;;;;;Air dried weight;;3 Juncus tenuis;36112;actual measurement;germinule;.024;;-4;;BIOLFLOR database;.024;.027;.022;;;Air dried weight;;3 Juncus tenuis;36112;actual measurement;germinule;.013;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.013;;;50;;Air dried weight;;3 Juncus tenuis;36112;actual measurement;one-seeded generative dispersule;.024;;-4;;BIOLFLOR database;.024;.027;.022;;;Air dried weight;;2a Juncus tenuis;36112;actual measurement;one-seeded generative dispersule;.013;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.013;;;50;;Air dried weight;;2a Juncus trifidus;36209;other;one-seeded generative dispersule;.1756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Juncus trifidus;36209;actual measurement;generative dispersule;.1205;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1205;.125;.116;100;;Air dried weight;;2 Juncus trifidus;36209;actual measurement;one-seeded generative dispersule;.114;;-4;;BIOLFLOR database;.114;;;;;Air dried weight;;2a Juncus trifidus;36209;actual measurement;generative dispersule;.122;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.122;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Juncus trifidus;36209;actual measurement;germinule;.114;;-4;;BIOLFLOR database;.114;;;;;Air dried weight;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;19;No. of seeds per individual: 19;Air dried weight;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;12;No. of seeds per individual: 10-16;Air dried weight;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;12;No. of seeds per individual: 10-16;Air dried weight;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;12;No. of seeds per individual: 10-16;Air dried weight;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;10;No. of seeds per individual: 10;Air dried weight;;3 Juncus trifidus;36209;other;germinule;.1756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.14;1;-2;.14;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;.14;.14;;Preaggregated data obtained from single record. No. of seeds per individual: 19;;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.13;2;-2;.13;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;.18;.08;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.13;2;-2;.13;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;.14;.12;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.13;3;-2;.13;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;.14;.12;;Preaggregated data obtained from single record. No. of seeds per individual: 10-16;;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;10;No. of seeds per individual: 10;Air dried weight;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;;;10;No. of seeds per individual: 10;Air dried weight;;3 Juncus trifidus;36209;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;10;No. of seeds per individual: 10;Air dried weight;;3 Juniperus communis;741;actual measurement;generative dispersule;5.513;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];5.513;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Juniperus communis;741;actual measurement;unknown;12.29;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];12.29;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Juniperus communis;741;actual measurement;one-seeded generative dispersule;7.78;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.78;;;50;;Air dried weight;;2a Juniperus communis;741;actual measurement;one-seeded generative dispersule;9.488;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.488;;;25;;Air dried weight;;2a Jurinea cyanoides;6414;actual measurement;germinule;6.3;;-4;;BIOLFLOR database;6.3;;;;;Air dried weight;;3 Jurinea cyanoides;6414;actual measurement;germinule;7.05;;-4;;BIOLFLOR database;7.05;;;;;Air dried weight;;3 Jurinea cyanoides;6414;actual measurement;one-seeded generative dispersule;7.05;;-4;;BIOLFLOR database;7.05;;;;;Air dried weight;;2a Kalmia angustifolia;19496;actual measurement;one-seeded generative dispersule;.007;;-4;;BIOLFLOR database;.007;.008;.007;;;Air dried weight;;2a Kalmia angustifolia;19496;actual measurement;germinule;.007;;-4;;BIOLFLOR database;.007;.008;.007;;;Air dried weight;;3 Kernera saxatilis;14059;actual measurement;germinule;.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.14;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Kernera saxatilis;14059;actual measurement;germinule;.152;;-4;;BIOLFLOR database;.152;;;;;Air dried weight;;3 Kernera saxatilis;14059;actual measurement;one-seeded generative dispersule;.152;;-4;;BIOLFLOR database;.152;;;;;Air dried weight;;2a Kickxia elatine;33123;actual measurement;one-seeded generative dispersule;.4;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.4;;;30;;Air dried weight;;2a Kickxia elatine;33123;actual measurement;one-seeded generative dispersule;.336;;-4;;BIOLFLOR database;.336;;;;;Air dried weight;;2a Kickxia elatine;33123;other;one-seeded generative dispersule;.334;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.334;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Kickxia elatine;33123;actual measurement;germinule;.4;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.4;;;30;;Air dried weight;;3 Kickxia elatine;33123;actual measurement;germinule;.336;;-4;;BIOLFLOR database;.336;;;;;Air dried weight;;3 Kickxia elatine;33123;other;germinule;.334;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.334;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Kickxia spuria;33129;other;germinule;.41;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.41;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Kickxia spuria;33129;actual measurement;one-seeded generative dispersule;.341;;-4;;BIOLFLOR database;.341;.375;.299;;;Air dried weight;;2a Kickxia spuria;33129;actual measurement;germinule;.341;;-4;;BIOLFLOR database;.341;.375;.299;;;Air dried weight;;3 Kickxia spuria;33129;other;one-seeded generative dispersule;.41;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.41;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Knautia arvensis;19058;other;one-seeded generative dispersule;6.6844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.6844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Knautia arvensis;19058;actual measurement;one-seeded generative dispersule;2.91;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.91;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Knautia arvensis;19058;actual measurement;one-seeded generative dispersule;4.082083333;8;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.082083333;5.514;2.455;150;;Air dried weight;;2a Knautia arvensis;19058;actual measurement;one-seeded generative dispersule;2.783;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.783;2.794;2.772;100;;Air dried weight;;2a Knautia arvensis;19058;actual measurement;one-seeded generative dispersule;3.928;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.928;;;40;;Air dried weight;;2a Knautia arvensis;19058;actual measurement;one-seeded generative dispersule;4.63;;-4;;BIOLFLOR database;4.63;4.7;4.6;;;Air dried weight;;2a Knautia arvensis;19058;actual measurement;generative dispersule;2.71825;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.71825;2.797;2.622;100;;Air dried weight;;2 Knautia arvensis;19058;actual measurement;germinule;3.928;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.928;;;40;;Air dried weight;;3 Knautia arvensis;19058;actual measurement;germinule;2.469;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.469;;;1;summers of 1995 and 1996;Unknown;;3 Knautia arvensis;19058;actual measurement;germinule;4.63;;-4;;BIOLFLOR database;4.63;4.7;4.6;;;Air dried weight;;3 Knautia arvensis;19058;other;germinule;6.6844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.6844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Knautia dipsacifolia;19339;actual measurement (following LEDA data standards);germinule;5.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.13;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Knautia dipsacifolia;19339;actual measurement (following LEDA data standards);germinule;4.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.83;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Knautia dipsacifolia;19339;actual measurement (following LEDA data standards);germinule;5.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.19;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Knautia dipsacifolia;19339;actual measurement (following LEDA data standards);germinule;5.13;5;-2;5.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.88;5.31;3.92;;preaggregated value obtained from single record;Air dried weight;;3 Knautia dipsacifolia;19339;actual measurement (following LEDA data standards);germinule;3.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.92;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Knautia dipsacifolia;19339;actual measurement (following LEDA data standards);germinule;5.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.31;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Knautia dipsacifolia;19339;actual measurement;generative dispersule;4.838;;-4;;BIOLFLOR database;4.838;;;;;Air dried weight;;2 Knautia drymeia;19345;actual measurement;generative dispersule;2.6;;-4;;BIOLFLOR database;2.6;;;;;Air dried weight;;2 Kobresia simpliciuscula;37154;other;unknown;.5348;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Kobresia simpliciuscula;37154;other;unknown;.524;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Kobresia simpliciuscula;37154;other;unknown;.3904;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Koeleria glauca;43022;actual measurement;generative dispersule;.172;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.172;.172;.172;1;;Air dried weight;;2 Koeleria macrantha;42831;actual measurement;generative dispersule;.31;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.31;;;1;n an replicates unknown;Air dried weight;;2 Koeleria macrantha;42831;actual measurement;germinule;.44;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.44;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Koeleria macrantha;42831;actual measurement;germinule;.267;;-4;;BIOLFLOR database;.267;.3;.2;;;Air dried weight;;3 Koeleria macrantha;42831;actual measurement;germinule;.2866;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.2866;;;100;;Air dried weight;;3 Koeleria macrantha;42831;actual measurement;one-seeded generative dispersule;.267;;-4;;BIOLFLOR database;.267;.3;.2;;;Air dried weight;;2a Koeleria macrantha;42831;actual measurement;one-seeded generative dispersule;.2866;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.2866;;;100;;Air dried weight;;2a Koeleria macrantha;42831;other;one-seeded generative dispersule;.258;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.258;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Koeleria macrantha;42831;other;one-seeded generative dispersule;.2584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Koeleria macrantha;42831;other;one-seeded generative dispersule;.2244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Koeleria macrantha;42831;other;one-seeded generative dispersule;.2496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Koeleria macrantha;42831;other;germinule;.2584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Koeleria macrantha;42831;other;germinule;.2496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Koeleria macrantha;42831;other;germinule;.258;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.258;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Koeleria macrantha;42831;other;germinule;.2244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Koeleria pyramidata;42453;actual measurement;one-seeded generative dispersule;2.3;;-4;;BIOLFLOR database;2.3;;;;;Air dried weight;;2a Koeleria pyramidata;42453;actual measurement;germinule;2.3;;-4;;BIOLFLOR database;2.3;;;;;Air dried weight;;3 Koeleria vallesiana;42464;other;unknown;.4196;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Laburnum alpinum;21915;actual measurement;generative dispersule;28.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);28.6;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Laburnum anagyroides;20994;actual measurement;germinule;28.99;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28.99;;;100;;Air dried weight;;3 Laburnum anagyroides;20994;actual measurement;germinule;26.548;;-4;;BIOLFLOR database;26.548;30.14;24.075;;;Air dried weight;;3 Laburnum anagyroides;20994;actual measurement;one-seeded generative dispersule;28.99;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28.99;;;100;;Air dried weight;;2a Laburnum anagyroides;20994;actual measurement;one-seeded generative dispersule;26.548;;-4;;BIOLFLOR database;26.548;30.14;24.075;;;Air dried weight;;2a Lactuca perennis;6626;actual measurement;germinule;1.56;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.56;1.594;1.508;150;;Air dried weight;;3 Lactuca quercina;6509;actual measurement;germinule;1.375;;-4;;BIOLFLOR database;1.375;;;;;Air dried weight;;3 Lactuca quercina;6509;actual measurement;one-seeded generative dispersule;1.375;;-4;;BIOLFLOR database;1.375;;;;;Air dried weight;;2a Lactuca saligna;7415;actual measurement;one-seeded generative dispersule;.649;;-4;;BIOLFLOR database;.649;.668;.639;;;Air dried weight;;2a Lactuca saligna;7415;actual measurement;germinule;.649;;-4;;BIOLFLOR database;.649;.668;.639;;;Air dried weight;;3 Lactuca saligna;7415;other;one-seeded generative dispersule;.5496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lactuca saligna;7415;other;one-seeded generative dispersule;.6924;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6924;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lactuca saligna;7415;other;one-seeded generative dispersule;.7508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lactuca saligna;7415;other;germinule;.7508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lactuca saligna;7415;other;germinule;.6924;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6924;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lactuca saligna;7415;other;germinule;.5496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lactuca sativa;6510;actual measurement;germinule;1.2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;1.7;.7;1;n and replicates unknown;Air dried weight;;3 Lactuca serriola;6360;actual measurement;germinule;.572;;-4;;BIOLFLOR database;.572;.694;.449;;;Air dried weight;;3 Lactuca serriola;6360;actual measurement;germinule;.569;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.569;;;100;;Air dried weight;;3 Lactuca serriola;6360;actual measurement;generative dispersule;.37;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.37;;;1;n an replicates unknown;Air dried weight;;2 Lactuca serriola;6360;other;one-seeded generative dispersule;.5712;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lactuca serriola;6360;other;one-seeded generative dispersule;.5548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lactuca serriola;6360;other;one-seeded generative dispersule;.4572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lactuca serriola;6360;actual measurement;one-seeded generative dispersule;.572;;-4;;BIOLFLOR database;.572;.694;.449;;;Air dried weight;;2a Lactuca serriola;6360;actual measurement;one-seeded generative dispersule;.706;;-4;;BIOLFLOR database;.706;.712;.7;;;Air dried weight;;2a Lactuca serriola;6360;actual measurement;one-seeded generative dispersule;.569;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.569;;;100;;Air dried weight;;2a Lactuca serriola;6360;other;germinule;.4572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lactuca serriola;6360;other;germinule;.5548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lactuca serriola;6360;other;germinule;.5712;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lactuca viminea;6511;actual measurement;one-seeded generative dispersule;1.156;;-4;;BIOLFLOR database;1.156;;;;;Air dried weight;;2a Lactuca viminea;6511;actual measurement;germinule;1.156;;-4;;BIOLFLOR database;1.156;;;;;Air dried weight;;3 Lactuca virosa;7940;actual measurement;one-seeded generative dispersule;.82;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.82;;;100;;Air dried weight;;2a Lactuca virosa;7940;other;germinule;.6552;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lactuca virosa;7940;other;germinule;.9756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lactuca virosa;7940;other;germinule;.8952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lagurus ovatus;43717;actual measurement (following LEDA data standards);germinule;.55;1;-2;.55;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;.55;.55;;preaggregated value obtained from single record;Air dried weight;;3 Lagurus ovatus;43717;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Lamiastrum galeobdolon;24666;other;germinule;2.4368;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4368;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lamiastrum galeobdolon;24666;other;germinule;2.7968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lamiastrum galeobdolon;24666;other;germinule;2.5064;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5064;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lamiastrum galeobdolon;24666;other;germinule;2.8516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lamiastrum galeobdolon;24666;actual measurement;one-seeded generative dispersule;1.977;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.977;;;30;;Air dried weight;;2a Lamiastrum galeobdolon;24666;actual measurement;germinule;1.84;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.84;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Lamiastrum galeobdolon;24666;actual measurement;one-seeded generative dispersule;2.298;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.298;;;50;;Air dried weight;;2a Lamium album;24182;actual measurement;germinule;1.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.1;;;100;;Air dried weight;;3 Lamium album;24182;actual measurement;one-seeded generative dispersule;1.43;;-4;;BIOLFLOR database;1.43;;;;;Air dried weight;;2a Lamium album;24182;actual measurement;germinule;1.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.1;;;100;;Air dried weight;;3 Lamium album;24182;actual measurement;generative dispersule;1.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.8;;;1;n an replicates unknown;Air dried weight;;2 Lamium album;24182;actual measurement;germinule;1.43;;-4;;BIOLFLOR database;1.43;;;;;Air dried weight;;3 Lamium album;24182;actual measurement;one-seeded generative dispersule;1.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.1;;;100;;Air dried weight;;2a Lamium album;24182;actual measurement;one-seeded generative dispersule;1.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.1;;;100;;Air dried weight;;2a Lamium album;24182;other;one-seeded generative dispersule;1.514;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.514;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lamium album;24182;actual measurement;generative dispersule;1.361;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.361;1.398;1.342;100;;Air dried weight;;2 Lamium album;24182;other;germinule;1.514;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.514;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lamium amplexicaule;23573;other;germinule;.5988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lamium amplexicaule;23573;other;one-seeded generative dispersule;.5988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lamium amplexicaule;23573;actual measurement;one-seeded generative dispersule;.523;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.523;;;100;;Air dried weight;;2a Lamium amplexicaule;23573;actual measurement;generative dispersule;.52;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.52;;;1;n an replicates unknown;Air dried weight;;2 Lamium amplexicaule;23573;actual measurement;germinule;.644;;-4;;BIOLFLOR database;.644;.717;.535;;;Air dried weight;;3 Lamium amplexicaule;23573;actual measurement;germinule;.523;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.523;;;100;;Air dried weight;;3 Lamium amplexicaule;23573;actual measurement;one-seeded generative dispersule;.644;;-4;;BIOLFLOR database;.644;.717;.535;;;Air dried weight;;2a Lamium hybridum;24187;actual measurement;one-seeded generative dispersule;.745;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.745;;;20;;Air dried weight;;2a Lamium maculatum;24189;actual measurement;generative dispersule;1.976666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.976666667;2.022;1.927;100;;Air dried weight;;2 Lamium maculatum;24189;actual measurement;one-seeded generative dispersule;1.8;;-4;;BIOLFLOR database;1.8;;;;;Air dried weight;;2a Lamium maculatum;24189;actual measurement;one-seeded generative dispersule;1.233;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.233;;;15;;Air dried weight;;2a Lamium maculatum;24189;actual measurement;germinule;1.8;;-4;;BIOLFLOR database;1.8;;;;;Air dried weight;;3 Lamium maculatum;24189;actual measurement;germinule;1.233;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.233;;;15;;Air dried weight;;3 Lamium purpureum;25103;actual measurement;generative dispersule;.86;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.86;1;.8;1;;Air dried weight;;2 Lamium purpureum;25103;actual measurement;one-seeded generative dispersule;.696;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.696;;;50;;Air dried weight;;2a Lamium purpureum;25103;other;germinule;.6416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lamium purpureum;25103;other;germinule;.6088;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6088;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lappula squarrosa;12063;actual measurement;germinule;1.3;;-4;;BIOLFLOR database;1.3;;;;;Air dried weight;;3 Lappula squarrosa;12063;actual measurement;one-seeded generative dispersule;1.3;;-4;;BIOLFLOR database;1.3;;;;;Air dried weight;;2a Lapsana communis;6629;actual measurement;one-seeded generative dispersule;1.266;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.266;;;100;;Air dried weight;;2a Lapsana communis;6629;actual measurement;generative dispersule;.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.5;;;1;n an replicates unknown;Air dried weight;;2 Lapsana communis;6629;actual measurement;germinule;1.266;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.266;;;100;;Air dried weight;;3 Lapsana communis;6629;actual measurement;one-seeded generative dispersule;1.037;;-4;;BIOLFLOR database;1.037;1.27;.917;;;Air dried weight;;2a Lapsana communis;6629;actual measurement;germinule;1.037;;-4;;BIOLFLOR database;1.037;1.27;.917;;;Air dried weight;;3 Larix decidua;653;actual measurement;one-seeded generative dispersule;6.24;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.24;;;50;;Air dried weight;;2a Laser trilobum;1700;actual measurement;generative dispersule;9.83;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.83;;;1;n an replicates unknown;Air dried weight;;2 Laser trilobum;1700;actual measurement;generative dispersule;18.8;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;18.8;20.1;18.3;1;;Air dried weight;;2 Laserpitium latifolium;1705;actual measurement;generative dispersule;7.8498;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.8498;9.096;5.932;100;;Air dried weight;;2 Laserpitium latifolium;1705;actual measurement;one-seeded generative dispersule;8.4;;-4;;BIOLFLOR database;8.4;8.8;8;;;Air dried weight;;2a Laserpitium latifolium;1705;actual measurement;germinule;8.4;;-4;;BIOLFLOR database;8.4;8.8;8;;;Air dried weight;;3 Laserpitium prutenicum;1215;actual measurement;germinule;4.459;;-4;;BIOLFLOR database;4.459;4.497;4.411;;;Air dried weight;;3 Laserpitium prutenicum;1215;actual measurement;one-seeded generative dispersule;4.459;;-4;;BIOLFLOR database;4.459;4.497;4.411;;;Air dried weight;;2a Laserpitium siler;1216;actual measurement;germinule;7.19;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.19;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Laserpitium siler;1216;actual measurement;one-seeded generative dispersule;11.6;;-4;;BIOLFLOR database;11.6;;;;;Air dried weight;;2a Laserpitium siler;1216;actual measurement;germinule;11.6;;-4;;BIOLFLOR database;11.6;;;;;Air dried weight;;3 Lathraea squamaria;34252;actual measurement;germinule;.509;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.509;;;100;;Air dried weight;;3 Lathraea squamaria;34252;actual measurement;germinule;.8;;-4;;BIOLFLOR database;.8;;;;;Air dried weight;;3 Lathraea squamaria;34252;actual measurement;one-seeded generative dispersule;.509;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.509;;;100;;Air dried weight;;2a Lathraea squamaria;34252;actual measurement;one-seeded generative dispersule;.8;;-4;;BIOLFLOR database;.8;;;;;Air dried weight;;2a Lathraea squamaria;34252;other;germinule;.8024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8024;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;3 Lathraea squamaria;34252;other;one-seeded generative dispersule;.556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.556;;;1000;1000 seed weight, unknown number of individuals, Moist seeds but dried before despatch.;Air dried weight;;2a Lathraea squamaria;34252;other;one-seeded generative dispersule;.8024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8024;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;2a Lathraea squamaria;34252;other;germinule;.556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.556;;;1000;1000 seed weight, unknown number of individuals, Moist seeds but dried before despatch.;Air dried weight;;3 Lathyrus aphaca;21294;other;germinule;20.3624;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.3624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lathyrus aphaca;21294;other;one-seeded generative dispersule;20.3624;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.3624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lathyrus aphaca;21294;actual measurement;one-seeded generative dispersule;23.093;;-4;;BIOLFLOR database;23.093;28;21;;;Air dried weight;;2a Lathyrus aphaca;21294;actual measurement;germinule;23.093;;-4;;BIOLFLOR database;23.093;28;21;;;Air dried weight;;3 Lathyrus heterophyllus;19830;actual measurement;generative dispersule;1.92;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.92;2.5;1.3;1;;Air dried weight;;2 Lathyrus hirsutus;21923;actual measurement;germinule;32.42;;-4;;BIOLFLOR database;32.42;;;;;Air dried weight;;3 Lathyrus hirsutus;21923;actual measurement;one-seeded generative dispersule;32.42;;-4;;BIOLFLOR database;32.42;;;;;Air dried weight;;2a Lathyrus japonicus;21925;actual measurement;germinule;33.403;;-4;;BIOLFLOR database;33.403;47;23;;;Air dried weight;;3 Lathyrus japonicus;21925;actual measurement;one-seeded generative dispersule;33.403;;-4;;BIOLFLOR database;33.403;47;23;;;Air dried weight;;2a Lathyrus japonicus;21925;other;one-seeded generative dispersule;39.1548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);39.1548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lathyrus japonicus;21925;actual measurement (following LEDA data standards);germinule;28.52;1;-2;28.52;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28.52;28.52;28.52;;preaggregated value obtained from single record;Air dried weight;;3 Lathyrus japonicus;21925;other;germinule;39.1548;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);39.1548;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lathyrus japonicus;21925;actual measurement (following LEDA data standards);germinule;28.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28.52;;;30;used balance: Mettler H51, seed;Air dried weight;;3 Lathyrus laevigatus;20500;actual measurement;one-seeded generative dispersule;104.39;;-4;;BIOLFLOR database;104.39;;;;;Air dried weight;;2a Lathyrus laevigatus;20500;actual measurement;germinule;104.39;;-4;;BIOLFLOR database;104.39;;;;;Air dried weight;;3 Lathyrus latifolius;21002;actual measurement;germinule;68.854;;-4;;BIOLFLOR database;68.854;72.1;65.608;;;Air dried weight;;3 Lathyrus latifolius;21002;actual measurement;germinule;44.868;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44.868;;;50;;Air dried weight;;3 Lathyrus latifolius;21002;actual measurement;one-seeded generative dispersule;68.854;;-4;;BIOLFLOR database;68.854;72.1;65.608;;;Air dried weight;;2a Lathyrus latifolius;21002;actual measurement;one-seeded generative dispersule;44.868;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44.868;;;50;;Air dried weight;;2a Lathyrus latifolius;21002;actual measurement (following LEDA data standards);germinule;28.04;1;-2;28.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28.04;28.04;28.04;;preaggregated value obtained from single record;Air dried weight;;3 Lathyrus latifolius;21002;actual measurement (following LEDA data standards);germinule;28.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28.04;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Lathyrus montanus;20503;actual measurement;one-seeded generative dispersule;12.486;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.486;;;50;;Air dried weight;;2a Lathyrus montanus;20503;actual measurement;germinule;15;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);15;;;1;summers of 1995 and 1996;Unknown;;3 Lathyrus montanus;20503;actual measurement;one-seeded generative dispersule;12.49;;-4;;BIOLFLOR database;12.49;;;;;Air dried weight;;2a Lathyrus montanus;20503;actual measurement;germinule;12.49;;-4;;BIOLFLOR database;12.49;;;;;Air dried weight;;3 Lathyrus montanus;20503;actual measurement;germinule;12.486;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.486;;;50;;Air dried weight;;3 Lathyrus niger;21815;actual measurement;germinule;18.786;;-4;;BIOLFLOR database;18.786;;;;;Air dried weight;;3 Lathyrus niger;21815;actual measurement;one-seeded generative dispersule;18.786;;-4;;BIOLFLOR database;18.786;;;;;Air dried weight;;2a Lathyrus nissolia;21360;actual measurement;one-seeded generative dispersule;7.492;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.492;;;100;;Air dried weight;;2a Lathyrus nissolia;21360;actual measurement;one-seeded generative dispersule;10.922;;-4;;BIOLFLOR database;10.922;11.119;10.693;;;Air dried weight;;2a Lathyrus nissolia;21360;actual measurement;germinule;7.492;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.492;;;100;;Air dried weight;;3 Lathyrus nissolia;21360;actual measurement;germinule;10.922;;-4;;BIOLFLOR database;10.922;11.119;10.693;;;Air dried weight;;3 Lathyrus odoratus;20506;actual measurement;germinule;73.804;;-4;;BIOLFLOR database;73.804;;;;;Air dried weight;;3 Lathyrus odoratus;20506;actual measurement;one-seeded generative dispersule;73.804;;-4;;BIOLFLOR database;73.804;;;;;Air dried weight;;2a Lathyrus palustris;21816;actual measurement;one-seeded generative dispersule;17.734;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17.734;;;50;;Air dried weight;;2a Lathyrus palustris;21816;other;germinule;18.0428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);18.0428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lathyrus palustris;21816;other;germinule;17.0912;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);17.0912;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lathyrus pratensis;21355;other;germinule;9.6852;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);9.6852;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lathyrus pratensis;21355;other;germinule;14.3848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.3848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lathyrus pratensis;21355;actual measurement;germinule;12.845;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.845;;;20;;Air dried weight;;3 Lathyrus pratensis;21355;actual measurement;germinule;13.688;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.688;;;50;;Air dried weight;;3 Lathyrus pratensis;21355;actual measurement;one-seeded generative dispersule;14.88;;-4;;BIOLFLOR database;14.88;26;11;;;Air dried weight;;2a Lathyrus pratensis;21355;actual measurement;germinule;10.119;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);10.119;;;1;summers of 1995 and 1996;Unknown;;3 Lathyrus pratensis;21355;actual measurement;germinule;14.88;;-4;;BIOLFLOR database;14.88;26;11;;;Air dried weight;;3 Lathyrus pratensis;21355;actual measurement;one-seeded generative dispersule;12.845;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.845;;;20;;Air dried weight;;2a Lathyrus pratensis;21355;actual measurement;one-seeded generative dispersule;13.688;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.688;;;50;;Air dried weight;;2a Lathyrus pratensis;21355;other;one-seeded generative dispersule;9.6852;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);9.6852;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lathyrus pratensis;21355;actual measurement;generative dispersule;9.149066667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;9.149066667;9.723333333;8.799333333;150;;Air dried weight;;2 Lathyrus pratensis;21355;other;one-seeded generative dispersule;14.3848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.3848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lathyrus sativus;20895;actual measurement;one-seeded generative dispersule;350;;-4;;BIOLFLOR database;350;560;135;;;Air dried weight;;2a Lathyrus sativus;20895;actual measurement;germinule;350;;-4;;BIOLFLOR database;350;560;135;;;Air dried weight;;3 Lathyrus sphaericus;19842;actual measurement;one-seeded generative dispersule;16.661;;-4;;BIOLFLOR database;16.661;;;;;Air dried weight;;2a Lathyrus sphaericus;19842;actual measurement;germinule;16.661;;-4;;BIOLFLOR database;16.661;;;;;Air dried weight;;3 Lathyrus sylvestris;20898;actual measurement;germinule;40.575;;-4;;BIOLFLOR database;40.575;;;;;Air dried weight;;3 Lathyrus sylvestris;20898;actual measurement;one-seeded generative dispersule;40.575;;-4;;BIOLFLOR database;40.575;;;;;Air dried weight;;2a Lathyrus sylvestris;20898;actual measurement;one-seeded generative dispersule;49.9364;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;49.9364;50.572;48.19066667;150;;Air dried weight;;2a Lathyrus sylvestris;20898;other;one-seeded generative dispersule;32.6384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);32.6384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lathyrus sylvestris;20898;other;germinule;32.6384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);32.6384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lathyrus tuberosus;19845;actual measurement (following LEDA data standards);germinule;44.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;44.05;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Lathyrus tuberosus;19845;actual measurement (following LEDA data standards);germinule;44.05;1;-2;44.05;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;44.05;44.05;44.05;;preaggregated value obtained from single record;Air dried weight;;3 Lathyrus tuberosus;19845;actual measurement;one-seeded generative dispersule;27.739;;-4;;BIOLFLOR database;27.739;32;23;;;Air dried weight;;2a Lathyrus tuberosus;19845;actual measurement;germinule;27.739;;-4;;BIOLFLOR database;27.739;32;23;;;Air dried weight;;3 Lathyrus tuberosus;19845;actual measurement;one-seeded generative dispersule;28.37;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28.37;;;50;;Air dried weight;;2a Lathyrus tuberosus;19845;actual measurement;germinule;28.37;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28.37;;;50;;Air dried weight;;3 Lathyrus vernus;19847;actual measurement;germinule;18.31;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);18.31;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Lathyrus vernus;19847;actual measurement;germinule;15.232;;-4;;BIOLFLOR database;15.232;20.006;11.627;;;Air dried weight;;3 Lathyrus vernus;19847;actual measurement;one-seeded generative dispersule;15.232;;-4;;BIOLFLOR database;15.232;20.006;11.627;;;Air dried weight;;2a Laurus nobilis;25247;actual measurement;generative dispersule;714.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);714.3;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Lavandula angustifolia;24725;actual measurement;germinule;1.28;;-4;;BIOLFLOR database;1.28;1.296;1.253;;;Air dried weight;;3 Lavandula angustifolia;24725;actual measurement;one-seeded generative dispersule;1.28;;-4;;BIOLFLOR database;1.28;1.296;1.253;;;Air dried weight;;2a Lavandula latifolia;23828;actual measurement;generative dispersule;.95;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.95;;;1;n and replicates unknown;Air dried weight;;2 Lavatera arborea;25729;other;unknown;13.18;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.18;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Lavatera cretica;25733;other;unknown;6.3396;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.3396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ledum palustre;19499;actual measurement;germinule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;3 Ledum palustre;19499;actual measurement;germinule;.02;;-4;;BIOLFLOR database;.02;;;;;Air dried weight;;3 Ledum palustre;19499;actual measurement;one-seeded generative dispersule;.02;;-4;;BIOLFLOR database;.02;;;;;Air dried weight;;2a Ledum palustre;19499;actual measurement;one-seeded generative dispersule;.0125;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0125;.014;.011;100;;Air dried weight;;2a Ledum palustre;19499;actual measurement;one-seeded generative dispersule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;2a Leersia oryzoides;43387;actual measurement;generative dispersule;1.254;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.254;1.263;1.245;100;;Air dried weight;;2 Leersia oryzoides;43387;other;germinule;1.1716;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Leersia oryzoides;43387;other;germinule;1.1068;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1068;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Leersia oryzoides;43387;other;germinule;1.3076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Leersia oryzoides;43387;other;germinule;1.056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Legousia hybrida;14896;other;germinule;.2508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Legousia hybrida;14896;other;one-seeded generative dispersule;.2508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Legousia hybrida;14896;actual measurement;one-seeded generative dispersule;.18;;-4;;BIOLFLOR database;.18;;;;;Air dried weight;;2a Legousia hybrida;14896;actual measurement;germinule;.18;;-4;;BIOLFLOR database;.18;;;;;Air dried weight;;3 Legousia speculum-veneris;14838;actual measurement;germinule;.194;;-4;;BIOLFLOR database;.194;.2;.189;;;Air dried weight;;3 Legousia speculum-veneris;14838;actual measurement;one-seeded generative dispersule;.194;;-4;;BIOLFLOR database;.194;.2;.189;;;Air dried weight;;2a Lembotropis nigricans;21830;actual measurement;germinule;3.33;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.33;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Lembotropis nigricans;21830;actual measurement;germinule;5.785;;-4;;BIOLFLOR database;5.785;6.44;5.13;;;Air dried weight;;3 Lembotropis nigricans;21830;actual measurement;one-seeded generative dispersule;5.785;;-4;;BIOLFLOR database;5.785;6.44;5.13;;;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement;generative dispersule;.585;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.585;.61;.56;100;with pappus;Air dried weight;;2 Leontodon autumnalis;7298;actual measurement;generative dispersule;.614666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.614666667;.658;.589;1;;Air dried weight;;2 Leontodon autumnalis;7298;actual measurement;one-seeded generative dispersule;.703;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.703;;;100;;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement;one-seeded generative dispersule;.803;;-4;;BIOLFLOR database;.803;.838;.767;;;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement;one-seeded generative dispersule;1.358;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.358;;;100;;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement;germinule;1.358;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.358;;;100;;Air dried weight;;3 Leontodon autumnalis;7298;actual measurement;germinule;.924;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.924;.924;.924;1;;Air dried weight;;3 Leontodon autumnalis;7298;actual measurement;germinule;.703;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.703;;;100;;Air dried weight;;3 Leontodon autumnalis;7298;actual measurement;germinule;.708;;-4;;BIOLFLOR database;.708;.73;.7;;;Air dried weight;;3 Leontodon autumnalis;7298;actual measurement;germinule;.803;;-4;;BIOLFLOR database;.803;.838;.767;;;Air dried weight;;3 Leontodon autumnalis;7298;actual measurement (following LEDA data standards);germinule;.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;;;10;No. of seeds per individual: 10;Air dried weight;;3 Leontodon autumnalis;7298;actual measurement (following LEDA data standards);germinule;.58;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.58;;;10;No. of seeds per individual: 10;Air dried weight;;3 Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;3;-2;.68;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.69;.75;.64;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;.75;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.75;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;.64;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.64;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;.75;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.75;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;.64;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.64;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.28;1;-2;1.28;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;1.28;1.28;;preaggregated value obtained from single record;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;;;19;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Leontodon autumnalis;7298;actual measurement (following LEDA data standards);germinule;.61;3;-2;.61;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.62;.68;.58;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Leontodon autumnalis;7298;actual measurement (following LEDA data standards);germinule;.61;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.61;;;10;No. of seeds per individual: 10;Air dried weight;;3 Leontodon hispidus;6638;actual measurement (following LEDA data standards);germinule;1.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.53;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Leontodon hispidus;6638;actual measurement (following LEDA data standards);germinule;1.53;1;-2;1.53;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.53;1.53;1.53;;preaggregated value obtained from single record;Air dried weight;;3 Leontodon hispidus;6638;other;germinule;.9868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Leontodon hispidus;6638;actual measurement;germinule;.802;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.802;;;100;;Air dried weight;;3 Leontodon hispidus;6638;actual measurement;germinule;1.551;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.551;;;50;;Air dried weight;;3 Leontodon hispidus;6638;actual measurement;germinule;.904;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.904;;;100;;Air dried weight;;3 Leontodon hispidus;6638;actual measurement;germinule;1.194933333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.194933333;1.208;1.181333333;150;;Air dried weight;;3 Leontodon hispidus;6638;actual measurement;germinule;1.235;;-4;;BIOLFLOR database;1.235;1.4;1.105;;;Air dried weight;;3 Leontodon hispidus;6638;actual measurement;germinule;.85;;-4;;BIOLFLOR database;.85;;;;;Air dried weight;;3 Leontodon hispidus;6638;actual measurement;germinule;.93;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.93;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Leontodon hispidus;6638;actual measurement;one-seeded generative dispersule;1.235;;-4;;BIOLFLOR database;1.235;1.4;1.105;;;Air dried weight;;2a Leontodon hispidus;6638;other;one-seeded generative dispersule;.9868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Leontodon hispidus;6638;actual measurement;generative dispersule;1.24;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.24;1.24;1.24;150;;Air dried weight;;2 Leontodon hispidus;6638;actual measurement;generative dispersule;.71;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.71;.71;.71;30;;Air dried weight;;2 Leontodon hispidus;6638;actual measurement;one-seeded generative dispersule;.802;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.802;;;100;;Air dried weight;;2a Leontodon hispidus;6638;actual measurement;one-seeded generative dispersule;1.551;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.551;;;50;;Air dried weight;;2a Leontodon hispidus;6638;actual measurement;one-seeded generative dispersule;.904;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.904;;;100;;Air dried weight;;2a Leontodon incanus;6757;actual measurement;one-seeded generative dispersule;1.4;;-4;;BIOLFLOR database;1.4;;;;;Air dried weight;;2a Leontodon incanus;6757;actual measurement;germinule;1.4;;-4;;BIOLFLOR database;1.4;;;;;Air dried weight;;3 Leontodon incanus;6757;actual measurement;generative dispersule;1.2286;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.2286;1.316;1.138;50;;Air dried weight;;2 Leontodon taraxacoides;6861;actual measurement;germinule;.24385;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.24385;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Leontodon taraxacoides;6861;actual measurement;germinule;.244;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.244;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Leontodon taraxacoides;6861;actual measurement;germinule;.24;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.24;;;30;collected between 1996-1999;Air dried weight;;3 Leontodon taraxacoides;6861;actual measurement;one-seeded generative dispersule;.458;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.458;;;50;;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.61;8;-2;.61;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;.72;.48;;preaggregated value obtained from single record;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.55;1;-2;.55;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;.55;.55;;preaggregated value obtained from single record;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.57;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.72;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.72;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.68;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);one-seeded generative dispersule;.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Leontodon tuberosus;7518;actual measurement;germinule;.50889;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.50889;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Leontodon tuberosus;7518;actual measurement;germinule;.509;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.509;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Leontopodium alpinum;6862;actual measurement;germinule;.119;;-4;;BIOLFLOR database;.119;;;;;Air dried weight;;3 Leontopodium alpinum;6862;actual measurement;one-seeded generative dispersule;.119;;-4;;BIOLFLOR database;.119;;;;;Air dried weight;;2a Leonurus cardiaca;23833;other;one-seeded generative dispersule;.8852;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8852;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;2a Leonurus cardiaca;23833;actual measurement;generative dispersule;.8244;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.8244;.935;.616;100;;Air dried weight;;2 Leonurus cardiaca;23833;actual measurement;one-seeded generative dispersule;1.083;;-4;;BIOLFLOR database;1.083;1.106;1.051;;;Air dried weight;;2a Leonurus cardiaca;23833;actual measurement;germinule;1.083;;-4;;BIOLFLOR database;1.083;1.106;1.051;;;Air dried weight;;3 Leonurus cardiaca;23833;other;germinule;.8852;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8852;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;3 Leonurus marrubiastrum;24198;actual measurement;germinule;.458;;-4;;BIOLFLOR database;.458;;;;;Air dried weight;;3 Leonurus marrubiastrum;24198;actual measurement;one-seeded generative dispersule;.458;;-4;;BIOLFLOR database;.458;;;;;Air dried weight;;2a Lepidium campestre;13495;actual measurement;one-seeded generative dispersule;1.57;;-4;;BIOLFLOR database;1.57;1.9;1.3;;;Air dried weight;;2a Lepidium campestre;13495;actual measurement;germinule;1.57;;-4;;BIOLFLOR database;1.57;1.9;1.3;;;Air dried weight;;3 Lepidium campestre;13495;actual measurement;one-seeded generative dispersule;2.502;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.502;;;50;;Air dried weight;;2a Lepidium campestre;13495;actual measurement;generative dispersule;2.725;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.725;2.765;2.7;100;;Air dried weight;;2 Lepidium campestre;13495;actual measurement;germinule;2.502;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.502;;;50;;Air dried weight;;3 Lepidium densiflorum;14562;actual measurement;germinule;.262;;-4;;BIOLFLOR database;.262;.276;.241;;;Air dried weight;;3 Lepidium densiflorum;14562;actual measurement;one-seeded generative dispersule;.262;;-4;;BIOLFLOR database;.262;.276;.241;;;Air dried weight;;2a Lepidium graminifolium;13498;actual measurement;one-seeded generative dispersule;.754;;-4;;BIOLFLOR database;.754;.793;.731;;;Air dried weight;;2a Lepidium graminifolium;13498;actual measurement;germinule;.754;;-4;;BIOLFLOR database;.754;.793;.731;;;Air dried weight;;3 Lepidium heterophyllum;13940;actual measurement;germinule;1.37967;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.37967;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Lepidium heterophyllum;13940;actual measurement;germinule;1.38;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.38;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Lepidium heterophyllum;13940;actual measurement;one-seeded generative dispersule;1.47;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.47;;;50;;Air dried weight;;2a Lepidium heterophyllum;13940;other;germinule;1.632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lepidium heterophyllum;13940;other;germinule;1.2692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lepidium latifolium;13501;actual measurement;one-seeded generative dispersule;.138;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.138;;;50;;Air dried weight;;2a Lepidium latifolium;13501;actual measurement;generative dispersule;2.354333333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.354333333;2.362;2.34;50;;Air dried weight;;2 Lepidium latifolium;13501;actual measurement;one-seeded generative dispersule;.197;;-4;;BIOLFLOR database;.197;.211;.188;;;Air dried weight;;2a Lepidium latifolium;13501;actual measurement;germinule;.197;;-4;;BIOLFLOR database;.197;.211;.188;;;Air dried weight;;3 Lepidium latifolium;13501;actual measurement;germinule;.138;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.138;;;50;;Air dried weight;;3 Lepidium ruderale;13947;actual measurement;germinule;.166;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.166;;;100;;Air dried weight;;3 Lepidium ruderale;13947;actual measurement;germinule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;3 Lepidium ruderale;13947;actual measurement;one-seeded generative dispersule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;2a Lepidium ruderale;13947;actual measurement;one-seeded generative dispersule;.166;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.166;;;100;;Air dried weight;;2a Lepidium sativum;13505;actual measurement;one-seeded generative dispersule;2.2;;-4;;BIOLFLOR database;2.2;2.8;1.6;;;Air dried weight;;2a Lepidium sativum;13505;actual measurement;germinule;2.2;;-4;;BIOLFLOR database;2.2;2.8;1.6;;;Air dried weight;;3 Lepidium sativum;13505;actual measurement;germinule;2.2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2.8;1.6;1;n and replicates unknown;Air dried weight;;3 Leucanthemum atratum s. halleri;9557;actual measurement;germinule;.471;;-4;;BIOLFLOR database;.471;;;;;Air dried weight;;3 Leucanthemum atratum s. halleri;9557;actual measurement;one-seeded generative dispersule;.471;;-4;;BIOLFLOR database;.471;;;;;Air dried weight;;2a Leucanthemum heterophyllum;10822;actual measurement;germinule;.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.5;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Leucanthemum vulgare;9651;actual measurement;germinule;.38;;-4;;BIOLFLOR database;.38;;;;;Air dried weight;;3 Leucanthemum vulgare;9651;actual measurement;germinule;.38;;-4;;BIOLFLOR database;.38;;;;;Air dried weight;;3 Leucanthemum vulgare;9651;actual measurement;germinule;.335;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.335;;;50;;Air dried weight;;3 Leucanthemum vulgare;9651;actual measurement;germinule;.44;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.44;;;1;summers of 1995 and 1996;Unknown;;3 Leucanthemum vulgare;9651;actual measurement;one-seeded generative dispersule;.38;;-4;;BIOLFLOR database;.38;;;;;Air dried weight;;2a Leucanthemum vulgare;9651;actual measurement;one-seeded generative dispersule;.38;;-4;;BIOLFLOR database;.38;;;;;Air dried weight;;2a Leucanthemum vulgare;9651;actual measurement;one-seeded generative dispersule;.1355;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1355;.143;.128;100;;Air dried weight;;2a Leucanthemum vulgare;9651;actual measurement;one-seeded generative dispersule;.335;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.335;;;50;;Air dried weight;;2a Leucanthemum vulgare;9651;other;one-seeded generative dispersule;.4132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Leucanthemum vulgare;9651;other;one-seeded generative dispersule;.4132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Leucanthemum vulgare;9651;other;one-seeded generative dispersule;.4132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Leucanthemum vulgare;9651;other;one-seeded generative dispersule;.4132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Leucanthemum vulgare;9651;actual measurement (following LEDA data standards);germinule;.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.46;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Leucanthemum vulgare;9651;actual measurement (following LEDA data standards);germinule;.46;1;-2;.46;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.46;.46;.46;;preaggregated value obtained from single record;Air dried weight;;3 Leucanthemum vulgare;9651;other;germinule;.4132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Leucojum aestivum;35586;other;unknown;53.3856;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);53.3856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Leucojum aestivum;35586;other;unknown;39.324;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);39.324;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;4 Leucojum vernum;35768;other;germinule;12.1708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.1708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Leucojum vernum;35768;actual measurement;germinule;11.91;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);11.91;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Levisticum officinale;2151;actual measurement;one-seeded generative dispersule;1.394;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.394;;;50;;Air dried weight;;2a Leymus arenarius;43033;actual measurement;germinule;.528;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.528;.533;.523;100;;Air dried weight;;3 Leymus arenarius;43033;actual measurement;one-seeded generative dispersule;11.066;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11.066;;;50;;Air dried weight;;2a Leymus arenarius;43033;other;germinule;14.1528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.1528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ligusticum mutellinoides;1225;actual measurement;one-seeded generative dispersule;1.02;;-4;;BIOLFLOR database;1.02;;;;;Air dried weight;;2a Ligusticum mutellinoides;1225;actual measurement;germinule;1.02;;-4;;BIOLFLOR database;1.02;;;;;Air dried weight;;3 Ligustrum vulgare;26363;actual measurement;generative dispersule;11.37;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);11.37;;;1;n an replicates unknown;Air dried weight;;2 Ligustrum vulgare;26363;actual measurement;generative dispersule;179.391;;-4;;BIOLFLOR database;179.391;185.782;173;;;Unknown;;2 Ligustrum vulgare;26363;actual measurement;germinule;20.438;;-4;;BIOLFLOR database;20.438;26.854;14.46;;;Air dried weight;;3 Ligustrum vulgare;26363;actual measurement;one-seeded generative dispersule;19.5;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19.5;;;100;;Air dried weight;;2a Ligustrum vulgare;26363;actual measurement;one-seeded generative dispersule;14.46;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14.46;;;10;;Air dried weight;;2a Ligustrum vulgare;26363;actual measurement;one-seeded generative dispersule;7.09;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.09;;;43;;Air dried weight;;2a Ligustrum vulgare;26363;other;unknown;15.6644;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.6644;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ligustrum vulgare;26363;other;unknown;15.594;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.594;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Lilium bulbiferum;39057;actual measurement;germinule;7.4;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.4;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Lilium martagon;39063;actual measurement;generative dispersule;5.64;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.64;;;1;n and replicates unknown;Air dried weight;;2 Lilium martagon;39063;actual measurement;germinule;5.085;;-4;;BIOLFLOR database;5.085;5.17;5;;;Air dried weight;;3 Lilium martagon;39063;actual measurement;germinule;7.93;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.93;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Lilium martagon;39063;actual measurement;one-seeded generative dispersule;5.085;;-4;;BIOLFLOR database;5.085;5.17;5;;;Air dried weight;;2a Lilium pyrenaicum;38557;actual measurement;generative dispersule;9.58;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.58;;;1;n and replicates unknown;Air dried weight;;2 Limonium bellidifolium;28470;other;unknown;.7332;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7332;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Limonium binervosum;28471;other;unknown;.558;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.558;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Limonium humile;28390;other;unknown;2.3144;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Limonium recurvum;28520;other;unknown;.5872;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Limonium recurvum;28520;other;unknown;.3476;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Limonium recurvum;28520;other;unknown;.5136;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Limonium vulgare;28293;actual measurement (following LEDA data standards);germinule;.84;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Limonium vulgare;28293;actual measurement (following LEDA data standards);germinule;.84;1;-2;.84;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;.84;.84;;preaggregated value obtained from single record;Air dried weight;;3 Limonium vulgare;28293;other;germinule;1.1268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Limonium vulgare;28293;other;germinule;1.4696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Limosella aquatica;33604;actual measurement;germinule;.02;;-4;;BIOLFLOR database;.02;.027;.017;;;Air dried weight;;3 Limosella aquatica;33604;actual measurement;one-seeded generative dispersule;.02;;-4;;BIOLFLOR database;.02;.027;.017;;;Air dried weight;;2a Limosella aquatica;33604;other;germinule;.01972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.01972;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry.;Unknown;;3 Limosella aquatica;33604;other;germinule;.0158;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0158;;;1000;1000 seed weight, unknown number of individuals, Seeds both dry & moist.;Unknown;;3 Limosella aquatica;33604;other;one-seeded generative dispersule;.01972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.01972;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry.;Unknown;;2a Limosella aquatica;33604;actual measurement;generative dispersule;.016;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.016;.018;.014;1;;Air dried weight;;2 Limosella aquatica;33604;other;one-seeded generative dispersule;.01076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.01076;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;2a Limosella aquatica;33604;other;one-seeded generative dispersule;.0158;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0158;;;1000;1000 seed weight, unknown number of individuals, Seeds both dry & moist.;Unknown;;2a Limosella aquatica;33604;other;germinule;.01076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.01076;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;3 Limosella australis;34230;other;unknown;.02888;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02888;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Linaria alpina;34452;actual measurement;one-seeded generative dispersule;.278;;-4;;BIOLFLOR database;.278;;;;;Air dried weight;;2a Linaria alpina;34452;actual measurement;germinule;.278;;-4;;BIOLFLOR database;.278;;;;;Air dried weight;;3 Linaria arenaria;33584;other;unknown;.0912;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0912;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Linaria arenaria;33584;other;unknown;.0668;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Linaria arenaria;33584;other;unknown;.0748;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Linaria genistifolia;33054;actual measurement;germinule;.141;;-4;;BIOLFLOR database;.141;;;;;Air dried weight;;3 Linaria genistifolia;33054;actual measurement;one-seeded generative dispersule;.141;;-4;;BIOLFLOR database;.141;;;;;Air dried weight;;2a Linaria purpurea;33748;actual measurement;one-seeded generative dispersule;.154;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.154;;;50;;Air dried weight;;2a Linaria purpurea;33748;other;germinule;.1444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linaria repens;33754;other;germinule;.2528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linaria repens;33754;actual measurement;one-seeded generative dispersule;.196;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.196;;;50;;Air dried weight;;2a Linaria repens;33754;actual measurement;one-seeded generative dispersule;.194;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.194;;;50;;Air dried weight;;2a Linaria spartea;33714;actual measurement;generative dispersule;.136;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.136;.15;.12;1;;Air dried weight;;2 Linaria spartea;33714;actual measurement;germinule;.0198;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0198;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Linaria spartea;33714;actual measurement;germinule;.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02;;;30;collected between 1996-1999;Air dried weight;;3 Linaria supina;33084;other;unknown;.2048;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Linaria vulgaris;33091;actual measurement (following LEDA data standards);germinule;.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.25;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Linaria vulgaris;33091;actual measurement (following LEDA data standards);germinule;.25;1;-2;.25;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.25;.25;.25;;preaggregated value obtained from single record;Air dried weight;;3 Linaria vulgaris;33091;actual measurement (following LEDA data standards);germinule;.15;1;-2;.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;.15;.15;;preaggregated value obtained from single record;Air dried weight;;3 Linaria vulgaris;33091;other;germinule;.1924;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1924;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linaria vulgaris;33091;actual measurement (following LEDA data standards);germinule;.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Linaria vulgaris;33091;actual measurement;generative dispersule;.138;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.138;.138;.138;100;;Air dried weight;;2 Linaria vulgaris;33091;actual measurement;germinule;.184;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.184;;;50;;Air dried weight;;3 Linaria vulgaris;33091;actual measurement;germinule;.142;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.142;;;50;;Air dried weight;;3 Linaria vulgaris;33091;actual measurement;germinule;.148;;-4;;BIOLFLOR database;.148;.172;.13;;;Air dried weight;;3 Linaria vulgaris;33091;actual measurement;one-seeded generative dispersule;.142;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.142;;;50;;Air dried weight;;2a Linaria vulgaris;33091;actual measurement;one-seeded generative dispersule;.184;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.184;;;50;;Air dried weight;;2a Linaria vulgaris;33091;actual measurement;one-seeded generative dispersule;.148;;-4;;BIOLFLOR database;.148;.172;.13;;;Air dried weight;;2a Linaria vulgaris;33091;other;one-seeded generative dispersule;.1924;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1924;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lindernia procumbens;33575;actual measurement;generative dispersule;.009;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.009;.014;.004;1;;Air dried weight;;2 Linnaea borealis;15394;actual measurement (following LEDA data standards);germinule;.87;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.87;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Linnaea borealis;15394;actual measurement (following LEDA data standards);germinule;.87;1;-2;.87;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.87;.87;.87;;preaggregated value obtained from single record;Air dried weight;;3 Linum austriacum;25949;actual measurement;one-seeded generative dispersule;1.351;;-4;;BIOLFLOR database;1.351;;;;;Air dried weight;;2a Linum austriacum;25949;actual measurement;germinule;1.351;;-4;;BIOLFLOR database;1.351;;;;;Air dried weight;;3 Linum bienne;25957;other;unknown;1.2324;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Linum bienne;25957;other;unknown;1.2384;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Linum catharticum;25925;actual measurement (following LEDA data standards);germinule;.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.17;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Linum catharticum;25925;actual measurement (following LEDA data standards);germinule;.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Linum catharticum;25925;actual measurement (following LEDA data standards);germinule;.15;1;-2;.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;.15;.15;;preaggregated value obtained from single record;Air dried weight;;3 Linum catharticum;25925;other;germinule;.1568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum catharticum;25925;other;germinule;.178;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.178;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum catharticum;25925;actual measurement (following LEDA data standards);germinule;.17;1;-2;.17;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.17;.17;.17;;preaggregated value obtained from single record;Air dried weight;;3 Linum catharticum;25925;actual measurement;germinule;.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.14;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Linum catharticum;25925;actual measurement;germinule;.163;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.163;;;97;;Air dried weight;;3 Linum catharticum;25925;actual measurement;germinule;.164;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.164;;;50;;Air dried weight;;3 Linum catharticum;25925;actual measurement;germinule;.137;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.137;;;100;;Air dried weight;;3 Linum catharticum;25925;actual measurement;one-seeded generative dispersule;.137;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.137;;;100;;Air dried weight;;2a Linum catharticum;25925;actual measurement;one-seeded generative dispersule;.163;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.163;;;97;;Air dried weight;;2a Linum catharticum;25925;actual measurement;germinule;.136;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.136;;;1;summers of 1995 and 1996;Unknown;;3 Linum catharticum;25925;actual measurement;germinule;.134;;-4;;BIOLFLOR database;.134;.16;.1;;;Air dried weight;;3 Linum catharticum;25925;other;one-seeded generative dispersule;.178;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.178;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum catharticum;25925;other;one-seeded generative dispersule;.1568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum catharticum;25925;actual measurement;one-seeded generative dispersule;.164;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.164;;;50;;Air dried weight;;2a Linum catharticum;25925;actual measurement;one-seeded generative dispersule;.142;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.142;.147;.137;100;;Air dried weight;;2a Linum catharticum;25925;actual measurement;one-seeded generative dispersule;.134;;-4;;BIOLFLOR database;.134;.16;.1;;;Air dried weight;;2a Linum flavum;25933;actual measurement;generative dispersule;1.053;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.053;1.068;1.038;100;;Air dried weight;;2 Linum leonii;25942;actual measurement;germinule;1.288;;-4;;BIOLFLOR database;1.288;;;;;Air dried weight;;3 Linum leonii;25942;actual measurement;one-seeded generative dispersule;1.288;;-4;;BIOLFLOR database;1.288;;;;;Air dried weight;;2a Linum nodiflorum;25908;actual measurement;generative dispersule;.42;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.42;;;1;n an replicates unknown;Air dried weight;;2 Linum perenne;25878;actual measurement;generative dispersule;.124;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.124;.13;.12;1;;Air dried weight;;2 Linum perenne;25878;actual measurement;germinule;1.305;;-4;;BIOLFLOR database;1.305;;;;;Air dried weight;;3 Linum perenne;25878;actual measurement;one-seeded generative dispersule;1.305;;-4;;BIOLFLOR database;1.305;;;;;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.1248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.99;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.99;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.8016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.4672;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4672;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;1.9408;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.5272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.38;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.38;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.1664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.1484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.1828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;one-seeded generative dispersule;2.4104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Linum perenne;25878;other;germinule;2.8016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;1.9408;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.5272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.38;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.38;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.1664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.1484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.1828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.4104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.99;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.99;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.1248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum perenne;25878;other;germinule;2.4672;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4672;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Linum strictum;25891;actual measurement;generative dispersule;.32;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.32;;;1;n an replicates unknown;Air dried weight;;2 Linum tenuifolium;25855;actual measurement;germinule;.7;;-4;;BIOLFLOR database;.7;;;;;Air dried weight;;3 Linum tenuifolium;25855;actual measurement;germinule;2.47;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.47;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Linum tenuifolium;25855;actual measurement;one-seeded generative dispersule;.7;;-4;;BIOLFLOR database;.7;;;;;Air dried weight;;2a Linum usitatissimum;25866;actual measurement;germinule;5.07;;-4;;BIOLFLOR database;5.07;5.45;4.69;;;Air dried weight;;3 Linum usitatissimum;25866;actual measurement;one-seeded generative dispersule;5.07;;-4;;BIOLFLOR database;5.07;5.45;4.69;;;Air dried weight;;2a Linum viscosum;25871;actual measurement;one-seeded generative dispersule;.614150943;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.614150943;.628301887;.6;53;;Air dried weight;;2a Liparis loeselii;39943;actual measurement;unknown;.004;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.004;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Lithospermum arvense;12012;actual measurement;generative dispersule;5.5;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.5;6.7;4.5;1;;Air dried weight;;2 Lithospermum arvense;12012;actual measurement;germinule;5.472;;-4;;BIOLFLOR database;5.472;6.2;5;;;Air dried weight;;3 Lithospermum arvense;12012;actual measurement;one-seeded generative dispersule;5.472;;-4;;BIOLFLOR database;5.472;6.2;5;;;Air dried weight;;2a Lithospermum arvense;12012;actual measurement;one-seeded generative dispersule;4.9105;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.9105;4.943;4.878;100;;Air dried weight;;2a Lithospermum arvense;12012;other;one-seeded generative dispersule;5.7288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.7288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lithospermum arvense;12012;other;one-seeded generative dispersule;5.1668;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.1668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lithospermum arvense;12012;other;germinule;5.1668;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.1668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lithospermum arvense;12012;other;germinule;5.7288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.7288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lithospermum officinale;12411;other;germinule;11.978;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.978;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lithospermum officinale;12411;other;germinule;13.8664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.8664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lithospermum officinale;12411;actual measurement;one-seeded generative dispersule;8.726;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.726;;;50;;Air dried weight;;2a Littorella uniflora;27852;actual measurement;one-seeded generative dispersule;.914;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.914;;;50;;Air dried weight;;2a Littorella uniflora;27852;actual measurement;one-seeded generative dispersule;.735;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.735;;;50;;Air dried weight;;2a Lobelia dortmanna;14841;actual measurement;one-seeded generative dispersule;.049;;-4;;BIOLFLOR database;.049;.05;.048;;;Air dried weight;;2a Lobelia dortmanna;14841;actual measurement;germinule;.049;;-4;;BIOLFLOR database;.049;.05;.048;;;Air dried weight;;3 Lobelia erinus;14842;actual measurement;one-seeded generative dispersule;.038;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.038;;;50;;Air dried weight;;2a Lobelia urens;14843;other;unknown;.0196;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Lobularia maritima;14577;actual measurement;generative dispersule;.224050633;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.224050633;.224050633;.224050633;158;;Air dried weight;;2 Logfia arvensis;11506;actual measurement;generative dispersule;.4;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.4;;;1;n an replicates unknown;Air dried weight;;2 Logfia gallica;10826;actual measurement;germinule;.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02;;;30;collected between 1996-1999;Air dried weight;;3 Logfia gallica;10826;actual measurement;germinule;.02253;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02253;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Logfia minima;11400;actual measurement;germinule;.025;;-4;;BIOLFLOR database;.025;;;;;Air dried weight;;3 Logfia minima;11400;actual measurement;one-seeded generative dispersule;.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.028;;;50;;Air dried weight;;2a Logfia minima;11400;actual measurement;germinule;.033;;-4;;BIOLFLOR database;.033;;;;;Air dried weight;;3 Logfia minima;11400;actual measurement;germinule;.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02;;;30;collected between 1996-1999;Air dried weight;;3 Logfia minima;11400;actual measurement;germinule;.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.028;;;50;;Air dried weight;;3 Logfia minima;11400;actual measurement;germinule;.02141;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02141;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Logfia minima;11400;actual measurement;one-seeded generative dispersule;.025;;-4;;BIOLFLOR database;.025;;;;;Air dried weight;;2a Logfia minima;11400;actual measurement;one-seeded generative dispersule;.033;;-4;;BIOLFLOR database;.033;;;;;Air dried weight;;2a Logfia minima;11400;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Logfia minima;11400;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;96;No. of seeds per individual: 90-100;Air dried weight;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;96;No. of seeds per individual: 90-100;Air dried weight;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;50;No. of seeds per individual: 38-62;Air dried weight;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;;;68;No. of seeds per individual: 68;Air dried weight;;3 Loiseleuria procumbens;19506;other;germinule;.02048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Loiseleuria procumbens;19506;other;germinule;.02;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;.01;.01;;Preaggregated data obtained from single record. No. of seeds per individual: 68;;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.02;2;-2;.02;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.02;.02;;Preaggregated data obtained from single record. No. of seeds per individual: 38-62;;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.02;3;-2;.02;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.02;.02;;Preaggregated data obtained from single record. No. of seeds per individual: 90-100;;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;50;No. of seeds per individual: 38-62;Air dried weight;;3 Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;96;No. of seeds per individual: 90-100;Air dried weight;;3 Loiseleuria procumbens;19506;other;one-seeded generative dispersule;.02;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Loiseleuria procumbens;19506;other;one-seeded generative dispersule;.02048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Loiseleuria procumbens;19506;actual measurement;generative dispersule;.0145;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0145;.015;.014;100;;Unknown;;2 Loiseleuria procumbens;19506;actual measurement;germinule;.013;;-4;;BIOLFLOR database;.013;;;;;Air dried weight;;3 Loiseleuria procumbens;19506;actual measurement;one-seeded generative dispersule;.013;;-4;;BIOLFLOR database;.013;;;;;Air dried weight;;2a Lolium multiflorum;43196;actual measurement;germinule;3.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.064;;;50;;Air dried weight;;3 Lolium multiflorum;43196;actual measurement;one-seeded generative dispersule;3.549;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.549;3.836;3.33;100;;Air dried weight;;2a Lolium multiflorum;43196;actual measurement;one-seeded generative dispersule;3.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.064;;;50;;Air dried weight;;2a Lolium multiflorum;43196;actual measurement;one-seeded generative dispersule;2.433;;-4;;BIOLFLOR database;2.433;4.6;1.3;;;Air dried weight;;2a Lolium multiflorum;43196;actual measurement;germinule;2.433;;-4;;BIOLFLOR database;2.433;4.6;1.3;;;Air dried weight;;3 Lolium perenne;43540;actual measurement;germinule;1.79;;-4;;BIOLFLOR database;1.79;;;;;Air dried weight;;3 Lolium perenne;43540;actual measurement;germinule;1.79;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.79;;;100;;Air dried weight;;3 Lolium perenne;43540;actual measurement;germinule;2.17;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.17;;;100;;Air dried weight;;3 Lolium perenne;43540;actual measurement;germinule;2.225;;-4;;BIOLFLOR database;2.225;3.5;1.4;;;Air dried weight;;3 Lolium perenne;43540;actual measurement;one-seeded generative dispersule;2.225;;-4;;BIOLFLOR database;2.225;3.5;1.4;;;Air dried weight;;2a Lolium perenne;43540;actual measurement;one-seeded generative dispersule;1.79;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.79;;;100;;Air dried weight;;2a Lolium perenne;43540;other;one-seeded generative dispersule;1.808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lolium perenne;43540;actual measurement;one-seeded generative dispersule;2.17;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.17;;;100;;Air dried weight;;2a Lolium perenne;43540;other;germinule;1.808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lolium remotum;42844;actual measurement;one-seeded generative dispersule;4.284;;-4;;BIOLFLOR database;4.284;4.627;4.1;;;Air dried weight;;2a Lolium remotum;42844;actual measurement;germinule;4.284;;-4;;BIOLFLOR database;4.284;4.627;4.1;;;Air dried weight;;3 Lonicera alpigena;15395;actual measurement;germinule;35.014;;-4;;BIOLFLOR database;35.014;;;;;Air dried weight;;3 Lonicera caerulea;15404;actual measurement;germinule;2.147;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.147;2.158;2.136;100;;Air dried weight;;3 Lonicera caprifolium;15368;actual measurement (following LEDA data standards);germinule;8.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.04;;;7;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Lonicera caprifolium;15368;actual measurement (following LEDA data standards);germinule;8.04;1;-2;8.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.04;8.04;8.04;;preaggregated value obtained from single record;Air dried weight;;3 Lonicera periclymenum;15385;actual measurement (following LEDA data standards);germinule;6.73;1;-2;6.73;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.73;6.73;6.73;;preaggregated value obtained from single record;Air dried weight;;3 Lonicera periclymenum;15385;other;germinule;5.9652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.9652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lonicera periclymenum;15385;actual measurement (following LEDA data standards);germinule;6.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.73;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Lonicera periclymenum;15385;actual measurement;germinule;7.54;;-4;;BIOLFLOR database;7.54;9.781;5.21;;;Air dried weight;;3 Lonicera periclymenum;15385;actual measurement;germinule;4.918571429;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.918571429;4.951428571;4.885714286;35;;Air dried weight;;3 Lonicera periclymenum;15385;actual measurement;one-seeded generative dispersule;5.211;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.211;;;19;;Air dried weight;;2a Lonicera periclymenum;15385;actual measurement;one-seeded generative dispersule;5.288;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.288;;;50;;Air dried weight;;2a Lonicera pyrenaica;15345;actual measurement;generative dispersule;2.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.04;;;1;n and replicates unknown;Air dried weight;;2 Lonicera xylosteum;15356;actual measurement;generative dispersule;6.01;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.01;;;1;n and replicates unknown;Air dried weight;;2 Lonicera xylosteum;15356;actual measurement;germinule;5.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.2;;;1;n an replicates unknown;Air dried weight;;3 Lonicera xylosteum;15356;actual measurement;multi-seeded generative dispersule;481;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);481;;;1;n an replicates unknown;Fresh weight;;2b Lotus alpinus;21376;actual measurement;one-seeded generative dispersule;1.18;;-4;;BIOLFLOR database;1.18;;;;;Air dried weight;;2a Lotus alpinus;21376;actual measurement;unknown;1.98;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];1.98;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Lotus alpinus;21376;actual measurement;germinule;1.18;;-4;;BIOLFLOR database;1.18;;;;;Air dried weight;;3 Lotus angustissimus;19855;other;unknown;.4552;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Lotus corniculatus;21886;actual measurement (following LEDA data standards);germinule;1.6;1;-2;1.6;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.6;1.6;1.6;;preaggregated value obtained from single record;Air dried weight;;3 Lotus corniculatus;21886;actual measurement (following LEDA data standards);germinule;1.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.6;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Lotus corniculatus;21886;actual measurement;generative dispersule;1.074;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.074;1.42;.679;20;;Air dried weight;;2 Lotus corniculatus;21886;actual measurement;germinule;1.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.03;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Lotus corniculatus;21886;actual measurement;germinule;1.65;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.65;;;50;;Air dried weight;;3 Lotus corniculatus;21886;actual measurement;germinule;1.278;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.278;;;100;;Air dried weight;;3 Lotus corniculatus;21886;actual measurement;germinule;1.319;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.319;;;1;summers of 1995 and 1996;Unknown;;3 Lotus corniculatus;21886;actual measurement;germinule;1.25;;-4;;BIOLFLOR database;1.25;1.67;.93;;;Air dried weight;;3 Lotus corniculatus;21886;actual measurement;germinule;1.668;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.668;;;100;;Air dried weight;;3 Lotus corniculatus;21886;actual measurement;generative dispersule;1.32;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.32;;;1;n and replicates unknown;Air dried weight;;2 Lotus corniculatus;21886;actual measurement;generative dispersule;1.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.5;;;1;n an replicates unknown;Air dried weight;;2 Lotus corniculatus;21886;actual measurement;one-seeded generative dispersule;1.278;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.278;;;100;;Air dried weight;;2a Lotus corniculatus;21886;actual measurement;one-seeded generative dispersule;1.32;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.32;1.32;1.32;40;;Air dried weight;;2a Lotus corniculatus;21886;actual measurement;one-seeded generative dispersule;1.25;;-4;;BIOLFLOR database;1.25;1.67;.93;;;Air dried weight;;2a Lotus corniculatus;21886;actual measurement;one-seeded generative dispersule;1.668;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.668;;;100;;Air dried weight;;2a Lotus corniculatus;21886;actual measurement;one-seeded generative dispersule;1.65;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.65;;;50;;Air dried weight;;2a Lotus pedunculatus;21444;actual measurement;one-seeded generative dispersule;12.8;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;12.8;25.3;.3;1;;Air dried weight;;2a Lotus pedunculatus;21444;actual measurement;one-seeded generative dispersule;.543;;-4;;BIOLFLOR database;.543;.8;.4;;;Air dried weight;;2a Lotus pedunculatus;21444;actual measurement;germinule;.543;;-4;;BIOLFLOR database;.543;.8;.4;;;Air dried weight;;3 Lotus uliginosus;21448;actual measurement;one-seeded generative dispersule;.4;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.4;;;100;;Air dried weight;;2a Lotus uliginosus;21448;actual measurement;one-seeded generative dispersule;.552;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.552;;;50;;Air dried weight;;2a Lotus uliginosus;21448;actual measurement (following LEDA data standards);germinule;.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Lotus uliginosus;21448;actual measurement (following LEDA data standards);germinule;.52;1;-2;.52;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;.52;.52;;preaggregated value obtained from single record;Air dried weight;;3 Ludwigia palustris;26480;other;germinule;.052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ludwigia palustris;26480;actual measurement;unknown;.038;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.038;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Lunaria annua;13513;actual measurement;germinule;18.933;;-4;;BIOLFLOR database;18.933;;;;;Air dried weight;;3 Lunaria annua;13513;actual measurement;one-seeded generative dispersule;18.933;;-4;;BIOLFLOR database;18.933;;;;;Air dried weight;;2a Lunaria rediviva;13960;actual measurement;germinule;26;;-4;;BIOLFLOR database;26;;;;;Air dried weight;;3 Lunaria rediviva;13960;actual measurement;one-seeded generative dispersule;26;;-4;;BIOLFLOR database;26;;;;;Air dried weight;;2a Lupinus albus;21901;actual measurement;germinule;360;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];360;;;60;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Lupinus albus;21901;actual measurement;one-seeded generative dispersule;437.5;;-4;;BIOLFLOR database;437.5;510;340;;;Air dried weight;;2a Lupinus albus;21901;actual measurement;germinule;450;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;500;400;1;n and replicates unknown;Air dried weight;;3 Lupinus albus;21901;actual measurement;germinule;437.5;;-4;;BIOLFLOR database;437.5;510;340;;;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement;germinule;175;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;200;150;1;n and replicates unknown;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement;germinule;151.414;;-4;;BIOLFLOR database;151.414;200;109.243;;;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement;germinule;128.33;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];128.33;;;90;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Lupinus angustifolius;21449;actual measurement;one-seeded generative dispersule;151.414;;-4;;BIOLFLOR database;151.414;200;109.243;;;Air dried weight;;2a Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;20.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;20.62;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;19.82;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19.82;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;17.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.92;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;18.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.14;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;17.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.16;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;23.69;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.69;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;19.72;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19.72;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;18.93;10;-2;18.93;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19.28;23.69;17.16;;preaggregated value obtained from single record;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;20.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;20.09;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;17.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.63;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus angustifolius;21449;actual measurement (following LEDA data standards);germinule;18.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.02;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lupinus luteus;22239;actual measurement;germinule;155;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];155;;;60;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Lupinus luteus;22239;actual measurement;one-seeded generative dispersule;134.476;;-4;;BIOLFLOR database;134.476;190;103.429;;;Air dried weight;;2a Lupinus luteus;22239;actual measurement;germinule;150;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;180;120;1;n and replicates unknown;Air dried weight;;3 Lupinus luteus;22239;actual measurement;germinule;134.476;;-4;;BIOLFLOR database;134.476;190;103.429;;;Air dried weight;;3 Lupinus micranthus;20588;actual measurement;germinule;77;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];77;;;30;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Lupinus perennis;21453;actual measurement;unknown;20.917;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];20.917;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Lupinus polyphyllus;22241;actual measurement;germinule;24.146;;-4;;BIOLFLOR database;24.146;32.349;17.96;;;Air dried weight;;3 Lupinus polyphyllus;22241;actual measurement;germinule;20.76;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.76;;;20;;Air dried weight;;3 Lupinus polyphyllus;22241;actual measurement;germinule;25.498;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25.498;;;50;;Air dried weight;;3 Lupinus polyphyllus;22241;actual measurement;germinule;25;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;30;20;1;n and replicates unknown;Air dried weight;;3 Lupinus polyphyllus;22241;actual measurement;one-seeded generative dispersule;24.146;;-4;;BIOLFLOR database;24.146;32.349;17.96;;;Air dried weight;;2a Lupinus polyphyllus;22241;actual measurement;one-seeded generative dispersule;20.76;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.76;;;20;;Air dried weight;;2a Lupinus polyphyllus;22241;actual measurement;one-seeded generative dispersule;25.498;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25.498;;;50;;Air dried weight;;2a Lupinus polyphyllus;22241;actual measurement (following LEDA data standards);germinule;26.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;26.66;;;50;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Lupinus polyphyllus;22241;actual measurement (following LEDA data standards);germinule;26.66;1;-2;26.66;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;26.66;26.66;26.66;;preaggregated value obtained from single record;Air dried weight;;3 Luronium natans;35649;actual measurement (following LEDA data standards);germinule;.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Luronium natans;35649;actual measurement (following LEDA data standards);germinule;.39;1;-2;.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;.39;.39;;preaggregated value obtained from single record;Air dried weight;;3 Luronium natans;35649;actual measurement;one-seeded generative dispersule;.35;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.35;.38;.32;100;;Air dried weight;;2a Luzula alpinopilosa;36187;actual measurement;one-seeded generative dispersule;.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.2;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Luzula alpinopilosa;36187;actual measurement;one-seeded generative dispersule;.301;;-4;;BIOLFLOR database;.301;;;;;Air dried weight;;2a Luzula alpinopilosa;36187;actual measurement;germinule;.301;;-4;;BIOLFLOR database;.301;;;;;Air dried weight;;3 Luzula campestris;36280;actual measurement;germinule;.639;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.639;;;100;;Air dried weight;;3 Luzula campestris;36280;actual measurement;one-seeded generative dispersule;.639;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.639;;;100;;Air dried weight;;2a Luzula campestris;36280;actual measurement;one-seeded generative dispersule;.765;;-4;;BIOLFLOR database;.765;.951;.6;;;Air dried weight;;2a Luzula campestris;36280;actual measurement;germinule;.661;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.661;;;1;summers of 1995 and 1996;Unknown;;3 Luzula campestris;36280;actual measurement;germinule;.765;;-4;;BIOLFLOR database;.765;.951;.6;;;Air dried weight;;3 Luzula campestris;36280;actual measurement;germinule;.463;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.463;;;100;;Air dried weight;;3 Luzula campestris;36280;actual measurement;one-seeded generative dispersule;.463;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.463;;;100;;Air dried weight;;2a Luzula campestris;36280;other;one-seeded generative dispersule;.69224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.69224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Luzula campestris;36280;actual measurement (following LEDA data standards);germinule;.77;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.77;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Luzula campestris;36280;actual measurement (following LEDA data standards);germinule;.74;1;-2;.74;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.74;.74;.74;;preaggregated value obtained from single record;Air dried weight;;3 Luzula campestris;36280;actual measurement (following LEDA data standards);germinule;.77;1;-2;.77;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.77;.77;.77;;preaggregated value obtained from single record;Air dried weight;;3 Luzula campestris;36280;other;germinule;.69224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.69224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Luzula campestris;36280;actual measurement (following LEDA data standards);germinule;.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.74;;;40;used balance: Mettler H51, seed;Air dried weight;;3 Luzula desvauxii;36174;actual measurement;germinule;.217;;-4;;BIOLFLOR database;.217;;;;;Air dried weight;;3 Luzula desvauxii;36174;actual measurement;one-seeded generative dispersule;.217;;-4;;BIOLFLOR database;.217;;;;;Air dried weight;;2a Luzula forsteri;36181;other;unknown;1.3132;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Luzula luzuloides;36273;actual measurement;one-seeded generative dispersule;.258;;-4;;BIOLFLOR database;.258;.28;.239;;;Air dried weight;;2a Luzula luzuloides;36273;actual measurement;germinule;.258;;-4;;BIOLFLOR database;.258;.28;.239;;;Air dried weight;;3 Luzula luzuloides;36273;actual measurement;generative dispersule;.299133333;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.299133333;.308;.29;150;;Air dried weight;;2 Luzula multiflora;36245;other;germinule;.6524;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Luzula multiflora;36245;actual measurement;generative dispersule;.415;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.415;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Luzula multiflora;36245;actual measurement;one-seeded generative dispersule;.47;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.47;;;50;;Air dried weight;;2a Luzula multiflora;36245;actual measurement;one-seeded generative dispersule;.674;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.674;;;50;;Air dried weight;;2a Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.36;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.37;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.37;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.37;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.37;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.36;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.36;3;-2;.36;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.34;.37;.3;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2b Luzula multiflora;36245;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.36;2;-2;.36;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;.4;.31;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2b Luzula multiflora subsp. congesta;36251;actual measurement;one-seeded generative dispersule;.2155;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2155;.244;.187;100;;Air dried weight;;2a Luzula nivea;36256;actual measurement;one-seeded generative dispersule;.484;;-4;;BIOLFLOR database;.484;;;;;Air dried weight;;2a Luzula nivea;36256;actual measurement;germinule;.484;;-4;;BIOLFLOR database;.484;;;;;Air dried weight;;3 Luzula pallescens;36262;other;unknown;.1708;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Luzula pilosa;36230;other;germinule;1.0536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Luzula pilosa;36230;actual measurement;one-seeded generative dispersule;.4;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.4;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Luzula pilosa;36230;actual measurement;one-seeded generative dispersule;.808;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.808;;;40;;Air dried weight;;2a Luzula pilosa;36230;actual measurement;one-seeded generative dispersule;1.62;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.62;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Luzula spicata;36240;other;one-seeded generative dispersule;.274;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.274;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Luzula spicata;36240;actual measurement;generative dispersule;.259;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.259;.264;.254;100;;Air dried weight;;2 Luzula spicata;36240;actual measurement;generative dispersule;.405;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.405;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Luzula spicata;36240;actual measurement;germinule;.284;;-4;;BIOLFLOR database;.284;.285;.282;;;Air dried weight;;3 Luzula spicata;36240;actual measurement;one-seeded generative dispersule;.284;;-4;;BIOLFLOR database;.284;.285;.282;;;Air dried weight;;2a Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;13;Weight including appendages. No. of seeds per individual: 13;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.28;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.28;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.21;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.21;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.28;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.28;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.34;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.34;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;other;germinule;.274;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.274;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.3;6;-2;.3;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;.34;.21;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 7-57;;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.4;1;-2;.4;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;.4;.4;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 13;;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.21;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.21;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;13;Weight including appendages. No. of seeds per individual: 13;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.34;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.34;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula spicata;36240;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;17;Weight including appendages. No. of seeds per individual: 7-57;Air dried weight;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.31;1;-2;.31;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;.31;.31;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.29;3;-2;.29;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;.32;.27;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 9-10;;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.29;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.29;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2b Luzula sudetica;36244;actual measurement (following LEDA data standards);multi-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;10;Weight including appendages. No. of seeds per individual: 9-10;Air dried weight;;2b Luzula sylvatica;36284;actual measurement (following LEDA data standards);germinule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Luzula sylvatica;36284;actual measurement (following LEDA data standards);germinule;.63;1;-2;.63;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;.63;.63;;preaggregated value obtained from single record;Air dried weight;;3 Luzula sylvatica;36284;other;germinule;.7044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Luzula sylvatica;36284;other;germinule;.7044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Luzula sylvatica;36284;actual measurement;one-seeded generative dispersule;.69;;-4;;BIOLFLOR database;.69;;;;;Air dried weight;;2a Luzula sylvatica;36284;actual measurement;germinule;.686;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.686;;;100;;Air dried weight;;3 Luzula sylvatica;36284;actual measurement;germinule;.69;;-4;;BIOLFLOR database;.69;;;;;Air dried weight;;3 Luzula sylvatica;36284;actual measurement;germinule;.708;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.708;;;50;;Air dried weight;;3 Luzula sylvatica;36284;other;one-seeded generative dispersule;.7044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Luzula sylvatica;36284;other;one-seeded generative dispersule;.7044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Luzula sylvatica;36284;actual measurement;one-seeded generative dispersule;.94;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.94;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Luzula sylvatica;36284;actual measurement;one-seeded generative dispersule;.708;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.708;;;50;;Air dried weight;;2a Luzula sylvatica;36284;actual measurement;one-seeded generative dispersule;.686;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.686;;;100;;Air dried weight;;2a Lychnis alpina;17455;actual measurement;generative dispersule;.085;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.085;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Lychnis flos-cuculi;16589;actual measurement;one-seeded generative dispersule;.213;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.213;;;50;;Air dried weight;;2a Lychnis flos-cuculi;16589;actual measurement (following LEDA data standards);germinule;.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Lychnis flos-cuculi;16589;actual measurement (following LEDA data standards);germinule;.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.19;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Lychnis flos-cuculi;16589;actual measurement (following LEDA data standards);germinule;.19;1;-2;.19;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.19;.19;.19;;preaggregated value obtained from single record;Air dried weight;;3 Lychnis flos-cuculi;16589;actual measurement (following LEDA data standards);germinule;.2;1;-2;.2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;.2;.2;;preaggregated value obtained from single record;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.04;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.1012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.074;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.074;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.1144;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.0592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.1016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.0912;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0912;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.0968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.0744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;other;germinule;.0652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lychnis viscaria;16593;actual measurement;germinule;.055;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.055;;;1;summers of 1995 and 1996;Unknown;;3 Lycopersicon esculentum;35044;actual measurement;germinule;3;;-4;;BIOLFLOR database;3;3.3;2.7;;;Air dried weight;;3 Lycopersicon esculentum;35044;actual measurement;germinule;3;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;3.3;2.7;1;n and replicates unknown;Air dried weight;;3 Lycopus europaeus;24606;actual measurement;generative dispersule;.216;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.216;.228;.21;100;;Air dried weight;;2 Lycopus europaeus;24606;actual measurement;germinule;.24;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.24;;;50;;Air dried weight;;3 Lycopus europaeus;24606;actual measurement;germinule;.277;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.277;;;100;;Air dried weight;;3 Lycopus europaeus;24606;actual measurement;germinule;.241;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.241;;;50;;Air dried weight;;3 Lycopus europaeus;24606;actual measurement;one-seeded generative dispersule;.241;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.241;;;50;;Air dried weight;;2a Lycopus europaeus;24606;actual measurement;germinule;.246;;-4;;BIOLFLOR database;.246;.28;.211;;;Air dried weight;;3 Lycopus europaeus;24606;actual measurement;one-seeded generative dispersule;.277;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.277;;;100;;Air dried weight;;2a Lycopus europaeus;24606;actual measurement;one-seeded generative dispersule;.24;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.24;;;50;;Air dried weight;;2a Lycopus europaeus;24606;actual measurement;one-seeded generative dispersule;.246;;-4;;BIOLFLOR database;.246;.28;.211;;;Air dried weight;;2a Lycopus europaeus;24606;other;one-seeded generative dispersule;.2728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.23;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;other;germinule;.2728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.22;10;-2;.22;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.21;.23;.19;;preaggregated value obtained from single record;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.19;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.23;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus europaeus;24606;actual measurement (following LEDA data standards);germinule;.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Lycopus exaltatus;24609;actual measurement;one-seeded generative dispersule;.294;;-4;;BIOLFLOR database;.294;;;;;Air dried weight;;2a Lycopus exaltatus;24609;actual measurement;germinule;.294;;-4;;BIOLFLOR database;.294;;;;;Air dried weight;;3 Lysimachia ephemerum;29023;actual measurement;generative dispersule;.32;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.32;;;1;n and replicates unknown;Air dried weight;;2 Lysimachia nemorum;28927;other;one-seeded generative dispersule;.3544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lysimachia nemorum;28927;actual measurement;one-seeded generative dispersule;.256;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.256;;;50;;Air dried weight;;2a Lysimachia nemorum;28927;actual measurement;germinule;.526;;-4;;BIOLFLOR database;.526;;;;;Air dried weight;;3 Lysimachia nemorum;28927;actual measurement;germinule;.256;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.256;;;50;;Air dried weight;;3 Lysimachia nemorum;28927;actual measurement;one-seeded generative dispersule;.526;;-4;;BIOLFLOR database;.526;;;;;Air dried weight;;2a Lysimachia nemorum;28927;other;germinule;.3544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lysimachia nummularia;28922;actual measurement;germinule;.5;;-4;;BIOLFLOR database;.5;;;;;Air dried weight;;3 Lysimachia nummularia;28922;actual measurement;one-seeded generative dispersule;.5;;-4;;BIOLFLOR database;.5;;;;;Air dried weight;;2a Lysimachia punctata;28929;actual measurement;one-seeded generative dispersule;.594;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.594;;;50;;Air dried weight;;2a Lysimachia punctata;28929;actual measurement;germinule;.594;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.594;;;50;;Air dried weight;;3 Lysimachia punctata;28929;actual measurement;one-seeded generative dispersule;.3985;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3985;.415;.382;100;;Air dried weight;;2a Lysimachia punctata;28929;actual measurement;one-seeded generative dispersule;.318;;-4;;BIOLFLOR database;.318;.352;.275;;;Air dried weight;;2a Lysimachia punctata;28929;actual measurement;germinule;.318;;-4;;BIOLFLOR database;.318;.352;.275;;;Air dried weight;;3 Lysimachia vulgaris;28980;actual measurement;generative dispersule;.38;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.38;;;1;n and replicates unknown;Air dried weight;;2 Lysimachia vulgaris;28980;actual measurement;germinule;.352;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.352;;;50;;Air dried weight;;3 Lysimachia vulgaris;28980;actual measurement;germinule;.264;;-4;;BIOLFLOR database;.264;.287;.25;;;Air dried weight;;3 Lysimachia vulgaris;28980;actual measurement;one-seeded generative dispersule;.352;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.352;;;50;;Air dried weight;;2a Lysimachia vulgaris;28980;actual measurement;one-seeded generative dispersule;.264;;-4;;BIOLFLOR database;.264;.287;.25;;;Air dried weight;;2a Lythrum hyssopifolia;26029;actual measurement;germinule;.124;;-4;;BIOLFLOR database;.124;.136;.1;;;Air dried weight;;3 Lythrum hyssopifolia;26029;actual measurement;one-seeded generative dispersule;.124;;-4;;BIOLFLOR database;.124;.136;.1;;;Air dried weight;;2a Lythrum hyssopifolia;26029;actual measurement;one-seeded generative dispersule;.1055;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1055;.106;.105;100;;Air dried weight;;2a Lythrum hyssopifolia;26029;other;one-seeded generative dispersule;.118;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.118;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lythrum hyssopifolia;26029;other;one-seeded generative dispersule;.1036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lythrum hyssopifolia;26029;other;one-seeded generative dispersule;.106;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.106;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lythrum hyssopifolia;26029;other;one-seeded generative dispersule;2.2044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lythrum hyssopifolia;26029;other;one-seeded generative dispersule;.0996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lythrum hyssopifolia;26029;other;one-seeded generative dispersule;.1184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lythrum hyssopifolia;26029;other;one-seeded generative dispersule;.12;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lythrum hyssopifolia;26029;other;one-seeded generative dispersule;.108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.108;;;1000;1000 seed weight, unknown number of individuals, Main crop weed-killed July 02, these are 2nd generation.;Air dried weight;;2a Lythrum hyssopifolia;26029;other;germinule;.1036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lythrum hyssopifolia;26029;other;germinule;.108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.108;;;1000;1000 seed weight, unknown number of individuals, Main crop weed-killed July 02, these are 2nd generation.;Air dried weight;;3 Lythrum hyssopifolia;26029;other;germinule;2.2044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lythrum hyssopifolia;26029;other;germinule;.1184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lythrum hyssopifolia;26029;other;germinule;.0996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lythrum hyssopifolia;26029;other;germinule;.106;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.106;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lythrum hyssopifolia;26029;other;germinule;.12;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lythrum hyssopifolia;26029;other;germinule;.118;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.118;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lythrum portula;26036;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Lythrum portula;26036;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Lythrum portula;26036;other;germinule;.0368;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0368;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Lythrum portula;26036;actual measurement;one-seeded generative dispersule;.036;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.036;;;50;;Air dried weight;;2a Lythrum salicaria;26038;actual measurement;one-seeded generative dispersule;.052;;-4;;BIOLFLOR database;.052;.06;.048;;;Air dried weight;;2a Lythrum salicaria;26038;actual measurement;one-seeded generative dispersule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;2a Lythrum salicaria;26038;actual measurement;one-seeded generative dispersule;.08;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.08;;;50;;Air dried weight;;2a Lythrum salicaria;26038;actual measurement;one-seeded generative dispersule;.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.16;;;50;;Air dried weight;;2a Lythrum salicaria;26038;other;one-seeded generative dispersule;.07764;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.07764;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Lythrum salicaria;26038;actual measurement;germinule;.052;;-4;;BIOLFLOR database;.052;.06;.048;;;Air dried weight;;3 Lythrum salicaria;26038;actual measurement;germinule;.08;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.08;;;50;;Air dried weight;;3 Lythrum salicaria;26038;actual measurement;germinule;.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.16;;;50;;Air dried weight;;3 Lythrum salicaria;26038;actual measurement;germinule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;3 Lythrum salicaria;26038;other;germinule;.07764;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.07764;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Mahonia aquifolium;11687;actual measurement;germinule;9.337;;-4;;BIOLFLOR database;9.337;;;;;Air dried weight;;3 Mahonia aquifolium;11687;actual measurement;one-seeded generative dispersule;8.96;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.96;;;50;;Air dried weight;;2a Maianthemum bifolium;39069;actual measurement;multi-seeded generative dispersule;86;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);86;;;1;n an replicates unknown;Fresh weight;;2b Maianthemum bifolium;39069;actual measurement;generative dispersule;113.483;;-4;;BIOLFLOR database;113.483;118.75;104.36;;;Fresh weight;;2 Maianthemum bifolium;39069;actual measurement;germinule;13.84;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);13.84;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Maianthemum bifolium;39069;actual measurement;germinule;9.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.1;;;1;n an replicates unknown;Air dried weight;;3 Maianthemum bifolium;39069;actual measurement;germinule;11.743;;-4;;BIOLFLOR database;11.743;;;;;Air dried weight;;3 Malus sylvestris;29369;actual measurement;germinule;30;;-4;;BIOLFLOR database;30;;;;;Air dried weight;;3 Malus sylvestris;29369;actual measurement;one-seeded generative dispersule;20.2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.2;;;30;;Air dried weight;;2a Malus sylvestris;29369;other;germinule;20.8616;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.8616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Malus sylvestris;29369;other;germinule;23.4744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.4744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Malva alcea;25705;actual measurement;generative dispersule;3.9;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.9;4.1;3.6;1;;Air dried weight;;2 Malva moschata;25717;actual measurement;one-seeded generative dispersule;2.027;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.027;;;50;;Air dried weight;;2a Malva moschata;25717;actual measurement (following LEDA data standards);germinule;2.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.39;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Malva moschata;25717;actual measurement (following LEDA data standards);germinule;2.39;1;-2;2.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.39;2.39;2.39;;preaggregated value obtained from single record;Air dried weight;;3 Malva neglecta;25718;other;germinule;2.668;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Malva neglecta;25718;actual measurement;one-seeded generative dispersule;1.492;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.492;;;100;;Air dried weight;;2a Malva neglecta;25718;other;one-seeded generative dispersule;2.668;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Malva neglecta;25718;actual measurement;germinule;2.15;;-4;;BIOLFLOR database;2.15;;;;;Air dried weight;;3 Malva neglecta;25718;actual measurement;germinule;2.4;;-4;;BIOLFLOR database;2.4;;;;;Air dried weight;;3 Malva neglecta;25718;actual measurement;germinule;1.492;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.492;;;100;;Air dried weight;;3 Malva neglecta;25718;actual measurement;one-seeded generative dispersule;2.4;;-4;;BIOLFLOR database;2.4;;;;;Air dried weight;;2a Malva sylvestris;25674;actual measurement;one-seeded generative dispersule;2.778;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.778;;;50;;Air dried weight;;2a Malva sylvestris;25674;actual measurement;one-seeded generative dispersule;3.1;;-4;;BIOLFLOR database;3.1;3.1;3;;;Air dried weight;;2a Malva sylvestris;25674;actual measurement;germinule;2.778;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.778;;;50;;Air dried weight;;3 Malva sylvestris;25674;actual measurement;germinule;1.524;;-4;;BIOLFLOR database;1.524;;;;;Air dried weight;;3 Malva sylvestris;25674;actual measurement;germinule;3.1;;-4;;BIOLFLOR database;3.1;3.1;3;;;Air dried weight;;3 Malva sylvestris;25674;other;one-seeded generative dispersule;3.7216;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.7216;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Malva sylvestris;25674;other;germinule;3.7216;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.7216;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Marrubium peregrinum;23838;actual measurement;germinule;.94;;-4;;BIOLFLOR database;.94;.975;.891;;;Air dried weight;;3 Marrubium peregrinum;23838;actual measurement;one-seeded generative dispersule;.94;;-4;;BIOLFLOR database;.94;.975;.891;;;Air dried weight;;2a Marrubium vulgare;24614;actual measurement;one-seeded generative dispersule;1.181;;-4;;BIOLFLOR database;1.181;1.235;1.126;;;Air dried weight;;2a Marrubium vulgare;24614;actual measurement;germinule;1.181;;-4;;BIOLFLOR database;1.181;1.235;1.126;;;Air dried weight;;3 Marrubium vulgare;24614;other;one-seeded generative dispersule;.8288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Marrubium vulgare;24614;other;germinule;.8288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Matricaria maritima;9565;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Matricaria maritima;9565;actual measurement (following LEDA data standards);germinule;.29;1;-2;.29;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;.29;.29;;preaggregated value obtained from single record;Air dried weight;;3 Matricaria maritima;9565;actual measurement;one-seeded generative dispersule;.31;;-4;;BIOLFLOR database;.31;.377;.276;;;Air dried weight;;2a Matricaria maritima;9565;actual measurement;germinule;.31;;-4;;BIOLFLOR database;.31;.377;.276;;;Air dried weight;;3 Matricaria perforata;10535;actual measurement;one-seeded generative dispersule;.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.29;;;50;;Air dried weight;;2a Matthiola incana;13527;actual measurement;generative dispersule;2.06;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.06;2.8;1.7;1;;Air dried weight;;2 Matthiola sinuata;14597;other;unknown;1.6432;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Meconopsis cambrica;25542;other;germinule;.202;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.202;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Meconopsis cambrica;25542;actual measurement;one-seeded generative dispersule;.218;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.218;;;100;;Air dried weight;;2a Meconopsis cambrica;25542;actual measurement;one-seeded generative dispersule;.184;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.184;;;50;;Air dried weight;;2a Medicago arabica;19824;actual measurement;germinule;1.626;;-4;;BIOLFLOR database;1.626;1.7;1.551;;;Air dried weight;;3 Medicago arabica;19824;actual measurement;one-seeded generative dispersule;2.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.03;;;50;;Air dried weight;;2a Medicago arabica;19824;other;germinule;1.8092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Medicago arabica;19824;other;germinule;2.0492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Medicago lupulina;20595;actual measurement (following LEDA data standards);germinule;1.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.49;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Medicago lupulina;20595;other;germinule;1.9252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Medicago lupulina;20595;actual measurement (following LEDA data standards);germinule;1.49;1;-2;1.49;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.49;1.49;1.49;;preaggregated value obtained from single record;Air dried weight;;3 Medicago lupulina;20595;actual measurement (following LEDA data standards);germinule;1.76;1;-2;1.76;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.76;1.76;1.76;;preaggregated value obtained from single record;Air dried weight;;3 Medicago lupulina;20595;actual measurement (following LEDA data standards);germinule;1.76;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.76;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Medicago lupulina;20595;actual measurement;one-seeded generative dispersule;1.987;;-4;;BIOLFLOR database;1.987;2.126;1.894;;;Air dried weight;;2a Medicago lupulina;20595;other;one-seeded generative dispersule;1.9252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Medicago lupulina;20595;actual measurement;germinule;1.987;;-4;;BIOLFLOR database;1.987;2.126;1.894;;;Air dried weight;;3 Medicago lupulina;20595;actual measurement;one-seeded generative dispersule;2.008;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.008;;;100;;Air dried weight;;2a Medicago lupulina;20595;actual measurement;germinule;1.467733333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.467733333;1.506666667;1.356;150;;Air dried weight;;3 Medicago lupulina;20595;actual measurement;germinule;1.551;;-4;;BIOLFLOR database;1.551;1.8;1.4;;;Air dried weight;;3 Medicago lupulina;20595;actual measurement;germinule;2.008;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.008;;;100;;Air dried weight;;3 Medicago minima;21911;actual measurement;generative dispersule;.82;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.82;;;1;n an replicates unknown;Air dried weight;;2 Medicago minima;21911;actual measurement;generative dispersule;.92;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.92;;;1;n and replicates unknown;Air dried weight;;2 Medicago minima;21911;actual measurement;germinule;1.15;;-4;;BIOLFLOR database;1.15;1.4;.9;;;Air dried weight;;3 Medicago minima;21911;actual measurement;one-seeded generative dispersule;.73;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.73;;;20;;Air dried weight;;2a Medicago minima;21911;other;germinule;.8636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Medicago polymorpha;20650;other;germinule;2.8208;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Medicago polymorpha;20650;other;germinule;2.5112;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Medicago polymorpha;20650;other;germinule;3.622;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.622;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Medicago polymorpha;20650;actual measurement;one-seeded generative dispersule;2.83;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2.83;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Medicago rigidula;20656;actual measurement;germinule;3.26;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.26;3.26;3.26;75;;Air dried weight;;3 Medicago rigidula;20656;actual measurement;generative dispersule;2.47;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.47;;;1;n an replicates unknown;Air dried weight;;2 Medicago sativa;21975;actual measurement;germinule;2.1;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2.4;1.8;1;n and replicates unknown;Air dried weight;;3 Medicago sativa;21975;actual measurement;one-seeded generative dispersule;2.364;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.364;;;50;;Air dried weight;;2a Medicago sativa;21975;actual measurement;generative dispersule;3.73;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.73;;;1;n an replicates unknown;Air dried weight;;2 Medicago sativa s. falcata;19911;actual measurement;one-seeded generative dispersule;1.74;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.74;2.5;1.2;1;;Air dried weight;;2a Medicago sativa s. falcata;19911;actual measurement;one-seeded generative dispersule;1.472;;-4;;BIOLFLOR database;1.472;1.8;.9;;;Air dried weight;;2a Medicago sativa s. falcata;19911;actual measurement;germinule;1.472;;-4;;BIOLFLOR database;1.472;1.8;.9;;;Air dried weight;;3 Medicago sativa s. falcata;19911;actual measurement (following LEDA data standards);germinule;1.75;1;-2;1.75;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.75;1.75;1.75;;preaggregated value obtained from single record;Air dried weight;;3 Medicago sativa s. falcata;19911;actual measurement (following LEDA data standards);germinule;1.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.75;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Melampyrum arvense;34460;other;unknown;15.8484;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.8484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Melampyrum arvense;34460;other;unknown;13.2976;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.2976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Melampyrum arvense;34460;other;unknown;12.2844;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.2844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Melampyrum arvense;34460;other;unknown;14.94;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.94;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Melampyrum cristatum;33028;other;germinule;4.9876;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.9876;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Melampyrum cristatum;33028;actual measurement;germinule;3.24;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.24;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Melampyrum cristatum;33028;actual measurement;generative dispersule;6.4;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.4;6.8;5.8;1;;Air dried weight;;2 Melampyrum nemorosum;33034;actual measurement;generative dispersule;6.637777778;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.637777778;6.702222222;6.573333333;90;;Air dried weight;;2 Melampyrum pratense;33526;actual measurement;generative dispersule;3.7715;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.7715;4.095;3.448;100;;Air dried weight;;2 Melampyrum pratense;33526;actual measurement;one-seeded generative dispersule;6.736;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.736;;;50;;Air dried weight;;2a Melampyrum pratense;33526;actual measurement;one-seeded generative dispersule;7.238;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.238;;;50;;Air dried weight;;2a Melampyrum pratense;33526;actual measurement;germinule;5.88;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.88;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Melampyrum pratense;33526;other;germinule;4.7016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.7016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Melampyrum sylvaticum;33044;actual measurement;generative dispersule;4.9642;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.9642;5.0974;4.831;100;;Air dried weight;;2 Melampyrum sylvaticum;33044;actual measurement;generative dispersule;6.64;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.64;8.1;4.8;1;;Air dried weight;;2 Melampyrum sylvaticum;33044;actual measurement;one-seeded generative dispersule;7.555;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.555;8.875;6.235;20;;Air dried weight;;2a Melica ciliata;42479;actual measurement;generative dispersule;.62;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.62;;;1;n and replicates unknown;Air dried weight;;2 Melica ciliata;42479;actual measurement;generative dispersule;1.026;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.026;1.027;1.025;100;;Air dried weight;;2 Melica ciliata;42479;actual measurement;generative dispersule;.308108108;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.308108108;.308108108;.308108108;74;;Air dried weight;;2 Melica ciliata;42479;actual measurement;germinule;1.342;;-4;;BIOLFLOR database;1.342;1.7;1.169;;;Air dried weight;;3 Melica ciliata;42479;actual measurement;germinule;.705;;-4;;BIOLFLOR database;.705;.729;.68;;;Air dried weight;;3 Melica ciliata;42479;actual measurement;germinule;.409;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.409;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Melica ciliata;42479;actual measurement;one-seeded generative dispersule;1.342;;-4;;BIOLFLOR database;1.342;1.7;1.169;;;Air dried weight;;2a Melica ciliata;42479;actual measurement;one-seeded generative dispersule;1.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Melica nutans;43206;actual measurement;one-seeded generative dispersule;1.958;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.958;;;50;;Air dried weight;;2a Melica nutans;43206;actual measurement;one-seeded generative dispersule;4.05;;-4;;BIOLFLOR database;4.05;4.2;3.9;;;Air dried weight;;2a Melica nutans;43206;actual measurement;germinule;1.958;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.958;;;50;;Air dried weight;;3 Melica nutans;43206;actual measurement;germinule;4.05;;-4;;BIOLFLOR database;4.05;4.2;3.9;;;Air dried weight;;3 Melica nutans;43206;actual measurement;germinule;2.03;;-4;;BIOLFLOR database;2.03;2.1;1.96;;;Air dried weight;;3 Melica nutans;43206;actual measurement;germinule;2.03;;-4;;BIOLFLOR database;2.03;2.1;1.96;;;Air dried weight;;3 Melica nutans;43206;other;one-seeded generative dispersule;2.0052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melica nutans;43206;actual measurement;generative dispersule;2.342133333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.342133333;2.397333333;2.289333333;150;;Air dried weight;;2 Melica nutans;43206;other;germinule;2.0052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Melica transsilvanica;42653;actual measurement;germinule;.617;;-4;;BIOLFLOR database;.617;;;;;Air dried weight;;3 Melica uniflora;43550;actual measurement;germinule;2.779;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.779;;;14;;Air dried weight;;3 Melica uniflora;43550;actual measurement;one-seeded generative dispersule;3.733;;-4;;BIOLFLOR database;3.733;3.9;3.566;;;Air dried weight;;2a Melica uniflora;43550;actual measurement;one-seeded generative dispersule;2.779;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.779;;;14;;Air dried weight;;2a Melica uniflora;43550;actual measurement;generative dispersule;2.42;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.42;;;1;n an replicates unknown;Air dried weight;;2 Melica uniflora;43550;actual measurement;germinule;3.733;;-4;;BIOLFLOR database;3.733;3.9;3.566;;;Air dried weight;;3 Melica uniflora;43550;actual measurement;germinule;2.512;;-4;;BIOLFLOR database;2.512;2.78;2.244;;;Air dried weight;;3 Melica uniflora;43550;other;one-seeded generative dispersule;2.77;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.77;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melica uniflora;43550;other;one-seeded generative dispersule;2.6468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melica uniflora;43550;actual measurement;generative dispersule;3.11;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.11;3.11;3.11;1;;Air dried weight;;2 Melica uniflora;43550;other;germinule;2.77;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.77;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Melica uniflora;43550;other;germinule;2.6468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Melilotus alba;21420;actual measurement;one-seeded generative dispersule;3.72;;-4;;BIOLFLOR database;3.72;;;;;Air dried weight;;2a Melilotus alba;21420;actual measurement;one-seeded generative dispersule;1.939;;-4;;BIOLFLOR database;1.939;2.076;1.74;;;Air dried weight;;2a Melilotus alba;21420;actual measurement;germinule;3.72;;-4;;BIOLFLOR database;3.72;;;;;Air dried weight;;3 Melilotus alba;21420;actual measurement;germinule;1.939;;-4;;BIOLFLOR database;1.939;2.076;1.74;;;Air dried weight;;3 Melilotus altissima;22213;actual measurement;one-seeded generative dispersule;3.716;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.716;;;100;;Air dried weight;;2a Melilotus altissima;22213;actual measurement;one-seeded generative dispersule;3.477;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.477;;;100;;Air dried weight;;2a Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;4.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.03;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;3.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.99;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;4.01;10;-2;4.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.99;4.21;3.68;;preaggregated value obtained from single record;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;4.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;3.91;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.91;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;4.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.08;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;3.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.89;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;4.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.11;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;3.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.68;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;3.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.93;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus altissima;22213;actual measurement (following LEDA data standards);germinule;4.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.06;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Melilotus dentata;21422;actual measurement;one-seeded generative dispersule;2.577;;-4;;BIOLFLOR database;2.577;2.752;2.401;;;Air dried weight;;2a Melilotus dentata;21422;actual measurement;germinule;2.577;;-4;;BIOLFLOR database;2.577;2.752;2.401;;;Air dried weight;;3 Melilotus indica;20556;actual measurement;germinule;2.243;;-4;;BIOLFLOR database;2.243;;;;;Air dried weight;;3 Melilotus indica;20556;actual measurement;one-seeded generative dispersule;2.243;;-4;;BIOLFLOR database;2.243;;;;;Air dried weight;;2a Melilotus officinalis;22218;other;one-seeded generative dispersule;5.066;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.066;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melilotus officinalis;22218;other;one-seeded generative dispersule;3.9324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melilotus officinalis;22218;other;one-seeded generative dispersule;3.9324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melilotus officinalis;22218;actual measurement;generative dispersule;2.1615;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.1615;2.247;2.102;100;;Air dried weight;;2 Melilotus officinalis;22218;other;one-seeded generative dispersule;5.066;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.066;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melilotus officinalis;22218;other;one-seeded generative dispersule;3.9324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melilotus officinalis;22218;other;one-seeded generative dispersule;5.066;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.066;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Melilotus officinalis;22218;actual measurement;germinule;2.205;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.205;;;100;;Air dried weight;;3 Melilotus officinalis;22218;actual measurement;one-seeded generative dispersule;2.205;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.205;;;100;;Air dried weight;;2a Melilotus officinalis;22218;actual measurement;one-seeded generative dispersule;1.731;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.731;;;100;;Air dried weight;;2a Melilotus officinalis;22218;actual measurement;one-seeded generative dispersule;.569;;-4;;BIOLFLOR database;.569;.66;.5;;;Air dried weight;;2a Melilotus officinalis;22218;actual measurement;one-seeded generative dispersule;2.1;;-4;;BIOLFLOR database;2.1;;;;;Air dried weight;;2a Melilotus officinalis;22218;actual measurement;one-seeded generative dispersule;2.426;;-4;;BIOLFLOR database;2.426;2.662;2.2;;;Air dried weight;;2a Melilotus officinalis;22218;actual measurement;germinule;2.426;;-4;;BIOLFLOR database;2.426;2.662;2.2;;;Air dried weight;;3 Melilotus officinalis;22218;actual measurement;germinule;.569;;-4;;BIOLFLOR database;.569;.66;.5;;;Air dried weight;;3 Melilotus officinalis;22218;actual measurement;germinule;1.731;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.731;;;100;;Air dried weight;;3 Melilotus officinalis;22218;actual measurement;germinule;2.1;;-4;;BIOLFLOR database;2.1;;;;;Air dried weight;;3 Melilotus officinalis;22218;other;germinule;3.9324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Melilotus officinalis;22218;other;germinule;5.066;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.066;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Melissa officinalis;23840;actual measurement;germinule;.58;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.66;.5;1;n and replicates unknown;Air dried weight;;3 Melittis melissophyllum;24619;actual measurement;one-seeded generative dispersule;5.39;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.39;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Mentha aquatica;24622;actual measurement;germinule;.142;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.142;;;50;;Air dried weight;;3 Mentha aquatica;24622;actual measurement;germinule;.109;;-4;;BIOLFLOR database;.109;.14;.077;;;Air dried weight;;3 Mentha aquatica;24622;other;one-seeded generative dispersule;.1468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Mentha aquatica;24622;actual measurement;one-seeded generative dispersule;.142;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.142;;;50;;Air dried weight;;2a Mentha aquatica;24622;actual measurement;one-seeded generative dispersule;.109;;-4;;BIOLFLOR database;.109;.14;.077;;;Air dried weight;;2a Mentha aquatica;24622;actual measurement;one-seeded generative dispersule;.102666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.102666667;.113;.094;100;;Air dried weight;;2a Mentha aquatica;24622;other;germinule;.1468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Mentha arvensis;23905;other;germinule;.12368;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12368;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Mentha arvensis;23905;actual measurement;one-seeded generative dispersule;.209;;-4;;BIOLFLOR database;.209;.27;.148;;;Air dried weight;;2a Mentha arvensis;23905;actual measurement;one-seeded generative dispersule;.1615;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1615;.191;.132;100;;Air dried weight;;2a Mentha arvensis;23905;actual measurement;one-seeded generative dispersule;.136;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.136;;;50;;Air dried weight;;2a Mentha arvensis;23905;actual measurement;one-seeded generative dispersule;.266;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.266;;;100;;Air dried weight;;2a Mentha arvensis;23905;other;one-seeded generative dispersule;.12368;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12368;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Mentha arvensis;23905;actual measurement;germinule;.209;;-4;;BIOLFLOR database;.209;.27;.148;;;Air dried weight;;3 Mentha arvensis;23905;actual measurement;germinule;.266;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.266;;;100;;Air dried weight;;3 Mentha arvensis;23905;actual measurement;germinule;.136;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.136;;;50;;Air dried weight;;3 Mentha longifolia;24632;actual measurement;germinule;.0625;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0625;;;200;;Air dried weight;;3 Mentha longifolia;24632;actual measurement;germinule;.071;;-4;;BIOLFLOR database;.071;;;;;Air dried weight;;3 Mentha longifolia;24632;actual measurement;one-seeded generative dispersule;.0625;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0625;;;200;;Air dried weight;;2a Mentha longifolia;24632;actual measurement;one-seeded generative dispersule;.053;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.053;.053;.053;100;;Air dried weight;;2a Mentha longifolia;24632;actual measurement;one-seeded generative dispersule;.071;;-4;;BIOLFLOR database;.071;;;;;Air dried weight;;2a Mentha pulegium;24284;other;one-seeded generative dispersule;.1048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Mentha pulegium;24284;other;one-seeded generative dispersule;.092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Mentha pulegium;24284;other;one-seeded generative dispersule;.084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Mentha pulegium;24284;other;one-seeded generative dispersule;.04744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04744;;;1000;1000 seed weight, unknown number of individuals, 50-100 seeds per flowering shoot.;Air dried weight;;2a Mentha pulegium;24284;actual measurement;one-seeded generative dispersule;.072;;-4;;BIOLFLOR database;.072;.1;.05;;;Air dried weight;;2a Mentha pulegium;24284;actual measurement;germinule;.075;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.1;.05;1;n and replicates unknown;Air dried weight;;3 Mentha pulegium;24284;actual measurement;germinule;.072;;-4;;BIOLFLOR database;.072;.1;.05;;;Air dried weight;;3 Mentha pulegium;24284;actual measurement (following LEDA data standards);germinule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;3 Mentha pulegium;24284;actual measurement (following LEDA data standards);germinule;.06;1;-2;.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;.06;.06;;preaggregated value obtained from single record;Air dried weight;;3 Mentha pulegium;24284;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Mentha pulegium;24284;other;germinule;.1048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Mentha pulegium;24284;other;germinule;.04744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04744;;;1000;1000 seed weight, unknown number of individuals, 50-100 seeds per flowering shoot.;Air dried weight;;3 Mentha pulegium;24284;other;germinule;.084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Mentha pulegium;24284;other;germinule;.092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Mentha pulegium;24284;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Mentha suaveolens;23642;actual measurement;one-seeded generative dispersule;.0465;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0465;.047;.046;100;;Air dried weight;;2a Menyanthes trifoliata;26352;actual measurement;one-seeded generative dispersule;2.89;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.89;;;50;;Air dried weight;;2a Menyanthes trifoliata;26352;other;one-seeded generative dispersule;2.3696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Menyanthes trifoliata;26352;actual measurement;germinule;2.152;;-4;;BIOLFLOR database;2.152;2.748;1.623;;;Air dried weight;;3 Menyanthes trifoliata;26352;actual measurement;germinule;4.782;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.782;;;50;;Air dried weight;;3 Menyanthes trifoliata;26352;actual measurement;germinule;2.89;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.89;;;50;;Air dried weight;;3 Menyanthes trifoliata;26352;actual measurement;one-seeded generative dispersule;2.152;;-4;;BIOLFLOR database;2.152;2.748;1.623;;;Air dried weight;;2a Menyanthes trifoliata;26352;actual measurement;one-seeded generative dispersule;4.782;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.782;;;50;;Air dried weight;;2a Menyanthes trifoliata;26352;actual measurement (following LEDA data standards);germinule;2.68;1;-2;2.68;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.68;2.68;2.68;;preaggregated value obtained from single record;Air dried weight;;3 Menyanthes trifoliata;26352;other;germinule;2.3696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Menyanthes trifoliata;26352;actual measurement (following LEDA data standards);germinule;2.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.68;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Mercurialis annua;20019;other;germinule;2.1296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Mercurialis annua;20019;actual measurement;germinule;2.5;;-4;;BIOLFLOR database;2.5;2.9;2.1;;;Air dried weight;;3 Mercurialis annua;20019;actual measurement;one-seeded generative dispersule;2.26;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.26;;;50;;Air dried weight;;2a Mercurialis annua;20019;actual measurement;germinule;3.1;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3.1;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Mercurialis annua;20019;actual measurement;germinule;1.512;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.512;;;50;;Air dried weight;;3 Mercurialis annua;20019;actual measurement;germinule;2.26;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.26;;;50;;Air dried weight;;3 Mercurialis annua;20019;other;one-seeded generative dispersule;2.1296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Mercurialis annua;20019;actual measurement;one-seeded generative dispersule;1.512;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.512;;;50;;Air dried weight;;2a Mercurialis annua;20019;actual measurement;one-seeded generative dispersule;2.5;;-4;;BIOLFLOR database;2.5;2.9;2.1;;;Air dried weight;;2a Mercurialis annua;20019;actual measurement;one-seeded generative dispersule;2.3422;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.3422;2.514;2.242;100;;Air dried weight;;2a Mercurialis annua;20019;actual measurement;one-seeded generative dispersule;3.3;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3.3;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Mercurialis perennis;19987;actual measurement;one-seeded generative dispersule;2.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.15;;;10;;Air dried weight;;2a Mercurialis perennis;19987;actual measurement;one-seeded generative dispersule;2.17;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.17;;;100;;Air dried weight;;2a Mercurialis perennis;19987;actual measurement;one-seeded generative dispersule;11.4;;-4;;BIOLFLOR database;11.4;;;;;Air dried weight;;2a Mercurialis perennis;19987;actual measurement;multi-seeded generative dispersule;7.42;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.42;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Mercurialis perennis;19987;actual measurement;germinule;2.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.15;;;10;;Air dried weight;;3 Mercurialis perennis;19987;actual measurement;germinule;11.4;;-4;;BIOLFLOR database;11.4;;;;;Air dried weight;;3 Mercurialis perennis;19987;actual measurement;germinule;2.17;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.17;;;100;;Air dried weight;;3 Mespilus germanica;30357;actual measurement;generative dispersule;60.83;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);60.83;;;1;n an replicates unknown;Air dried weight;;2 Meum athamanticum;1148;other;one-seeded generative dispersule;7.1844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.1844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Meum athamanticum;1148;other;one-seeded generative dispersule;7.3284;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.3284;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Meum athamanticum;1148;actual measurement;one-seeded generative dispersule;7.604;;-4;;BIOLFLOR database;7.604;8;7.208;;;Air dried weight;;2a Meum athamanticum;1148;actual measurement;germinule;7.604;;-4;;BIOLFLOR database;7.604;8;7.208;;;Air dried weight;;3 Meum athamanticum;1148;other;germinule;7.3284;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.3284;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Meum athamanticum;1148;other;germinule;7.1844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.1844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Mibora minima;42486;actual measurement;germinule;.09667;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.09667;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Mibora minima;42486;actual measurement;germinule;.097;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.097;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Mibora minima;42486;actual measurement;germinule;.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1;;;30;collected between 1996-1999;Air dried weight;;3 Micropyrum tenellum;42857;actual measurement;germinule;.54636;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.54636;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Milium effusum;43212;actual measurement;germinule;1.078;;-4;;BIOLFLOR database;1.078;1.2;.956;;;Air dried weight;;3 Milium effusum;43212;actual measurement;germinule;1.196;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.196;;;50;;Air dried weight;;3 Milium effusum;43212;actual measurement;one-seeded generative dispersule;1.078;;-4;;BIOLFLOR database;1.078;1.2;.956;;;Air dried weight;;2a Milium effusum;43212;actual measurement;one-seeded generative dispersule;1.196;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.196;;;50;;Air dried weight;;2a Mimulus guttatus;34136;actual measurement;one-seeded generative dispersule;.025;;-4;;BIOLFLOR database;.025;.029;.022;;;Air dried weight;;2a Mimulus guttatus;34136;actual measurement;one-seeded generative dispersule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;2a Mimulus guttatus;34136;actual measurement;one-seeded generative dispersule;.0125;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0125;.013;.012;100;;Air dried weight;;2a Mimulus guttatus;34136;actual measurement;germinule;.025;;-4;;BIOLFLOR database;.025;.029;.022;;;Air dried weight;;3 Mimulus guttatus;34136;actual measurement;germinule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;3 Mimulus moschatus;34076;actual measurement;germinule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;3 Mimulus moschatus;34076;actual measurement;germinule;.015;;-4;;BIOLFLOR database;.015;.017;.013;;;Air dried weight;;3 Mimulus moschatus;34076;actual measurement;one-seeded generative dispersule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;2a Mimulus moschatus;34076;actual measurement;one-seeded generative dispersule;.015;;-4;;BIOLFLOR database;.015;.017;.013;;;Air dried weight;;2a Minuartia hybrida;16496;actual measurement;one-seeded generative dispersule;.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.028;;;50;;Air dried weight;;2a Minuartia hybrida;16496;actual measurement;generative dispersule;.087;8;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.087;.093;.077;100;;Air dried weight;;2 Minuartia hybrida;16496;other;germinule;.0328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Minuartia hybrida;16496;other;germinule;.028;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.028;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Minuartia recurva;16581;actual measurement;generative dispersule;.31;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.31;;;1;n an replicates unknown;Air dried weight;;2 Minuartia rubella;16155;other;unknown;.1016;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Minuartia rubella;16155;other;unknown;.0716;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Minuartia rubella;16155;other;unknown;.0716;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Minuartia rubra;16156;actual measurement;germinule;.084;;-4;;BIOLFLOR database;.084;.087;.082;;;Air dried weight;;3 Minuartia rubra;16156;actual measurement;one-seeded generative dispersule;.084;;-4;;BIOLFLOR database;.084;.087;.082;;;Air dried weight;;2a Minuartia sedoides;17489;other;one-seeded generative dispersule;.258;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.258;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Minuartia sedoides;17489;actual measurement;one-seeded generative dispersule;.285;;-4;;BIOLFLOR database;.285;;;;;Air dried weight;;2a Minuartia sedoides;17489;actual measurement;germinule;.285;;-4;;BIOLFLOR database;.285;;;;;Air dried weight;;3 Minuartia sedoides;17489;other;germinule;.258;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.258;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Minuartia setacea;17043;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;3 Minuartia setacea;17043;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;;;;;Air dried weight;;2a Minuartia verna;17060;actual measurement;one-seeded generative dispersule;.075;;-4;;BIOLFLOR database;.075;.08;.07;;;Air dried weight;;2a Minuartia verna;17060;actual measurement;one-seeded generative dispersule;.084;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.084;;;100;;Air dried weight;;2a Minuartia verna;17060;actual measurement;one-seeded generative dispersule;.078;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.078;;;100;;Air dried weight;;2a Minuartia verna;17060;other;one-seeded generative dispersule;.0576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Minuartia verna;17060;other;one-seeded generative dispersule;.0892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Minuartia verna;17060;other;one-seeded generative dispersule;.0864;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Minuartia verna;17060;other;one-seeded generative dispersule;.0988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Minuartia verna;17060;actual measurement;germinule;.075;;-4;;BIOLFLOR database;.075;.08;.07;;;Air dried weight;;3 Minuartia verna;17060;actual measurement;germinule;.078;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.078;;;100;;Air dried weight;;3 Minuartia verna;17060;actual measurement;germinule;.084;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.084;;;100;;Air dried weight;;3 Minuartia verna;17060;other;germinule;.0892;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0892;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Minuartia verna;17060;other;germinule;.0988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Minuartia verna;17060;other;germinule;.0864;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Minuartia verna;17060;other;germinule;.0576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Misopates orontium;34219;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Misopates orontium;34219;actual measurement (following LEDA data standards);germinule;.18;1;-2;.18;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;.18;.18;;preaggregated value obtained from single record;Air dried weight;;3 Misopates orontium;34219;other;germinule;.1692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Misopates orontium;34219;other;germinule;.14124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.14124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Misopates orontium;34219;actual measurement;germinule;.137;;-4;;BIOLFLOR database;.137;.141;.135;;;Air dried weight;;3 Misopates orontium;34219;other;one-seeded generative dispersule;.1692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Misopates orontium;34219;other;one-seeded generative dispersule;.14124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.14124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Misopates orontium;34219;actual measurement;one-seeded generative dispersule;.137;;-4;;BIOLFLOR database;.137;.141;.135;;;Air dried weight;;2a Moehringia ciliata;17069;actual measurement;one-seeded generative dispersule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;2a Moehringia ciliata;17069;actual measurement;germinule;.4;;-4;;BIOLFLOR database;.4;;;;;Air dried weight;;3 Moehringia trinervia;16247;actual measurement;germinule;.204;;-4;;BIOLFLOR database;.204;.22;.188;;;Air dried weight;;3 Moehringia trinervia;16247;actual measurement;germinule;.216;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.216;;;100;;Air dried weight;;3 Moehringia trinervia;16247;actual measurement;one-seeded generative dispersule;.204;;-4;;BIOLFLOR database;.204;.22;.188;;;Air dried weight;;2a Moehringia trinervia;16247;actual measurement;one-seeded generative dispersule;.216;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.216;;;100;;Air dried weight;;2a Moenchia erecta;16558;actual measurement;germinule;.04145;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.04145;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Moenchia erecta;16558;actual measurement;germinule;.041;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.041;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Moenchia erecta;16558;actual measurement;germinule;.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.04;;;30;collected between 1996-1999;Air dried weight;;3 Moenchia erecta;16558;other;germinule;.1192;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1192;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Moenchia erecta;16558;other;germinule;.116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Molineriella laevis;42860;actual measurement;germinule;.0288;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0288;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Molineriella laevis;42860;actual measurement;germinule;.029;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.029;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Molinia caerulea;42495;actual measurement;germinule;.527;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.527;;;100;;Air dried weight;;3 Molinia caerulea;42495;actual measurement;one-seeded generative dispersule;.813;;-4;;BIOLFLOR database;.813;1;.7;;;Air dried weight;;2a Molinia caerulea;42495;actual measurement;one-seeded generative dispersule;.527;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.527;;;100;;Air dried weight;;2a Molinia caerulea;42495;actual measurement;one-seeded generative dispersule;1.3558;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.3558;1.441;1.29;100;;Air dried weight;;2a Molinia caerulea;42495;actual measurement;germinule;.567;;-4;;BIOLFLOR database;.567;.737;.434;;;Air dried weight;;3 Molinia caerulea;42495;actual measurement;germinule;.37;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.37;;;50;;Air dried weight;;3 Molinia caerulea;42495;actual measurement;germinule;.813;;-4;;BIOLFLOR database;.813;1;.7;;;Air dried weight;;3 Molinia caerulea;42495;actual measurement;one-seeded generative dispersule;.37;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.37;;;50;;Air dried weight;;2a Molinia caerulea;42495;actual measurement;one-seeded generative dispersule;1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Molinia caerulea;42495;other;one-seeded generative dispersule;.7696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Molinia caerulea;42495;other;one-seeded generative dispersule;.7036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Molinia caerulea;42495;other;germinule;.7696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Molinia caerulea;42495;other;germinule;.7036;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Moneses uniflora;28798;actual measurement;one-seeded generative dispersule;.002;;-4;;BIOLFLOR database;.002;;;;;Air dried weight;;2a Moneses uniflora;28798;actual measurement;germinule;.002;;-4;;BIOLFLOR database;.002;;;;;Air dried weight;;3 Monotropa hypophegea;28802;actual measurement;germinule;.0009;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0009;;;100;;Air dried weight;;3 Monotropa hypopitys;28803;actual measurement;one-seeded generative dispersule;.003;;-4;;BIOLFLOR database;.003;;;;;Air dried weight;;2a Monotropa hypopitys;28803;actual measurement;germinule;.003;;-4;;BIOLFLOR database;.003;;;;;Air dried weight;;3 Montia fontana;27478;actual measurement;one-seeded generative dispersule;.223;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.223;;;50;;Air dried weight;;2a Montia fontana;27478;actual measurement;one-seeded generative dispersule;.263;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.263;;;50;;Air dried weight;;2a Montia fontana;27478;actual measurement;one-seeded generative dispersule;.316;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.316;;;50;;Air dried weight;;2a Montia fontana;27478;other;germinule;.248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Morus alba;25308;actual measurement;generative dispersule;3.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.1;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Morus nigra;25309;actual measurement;generative dispersule;1.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.6;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Muscari armeniacum;39078;actual measurement;germinule;3.38;;-4;;BIOLFLOR database;3.38;3.8;3.34;;;Air dried weight;;3 Muscari armeniacum;39078;actual measurement;one-seeded generative dispersule;3.38;;-4;;BIOLFLOR database;3.38;3.8;3.34;;;Air dried weight;;2a Muscari botryoides;38961;actual measurement;one-seeded generative dispersule;3.37;;-4;;BIOLFLOR database;3.37;3.45;3.28;;;Air dried weight;;2a Muscari botryoides;38961;actual measurement;germinule;3.37;;-4;;BIOLFLOR database;3.37;3.45;3.28;;;Air dried weight;;3 Muscari comosum;38147;actual measurement;germinule;5.68;;-4;;BIOLFLOR database;5.68;;;;;Air dried weight;;3 Muscari comosum;38147;actual measurement;one-seeded generative dispersule;5.68;;-4;;BIOLFLOR database;5.68;;;;;Air dried weight;;2a Muscari neglectum;38976;actual measurement;one-seeded generative dispersule;2.7;;-4;;BIOLFLOR database;2.7;;;;;Air dried weight;;2a Muscari neglectum;38976;other;one-seeded generative dispersule;3.1356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Muscari neglectum;38976;actual measurement;germinule;2.7;;-4;;BIOLFLOR database;2.7;;;;;Air dried weight;;3 Muscari neglectum;38976;actual measurement;generative dispersule;4.36;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.36;5.2;3.8;1;;Air dried weight;;2 Muscari neglectum;38976;other;germinule;3.1356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Muscari tenuiflorum;38964;actual measurement;germinule;4.458;;-4;;BIOLFLOR database;4.458;;;;;Air dried weight;;3 Muscari tenuiflorum;38964;actual measurement;one-seeded generative dispersule;4.458;;-4;;BIOLFLOR database;4.458;;;;;Air dried weight;;2a Myagrum perfoliatum;14601;actual measurement;generative dispersule;20.88;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;20.88;23.3;18.1;1;;Air dried weight;;2 Mycelis muralis;11510;actual measurement;germinule;.353;;-4;;BIOLFLOR database;.353;.382;.34;;;Air dried weight;;3 Mycelis muralis;11510;actual measurement;one-seeded generative dispersule;.337;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.337;;;100;;Air dried weight;;2a Mycelis muralis;11510;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;100;used balance: Mettler Toledo 4, seed without pappus;Air dried weight;;3 Mycelis muralis;11510;actual measurement (following LEDA data standards);germinule;.29;1;-2;.29;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;.29;.29;;preaggregated value obtained from single record;Air dried weight;;3 Mycelis muralis;11510;other;germinule;.3116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosotis alpestris;12022;other;germinule;.4588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosotis alpestris;12022;actual measurement;one-seeded generative dispersule;.49;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.49;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Myosotis arvensis;12027;actual measurement;generative dispersule;.2555;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2555;.266;.245;100;;Air dried weight;;2 Myosotis arvensis;12027;actual measurement;one-seeded generative dispersule;.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.29;;;50;;Air dried weight;;2a Myosotis arvensis;12027;actual measurement;germinule;.29;;-4;;BIOLFLOR database;.29;.323;.237;;;Air dried weight;;3 Myosotis arvensis;12027;other;germinule;.3316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosotis arvensis;12027;other;germinule;.2964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosotis discolor;11975;other;germinule;.1528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosotis discolor;11975;actual measurement;germinule;.20167;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.20167;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Myosotis discolor;11975;actual measurement;germinule;.202;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.202;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Myosotis discolor;11975;actual measurement;one-seeded generative dispersule;.2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.2;;;50;;Air dried weight;;2a Myosotis laxa;11988;actual measurement;germinule;.24;;-4;;BIOLFLOR database;.24;;;;;Air dried weight;;3 Myosotis laxa;11988;actual measurement;one-seeded generative dispersule;.192;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.192;.194;.19;100;;Air dried weight;;2a Myosotis laxa;11988;actual measurement;one-seeded generative dispersule;.24;;-4;;BIOLFLOR database;.24;;;;;Air dried weight;;2a Myosotis ramosissima;11938;actual measurement;germinule;.377;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.377;;;1;summers of 1995 and 1996;Unknown;;3 Myosotis ramosissima;11938;actual measurement;one-seeded generative dispersule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;2a Myosotis ramosissima;11938;actual measurement;germinule;.11;;-4;;BIOLFLOR database;.11;;;;;Air dried weight;;3 Myosotis ramosissima;11938;other;germinule;.2104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosotis scorpioides;11951;other;germinule;.3256;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3256;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosotis scorpioides;11951;actual measurement;one-seeded generative dispersule;.277;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.277;;;100;;Air dried weight;;2a Myosotis secunda;11953;other;unknown;.196;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Myosotis sparsiflora;11960;actual measurement;one-seeded generative dispersule;.249;;-4;;BIOLFLOR database;.249;;;;;Air dried weight;;2a Myosotis sparsiflora;11960;actual measurement;germinule;.249;;-4;;BIOLFLOR database;.249;;;;;Air dried weight;;3 Myosotis stricta;11964;actual measurement;germinule;.137;;-4;;BIOLFLOR database;.137;.144;.13;;;Air dried weight;;3 Myosotis stricta;11964;actual measurement;germinule;.11283;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.11283;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Myosotis stricta;11964;actual measurement;one-seeded generative dispersule;.137;;-4;;BIOLFLOR database;.137;.144;.13;;;Air dried weight;;2a Myosotis stricta;11964;actual measurement;germinule;.113;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.113;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Myosotis sylvatica;11966;actual measurement;germinule;.56;;-4;;BIOLFLOR database;.56;;;;;Air dried weight;;3 Myosotis sylvatica;11966;actual measurement;one-seeded generative dispersule;.596;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.596;;;50;;Air dried weight;;2a Myosotis sylvatica;11966;actual measurement;one-seeded generative dispersule;.623;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.623;;;50;;Air dried weight;;2a Myosotis sylvatica;11966;other;germinule;.374;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.374;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosoton aquaticum;15865;other;germinule;.2028;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2028;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myosoton aquaticum;15865;actual measurement;one-seeded generative dispersule;.262;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.262;;;50;;Air dried weight;;2a Myosoton aquaticum;15865;actual measurement;one-seeded generative dispersule;.199;;-4;;BIOLFLOR database;.199;;;;;Air dried weight;;2a Myosoton aquaticum;15865;actual measurement;one-seeded generative dispersule;.152;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.152;;;98;;Air dried weight;;2a Myosoton aquaticum;15865;other;one-seeded generative dispersule;.2028;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2028;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Myosoton aquaticum;15865;actual measurement;germinule;.152;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.152;;;98;;Air dried weight;;3 Myosoton aquaticum;15865;actual measurement;germinule;.262;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.262;;;50;;Air dried weight;;3 Myosoton aquaticum;15865;actual measurement;germinule;.199;;-4;;BIOLFLOR database;.199;;;;;Air dried weight;;3 Myosurus minimus;27104;actual measurement;germinule;.086;;-4;;BIOLFLOR database;.086;;;;;Air dried weight;;3 Myosurus minimus;27104;actual measurement;germinule;.151;;-4;;BIOLFLOR database;.151;.151;.15;;;Air dried weight;;3 Myosurus minimus;27104;other;one-seeded generative dispersule;.0656;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0656;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Myosurus minimus;27104;actual measurement;one-seeded generative dispersule;.086;;-4;;BIOLFLOR database;.086;;;;;Air dried weight;;2a Myosurus minimus;27104;actual measurement;one-seeded generative dispersule;.11;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.11;.111;.109;100;;Air dried weight;;2a Myosurus minimus;27104;other;germinule;.0656;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0656;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myrica gale;25316;other;germinule;1.6032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myrica gale;25316;actual measurement;one-seeded generative dispersule;.58;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.58;;;15;;Air dried weight;;2a Myrica gale;25316;actual measurement;one-seeded generative dispersule;.845;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.845;;;20;;Air dried weight;;2a Myrica gale;25316;actual measurement;generative dispersule;1.263157895;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.263157895;1.268421053;1.257894737;1;;Air dried weight;;2 Myrica gale;25316;actual measurement;germinule;1.56;;-4;;BIOLFLOR database;1.56;2.31;.81;;;Air dried weight;;3 Myricaria germanica;34699;actual measurement;germinule;.065;;-4;;BIOLFLOR database;.065;;;;;Air dried weight;;3 Myricaria germanica;34699;actual measurement;germinule;.033333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.033333333;.033333333;.033333333;36;;Air dried weight;;3 Myricaria germanica;34699;actual measurement;one-seeded generative dispersule;.065;;-4;;BIOLFLOR database;.065;;;;;Air dried weight;;2a Myriophyllum alterniflorum;25228;other;unknown;.6148;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Myriophyllum heterophyllum;25231;actual measurement;unknown;.312;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.312;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Myriophyllum spicatum;25232;actual measurement;one-seeded generative dispersule;1.493;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.493;;;50;;Air dried weight;;2a Myriophyllum spicatum;25232;other;germinule;1.048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myrrhis odorata;1152;other;germinule;41.1812;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);41.1812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myrrhis odorata;1152;other;germinule;40.322;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);40.322;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Myrrhis odorata;1152;actual measurement;one-seeded generative dispersule;35.005;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35.005;;;20;;Air dried weight;;2a Myrrhis odorata;1152;actual measurement;one-seeded generative dispersule;36.886;;-4;;BIOLFLOR database;36.886;42;29;;;Air dried weight;;2a Myrrhis odorata;1152;other;one-seeded generative dispersule;40.322;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);40.322;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Myrrhis odorata;1152;other;one-seeded generative dispersule;41.1812;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);41.1812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Myrrhis odorata;1152;actual measurement;germinule;35.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;42;29;1;n and replicates unknown;Air dried weight;;3 Myrrhis odorata;1152;actual measurement;germinule;36.886;;-4;;BIOLFLOR database;36.886;42;29;;;Air dried weight;;3 Myrrhis odorata;1152;actual measurement;germinule;35.005;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35.005;;;20;;Air dried weight;;3 Myrtus communis;25977;actual measurement;germinule;5.51;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.51;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Myrtus communis;25977;actual measurement;generative dispersule;33.7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);33.7;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.12;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;3.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.73;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.09;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.37;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.1;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.29;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.2;10;-2;4.2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.19;4.71;3.73;;preaggregated value obtained from single record;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;3.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.9;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.27;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.31;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Najas marina;39411;actual measurement (following LEDA data standards);germinule;4.71;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.71;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Narcissus pseudonarcissus;35717;other;unknown;6.4148;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.4148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Narcissus pseudonarcissus;35717;other;unknown;5.6176;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.6176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Narcissus pseudonarcissus;35717;other;unknown;5.4028;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.4028;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;No. of seeds per individual: 10-11;Air dried weight;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;10;No. of seeds per individual: 10;Air dried weight;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.43;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.43;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.35;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.35;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.36;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.49;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.49;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.45;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.16;2;-2;.16;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;.17;.14;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.17;6;-2;.17;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;.26;.15;;Preaggregated data obtained from single record. No. of seeds per individual: 10-11;;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.43;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.43;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.35;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.35;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.36;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.36;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.49;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.49;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.45;;;10;Weight including appendages. No. of seeds per individual: 10-11;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;2;-2;.38;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.38;.43;.32;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;6;-2;.38;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;.49;.3;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10-11;;;2a Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;No. of seeds per individual: 10;Air dried weight;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.26;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.26;;;10;No. of seeds per individual: 10-11;Air dried weight;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;No. of seeds per individual: 10-11;Air dried weight;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.15;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.15;;;10;No. of seeds per individual: 10-11;Air dried weight;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.19;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;;;10;No. of seeds per individual: 10-11;Air dried weight;;3 Nardus stricta;43217;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;;;10;No. of seeds per individual: 10-11;Air dried weight;;3 Nardus stricta;43217;actual measurement;germinule;.624;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.624;;;100;;Air dried weight;;3 Nardus stricta;43217;actual measurement;germinule;.382;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.382;;;50;;Air dried weight;;3 Nardus stricta;43217;actual measurement;germinule;.386;;-4;;BIOLFLOR database;.386;.397;.38;;;Air dried weight;;3 Nardus stricta;43217;actual measurement;germinule;.659;;-4;;BIOLFLOR database;.659;.778;.5;;;Air dried weight;;3 Nardus stricta;43217;actual measurement;one-seeded generative dispersule;.659;;-4;;BIOLFLOR database;.659;.778;.5;;;Air dried weight;;2a Nardus stricta;43217;actual measurement;one-seeded generative dispersule;.382;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.382;;;50;;Air dried weight;;2a Nardus stricta;43217;actual measurement;one-seeded generative dispersule;.624;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.624;;;100;;Air dried weight;;2a Nardus stricta;43217;actual measurement;one-seeded generative dispersule;.4645;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4645;.473;.456;100;;Air dried weight;;2a Narthecium ossifragum;38170;actual measurement;one-seeded generative dispersule;.082;;-4;;BIOLFLOR database;.082;.106;.055;;;Air dried weight;;2a Narthecium ossifragum;38170;actual measurement;one-seeded generative dispersule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;20;;Air dried weight;;2a Narthecium ossifragum;38170;other;one-seeded generative dispersule;.09;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.09;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Narthecium ossifragum;38170;other;one-seeded generative dispersule;.08652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.08652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Narthecium ossifragum;38170;other;one-seeded generative dispersule;.098;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.098;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Narthecium ossifragum;38170;other;one-seeded generative dispersule;.1052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Narthecium ossifragum;38170;actual measurement;germinule;.082;;-4;;BIOLFLOR database;.082;.106;.055;;;Air dried weight;;3 Narthecium ossifragum;38170;actual measurement;germinule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;20;;Air dried weight;;3 Narthecium ossifragum;38170;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Narthecium ossifragum;38170;actual measurement (following LEDA data standards);germinule;.09;1;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.09;;preaggregated value obtained from single record;Air dried weight;;3 Narthecium ossifragum;38170;other;germinule;.098;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.098;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Narthecium ossifragum;38170;other;germinule;.09;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.09;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Narthecium ossifragum;38170;other;germinule;.08652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.08652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Narthecium ossifragum;38170;other;germinule;.1052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Nasturtium microphyllum;12669;actual measurement;one-seeded generative dispersule;.13;;-4;;BIOLFLOR database;.13;;;;;Air dried weight;;2a Nasturtium microphyllum;12669;actual measurement;germinule;.13;;-4;;BIOLFLOR database;.13;;;;;Air dried weight;;3 Nasturtium officinale;14602;actual measurement;germinule;.193;;-4;;BIOLFLOR database;.193;.22;.18;;;Air dried weight;;3 Nasturtium officinale;14602;actual measurement;germinule;.19;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.19;;;100;;Air dried weight;;3 Nasturtium officinale;14602;actual measurement;germinule;.2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.22;.18;1;n and replicates unknown;Air dried weight;;3 Nasturtium officinale;14602;actual measurement;one-seeded generative dispersule;.193;;-4;;BIOLFLOR database;.193;.22;.18;;;Air dried weight;;2a Nasturtium officinale;14602;actual measurement;one-seeded generative dispersule;.19;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.19;;;100;;Air dried weight;;2a Neottia nidus-avis;39957;actual measurement;one-seeded generative dispersule;.005;;-4;;BIOLFLOR database;.005;;;;;Air dried weight;;2a Neottia nidus-avis;39957;actual measurement;germinule;.005;;-4;;BIOLFLOR database;.005;;;;;Air dried weight;;3 Nepeta cataria;24784;actual measurement;germinule;.581;;-4;;BIOLFLOR database;.581;.6;.544;;;Air dried weight;;3 Nepeta cataria;24784;actual measurement;one-seeded generative dispersule;.581;;-4;;BIOLFLOR database;.581;.6;.544;;;Air dried weight;;2a Nepeta cataria;24784;other;one-seeded generative dispersule;.57836;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.57836;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Nepeta cataria;24784;other;germinule;.57836;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.57836;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Nepeta grandiflora;24254;actual measurement;one-seeded generative dispersule;.808;;-4;;BIOLFLOR database;.808;;;;;Air dried weight;;2a Nepeta grandiflora;24254;actual measurement;germinule;.808;;-4;;BIOLFLOR database;.808;;;;;Air dried weight;;3 Nepeta nuda;23899;actual measurement;germinule;.722;;-4;;BIOLFLOR database;.722;.849;.558;;;Air dried weight;;3 Nepeta nuda;23899;actual measurement;one-seeded generative dispersule;.722;;-4;;BIOLFLOR database;.722;.849;.558;;;Air dried weight;;2a Neslia paniculata;13116;actual measurement;one-seeded generative dispersule;3.02;;-4;;BIOLFLOR database;3.02;;;;;Air dried weight;;2a Neslia paniculata;13116;actual measurement;germinule;3.02;;-4;;BIOLFLOR database;3.02;;;;;Air dried weight;;3 Nicandra physalodes;34982;actual measurement;germinule;1.138;;-4;;BIOLFLOR database;1.138;1.148;1.128;;;Air dried weight;;3 Nicandra physalodes;34982;other;germinule;1.0328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Nigella arvensis;27106;actual measurement;generative dispersule;2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2;;;1;n an replicates unknown;Air dried weight;;2 Nigella damascena;27114;actual measurement;germinule;1.386;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.386;;;40;;Air dried weight;;3 Nigella damascena;27114;actual measurement;germinule;2.833;;-4;;BIOLFLOR database;2.833;;;;;Air dried weight;;3 Nigella damascena;27114;actual measurement;one-seeded generative dispersule;1.386;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.386;;;40;;Air dried weight;;2a Nigella damascena;27114;actual measurement;one-seeded generative dispersule;2.833;;-4;;BIOLFLOR database;2.833;;;;;Air dried weight;;2a Nuphar lutea;25253;actual measurement;one-seeded generative dispersule;36.844;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36.844;;;50;;Air dried weight;;2a Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;24.91;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24.91;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;24.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24.58;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;23.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.26;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;24.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24.08;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;23.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.07;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;23.47;10;-2;23.47;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.68;24.91;22.65;;preaggregated value obtained from single record;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;23.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.34;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;23.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.47;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;22.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22.65;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nuphar lutea;25253;actual measurement (following LEDA data standards);germinule;23.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.46;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.98;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.8;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.8;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.89;10;-2;1.89;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.9;2.14;1.79;;preaggregated value obtained from single record;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.88;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.79;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;2.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.14;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.9;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.93;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.94;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.82;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.82;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphaea alba;25260;actual measurement (following LEDA data standards);germinule;1.85;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.85;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.43;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.35;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.17;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.49;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.34;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.44;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.35;10;-2;1.35;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.37;1.58;1.17;;preaggregated value obtained from single record;Air dried weight;;3 Nymphoides peltata;26354;other;germinule;.7104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.32;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.26;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.58;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Nymphoides peltata;26354;actual measurement (following LEDA data standards);germinule;1.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.32;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Odontites lutea;33000;actual measurement;one-seeded generative dispersule;.22;;-4;;BIOLFLOR database;.22;;;;;Air dried weight;;2a Odontites lutea;33000;actual measurement;germinule;.22;;-4;;BIOLFLOR database;.22;;;;;Air dried weight;;3 Odontites verna;33007;actual measurement;one-seeded generative dispersule;.153;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.153;;;169;;Air dried weight;;2a Odontites verna;33007;actual measurement;one-seeded generative dispersule;.284;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.284;;;50;;Air dried weight;;2a Odontites verna;33007;actual measurement (following LEDA data standards);germinule;.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.24;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Odontites verna;33007;actual measurement (following LEDA data standards);germinule;.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.16;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Odontites verna;33007;actual measurement (following LEDA data standards);germinule;.16;1;-2;.16;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.16;.16;.16;;preaggregated value obtained from single record;Air dried weight;;3 Odontites verna;33007;actual measurement (following LEDA data standards);germinule;.24;1;-2;.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.24;.24;.24;;preaggregated value obtained from single record;Air dried weight;;3 Odontites verna;33007;other;germinule;.2116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oenanthe aquatica;1156;actual measurement (following LEDA data standards);germinule;5.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.16;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Oenanthe aquatica;1156;actual measurement (following LEDA data standards);germinule;5.16;1;-2;5.16;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.16;5.16;5.16;;preaggregated value obtained from single record;Air dried weight;;3 Oenanthe aquatica;1156;other;germinule;2.1948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oenanthe aquatica;1156;other;germinule;2.4104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oenanthe aquatica;1156;other;one-seeded generative dispersule;2.1948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Oenanthe aquatica;1156;other;one-seeded generative dispersule;2.4104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Oenanthe aquatica;1156;actual measurement;one-seeded generative dispersule;1.346;;-4;;BIOLFLOR database;1.346;;;;;Air dried weight;;2a Oenanthe aquatica;1156;actual measurement;germinule;1.346;;-4;;BIOLFLOR database;1.346;;;;;Air dried weight;;3 Oenanthe conioides;1158;actual measurement;generative dispersule;2.78;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.78;3.1;2.5;1;;Air dried weight;;2 Oenanthe crocata;1659;other;unknown;3.4568;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.4568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Oenanthe fistulosa;1660;other;germinule;6.6468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.6468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oenanthe fistulosa;1660;other;one-seeded generative dispersule;6.6468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.6468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Oenanthe fistulosa;1660;actual measurement;one-seeded generative dispersule;3.433;;-4;;BIOLFLOR database;3.433;;;;;Air dried weight;;2a Oenanthe fistulosa;1660;actual measurement;one-seeded generative dispersule;2.5942;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.5942;2.723;2.48;100;;Air dried weight;;2a Oenanthe fistulosa;1660;actual measurement;germinule;3.992;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.992;;;50;;Air dried weight;;3 Oenanthe fistulosa;1660;actual measurement;germinule;3.433;;-4;;BIOLFLOR database;3.433;;;;;Air dried weight;;3 Oenanthe fistulosa;1660;actual measurement;one-seeded generative dispersule;3.992;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.992;;;50;;Air dried weight;;2a Oenanthe lachenalii;2104;actual measurement;germinule;.691;;-4;;BIOLFLOR database;.691;;;;;Air dried weight;;3 Oenanthe lachenalii;2104;actual measurement;one-seeded generative dispersule;1.762;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.762;;;50;;Air dried weight;;2a Oenanthe lachenalii;2104;actual measurement;germinule;1.762;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.762;;;50;;Air dried weight;;3 Oenanthe lachenalii;2104;actual measurement;one-seeded generative dispersule;.691;;-4;;BIOLFLOR database;.691;;;;;Air dried weight;;2a Oenanthe lachenalii;2104;actual measurement;one-seeded generative dispersule;3.396;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.396;3.454;3.337;100;;Air dried weight;;2a Oenanthe lachenalii;2104;actual measurement (following LEDA data standards);germinule;1.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Oenanthe lachenalii;2104;actual measurement (following LEDA data standards);germinule;1.13;1;-2;1.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;1.13;1.13;;preaggregated value obtained from single record;Air dried weight;;3 Oenanthe peucedanifolia;2106;actual measurement;generative dispersule;2.056;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.056;2.058;2.054;100;;Air dried weight;;2 Oenanthe peucedanifolia;2106;actual measurement;germinule;1.751;;-4;;BIOLFLOR database;1.751;1.844;1.656;;;Air dried weight;;3 Oenanthe peucedanifolia;2106;actual measurement;one-seeded generative dispersule;1.751;;-4;;BIOLFLOR database;1.751;1.844;1.656;;;Air dried weight;;2a Oenanthe pimpinelloides;1666;other;unknown;2.1928;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Oenanthe silaifolia;1668;actual measurement;germinule;1.691;;-4;;BIOLFLOR database;1.691;1.896;1.542;;;Air dried weight;;3 Oenanthe silaifolia;1668;actual measurement;one-seeded generative dispersule;1.691;;-4;;BIOLFLOR database;1.691;1.896;1.542;;;Air dried weight;;2a Oenothera biennis;26442;actual measurement;one-seeded generative dispersule;.866;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.866;;;50;;Air dried weight;;2a Oenothera biennis;26442;actual measurement;generative dispersule;.468533333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.468533333;.479333333;.452666667;150;;Air dried weight;;2 Oenothera biennis;26442;actual measurement (following LEDA data standards);germinule;.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Oenothera biennis;26442;actual measurement (following LEDA data standards);germinule;.49;1;-2;.49;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;.49;.49;;preaggregated value obtained from single record;Air dried weight;;3 Oenothera erythrosepala;26448;other;germinule;.5724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oenothera erythrosepala;26448;other;germinule;.6872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oenothera erythrosepala;26448;other;germinule;.6676;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oenothera erythrosepala;26448;actual measurement;one-seeded generative dispersule;.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.42;;;20;;Air dried weight;;2a Oenothera erythrosepala;26448;other;germinule;.6768;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oenothera parviflora;26459;actual measurement;one-seeded generative dispersule;.313;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.313;;;50;;Air dried weight;;2a Oenothera parviflora;26459;actual measurement;one-seeded generative dispersule;.565;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.565;;;100;;Air dried weight;;2a Oenothera parviflora;26459;actual measurement (following LEDA data standards);germinule;.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Oenothera parviflora;26459;actual measurement (following LEDA data standards);germinule;.71;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.71;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Oenothera parviflora;26459;actual measurement (following LEDA data standards);germinule;.71;1;-2;.71;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.71;.71;.71;;preaggregated value obtained from single record;Air dried weight;;3 Oenothera parviflora;26459;actual measurement (following LEDA data standards);germinule;.79;1;-2;.79;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;.79;.79;;preaggregated value obtained from single record;Air dried weight;;3 Oenothera stricta;26466;other;unknown;.414;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.414;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Omalotheca norvegica;11511;actual measurement;generative dispersule;.092;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.092;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Omalotheca supina;10537;actual measurement;generative dispersule;.108;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.108;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Omalotheca supina;10537;actual measurement;germinule;.082;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.082;.087;.077;100;mostly without pappus;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;10;No. of seeds per individual: 10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;10;No. of seeds per individual: 10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;9;Weight including appendages. No. of seeds per individual: 7-10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;9;Weight including appendages. No. of seeds per individual: 7-10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;9;Weight including appendages. No. of seeds per individual: 7-10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;3;-2;.08;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;.11;.06;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 7-10;;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;7;-2;.1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;.12;.08;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;9;Weight including appendages. No. of seeds per individual: 7-10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;9;Weight including appendages. No. of seeds per individual: 7-10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;9;Weight including appendages. No. of seeds per individual: 7-10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.12;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.06;3;-2;.06;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;.08;.01;;Preaggregated data obtained from single record. No. of seeds per individual: 7-10;;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.07;7;-2;.07;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;.1;.05;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;;;9;No. of seeds per individual: 7-10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;9;No. of seeds per individual: 7-10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;9;No. of seeds per individual: 7-10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.05;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;;;10;No. of seeds per individual: 10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;10;No. of seeds per individual: 10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;;;10;No. of seeds per individual: 10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;10;No. of seeds per individual: 10;Air dried weight;;3 Omalotheca supina;10537;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;10;No. of seeds per individual: 10;Air dried weight;;3 Omalotheca sylvatica;11311;actual measurement;germinule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;20;;Air dried weight;;3 Omalotheca sylvatica;11311;actual measurement;germinule;.046;;-4;;BIOLFLOR database;.046;.047;.044;;;Air dried weight;;3 Omalotheca sylvatica;11311;actual measurement;germinule;.037;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.037;;;1;summers of 1995 and 1996;Unknown;;3 Omalotheca sylvatica;11311;actual measurement;one-seeded generative dispersule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;20;;Air dried weight;;2a Omalotheca sylvatica;11311;actual measurement;one-seeded generative dispersule;.046;;-4;;BIOLFLOR database;.046;.047;.044;;;Air dried weight;;2a Onobrychis arenaria;21876;actual measurement;unknown;7.53;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];7.53;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Onobrychis montana;21940;actual measurement;unknown;11.72;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];11.72;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Onobrychis montana;21940;actual measurement;germinule;16.645;;-4;;BIOLFLOR database;16.645;17.089;16.2;;;Air dried weight;;3 Onobrychis montana;21940;actual measurement;one-seeded generative dispersule;16.645;;-4;;BIOLFLOR database;16.645;17.089;16.2;;;Air dried weight;;2a Onobrychis viciifolia;21874;actual measurement;germinule;20.659;;-4;;BIOLFLOR database;20.659;22.8;15.8;;;Air dried weight;;3 Onobrychis viciifolia;21874;actual measurement;one-seeded generative dispersule;17.68;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17.68;;;50;;Air dried weight;;2a Onobrychis viciifolia;21874;actual measurement;germinule;17.68;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17.68;;;50;;Air dried weight;;3 Onobrychis viciifolia;21874;other;germinule;23.1996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.1996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Onobrychis viciifolia;21874;other;one-seeded generative dispersule;18.9296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);18.9296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Onobrychis viciifolia;21874;other;one-seeded generative dispersule;23.1996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);23.1996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Onobrychis viciifolia;21874;actual measurement;one-seeded generative dispersule;20.659;;-4;;BIOLFLOR database;20.659;22.8;15.8;;;Air dried weight;;2a Onobrychis viciifolia;21874;other;germinule;18.9296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);18.9296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ononis arvensis;21509;actual measurement;germinule;4.935;;-4;;BIOLFLOR database;4.935;4.95;4.92;;;Air dried weight;;3 Ononis arvensis;21509;actual measurement;one-seeded generative dispersule;4.935;;-4;;BIOLFLOR database;4.935;4.95;4.92;;;Air dried weight;;2a Ononis natrix;21956;actual measurement;germinule;2.99;;-4;;BIOLFLOR database;2.99;3.038;2.961;;;Air dried weight;;3 Ononis natrix;21956;actual measurement;one-seeded generative dispersule;2.99;;-4;;BIOLFLOR database;2.99;3.038;2.961;;;Air dried weight;;2a Ononis reclinata;21955;other;unknown;.7784;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7784;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ononis reclinata;21955;other;unknown;.7424;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7424;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ononis reclinata;21955;other;unknown;.6932;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ononis repens;20645;actual measurement;one-seeded generative dispersule;5.427;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.427;;;100;;Air dried weight;;2a Ononis repens;20645;actual measurement;germinule;5.427;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.427;;;100;;Air dried weight;;3 Ononis repens;20645;actual measurement;one-seeded generative dispersule;3.1525;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.1525;3.186;3.119;100;;Air dried weight;;2a Ononis repens;20645;actual measurement;one-seeded generative dispersule;4.844;;-4;;BIOLFLOR database;4.844;5.427;4.26;;;Air dried weight;;2a Ononis repens;20645;actual measurement;germinule;4.844;;-4;;BIOLFLOR database;4.844;5.427;4.26;;;Air dried weight;;3 Ononis spinosa;21958;actual measurement;germinule;2.26;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.26;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Ononis spinosa;21958;actual measurement;germinule;5.345;;-4;;BIOLFLOR database;5.345;6.279;4.2;;;Air dried weight;;3 Ononis spinosa;21958;actual measurement;one-seeded generative dispersule;5.345;;-4;;BIOLFLOR database;5.345;6.279;4.2;;;Air dried weight;;2a Ononis spinosa;21958;other;one-seeded generative dispersule;5.8476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.8476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ononis spinosa;21958;other;one-seeded generative dispersule;6.0684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ononis spinosa;21958;other;one-seeded generative dispersule;6.3212;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.3212;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ononis spinosa;21958;actual measurement (following LEDA data standards);germinule;4.27;1;-2;4.27;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.27;4.27;4.27;;preaggregated value obtained from single record;Air dried weight;;3 Ononis spinosa;21958;other;germinule;6.3212;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.3212;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ononis spinosa;21958;other;germinule;5.8476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.8476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ononis spinosa;21958;other;germinule;6.0684;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0684;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ononis spinosa;21958;actual measurement (following LEDA data standards);germinule;3.2;1;-2;3.2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.2;3.2;3.2;;preaggregated value obtained from single record;Air dried weight;;3 Ononis spinosa;21958;actual measurement (following LEDA data standards);germinule;3.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.2;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Ononis spinosa;21958;actual measurement (following LEDA data standards);germinule;4.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.27;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Onopordum acanthium;9350;actual measurement;one-seeded generative dispersule;11.874;;-4;;BIOLFLOR database;11.874;12.623;11.1;;;Air dried weight;;2a Onopordum acanthium;9350;actual measurement;germinule;11.874;;-4;;BIOLFLOR database;11.874;12.623;11.1;;;Air dried weight;;3 Onopordum illyricum;9443;actual measurement;generative dispersule;13.288;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;13.288;13.288;13.288;75;;Air dried weight;;2 Orchis militaris;40042;actual measurement;germinule;.001;;-4;;BIOLFLOR database;.001;;;;;Air dried weight;;3 Orchis militaris;40042;actual measurement;one-seeded generative dispersule;.001;;-4;;BIOLFLOR database;.001;;;;;Air dried weight;;2a Origanum majorana;24674;actual measurement;germinule;.315;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.49;.14;1;n and replicates unknown;Air dried weight;;3 Origanum vulgare;23973;actual measurement;germinule;.091;;-4;;BIOLFLOR database;.091;.1;.075;;;Air dried weight;;3 Origanum vulgare;23973;actual measurement;one-seeded generative dispersule;.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.104;;;100;;Air dried weight;;2a Origanum vulgare;23973;actual measurement;one-seeded generative dispersule;.098;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.098;;;100;;Air dried weight;;2a Origanum vulgare;23973;actual measurement;generative dispersule;.053;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.053;.053;.053;100;;Air dried weight;;2 Origanum vulgare;23973;actual measurement;germinule;.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.104;;;100;;Air dried weight;;3 Origanum vulgare;23973;actual measurement;germinule;.098;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.098;;;100;;Air dried weight;;3 Origanum vulgare;23973;actual measurement;germinule;.108;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.108;;;50;;Air dried weight;;3 Origanum vulgare;23973;actual measurement;one-seeded generative dispersule;.108;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.108;;;50;;Air dried weight;;2a Origanum vulgare;23973;actual measurement;one-seeded generative dispersule;.091;;-4;;BIOLFLOR database;.091;.1;.075;;;Air dried weight;;2a Origanum vulgare;23973;other;one-seeded generative dispersule;.0708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Origanum vulgare;23973;actual measurement;generative dispersule;.15;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.15;;;1;n an replicates unknown;Air dried weight;;2 Origanum vulgare;23973;other;germinule;.0708;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0708;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Orlaya grandiflora;2113;actual measurement;germinule;12.833;;-4;;BIOLFLOR database;12.833;;;;;Air dried weight;;3 Orlaya grandiflora;2113;actual measurement;one-seeded generative dispersule;12.833;;-4;;BIOLFLOR database;12.833;;;;;Air dried weight;;2a Ornithogalum pyrenaicum;38908;actual measurement;germinule;5.21;;-4;;BIOLFLOR database;5.21;6.5;4.42;;;Air dried weight;;3 Ornithogalum pyrenaicum;38908;other;one-seeded generative dispersule;6.704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ornithogalum pyrenaicum;38908;actual measurement;one-seeded generative dispersule;5.21;;-4;;BIOLFLOR database;5.21;6.5;4.42;;;Air dried weight;;2a Ornithogalum pyrenaicum;38908;other;germinule;6.704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ornithopus compressus;22017;actual measurement;one-seeded generative dispersule;1.35;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];1.35;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Ornithopus compressus;22017;actual measurement;germinule;2.47;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.47;;;30;collected between 1996-1999;Air dried weight;;3 Ornithopus compressus;22017;actual measurement;germinule;2.469;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.469;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Ornithopus perpusillus;19964;actual measurement;germinule;1.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.05;;;50;;Air dried weight;;3 Ornithopus perpusillus;19964;actual measurement;germinule;.95;;-4;;BIOLFLOR database;.95;;;;;Air dried weight;;3 Ornithopus perpusillus;19964;actual measurement;one-seeded generative dispersule;1.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.05;;;50;;Air dried weight;;2a Ornithopus perpusillus;19964;actual measurement;one-seeded generative dispersule;.95;;-4;;BIOLFLOR database;.95;;;;;Air dried weight;;2a Ornithopus pinnatus;21023;other;unknown;1.0616;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0616;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ornithopus sativus;22019;actual measurement;one-seeded generative dispersule;3.65;;-4;;BIOLFLOR database;3.65;4.6;2.7;;;Air dried weight;;2a Ornithopus sativus;22019;actual measurement;germinule;3.65;;-4;;BIOLFLOR database;3.65;4.6;2.7;;;Air dried weight;;3 Orobanche alba;26302;actual measurement;germinule;.004;;-4;;BIOLFLOR database;.004;.005;.004;;;Air dried weight;;3 Orobanche alba;26302;actual measurement;one-seeded generative dispersule;.004;;-4;;BIOLFLOR database;.004;.005;.004;;;Air dried weight;;2a Orobanche caryophyllacea;26253;other;unknown;.0083;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0083;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Orobanche caryophyllacea;26253;other;unknown;.00785;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.00785;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Orobanche elatior;26270;actual measurement;one-seeded generative dispersule;.005;;-4;;BIOLFLOR database;.005;;;;;Air dried weight;;2a Orobanche elatior;26270;actual measurement;germinule;.005;;-4;;BIOLFLOR database;.005;;;;;Air dried weight;;3 Orobanche flava;26277;actual measurement;germinule;.005;;-4;;BIOLFLOR database;.005;.005;.004;;;Air dried weight;;3 Orobanche flava;26277;actual measurement;one-seeded generative dispersule;.005;;-4;;BIOLFLOR database;.005;.005;.004;;;Air dried weight;;2a Orobanche hederae;26288;actual measurement;one-seeded generative dispersule;.006;;-4;;BIOLFLOR database;.006;.007;.006;;;Air dried weight;;2a Orobanche hederae;26288;actual measurement;germinule;.006;;-4;;BIOLFLOR database;.006;.007;.006;;;Air dried weight;;3 Orobanche loricata;26187;other;unknown;.0049;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0049;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Orobanche loricata;26187;other;unknown;.008;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.008;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Orobanche loricata;26187;other;unknown;.0032;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Orobanche lucorum;26193;actual measurement;germinule;.006;;-4;;BIOLFLOR database;.006;.008;.005;;;Air dried weight;;3 Orobanche lucorum;26193;actual measurement;one-seeded generative dispersule;.006;;-4;;BIOLFLOR database;.006;.008;.005;;;Air dried weight;;2a Orobanche lutea;26196;actual measurement;one-seeded generative dispersule;.003;;-4;;BIOLFLOR database;.003;;;;;Air dried weight;;2a Orobanche lutea;26196;actual measurement;germinule;.003;;-4;;BIOLFLOR database;.003;;;;;Air dried weight;;3 Orobanche minor;26203;actual measurement;germinule;.007;;-4;;BIOLFLOR database;.007;;;;;Air dried weight;;3 Orobanche minor;26203;actual measurement;one-seeded generative dispersule;.007;;-4;;BIOLFLOR database;.007;;;;;Air dried weight;;2a Orobanche minor;26203;other;one-seeded generative dispersule;.02545;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02545;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Orobanche minor;26203;other;germinule;.02545;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02545;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Orobanche purpurea;26224;other;unknown;.008;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.008;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Orobanche purpurea;26224;other;unknown;.0115;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0115;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Orobanche purpurea;26224;other;unknown;.0104;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Orobanche purpurea;26224;other;unknown;.0072984;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0072984;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry.;Unknown;;4 Orobanche ramosa;26230;actual measurement;germinule;.0054;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0054;;;100;;Air dried weight;;3 Oxalis acetosella;25842;actual measurement;germinule;.903;;-4;;BIOLFLOR database;.903;1.01;.7;;;Air dried weight;;3 Oxalis acetosella;25842;actual measurement;germinule;.972;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.972;;;100;;Air dried weight;;3 Oxalis acetosella;25842;actual measurement;germinule;1.008;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.008;;;50;;Air dried weight;;3 Oxalis acetosella;25842;actual measurement;one-seeded generative dispersule;.903;;-4;;BIOLFLOR database;.903;1.01;.7;;;Air dried weight;;2a Oxalis acetosella;25842;actual measurement;one-seeded generative dispersule;1.008;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.008;;;50;;Air dried weight;;2a Oxalis acetosella;25842;actual measurement;one-seeded generative dispersule;.972;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.972;;;100;;Air dried weight;;2a Oxalis corniculata;25840;actual measurement;one-seeded generative dispersule;.21;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.21;;;50;;Air dried weight;;2a Oxalis corniculata;25840;actual measurement;one-seeded generative dispersule;.196;;-4;;BIOLFLOR database;.196;.22;.175;;;Air dried weight;;2a Oxalis corniculata;25840;actual measurement;germinule;.196;;-4;;BIOLFLOR database;.196;.22;.175;;;Air dried weight;;3 Oxalis corniculata;25840;actual measurement;generative dispersule;.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13;;;1;n an replicates unknown;Air dried weight;;2 Oxalis corniculata;25840;actual measurement;germinule;.21;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.21;;;50;;Air dried weight;;3 Oxalis stricta;25827;actual measurement;germinule;.175;;-4;;BIOLFLOR database;.175;;;;;Air dried weight;;3 Oxalis stricta;25827;actual measurement;one-seeded generative dispersule;.175;;-4;;BIOLFLOR database;.175;;;;;Air dried weight;;2a Oxyria digyna;27715;actual measurement;one-seeded generative dispersule;.93;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.93;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Oxyria digyna;27715;actual measurement;generative dispersule;.5908;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.5908;.63;.57;100;;Air dried weight;;2 Oxyria digyna;27715;other;germinule;.6464;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6464;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oxytropis campestris;21486;other;germinule;2.4572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Oxytropis campestris;21486;actual measurement;generative dispersule;1.76;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.76;2.3;1.5;1;;Air dried weight;;2 Oxytropis halleri;21029;other;unknown;1.7504;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Oxytropis halleri;21029;other;unknown;1.712;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Oxytropis jacquinii;21474;actual measurement;germinule;3.14;;-4;;BIOLFLOR database;3.14;;;;;Air dried weight;;3 Oxytropis jacquinii;21474;actual measurement;one-seeded generative dispersule;3.14;;-4;;BIOLFLOR database;3.14;;;;;Air dried weight;;2a Oxytropis pilosa;21479;actual measurement;one-seeded generative dispersule;1.23;;-4;;BIOLFLOR database;1.23;1.44;1.02;;;Air dried weight;;2a Oxytropis pilosa;21479;actual measurement;germinule;1.23;;-4;;BIOLFLOR database;1.23;1.44;1.02;;;Air dried weight;;3 Paeonia officinalis;25406;actual measurement;germinule;105.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);105.6;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Paliurus spina-christi;28042;actual measurement;generative dispersule;137.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);137.29;;;1;n an replicates unknown;Air dried weight;;2 Panicum capillare;43220;actual measurement;germinule;.427;;-4;;BIOLFLOR database;.427;.439;.415;;;Air dried weight;;3 Panicum capillare;43220;actual measurement;one-seeded generative dispersule;.427;;-4;;BIOLFLOR database;.427;.439;.415;;;Air dried weight;;2a Panicum dichotomiflorum;43564;actual measurement;unknown;.514;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.514;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Panicum miliaceum;43565;actual measurement;germinule;3.78;;-4;;BIOLFLOR database;3.78;4.316;3.253;;;Air dried weight;;3 Panicum miliaceum;43565;actual measurement;one-seeded generative dispersule;3.78;;-4;;BIOLFLOR database;3.78;4.316;3.253;;;Air dried weight;;2a Papaver argemone;25500;actual measurement;germinule;.168;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.168;;;100;;Air dried weight;;3 Papaver argemone;25500;actual measurement;one-seeded generative dispersule;.149;;-4;;BIOLFLOR database;.149;.17;.1;;;Air dried weight;;2a Papaver argemone;25500;actual measurement;germinule;.149;;-4;;BIOLFLOR database;.149;.17;.1;;;Air dried weight;;3 Papaver argemone;25500;actual measurement;one-seeded generative dispersule;.168;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.168;;;100;;Air dried weight;;2a Papaver argemone;25500;other;one-seeded generative dispersule;.2096;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2096;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Papaver argemone;25500;actual measurement;generative dispersule;.148;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.148;.150666667;.144666667;150;;Air dried weight;;2 Papaver argemone;25500;other;germinule;.2096;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2096;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Papaver dubium;25513;actual measurement (following LEDA data standards);germinule;.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Papaver dubium;25513;actual measurement (following LEDA data standards);germinule;.12;1;-2;.12;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.12;.12;.12;;preaggregated value obtained from single record;Air dried weight;;3 Papaver dubium;25513;other;germinule;.1392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Papaver dubium;25513;other;germinule;.0932;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Papaver dubium;25513;other;germinule;.1116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Papaver dubium;25513;actual measurement;one-seeded generative dispersule;.106;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.106;;;100;;Air dried weight;;2a Papaver dubium;25513;actual measurement;one-seeded generative dispersule;.123;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.123;;;100;;Air dried weight;;2a Papaver dubium;25513;actual measurement;one-seeded generative dispersule;.135;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.135;;;50;;Air dried weight;;2a Papaver hybridum;25595;actual measurement;germinule;.109;;-4;;BIOLFLOR database;.109;.128;.09;;;Air dried weight;;3 Papaver hybridum;25595;other;one-seeded generative dispersule;.136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Papaver hybridum;25595;other;one-seeded generative dispersule;.1732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Papaver hybridum;25595;actual measurement;one-seeded generative dispersule;.109;;-4;;BIOLFLOR database;.109;.128;.09;;;Air dried weight;;2a Papaver hybridum;25595;other;germinule;.1732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Papaver hybridum;25595;other;germinule;.136;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.136;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Papaver orientale;25610;actual measurement;generative dispersule;.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.2;;;1;n an replicates unknown;Air dried weight;;2 Papaver rhoeas;25577;actual measurement;germinule;.11;;-4;;BIOLFLOR database;.11;.138;.09;;;Air dried weight;;3 Papaver rhoeas;25577;actual measurement;germinule;.088;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.088;;;100;;Air dried weight;;3 Papaver rhoeas;25577;actual measurement;one-seeded generative dispersule;.11;;-4;;BIOLFLOR database;.11;.138;.09;;;Air dried weight;;2a Papaver rhoeas;25577;actual measurement;one-seeded generative dispersule;.088;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.088;;;100;;Air dried weight;;2a Papaver rhoeas;25577;actual measurement (following LEDA data standards);germinule;.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Papaver rhoeas;25577;actual measurement (following LEDA data standards);germinule;.13;1;-2;.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;.13;.13;;preaggregated value obtained from single record;Air dried weight;;3 Papaver somniferum;25589;actual measurement;one-seeded generative dispersule;.457;;-4;;BIOLFLOR database;.457;.6;.272;;;Air dried weight;;2a Papaver somniferum;25589;actual measurement;germinule;.457;;-4;;BIOLFLOR database;.457;.6;.272;;;Air dried weight;;3 Papaver somniferum;25589;actual measurement;germinule;.45;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.6;.3;1;n and replicates unknown;Air dried weight;;3 Parapholis incurva;42870;other;unknown;2.62;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.62;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Parapholis incurva;42870;other;unknown;2.0664;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Parapholis strigosa;42872;actual measurement (following LEDA data standards);germinule;1.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.61;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Parapholis strigosa;42872;actual measurement (following LEDA data standards);germinule;1.61;1;-2;1.61;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.61;1.61;1.61;;preaggregated value obtained from single record;Air dried weight;;3 Parapholis strigosa;42872;actual measurement;generative dispersule;.188;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.188;.19;.186;100;;Air dried weight;;2 Parentucellia latifolia;34247;actual measurement;germinule;.01763;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.01763;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Parentucellia latifolia;34247;actual measurement;germinule;.018;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.018;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Parentucellia latifolia;34247;actual measurement;germinule;.02;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.02;;;30;collected between 1996-1999;Air dried weight;;3 Parentucellia viscosa;33509;other;unknown;.01768;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.01768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Parietaria judaica;44662;other;germinule;.2912;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2912;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parietaria judaica;44662;other;germinule;.2094;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2094;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parietaria judaica;44662;other;germinule;.1904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parietaria judaica;44662;other;germinule;.1992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parietaria judaica;44662;other;germinule;.2296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parietaria judaica;44662;actual measurement;one-seeded generative dispersule;.1475;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.1475;;;50;;Air dried weight;;2a Parietaria judaica;44662;actual measurement;one-seeded generative dispersule;.134;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.134;;;50;;Air dried weight;;2a Parietaria officinalis;35137;actual measurement;germinule;.389;;-4;;BIOLFLOR database;.389;;;;;Air dried weight;;3 Parietaria pensylvanica;44664;actual measurement;generative dispersule;.312;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.312;.4;.25;1;;Air dried weight;;2 Paris quadrifolia;38073;actual measurement;germinule;7.07;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.07;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Paris quadrifolia;38073;actual measurement;one-seeded generative dispersule;3.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.13;;;50;;Air dried weight;;2a Paris quadrifolia;38073;actual measurement;germinule;4.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.6;;;1;n an replicates unknown;Air dried weight;;3 Paris quadrifolia;38073;actual measurement;multi-seeded generative dispersule;810;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);810;;;1;n an replicates unknown;Fresh weight;;2b Paris quadrifolia;38073;actual measurement;generative dispersule;3.99;;-4;;BIOLFLOR database;3.99;5.442;2.409;;;Air dried weight;;2 Paris quadrifolia;38073;other;germinule;4.4392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.4392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Paris quadrifolia;38073;other;germinule;4.2284;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.2284;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parnassia palustris;25636;other;germinule;.042;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.042;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parnassia palustris;25636;other;germinule;.03;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parnassia palustris;25636;other;germinule;.03788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Parnassia palustris;25636;other;one-seeded generative dispersule;.03;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Parnassia palustris;25636;other;one-seeded generative dispersule;.03788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Parnassia palustris;25636;other;one-seeded generative dispersule;.042;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.042;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Parnassia palustris;25636;actual measurement;one-seeded generative dispersule;.05;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.05;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Parnassia palustris;25636;actual measurement;one-seeded generative dispersule;.031;;-4;;BIOLFLOR database;.031;.037;.025;;;Air dried weight;;2a Parnassia palustris;25636;actual measurement;one-seeded generative dispersule;.029;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.029;.03;.028;100;;Air dried weight;;2a Parnassia palustris;25636;actual measurement;germinule;.031;;-4;;BIOLFLOR database;.031;.037;.025;;;Air dried weight;;3 Parthenocissus inserta;34510;actual measurement;generative dispersule;20.42;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;20.42;23.1;17.9;1;;Air dried weight;;2 Pastinaca sativa;1183;actual measurement;one-seeded generative dispersule;4.94;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.94;;;50;;Air dried weight;;2a Pastinaca sativa;1183;actual measurement;one-seeded generative dispersule;3.922;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.922;;;50;;Air dried weight;;2a Pastinaca sativa;1183;actual measurement;germinule;3.024;;-4;;BIOLFLOR database;3.024;4.8;1.773;;;Air dried weight;;3 Pastinaca sativa;1183;actual measurement;germinule;3.55;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;4.8;2.3;1;n and replicates unknown;Air dried weight;;3 Pastinaca sativa;1183;actual measurement;germinule;4.94;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.94;;;50;;Air dried weight;;3 Pastinaca sativa;1183;actual measurement;germinule;3.922;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.922;;;50;;Air dried weight;;3 Pastinaca sativa;1183;actual measurement;one-seeded generative dispersule;3.024;;-4;;BIOLFLOR database;3.024;4.8;1.773;;;Air dried weight;;2a Pedicularis foliosa;33474;actual measurement;generative dispersule;1.66;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.66;1.8;1.5;1;;Air dried weight;;2 Pedicularis oederi;33763;actual measurement;generative dispersule;.943617021;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.943617021;.972340426;.914893617;47;;Air dried weight;;2 Pedicularis oederi;33763;actual measurement (following LEDA data standards);germinule;1.03;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.03;;;10;No. of seeds per individual: 10;Air dried weight;;3 Pedicularis oederi;33763;actual measurement (following LEDA data standards);germinule;.9;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.9;;;74;No. of seeds per individual: 74;Air dried weight;;3 Pedicularis oederi;33763;actual measurement (following LEDA data standards);germinule;.9;1;-2;.9;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.9;.9;.9;;Preaggregated data obtained from single record. No. of seeds per individual: 74;;;3 Pedicularis oederi;33763;actual measurement (following LEDA data standards);germinule;1.03;1;-2;1.03;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.03;1.03;1.03;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.82;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.82;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.56;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.76;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.76;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.64;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.04;1;-2;1.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.04;1.04;1.04;;preaggregated value obtained from single record;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.63;10;-2;1.63;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.63;1.82;1.4;;preaggregated value obtained from single record;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.61;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.57;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.68;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement (following LEDA data standards);germinule;1.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.68;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Pedicularis palustris;33771;actual measurement;one-seeded generative dispersule;1.74;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.74;;;40;;Air dried weight;;2a Pedicularis palustris;33771;actual measurement;germinule;1.103;;-4;;BIOLFLOR database;1.103;;;;;Air dried weight;;3 Pedicularis palustris;33771;actual measurement;germinule;1.74;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.74;;;40;;Air dried weight;;3 Pedicularis palustris;33771;actual measurement;one-seeded generative dispersule;1.103;;-4;;BIOLFLOR database;1.103;;;;;Air dried weight;;2a Pedicularis sceptrum-carolinum;34226;actual measurement;generative dispersule;.576;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.576;.655;.497;100;;Air dried weight;;2 Pedicularis sceptrum-carolinum;34226;actual measurement;generative dispersule;.336;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.336;.38;.29;1;;Air dried weight;;2 Pedicularis sylvatica;32992;actual measurement;one-seeded generative dispersule;.722;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.722;.755;.689;100;;Air dried weight;;2a Pedicularis sylvatica;32992;other;germinule;1.068;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.068;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Peganum harmala;34535;actual measurement;generative dispersule;1.92;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.92;;;1;n an replicates unknown;Air dried weight;;2 Pentaglottis sempervirens;11832;actual measurement (following LEDA data standards);germinule;4.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.95;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pentaglottis sempervirens;11832;actual measurement (following LEDA data standards);germinule;4.95;1;-2;4.95;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.95;4.95;4.95;;preaggregated value obtained from single record;Air dried weight;;3 Petasites albus;11005;actual measurement;germinule;.234;;-4;;BIOLFLOR database;.234;.267;.2;;;Air dried weight;;3 Petasites hybridus;10476;actual measurement;germinule;.255;;-4;;BIOLFLOR database;.255;.26;.25;;;Air dried weight;;3 Petasites hybridus;10476;actual measurement;one-seeded generative dispersule;.258;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.258;;;50;;Air dried weight;;2a Petasites hybridus;10476;other;germinule;.17412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.17412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Petasites hybridus;10476;other;germinule;.2344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Petrorhagia nanteuilii;16214;other;unknown;.2552;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2552;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Petrorhagia prolifera;16636;other;germinule;.404;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.404;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Petrorhagia prolifera;16636;other;germinule;.2392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Petrorhagia prolifera;16636;other;germinule;.364;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.364;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Petrorhagia prolifera;16636;actual measurement;generative dispersule;.36;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.36;;;1;n an replicates unknown;Air dried weight;;2 Petrorhagia prolifera;16636;actual measurement;one-seeded generative dispersule;.385857143;7;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.385857143;.408;.339;100;;Air dried weight;;2a Petrorhagia saxifraga;15566;actual measurement;one-seeded generative dispersule;.16;;-4;;BIOLFLOR database;.16;;;;;Air dried weight;;2a Petrorhagia saxifraga;15566;actual measurement;germinule;.16;;-4;;BIOLFLOR database;.16;;;;;Air dried weight;;3 Petroselinum crispum;1095;actual measurement;germinule;1.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;1.8;1.2;1;n and replicates unknown;Air dried weight;;3 Petroselinum crispum;1095;actual measurement;one-seeded generative dispersule;.756;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.756;;;50;;Air dried weight;;2a Petroselinum segetum;1097;other;unknown;1.0828;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Petroselinum segetum;1097;other;unknown;2.1904;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Peucedanum alsaticum;1100;actual measurement;generative dispersule;1.4595;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.4595;1.568;1.351;100;;Air dried weight;;2 Peucedanum carvifolia;1620;actual measurement;generative dispersule;2.228145833;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.228145833;2.285;2.18;75;;Air dried weight;;2 Peucedanum cervaria;1621;actual measurement;germinule;4.34;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.34;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Peucedanum cervaria;1621;actual measurement;germinule;5.321;;-4;;BIOLFLOR database;5.321;;;;;Air dried weight;;3 Peucedanum cervaria;1621;actual measurement;one-seeded generative dispersule;5.321;;-4;;BIOLFLOR database;5.321;;;;;Air dried weight;;2a Peucedanum officinale;1112;actual measurement;generative dispersule;4.6655;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.6655;4.881;4.45;100;;Air dried weight;;2 Peucedanum officinale;1112;actual measurement;one-seeded generative dispersule;5.375;;-4;;BIOLFLOR database;5.375;6.5;4.25;;;Air dried weight;;2a Peucedanum officinale;1112;actual measurement;germinule;5.375;;-4;;BIOLFLOR database;5.375;6.5;4.25;;;Air dried weight;;3 Peucedanum oreoselinum;2070;actual measurement;germinule;3.432;;-4;;BIOLFLOR database;3.432;;;;;Air dried weight;;3 Peucedanum oreoselinum;2070;actual measurement;germinule;4.22;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.22;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Peucedanum oreoselinum;2070;actual measurement;one-seeded generative dispersule;3.432;;-4;;BIOLFLOR database;3.432;;;;;Air dried weight;;2a Peucedanum oreoselinum;2070;actual measurement;generative dispersule;3.5;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.5;3.5;3.5;1;;Air dried weight;;2 Peucedanum ostruthium;1118;actual measurement;generative dispersule;1.2084;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.2084;1.308;1.101;100;;Air dried weight;;2 Peucedanum ostruthium;1118;actual measurement;one-seeded generative dispersule;1.481;;-4;;BIOLFLOR database;1.481;1.498;1.463;;;Air dried weight;;2a Peucedanum ostruthium;1118;actual measurement;germinule;1.481;;-4;;BIOLFLOR database;1.481;1.498;1.463;;;Air dried weight;;3 Peucedanum palustre;2071;actual measurement;germinule;2.678;;-4;;BIOLFLOR database;2.678;3.5;2.1;;;Air dried weight;;3 Peucedanum palustre;2071;actual measurement;one-seeded generative dispersule;2.678;;-4;;BIOLFLOR database;2.678;3.5;2.1;;;Air dried weight;;2a Peucedanum palustre;2071;other;one-seeded generative dispersule;3.1944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Peucedanum palustre;2071;other;one-seeded generative dispersule;2.9836;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.9836;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Peucedanum palustre;2071;other;one-seeded generative dispersule;2.588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Peucedanum palustre;2071;other;germinule;3.1944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Peucedanum palustre;2071;other;germinule;2.588;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Peucedanum palustre;2071;other;germinule;2.9836;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.9836;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phacelia tanacetifolia;25220;actual measurement;one-seeded generative dispersule;1.199;;-4;;BIOLFLOR database;1.199;;;;;Air dried weight;;2a Phacelia tanacetifolia;25220;actual measurement;germinule;1.199;;-4;;BIOLFLOR database;1.199;;;;;Air dried weight;;3 Phalaris arundinacea;42396;actual measurement;germinule;.67;;-4;;BIOLFLOR database;.67;;;;;Air dried weight;;3 Phalaris arundinacea;42396;actual measurement;one-seeded generative dispersule;.669;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.669;;;100;;Air dried weight;;2a Phalaris arundinacea;42396;actual measurement;germinule;.729;;-4;;BIOLFLOR database;.729;1.1;.5;;;Air dried weight;;3 Phalaris arundinacea;42396;actual measurement;generative dispersule;.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.5;;;1;n and replicates unknown;Air dried weight;;2 Phalaris arundinacea;42396;actual measurement;germinule;.669;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.669;;;100;;Air dried weight;;3 Phalaris arundinacea;42396;actual measurement;generative dispersule;.303733333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.303733333;.345333333;.265333333;150;;Air dried weight;;2 Phalaris arundinacea;42396;actual measurement;one-seeded generative dispersule;.729;;-4;;BIOLFLOR database;.729;1.1;.5;;;Air dried weight;;2a Phalaris arundinacea;42396;other;one-seeded generative dispersule;.802;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.802;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Phalaris arundinacea;42396;other;germinule;.802;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.802;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phalaris canariensis;42881;actual measurement;one-seeded generative dispersule;6.275;;-4;;BIOLFLOR database;6.275;6.432;6.15;;;Air dried weight;;2a Phalaris canariensis;42881;actual measurement;germinule;5.789;;-4;;BIOLFLOR database;5.789;;;;;Air dried weight;;3 Phalaris canariensis;42881;actual measurement;germinule;6.275;;-4;;BIOLFLOR database;6.275;6.432;6.15;;;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.06;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.29;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.19;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.46;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.94;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.23;10;-2;1.23;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;1.46;.94;;preaggregated value obtained from single record;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.27;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.22;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phalaris minor;42398;actual measurement (following LEDA data standards);germinule;1.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.01;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Phaseolus vulgaris;22039;actual measurement;germinule;395;;-4;;BIOLFLOR database;395;670;120;;;Air dried weight;;3 Phaseolus vulgaris;22039;actual measurement;germinule;575;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;1000;150;1;n and replicates unknown;Air dried weight;;3 Phaseolus vulgaris;22039;actual measurement;one-seeded generative dispersule;395;;-4;;BIOLFLOR database;395;670;120;;;Air dried weight;;2a Phillyrea latifolia;26370;actual measurement;one-seeded generative dispersule;28.9;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28.9;;;40;;Air dried weight;;2a Phleum alpinum;42401;actual measurement;generative dispersule;.533;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.533;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Phleum alpinum;42401;actual measurement;generative dispersule;.464;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.464;.473;.455;100;with glumes;Air dried weight;;2 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;No. of seeds per individual: 10;Air dried weight;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.24;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.24;;;10;No. of seeds per individual: 10;Air dried weight;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.28;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.28;;;10;No. of seeds per individual: 10;Air dried weight;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.38;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.33;2;-2;.33;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.33;.38;.27;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.31;6;-2;.31;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;.35;.24;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;10;No. of seeds per individual: 10;Air dried weight;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.38;;;10;No. of seeds per individual: 10;Air dried weight;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.31;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;;;10;No. of seeds per individual: 10;Air dried weight;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.35;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.35;;;10;No. of seeds per individual: 10;Air dried weight;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.33;;;10;No. of seeds per individual: 10;Air dried weight;;3 Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.41;2;-2;.41;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.41;.47;.35;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.42;6;-2;.42;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.42;.53;.3;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.53;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.53;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.45;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.3;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.3;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.38;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.35;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.35;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.47;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.44;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.44;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.35;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.35;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.47;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.44;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.44;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.53;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.53;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum alpinum;42401;actual measurement (following LEDA data standards);one-seeded generative dispersule;.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.45;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Phleum arenarium;42667;actual measurement (following LEDA data standards);germinule;.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.21;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Phleum arenarium;42667;actual measurement (following LEDA data standards);germinule;.21;1;-2;.21;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.21;.21;.21;;preaggregated value obtained from single record;Air dried weight;;3 Phleum arenarium;42667;other;germinule;.2152;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2152;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phleum hirsutum;42888;actual measurement;unknown;.3;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.3;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Phleum paniculatum;43581;actual measurement;germinule;.16;;-4;;BIOLFLOR database;.16;;;;;Air dried weight;;3 Phleum paniculatum;43581;actual measurement;generative dispersule;.09;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.09;;;1;n an replicates unknown;Air dried weight;;2 Phleum phleoides;43239;actual measurement;germinule;.14;;-4;;BIOLFLOR database;.14;;;;;Air dried weight;;3 Phleum phleoides;43239;actual measurement;generative dispersule;.0956;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0956;.122666667;.067333333;150;;Air dried weight;;2 Phleum phleoides;43239;actual measurement;generative dispersule;.23;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.23;;;1;n an replicates unknown;Air dried weight;;2 Phleum phleoides;43239;other;germinule;.1676;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phleum phleoides;43239;other;germinule;.1664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phleum pratense;42408;actual measurement;generative dispersule;.42;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.42;;;1;n and replicates unknown;Air dried weight;;2 Phleum pratense;42408;actual measurement;generative dispersule;.485;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.485;.485;.485;1;;Air dried weight;;2 Phleum pratense;42408;actual measurement;generative dispersule;1;;-4;;BIOLFLOR database;1;;;;;Air dried weight;;2 Phleum pratense;42408;actual measurement;one-seeded generative dispersule;.446;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.446;;;100;;Air dried weight;;2a Phleum pratense s. bertolonii;43242;actual measurement;germinule;.45;;-4;;BIOLFLOR database;.45;;;;;Air dried weight;;3 Phlomis tuberosa;24343;actual measurement;germinule;2.821;;-4;;BIOLFLOR database;2.821;2.881;2.758;;;Air dried weight;;3 Phlomis tuberosa;24343;actual measurement;one-seeded generative dispersule;2.821;;-4;;BIOLFLOR database;2.821;2.881;2.758;;;Air dried weight;;2a Phragmites australis;42412;actual measurement;one-seeded generative dispersule;.14;;-4;;BIOLFLOR database;.14;.16;.12;;;Air dried weight;;2a Phragmites australis;42412;actual measurement;one-seeded generative dispersule;.098;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.098;.098;.098;1;;Air dried weight;;2a Phragmites australis;42412;actual measurement;germinule;.14;;-4;;BIOLFLOR database;.14;.16;.12;;;Air dried weight;;3 Phragmites australis;42412;actual measurement;one-seeded generative dispersule;.121;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.121;;;100;;Air dried weight;;2a Phragmites australis;42412;actual measurement;one-seeded generative dispersule;.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.16;;;50;;Air dried weight;;2a Phragmites australis;42412;actual measurement;germinule;.121;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.121;;;100;;Air dried weight;;3 Phragmites australis;42412;actual measurement;germinule;.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.16;;;50;;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement;generative dispersule;.012;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.012;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;60;No. of seeds per individual: 60;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;30;No. of seeds per individual: 30;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;;;87;No. of seeds per individual: 30-240;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;87;No. of seeds per individual: 30-240;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;87;No. of seeds per individual: 30-240;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;;;87;No. of seeds per individual: 30-240;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.03;6;-2;.03;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.03;.02;;Preaggregated data obtained from single record. No. of seeds per individual: 30-240;;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.02;.02;;Preaggregated data obtained from single record. No. of seeds per individual: 30;;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.02;.02;;Preaggregated data obtained from single record. No. of seeds per individual: 60;;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;;;87;No. of seeds per individual: 30-240;Air dried weight;;3 Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;87;No. of seeds per individual: 30-240;Air dried weight;;3 Physalis alkekengi;35072;actual measurement;germinule;1.558;;-4;;BIOLFLOR database;1.558;;;;;Air dried weight;;3 Physocarpus opulifolius;29711;actual measurement;germinule;.989;;-4;;BIOLFLOR database;.989;1.055;.902;;;Air dried weight;;3 Physocarpus opulifolius;29711;actual measurement;one-seeded generative dispersule;.989;;-4;;BIOLFLOR database;.989;1.055;.902;;;Air dried weight;;2a Physoplexis comosa;14848;actual measurement;germinule;.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Physospermum cornubiense;2075;actual measurement;generative dispersule;6.65;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.65;;;1;n an replicates unknown;Air dried weight;;2 Physospermum cornubiense;2075;other;germinule;11.6932;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.6932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Physospermum cornubiense;2075;other;germinule;9.8688;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);9.8688;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Physospermum cornubiense;2075;other;germinule;4.1924;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.1924;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Physospermum cornubiense;2075;other;germinule;11.0004;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.0004;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Physospermum cornubiense;2075;other;germinule;5.8344;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.8344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phyteuma betonicifolium;14797;actual measurement;germinule;.045;;-4;;BIOLFLOR database;.045;.049;.042;;;Air dried weight;;3 Phyteuma betonicifolium;14797;actual measurement;one-seeded generative dispersule;.045;;-4;;BIOLFLOR database;.045;.049;.042;;;Air dried weight;;2a Phyteuma charmelii;14853;actual measurement;generative dispersule;.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.04;;;1;n and replicates unknown;Air dried weight;;2 Phyteuma hemisphaericum;14807;actual measurement;germinule;.101;;-4;;BIOLFLOR database;.101;;;;;Air dried weight;;3 Phyteuma hemisphaericum;14807;actual measurement;one-seeded generative dispersule;.101;;-4;;BIOLFLOR database;.101;;;;;Air dried weight;;2a Phyteuma nigrum;14815;actual measurement;one-seeded generative dispersule;.141;;-4;;BIOLFLOR database;.141;.146;.138;;;Air dried weight;;2a Phyteuma nigrum;14815;actual measurement;germinule;.141;;-4;;BIOLFLOR database;.141;.146;.138;;;Air dried weight;;3 Phyteuma orbiculare;14818;actual measurement;generative dispersule;.136;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.136;.16;.12;1;;Air dried weight;;2 Phyteuma orbiculare;14818;actual measurement;germinule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;3 Phyteuma orbiculare;14818;actual measurement;one-seeded generative dispersule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;2a Phyteuma orbiculare;14818;actual measurement;generative dispersule;.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29;;;1;n and replicates unknown;Air dried weight;;2 Phyteuma ovatum;14822;actual measurement;one-seeded generative dispersule;.067;;-4;;BIOLFLOR database;.067;;;;;Air dried weight;;2a Phyteuma ovatum;14822;actual measurement;germinule;.067;;-4;;BIOLFLOR database;.067;;;;;Air dried weight;;3 Phyteuma ovatum;14822;actual measurement;germinule;.18;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.18;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Phyteuma scheuchzeri;14771;actual measurement;germinule;.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.04;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Phyteuma spicatum;14784;actual measurement;germinule;.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.2;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Phyteuma spicatum;14784;actual measurement;germinule;.176;;-4;;BIOLFLOR database;.176;.204;.155;;;Air dried weight;;3 Phyteuma spicatum;14784;actual measurement;one-seeded generative dispersule;.176;;-4;;BIOLFLOR database;.176;.204;.155;;;Air dried weight;;2a Phyteuma spicatum;14784;other;one-seeded generative dispersule;.1416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Phyteuma spicatum;14784;other;one-seeded generative dispersule;.1256;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1256;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Phyteuma spicatum;14784;other;one-seeded generative dispersule;.0996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Phyteuma spicatum;14784;other;one-seeded generative dispersule;.194;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.194;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Phyteuma spicatum;14784;other;one-seeded generative dispersule;.1808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Phyteuma spicatum;14784;other;one-seeded generative dispersule;.1368;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1368;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Phyteuma spicatum;14784;other;one-seeded generative dispersule;.1268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Phyteuma spicatum;14784;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Phyteuma spicatum;14784;other;germinule;.1368;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1368;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phyteuma spicatum;14784;other;germinule;.1256;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1256;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phyteuma spicatum;14784;other;germinule;.0996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phyteuma spicatum;14784;other;germinule;.1268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phyteuma spicatum;14784;other;germinule;.1416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phyteuma spicatum;14784;actual measurement (following LEDA data standards);germinule;.14;1;-2;.14;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;.14;.14;;preaggregated value obtained from single record;Air dried weight;;3 Phyteuma spicatum;14784;other;germinule;.194;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.194;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Phyteuma spicatum;14784;other;germinule;.1808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Picea abies;670;actual measurement;one-seeded generative dispersule;7.154;;-4;;BIOLFLOR database;7.154;8;5;;;Air dried weight;;2a Picea abies;670;actual measurement;germinule;7.154;;-4;;BIOLFLOR database;7.154;8;5;;;Air dried weight;;3 Picea abies;670;actual measurement;generative dispersule;5.683;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.683;6.172;5.194;50;;Air dried weight;;2 Picea pungens;689;actual measurement;germinule;4.2;;-4;;BIOLFLOR database;4.2;;;;;Air dried weight;;3 Picea pungens;689;actual measurement;one-seeded generative dispersule;4.2;;-4;;BIOLFLOR database;4.2;;;;;Air dried weight;;2a Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.66;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.71;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.71;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.69;10;-2;.69;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.7;.82;.58;;preaggregated value obtained from single record;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.82;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.82;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.67;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.67;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.65;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.73;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.78;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.8;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.8;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris echioides;10896;actual measurement (following LEDA data standards);germinule;.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.58;;;10;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Picris hieracioides;9660;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;;;10;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Picris hieracioides;9660;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.18;1;-2;1.18;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;1.18;1.18;;preaggregated value obtained from single record;Air dried weight;;2a Picris hieracioides;9660;actual measurement;one-seeded generative dispersule;.862;;-4;;BIOLFLOR database;.862;;;;;Air dried weight;;2a Picris hieracioides;9660;actual measurement;one-seeded generative dispersule;1.356;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.356;;;25;;Air dried weight;;2a Picris hieracioides;9660;actual measurement;one-seeded generative dispersule;.795;;-4;;BIOLFLOR database;.795;;;;;Air dried weight;;2a Picris hieracioides;9660;actual measurement;one-seeded generative dispersule;1.356;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.356;;;25;;Air dried weight;;2a Picris hieracioides;9660;actual measurement;germinule;.795;;-4;;BIOLFLOR database;.795;;;;;Air dried weight;;3 Picris hieracioides;9660;actual measurement;germinule;.976;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.976;;;50;;Air dried weight;;3 Picris hieracioides;9660;actual measurement;germinule;1.356;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.356;;;25;;Air dried weight;;3 Picris hieracioides;9660;actual measurement;germinule;1.356;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.356;;;25;;Air dried weight;;3 Picris hieracioides;9660;actual measurement;one-seeded generative dispersule;.976;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.976;;;50;;Air dried weight;;2a Pimpinella major;1134;other;one-seeded generative dispersule;1.808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Pimpinella major;1134;other;one-seeded generative dispersule;2.69032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.69032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Pimpinella major;1134;actual measurement;generative dispersule;1.263733333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.263733333;1.292;1.220666667;150;;Air dried weight;;2 Pimpinella major;1134;actual measurement;germinule;2.328;;-4;;BIOLFLOR database;2.328;2.89;1.7;;;Air dried weight;;3 Pimpinella major;1134;actual measurement;germinule;2.118;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.118;;;100;;Air dried weight;;3 Pimpinella major;1134;actual measurement;germinule;1.822;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.822;;;50;;Air dried weight;;3 Pimpinella major;1134;actual measurement;one-seeded generative dispersule;2.328;;-4;;BIOLFLOR database;2.328;2.89;1.7;;;Air dried weight;;2a Pimpinella major;1134;actual measurement;one-seeded generative dispersule;2.118;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.118;;;100;;Air dried weight;;2a Pimpinella major;1134;actual measurement;one-seeded generative dispersule;1.822;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.822;;;50;;Air dried weight;;2a Pimpinella major;1134;other;germinule;1.808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pimpinella major;1134;other;germinule;2.69032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.69032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pimpinella saxifraga;1643;other;germinule;1.6444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pimpinella saxifraga;1643;actual measurement;germinule;1.028;;-4;;BIOLFLOR database;1.028;1.2;.7;;;Air dried weight;;3 Pimpinella saxifraga;1643;actual measurement;one-seeded generative dispersule;1.187;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.187;;;50;;Air dried weight;;2a Pimpinella saxifraga;1643;actual measurement;germinule;1.073;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.073;;;1;summers of 1995 and 1996;Unknown;;3 Pimpinella saxifraga;1643;actual measurement;germinule;1.187;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.187;;;50;;Air dried weight;;3 Pimpinella saxifraga;1643;other;one-seeded generative dispersule;1.6444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Pimpinella saxifraga;1643;actual measurement;one-seeded generative dispersule;1.028;;-4;;BIOLFLOR database;1.028;1.2;.7;;;Air dried weight;;2a Pimpinella saxifraga;1643;actual measurement;one-seeded generative dispersule;.402;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.402;.408;.396;50;;Air dried weight;;2a Pinguicula alpina;26120;actual measurement;one-seeded generative dispersule;14.8;;-4;;BIOLFLOR database;14.8;;;;;Air dried weight;;2a Pinguicula alpina;26120;actual measurement;germinule;14.8;;-4;;BIOLFLOR database;14.8;;;;;Air dried weight;;3 Pinguicula lusitanica;26137;other;unknown;.0176;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Pinguicula vulgaris;26085;other;germinule;.0244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.02;.02;;Preaggregated data obtained from single record. No. of seeds per individual: 105;;;3 Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;;;105;No. of seeds per individual: 105;Air dried weight;;3 Pinguicula vulgaris;26085;other;germinule;.02188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Pinguicula vulgaris;26085;actual measurement;germinule;.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.028;;;100;;Air dried weight;;3 Pinguicula vulgaris;26085;actual measurement;germinule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;3 Pinguicula vulgaris;26085;actual measurement;one-seeded generative dispersule;.019;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.019;;;100;;Air dried weight;;2a Pinguicula vulgaris;26085;actual measurement;one-seeded generative dispersule;.028;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.028;;;100;;Air dried weight;;2a Pinguicula vulgaris;26085;actual measurement;one-seeded generative dispersule;18.45;;-4;;BIOLFLOR database;18.45;18.8;18.1;;;Air dried weight;;2a Pinguicula vulgaris;26085;actual measurement;germinule;18.45;;-4;;BIOLFLOR database;18.45;18.8;18.1;;;Air dried weight;;3 Pinguicula vulgaris;26085;other;one-seeded generative dispersule;.0244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Pinguicula vulgaris;26085;other;one-seeded generative dispersule;.02188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Pinus cembra;578;actual measurement;one-seeded generative dispersule;231.125;;-4;;BIOLFLOR database;231.125;350;150;;;Air dried weight;;2a Pinus cembra;578;actual measurement;germinule;231.125;;-4;;BIOLFLOR database;231.125;350;150;;;Air dried weight;;3 Pinus nigra;593;actual measurement;germinule;23.9;;-4;;BIOLFLOR database;23.9;;;;;Air dried weight;;3 Pinus nigra;593;actual measurement;one-seeded generative dispersule;23.9;;-4;;BIOLFLOR database;23.9;;;;;Air dried weight;;2a Pinus pinaster;607;actual measurement;one-seeded generative dispersule;69;0;1;;Escudero, Adrian(2000): Is fire a selective force in pine species? [21];69;;;0;;Air dried weight;Escudero, Adrian(2000): Is fire a selective force in pine species? [21];2a Pinus strobus;623;actual measurement;one-seeded generative dispersule;17.975;;-4;;BIOLFLOR database;17.975;22.7;8.6;;;Air dried weight;;2a Pinus strobus;623;actual measurement;germinule;17.975;;-4;;BIOLFLOR database;17.975;22.7;8.6;;;Air dried weight;;3 Pinus sylvestris;624;actual measurement;germinule;8.5;;-4;;BIOLFLOR database;8.5;9;8;;;Air dried weight;;3 Pinus sylvestris;624;actual measurement;one-seeded generative dispersule;8.5;;-4;;BIOLFLOR database;8.5;9;8;;;Air dried weight;;2a Pinus sylvestris;624;actual measurement;one-seeded generative dispersule;5.716;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.716;5.754;5.678;50;;Air dried weight;;2a Pinus uncinata;553;actual measurement;one-seeded generative dispersule;11.95;0;1;;Escudero, Adrian(2000): Is fire a selective force in pine species? [21];11.95;;;0;;Air dried weight;Escudero, Adrian(2000): Is fire a selective force in pine species? [21];2a Piptatherum virescens;43250;actual measurement;generative dispersule;3.46;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.46;;;1;n an replicates unknown;Air dried weight;;2 Pistacia lentiscus;948;actual measurement;generative dispersule;37.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);37.04;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Pistacia lentiscus;948;actual measurement;one-seeded generative dispersule;19.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);19.3;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Pistacia vera;951;actual measurement;generative dispersule;1176.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1176.5;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Pisum sativum;22040;actual measurement;germinule;300;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;500;100;1;n and replicates unknown;Air dried weight;;3 Pisum sativum;22040;actual measurement;germinule;201.814;;-4;;BIOLFLOR database;201.814;224.788;178.844;;;Air dried weight;;3 Pisum sativum;22040;actual measurement;one-seeded generative dispersule;201.814;;-4;;BIOLFLOR database;201.814;224.788;178.844;;;Air dried weight;;2a Plantago alpina;27858;actual measurement;one-seeded generative dispersule;1.108;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.108;1.125;1.091;100;;Air dried weight;;2a Plantago alpina;27858;actual measurement;unknown;.84;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.84;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Plantago alpina;27858;actual measurement;germinule;.35;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.35;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Plantago arenaria;27863;actual measurement;generative dispersule;.7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.7;;;1;n an replicates unknown;Air dried weight;;2 Plantago arenaria;27863;actual measurement;generative dispersule;1.42;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.42;1.5;1.3;1;;Air dried weight;;2 Plantago atrata;27890;actual measurement;unknown;1.52;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];1.52;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Plantago coronopus;27899;actual measurement;germinule;.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Plantago coronopus;27899;actual measurement;germinule;.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;30;collected between 1996-1999;Air dried weight;;3 Plantago coronopus;27899;actual measurement;one-seeded generative dispersule;.2515;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2515;.267;.236;100;;Air dried weight;;2a Plantago coronopus;27899;actual measurement;germinule;.16;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Plantago coronopus;27899;actual measurement;one-seeded generative dispersule;.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.15;;;50;;Air dried weight;;2a Plantago coronopus;27899;actual measurement;one-seeded generative dispersule;.188;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.188;;;50;;Air dried weight;;2a Plantago coronopus;27899;actual measurement (following LEDA data standards);germinule;.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Plantago coronopus;27899;actual measurement (following LEDA data standards);germinule;.13;1;-2;.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;.13;.13;;preaggregated value obtained from single record;Air dried weight;;3 Plantago lagopus;27818;actual measurement;generative dispersule;.272;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.272;.272;.272;75;;Air dried weight;;2 Plantago lagopus;27818;actual measurement;germinule;.39;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.39;;;30;collected between 1996-1999;Air dried weight;;3 Plantago lagopus;27818;actual measurement;germinule;.394;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.394;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Plantago lagopus;27818;actual measurement;germinule;.394;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.394;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Plantago lanceolata;27860;actual measurement;generative dispersule;2.01;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.01;;;1;n an replicates unknown;Air dried weight;;2 Plantago lanceolata;27860;actual measurement;germinule;1.809;;-4;;BIOLFLOR database;1.809;2.87;1.04;;;Air dried weight;;3 Plantago lanceolata;27860;actual measurement;germinule;2.158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.158;;;50;;Air dried weight;;3 Plantago lanceolata;27860;actual measurement;germinule;1.901;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.901;;;100;;Air dried weight;;3 Plantago lanceolata;27860;actual measurement;generative dispersule;.87;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.87;;;1;n and replicates unknown;Air dried weight;;2 Plantago lanceolata;27860;actual measurement;germinule;1.891;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.891;;;100;;Air dried weight;;3 Plantago lanceolata;27860;actual measurement;germinule;.81;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.81;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Plantago lanceolata;27860;actual measurement;germinule;1.918;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.918;;;1;summers of 1995 and 1996;Unknown;;3 Plantago lanceolata;27860;actual measurement;one-seeded generative dispersule;1.332266667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.332266667;1.360666667;1.293333333;150;;Air dried weight;;2a Plantago lanceolata;27860;actual measurement;one-seeded generative dispersule;1.809;;-4;;BIOLFLOR database;1.809;2.87;1.04;;;Air dried weight;;2a Plantago lanceolata;27860;actual measurement;one-seeded generative dispersule;1.891;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.891;;;100;;Air dried weight;;2a Plantago lanceolata;27860;actual measurement;one-seeded generative dispersule;1.901;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.901;;;100;;Air dried weight;;2a Plantago lanceolata;27860;actual measurement;one-seeded generative dispersule;2.158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.158;;;50;;Air dried weight;;2a Plantago lanceolata;27860;actual measurement;germinule;.81;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.81;;;30;collected between 1996-1999;Air dried weight;;3 Plantago lanceolata;27860;actual measurement;germinule;.81;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.81;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Plantago lanceolata;27860;actual measurement (following LEDA data standards);germinule;1.8;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.8;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Plantago lanceolata;27860;actual measurement (following LEDA data standards);germinule;1.52;1;-2;1.52;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.52;1.52;1.52;;preaggregated value obtained from single record;Air dried weight;;3 Plantago lanceolata;27860;actual measurement (following LEDA data standards);germinule;1.8;1;-2;1.8;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.8;1.8;1.8;;preaggregated value obtained from single record;Air dried weight;;3 Plantago lanceolata;27860;actual measurement (following LEDA data standards);germinule;1.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.52;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Plantago major;27829;actual measurement (following LEDA data standards);germinule;.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.25;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Plantago major;27829;actual measurement (following LEDA data standards);germinule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Plantago major;27829;actual measurement (following LEDA data standards);germinule;.34;1;-2;.34;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;.34;.34;;preaggregated value obtained from single record;Air dried weight;;3 Plantago major;27829;actual measurement (following LEDA data standards);germinule;.25;1;-2;.25;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.25;.25;.25;;preaggregated value obtained from single record;Air dried weight;;3 Plantago major;27829;actual measurement;one-seeded generative dispersule;.245;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.245;;;100;;Air dried weight;;2a Plantago major;27829;actual measurement;generative dispersule;.259866667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.259866667;.274;.244;150;;Air dried weight;;2 Plantago major;27829;actual measurement;generative dispersule;.19;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.19;;;1;n an replicates unknown;Air dried weight;;2 Plantago maritima;27843;other;one-seeded generative dispersule;.4568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Plantago maritima;27843;actual measurement;one-seeded generative dispersule;.727;;-4;;BIOLFLOR database;.727;;;;;Air dried weight;;2a Plantago maritima;27843;actual measurement;germinule;.727;;-4;;BIOLFLOR database;.727;;;;;Air dried weight;;3 Plantago maritima;27843;actual measurement (following LEDA data standards);germinule;.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.95;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Plantago maritima;27843;actual measurement (following LEDA data standards);germinule;.95;1;-2;.95;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.95;.95;.95;;preaggregated value obtained from single record;Air dried weight;;3 Plantago maritima;27843;actual measurement (following LEDA data standards);germinule;.87;1;-2;.87;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.87;.87;.87;;preaggregated value obtained from single record;Air dried weight;;3 Plantago maritima;27843;other;germinule;.4568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Plantago maritima;27843;actual measurement (following LEDA data standards);germinule;.87;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.87;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Plantago media;27756;actual measurement;germinule;.404;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.404;;;50;;Air dried weight;;3 Plantago media;27756;actual measurement;one-seeded generative dispersule;.318;;-4;;BIOLFLOR database;.318;.4;.24;;;Air dried weight;;2a Plantago media;27756;actual measurement;germinule;.488;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.488;;;50;;Air dried weight;;3 Plantago media;27756;actual measurement;germinule;.283;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.283;;;1;summers of 1995 and 1996;Unknown;;3 Plantago media;27756;actual measurement;germinule;.318;;-4;;BIOLFLOR database;.318;.4;.24;;;Air dried weight;;3 Plantago media;27756;actual measurement;one-seeded generative dispersule;.404;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.404;;;50;;Air dried weight;;2a Plantago media;27756;actual measurement;one-seeded generative dispersule;.488;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.488;;;50;;Air dried weight;;2a Plantago media;27756;actual measurement;generative dispersule;.3776;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3776;.388;.365;100;;Air dried weight;;2 Platanthera chlorantha;39789;actual measurement;germinule;.003;;-4;;BIOLFLOR database;.003;.003;.002;;;Air dried weight;;3 Platanthera chlorantha;39789;actual measurement;one-seeded generative dispersule;.003;;-4;;BIOLFLOR database;.003;.003;.002;;;Air dried weight;;2a Platanus occidentalis;27915;actual measurement;generative dispersule;4;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Platanus orientalis;27849;actual measurement;generative dispersule;4.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.3;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Pleurospermum austriacum;1061;actual measurement;one-seeded generative dispersule;4.2095;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.2095;4.33;4.089;100;;Air dried weight;;2a Poa alpigena;43594;unknown;generative dispersule;.25;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.25;;;0;;Air dried weight;Grime, J. P.(1988): Comparative Plant Ecology: A functional approach to common British species;2 Poa alpina;42327;actual measurement;one-seeded generative dispersule;.604;;-4;;BIOLFLOR database;.604;;;;;Air dried weight;;2a Poa alpina;42327;actual measurement;germinule;.332;;-4;;BIOLFLOR database;.332;;;;;Air dried weight;;3 Poa alpina;42327;actual measurement;germinule;.604;;-4;;BIOLFLOR database;.604;;;;;Air dried weight;;3 Poa alpina;42327;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;;;9;No. of seeds per individual: 7-10;Air dried weight;;3 Poa alpina;42327;actual measurement (following LEDA data standards);germinule;.31;2;-2;.31;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.31;.33;.29;;Preaggregated data obtained from single record. No. of seeds per individual: 7-10;;;3 Poa alpina;42327;actual measurement (following LEDA data standards);one-seeded generative dispersule;.47;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Poa alpina;42327;actual measurement (following LEDA data standards);one-seeded generative dispersule;.47;1;-2;.47;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;.47;.47;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Poa alpina;42327;actual measurement (following LEDA data standards);one-seeded generative dispersule;.47;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Poa alpina;42327;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.33;;;9;No. of seeds per individual: 7-10;Air dried weight;;3 Poa angustifolia;42678;other;germinule;.2264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Poa angustifolia;42678;actual measurement;generative dispersule;.1802;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1802;.193;.173;100;;Air dried weight;;2 Poa angustifolia;42678;actual measurement;generative dispersule;.229478873;7;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.229478873;.283;.114;100;;Air dried weight;;2 Poa angustifolia;42678;actual measurement;generative dispersule;.07;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.07;;;1;n an replicates unknown;Air dried weight;;2 Poa angustifolia;42678;actual measurement;germinule;.188;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.188;;;100;;Air dried weight;;3 Poa angustifolia;42678;actual measurement;germinule;.3;;-4;;BIOLFLOR database;.3;;;;;Air dried weight;;3 Poa angustifolia;42678;actual measurement;germinule;.185;;-4;;BIOLFLOR database;.185;.19;.18;;;Air dried weight;;3 Poa angustifolia;42678;other;one-seeded generative dispersule;.2264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Poa angustifolia;42678;actual measurement;one-seeded generative dispersule;.188;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.188;;;100;;Air dried weight;;2a Poa angustifolia;42678;actual measurement;one-seeded generative dispersule;.3;;-4;;BIOLFLOR database;.3;;;;;Air dried weight;;2a Poa annua;43060;actual measurement;one-seeded generative dispersule;.256;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.256;;;100;;Air dried weight;;2a Poa annua;43060;actual measurement;one-seeded generative dispersule;.306;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.306;;;100;;Air dried weight;;2a Poa annua;43060;actual measurement;one-seeded generative dispersule;.19;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.19;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Poa annua;43060;actual measurement;one-seeded generative dispersule;.305;;-4;;BIOLFLOR database;.305;.48;.19;;;Air dried weight;;2a Poa annua;43060;other;one-seeded generative dispersule;.224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Poa annua;43060;other;one-seeded generative dispersule;.2212;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2212;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Poa annua;43060;other;one-seeded generative dispersule;.1584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Poa annua;43060;other;one-seeded generative dispersule;.2504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Poa annua;43060;actual measurement;germinule;.162;;-4;;BIOLFLOR database;.162;.2;.137;;;Air dried weight;;3 Poa annua;43060;actual measurement;germinule;.305;;-4;;BIOLFLOR database;.305;.48;.19;;;Air dried weight;;3 Poa annua;43060;actual measurement;germinule;.15333;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.15333;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Poa annua;43060;actual measurement;germinule;.15;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.15;;;30;collected between 1996-1999;Air dried weight;;3 Poa annua;43060;actual measurement;germinule;.153;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.153;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Poa annua;43060;actual measurement;germinule;.306;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.306;;;100;;Air dried weight;;3 Poa annua;43060;actual measurement;germinule;.256;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.256;;;100;;Air dried weight;;3 Poa annua;43060;other;germinule;.2212;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2212;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Poa annua;43060;other;germinule;.2504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Poa annua;43060;other;germinule;.224;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.224;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Poa annua;43060;other;germinule;.1584;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Poa badensis;42692;actual measurement;germinule;.311;;-4;;BIOLFLOR database;.311;.35;.22;;;Air dried weight;;3 Poa badensis;42692;actual measurement;one-seeded generative dispersule;.311;;-4;;BIOLFLOR database;.311;.35;.22;;;Air dried weight;;2a Poa bulbosa;42340;actual measurement;germinule;.08056;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08056;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Poa bulbosa;42340;actual measurement;germinule;.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08;;;30;collected between 1996-1999;Air dried weight;;3 Poa bulbosa;42340;actual measurement;germinule;.081;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.081;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Poa bulbosa;42340;actual measurement;generative dispersule;.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.04;;;1;n an replicates unknown;Air dried weight;;2 Poa bulbosa;42340;actual measurement;generative dispersule;1.74;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.74;1.9;1.6;1;;Air dried weight;;2 Poa chaixii;42902;actual measurement;one-seeded generative dispersule;.782;;-4;;BIOLFLOR database;.782;;;;;Air dried weight;;2a Poa chaixii;42902;actual measurement;germinule;.782;;-4;;BIOLFLOR database;.782;;;;;Air dried weight;;3 Poa compressa;42683;actual measurement;germinule;.12;;-4;;BIOLFLOR database;.12;;;;;Air dried weight;;3 Poa compressa;42683;actual measurement;germinule;.197;;-4;;BIOLFLOR database;.197;.2;.194;;;Air dried weight;;3 Poa compressa;42683;actual measurement;germinule;.202;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.202;;;100;;Air dried weight;;3 Poa compressa;42683;actual measurement;germinule;.208;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.208;;;50;;Air dried weight;;3 Poa compressa;42683;actual measurement;one-seeded generative dispersule;.208;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.208;;;50;;Air dried weight;;2a Poa compressa;42683;actual measurement;one-seeded generative dispersule;.202;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.202;;;100;;Air dried weight;;2a Poa compressa;42683;actual measurement;one-seeded generative dispersule;.197;;-4;;BIOLFLOR database;.197;.2;.194;;;Air dried weight;;2a Poa compressa;42683;other;one-seeded generative dispersule;.2536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Poa compressa;42683;other;germinule;.2536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Poa glauca;43601;other;unknown;.352;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Poa minor;43069;actual measurement;one-seeded generative dispersule;.432;;-4;;BIOLFLOR database;.432;.434;.429;;;Air dried weight;;2a Poa minor;43069;actual measurement;germinule;.432;;-4;;BIOLFLOR database;.432;.434;.429;;;Air dried weight;;3 Poa nemoralis;42334;actual measurement;one-seeded generative dispersule;.182;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.182;.186;.178;100;;Air dried weight;;2a Poa nemoralis;42334;actual measurement;one-seeded generative dispersule;.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Poa nemoralis;42334;actual measurement;one-seeded generative dispersule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;2a Poa nemoralis;42334;actual measurement;one-seeded generative dispersule;.18;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.18;;;50;;Air dried weight;;2a Poa nemoralis;42334;actual measurement;germinule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;3 Poa nemoralis;42334;actual measurement;germinule;.252;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.252;;;50;;Air dried weight;;3 Poa nemoralis;42334;actual measurement;germinule;.18;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.18;;;50;;Air dried weight;;3 Poa nemoralis;42334;actual measurement;one-seeded generative dispersule;.252;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.252;;;50;;Air dried weight;;2a Poa nemoralis;42334;other;one-seeded generative dispersule;.1416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Poa nemoralis;42334;actual measurement;generative dispersule;.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.14;;;1;n an replicates unknown;Air dried weight;;2 Poa nemoralis;42334;other;germinule;.1416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Poa palustris;43610;actual measurement;germinule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;3 Poa palustris;43610;actual measurement;one-seeded generative dispersule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;2a Poa palustris;43610;actual measurement;one-seeded generative dispersule;.084;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.084;.087;.081;100;;Air dried weight;;2a Poa palustris;43610;actual measurement;one-seeded generative dispersule;.137;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.137;.137;.137;1;;Air dried weight;;2a Poa pratensis;42677;actual measurement;one-seeded generative dispersule;.305;;-4;;BIOLFLOR database;.305;.4;.2;;;Air dried weight;;2a Poa pratensis;42677;actual measurement;generative dispersule;.25;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.25;;;1;n and replicates unknown;Air dried weight;;2 Poa pratensis;42677;actual measurement;germinule;.246;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.246;;;50;;Air dried weight;;3 Poa pratensis;42677;actual measurement;germinule;.305;;-4;;BIOLFLOR database;.305;.4;.2;;;Air dried weight;;3 Poa pratensis;42677;actual measurement;germinule;.255;;-4;;BIOLFLOR database;.255;.26;.25;;;Air dried weight;;3 Poa pratensis;42677;actual measurement;generative dispersule;.301166667;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.301166667;.317;.289333333;150;;Air dried weight;;2 Poa pratensis;42677;actual measurement;one-seeded generative dispersule;.246;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.246;;;50;;Air dried weight;;2a Poa trivialis;43077;actual measurement;one-seeded generative dispersule;.14;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.14;;;100;;Air dried weight;;2a Poa trivialis;43077;actual measurement;one-seeded generative dispersule;.088;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.088;;;100;;Air dried weight;;2a Poa trivialis;43077;actual measurement;one-seeded generative dispersule;.204;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.204;;;50;;Air dried weight;;2a Poa trivialis;43077;actual measurement;generative dispersule;.227733333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.227733333;.237333333;.223333333;150;;Air dried weight;;2 Polemonium caeruleum;28181;other;one-seeded generative dispersule;.9996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Polemonium caeruleum;28181;actual measurement;generative dispersule;1.052;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.052;1.081;1.023;100;;Air dried weight;;2 Polemonium caeruleum;28181;other;one-seeded generative dispersule;.9632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Polemonium caeruleum;28181;other;one-seeded generative dispersule;.986;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.986;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Polemonium caeruleum;28181;actual measurement;germinule;.899;;-4;;BIOLFLOR database;.899;1.043;.77;;;Air dried weight;;3 Polemonium caeruleum;28181;actual measurement;germinule;1.147;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.147;;;50;;Air dried weight;;3 Polemonium caeruleum;28181;actual measurement;germinule;.77;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.77;;;100;;Air dried weight;;3 Polemonium caeruleum;28181;actual measurement;one-seeded generative dispersule;.899;;-4;;BIOLFLOR database;.899;1.043;.77;;;Air dried weight;;2a Polemonium caeruleum;28181;actual measurement;one-seeded generative dispersule;1.147;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.147;;;50;;Air dried weight;;2a Polemonium caeruleum;28181;actual measurement;one-seeded generative dispersule;.77;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.77;;;100;;Air dried weight;;2a Polemonium caeruleum;28181;other;germinule;.9632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Polemonium caeruleum;28181;other;germinule;.986;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.986;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Polemonium caeruleum;28181;other;germinule;.9996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Polycarpon tetraphyllum;16221;actual measurement;germinule;.033;;-4;;BIOLFLOR database;.033;;;;;Air dried weight;;3 Polycarpon tetraphyllum;16221;actual measurement;germinule;.03;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Polycarpon tetraphyllum;16221;actual measurement;germinule;.03033;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03033;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Polycarpon tetraphyllum;16221;actual measurement;one-seeded generative dispersule;.033;;-4;;BIOLFLOR database;.033;;;;;Air dried weight;;2a Polygala amara;28142;actual measurement;germinule;1.3;;-4;;BIOLFLOR database;1.3;;;;;Air dried weight;;3 Polygala amara;28142;actual measurement;one-seeded generative dispersule;1.3;;-4;;BIOLFLOR database;1.3;;;;;Air dried weight;;2a Polygala amarella;28146;actual measurement;generative dispersule;.84;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.84;.9;.8;1;;Air dried weight;;2 Polygala chamaebuxus;28113;actual measurement;germinule;7.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.6;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Polygala chamaebuxus;28113;actual measurement;one-seeded generative dispersule;11.2;;-4;;BIOLFLOR database;11.2;;;;;Air dried weight;;2a Polygala chamaebuxus;28113;actual measurement;germinule;11.2;;-4;;BIOLFLOR database;11.2;;;;;Air dried weight;;3 Polygala comosa;28115;actual measurement;generative dispersule;1.42;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.42;1.5;1.3;1;;Air dried weight;;2 Polygala nicaeensis;28070;actual measurement;germinule;1.58;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.58;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Polygala vulgaris;28062;actual measurement;germinule;1.715;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.715;;;48;;Air dried weight;;3 Polygala vulgaris;28062;actual measurement;germinule;1.72;;-4;;BIOLFLOR database;1.72;;;;;Air dried weight;;3 Polygala vulgaris;28062;actual measurement;germinule;1.96;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.96;;;1;summers of 1995 and 1996;Unknown;;3 Polygala vulgaris;28062;actual measurement;one-seeded generative dispersule;1.72;;-4;;BIOLFLOR database;1.72;;;;;Air dried weight;;2a Polygala vulgaris;28062;other;one-seeded generative dispersule;1.6992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Polygala vulgaris;28062;actual measurement;one-seeded generative dispersule;1.715;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.715;;;48;;Air dried weight;;2a Polygala vulgaris;28062;other;germinule;1.6992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Polygonatum multiflorum;38075;actual measurement;one-seeded generative dispersule;16.567;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16.567;;;50;;Air dried weight;;2a Polygonatum multiflorum;38075;actual measurement;one-seeded generative dispersule;17.77;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17.77;;;50;;Air dried weight;;2a Polygonatum multiflorum;38075;other;germinule;24.7148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);24.7148;;;1000;1000 seed weight, unknown number of individuals, Seeds moist. 3-9 seeds/fruit. Collection made on two dates and combined.;Fresh weight;;3 Polygonatum multiflorum;38075;actual measurement;germinule;22.057;;-4;;BIOLFLOR database;22.057;26.07;16.186;;;Air dried weight;;3 Polygonatum multiflorum;38075;actual measurement;germinule;23.85;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);23.85;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Polygonatum multiflorum;38075;actual measurement;germinule;28.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);28.6;;;1;n an replicates unknown;Air dried weight;;3 Polygonatum multiflorum;38075;actual measurement;generative dispersule;527.4;;-4;;BIOLFLOR database;527.4;;;;;Fresh weight;;2 Polygonatum odoratum;38076;actual measurement;generative dispersule;568.1;;-4;;BIOLFLOR database;568.1;;;;;Fresh weight;;2 Polygonatum odoratum;38076;actual measurement;germinule;36.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);36.3;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Polygonatum odoratum;38076;actual measurement;germinule;26;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);26;;;1;n an replicates unknown;Air dried weight;;3 Polygonatum odoratum;38076;actual measurement;multi-seeded generative dispersule;468;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);468;;;1;n an replicates unknown;Fresh weight;;2b Polygonatum odoratum;38076;actual measurement;multi-seeded generative dispersule;466;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);466;;;1;n an replicates unknown;Fresh weight;;2b Polygonatum odoratum;38076;other;germinule;21.426;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);21.426;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Polygonatum verticillatum;38518;actual measurement;generative dispersule;120.0483333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;120.0483333;123.2833333;116.8133333;60;;Air dried weight;;2 Polygonatum verticillatum;38518;actual measurement;germinule;12.9;;-4;;BIOLFLOR database;12.9;;;;;Air dried weight;;3 Polygonum amphibium;27725;actual measurement;germinule;4.14;;-4;;BIOLFLOR database;4.14;4.48;3.4;;;Air dried weight;;3 Polygonum amphibium;27725;actual measurement;one-seeded generative dispersule;4.229;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.229;;;50;;Air dried weight;;2a Polygonum arenastrum;27735;actual measurement;one-seeded generative dispersule;1.693;;-4;;BIOLFLOR database;1.693;;;;;Air dried weight;;2a Polygonum arenastrum;27735;other;one-seeded generative dispersule;.8628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Polygonum arenastrum;27735;actual measurement;germinule;1.693;;-4;;BIOLFLOR database;1.693;;;;;Air dried weight;;3 Polygonum arenastrum;27735;actual measurement;generative dispersule;1.54;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.54;2;1.4;1;;Air dried weight;;2 Polygonum arenastrum;27735;other;germinule;.8628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Polygonum aviculare;27740;actual measurement;germinule;2.07;;-4;;BIOLFLOR database;2.07;2.908;1.45;;;Air dried weight;;3 Polygonum aviculare;27740;actual measurement;one-seeded generative dispersule;1.57;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.57;;;100;;Air dried weight;;2a Polygonum bistorta;27743;actual measurement;germinule;5.479;;-4;;BIOLFLOR database;5.479;5.557;5.4;;;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement;germinule;2.261;;-4;;BIOLFLOR database;2.261;;;;;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement;one-seeded generative dispersule;3.113;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.113;;;50;;Air dried weight;;2a Polygonum hydropiper;27636;actual measurement;one-seeded generative dispersule;1.236;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.236;;;50;;Air dried weight;;2a Polygonum hydropiper;27636;actual measurement;one-seeded generative dispersule;2.632;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.632;;;50;;Air dried weight;;2a Polygonum hydropiper;27636;actual measurement;germinule;2.786;;-4;;BIOLFLOR database;2.786;;;;;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement;germinule;2.402;;-4;;BIOLFLOR database;2.402;2.49;2.314;;;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement;germinule;3.113;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.113;;;50;;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement;germinule;1.236;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.236;;;50;;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement;germinule;2.632;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.632;;;50;;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement;one-seeded generative dispersule;2.402;;-4;;BIOLFLOR database;2.402;2.49;2.314;;;Air dried weight;;2a Polygonum hydropiper;27636;actual measurement;one-seeded generative dispersule;2.786;;-4;;BIOLFLOR database;2.786;;;;;Air dried weight;;2a Polygonum hydropiper;27636;other;one-seeded generative dispersule;2.392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Polygonum hydropiper;27636;other;one-seeded generative dispersule;2.392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;2.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.25;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;2.03;10;-2;2.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.97;2.25;1.66;;preaggregated value obtained from single record;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;1.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.66;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;2.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.08;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;2.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.09;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;2.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.14;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;1.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.86;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;2.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.05;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;other;germinule;2.392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;1.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.73;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum hydropiper;27636;actual measurement (following LEDA data standards);germinule;1.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.88;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum lapathifolium;27747;actual measurement;one-seeded generative dispersule;2.25;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.25;;;100;;Air dried weight;;2a Polygonum maritimum;27651;other;unknown;4.2936;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.2936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Polygonum maritimum;27651;other;unknown;2.8124;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Polygonum minus;27653;actual measurement;one-seeded generative dispersule;.788;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.788;;;50;;Air dried weight;;2a Polygonum minus;27653;actual measurement;one-seeded generative dispersule;1.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.104;;;50;;Air dried weight;;2a Polygonum mite;27654;actual measurement;one-seeded generative dispersule;1.305;;-4;;BIOLFLOR database;1.305;;;;;Air dried weight;;2a Polygonum mite;27654;actual measurement;germinule;1.563;;-4;;BIOLFLOR database;1.563;;;;;Air dried weight;;3 Polygonum mite;27654;actual measurement;germinule;1.305;;-4;;BIOLFLOR database;1.305;;;;;Air dried weight;;3 Polygonum oxyspermum;27660;other;unknown;3.298;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.298;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Polygonum persicaria;27673;actual measurement;one-seeded generative dispersule;2.12;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.12;;;100;;Air dried weight;;2a Polygonum rurivagum;27680;other;unknown;2.4004;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4004;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Polygonum rurivagum;27680;other;unknown;1.78;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.78;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Polygonum viviparum;27573;actual measurement (following LEDA data standards);vegetative dispersule;1.8;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.8;;;14;No. of seeds per individual: 11-19;Air dried weight;;1 Polygonum viviparum;27573;actual measurement (following LEDA data standards);vegetative dispersule;1.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.45;;;14;No. of seeds per individual: 11-19;Air dried weight;;1 Polygonum viviparum;27573;actual measurement (following LEDA data standards);vegetative dispersule;1.25;4;-2;1.25;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.25;1.8;.68;;Preaggregated data obtained from single record. No. of seeds per individual: 11-19;;;1 Polygonum viviparum;27573;actual measurement (following LEDA data standards);germinule;2.05;1;-2;2.05;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.05;2.05;2.05;;preaggregated value obtained from single record;Air dried weight;;3 Polygonum viviparum;27573;actual measurement (following LEDA data standards);germinule;2.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.05;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Polygonum viviparum;27573;actual measurement (following LEDA data standards);vegetative dispersule;1.83;1;-2;1.83;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.83;1.83;1.83;;Preaggregated data obtained from single record. No. of seeds per individual: 15;;;1 Polygonum viviparum;27573;actual measurement (following LEDA data standards);vegetative dispersule;1.83;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.83;;;15;No. of seeds per individual: 15;Air dried weight;;1 Polygonum viviparum;27573;actual measurement (following LEDA data standards);vegetative dispersule;.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;;;14;No. of seeds per individual: 11-19;Air dried weight;;1 Polygonum viviparum;27573;actual measurement (following LEDA data standards);vegetative dispersule;1.05;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.05;;;14;No. of seeds per individual: 11-19;Air dried weight;;1 Polygonum viviparum;27573;actual measurement;generative dispersule;1.543333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.543333333;1.576666667;1.51;30;;Air dried weight;;2 Polygonum viviparum;27573;actual measurement;generative dispersule;3.221;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.221;3.38;3.062;50;;Air dried weight;;2 Polygonum viviparum;27573;actual measurement;generative dispersule;3.456666667;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.456666667;3.473333333;3.44;30;;Air dried weight;;2 Polygonum viviparum;27573;actual measurement;generative dispersule;1.559;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];1.559;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Polypogon monspeliensis;43616;other;unknown;.13936;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.13936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Populus alba;32710;actual measurement;generative dispersule;.12;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.12;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Populus nigra;32673;actual measurement;germinule;.8;14;1;;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];.8;;;100;;Oven/chamber dried weight;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];3 Populus tremula;32680;actual measurement;generative dispersule;.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Portulaca oleracea;27501;actual measurement;germinule;.45;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.5;.4;1;n and replicates unknown;Air dried weight;;3 Portulaca oleracea;27501;actual measurement;germinule;.282;;-4;;BIOLFLOR database;.282;.5;.108;;;Air dried weight;;3 Portulaca oleracea;27501;actual measurement;one-seeded generative dispersule;.282;;-4;;BIOLFLOR database;.282;.5;.108;;;Air dried weight;;2a Portulaca oleracea;27501;other;one-seeded generative dispersule;.3328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Portulaca oleracea;27501;other;germinule;.3328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton acutifolius;43950;other;unknown;2.946;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.946;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Potamogeton acutifolius;43950;other;unknown;3.2524;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Potamogeton alpinus;43951;other;germinule;2.5804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton alpinus;43951;actual measurement;one-seeded generative dispersule;1.561;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.561;1.59;1.532;100;;Air dried weight;;2a Potamogeton berchtoldii;43955;actual measurement;one-seeded generative dispersule;1.56;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.56;;;50;;Air dried weight;;2a Potamogeton berchtoldii;43955;other;germinule;.7464;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7464;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton coloratus;43961;other;germinule;.534;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.534;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton coloratus;43961;actual measurement;one-seeded generative dispersule;.329;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.329;;;100;;Air dried weight;;2a Potamogeton epihydrus;43967;other;unknown;1.4676;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Potamogeton epihydrus;43967;other;unknown;1.4824;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4824;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Potamogeton epihydrus;43967;other;unknown;1.9768;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Potamogeton filiformis;43968;other;germinule;1.854;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.854;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton filiformis;43968;actual measurement;generative dispersule;3.685;;-4;;BIOLFLOR database;3.685;;;;;Air dried weight;;2 Potamogeton gramineus;43975;other;unknown;2.4904;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.4904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Potamogeton lucens;43923;other;germinule;5.3596;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.3596;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton lucens;43923;actual measurement;generative dispersule;4.38;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.38;5.6;3.5;1;;Air dried weight;;2 Potamogeton natans;43926;actual measurement;one-seeded generative dispersule;4.25;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.25;;;50;;Air dried weight;;2a Potamogeton natans;43926;actual measurement;one-seeded generative dispersule;8.45;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.45;;;20;;Air dried weight;;2a Potamogeton natans;43926;actual measurement;one-seeded generative dispersule;4.562;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.562;;;50;;Air dried weight;;2a Potamogeton natans;43926;actual measurement;generative dispersule;5.019;;-4;;BIOLFLOR database;5.019;5.847;4.25;;;Air dried weight;;2 Potamogeton natans;43926;other;germinule;4.4048;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.4048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton natans;43926;other;germinule;4.14;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.14;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton obtusifolius;43936;other;unknown;2.89876;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.89876;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Potamogeton pectinatus;43938;other;unknown;5.27;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.27;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Potamogeton perfoliatus;43943;other;germinule;3.8328;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8328;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton perfoliatus;43943;actual measurement;one-seeded generative dispersule;2.6;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.6;;;50;;Air dried weight;;2a Potamogeton polygonifolius;43944;actual measurement;one-seeded generative dispersule;2.723;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.723;2.733;2.713;100;;Air dried weight;;2a Potamogeton polygonifolius;43944;actual measurement;one-seeded generative dispersule;1.121;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.121;;;100;;Air dried weight;;2a Potamogeton polygonifolius;43944;other;germinule;1.2716;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton polygonifolius;43944;other;germinule;1.01;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.01;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton polygonifolius;43944;other;germinule;1.258;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.258;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.9;10;-2;.9;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.91;1.02;.77;;preaggregated value obtained from single record;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.88;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.9;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.86;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.99;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;1.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.01;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.93;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.93;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.77;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.77;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.83;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;1.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.02;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potamogeton pusillus;43890;actual measurement (following LEDA data standards);germinule;.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.9;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Potentilla alba;30128;actual measurement;one-seeded generative dispersule;.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.6;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Potentilla anglica;31198;actual measurement;one-seeded generative dispersule;.674;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.674;;;50;;Air dried weight;;2a Potentilla anglica;31198;other;germinule;.5856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5856;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry. Seeds/fruit - 5, fruits/plant - 20.;Unknown;;3 Potentilla anglica;31198;actual measurement;one-seeded generative dispersule;.382;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.382;;;50;;Air dried weight;;2a Potentilla anserina;29712;other;germinule;.8792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8792;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry. No.of seeds/fruit - 26, no.of fruits/plant - 5.;Unknown;;3 Potentilla anserina;29712;actual measurement;one-seeded generative dispersule;.658;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.658;;;50;;Air dried weight;;2a Potentilla anserina;29712;other;germinule;1.1444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla argentea;30642;actual measurement (following LEDA data standards);germinule;.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Potentilla argentea;30642;other;germinule;.094;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.094;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla argentea;30642;actual measurement (following LEDA data standards);germinule;.11;1;-2;.11;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;.11;.11;;preaggregated value obtained from single record;Air dried weight;;3 Potentilla argentea;30642;actual measurement;one-seeded generative dispersule;.138;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.138;;;50;;Air dried weight;;2a Potentilla argentea;30642;other;one-seeded generative dispersule;.094;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.094;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla argentea;30642;actual measurement;germinule;.073;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.073;;;1;summers of 1995 and 1996;Unknown;;3 Potentilla argentea;30642;actual measurement;one-seeded generative dispersule;.093;;-4;;BIOLFLOR database;.093;.1;.08;;;Air dried weight;;2a Potentilla argentea;30642;actual measurement;generative dispersule;.111;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.111;.12;.104;1;;Air dried weight;;2 Potentilla argentea;30642;actual measurement;generative dispersule;.064;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.064;.064;.064;1;;Air dried weight;;2 Potentilla argentea;30642;actual measurement;germinule;.138;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.138;;;50;;Air dried weight;;3 Potentilla argentea;30642;actual measurement;germinule;.093;;-4;;BIOLFLOR database;.093;.1;.08;;;Air dried weight;;3 Potentilla caulescens;30919;actual measurement;one-seeded generative dispersule;.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Potentilla crantzii;29387;other;one-seeded generative dispersule;.8565;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8565;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla crantzii;29387;actual measurement;generative dispersule;.45;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.45;.471428571;.428571429;7;;Air dried weight;;2 Potentilla crantzii;29387;actual measurement;germinule;.697;;-4;;BIOLFLOR database;.697;.709;.684;;;Air dried weight;;3 Potentilla crantzii;29387;actual measurement;one-seeded generative dispersule;.697;;-4;;BIOLFLOR database;.697;.709;.684;;;Air dried weight;;2a Potentilla crantzii;29387;actual measurement (following LEDA data standards);germinule;.58;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.58;;;9;No. of seeds per individual: 5-13;Air dried weight;;3 Potentilla crantzii;29387;actual measurement (following LEDA data standards);germinule;.52;2;-2;.52;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.52;.58;.45;;Preaggregated data obtained from single record. No. of seeds per individual: 5-13;;;3 Potentilla crantzii;29387;actual measurement (following LEDA data standards);germinule;.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.45;;;9;No. of seeds per individual: 5-13;Air dried weight;;3 Potentilla crantzii;29387;other;germinule;.8565;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8565;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla erecta;30927;actual measurement (following LEDA data standards);germinule;.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Potentilla erecta;30927;actual measurement (following LEDA data standards);germinule;.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Potentilla erecta;30927;actual measurement (following LEDA data standards);germinule;.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.44;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Potentilla erecta;30927;actual measurement (following LEDA data standards);germinule;.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Potentilla erecta;30927;actual measurement (following LEDA data standards);germinule;.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Potentilla erecta;30927;actual measurement (following LEDA data standards);germinule;.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Potentilla erecta;30927;other;germinule;.7556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla erecta;30927;actual measurement (following LEDA data standards);germinule;.48;1;-2;.48;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;.48;.48;;preaggregated value obtained from single record;Air dried weight;;3 Potentilla erecta;30927;actual measurement (following LEDA data standards);germinule;.44;5;-2;.44;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.44;.48;.39;;preaggregated value obtained from single record;Air dried weight;;3 Potentilla erecta;30927;actual measurement;germinule;.321;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.321;;;1;summers of 1995 and 1996;Unknown;;3 Potentilla erecta;30927;actual measurement;one-seeded generative dispersule;.472;;-4;;BIOLFLOR database;.472;.58;.4;;;Air dried weight;;2a Potentilla erecta;30927;actual measurement;germinule;.472;;-4;;BIOLFLOR database;.472;.58;.4;;;Air dried weight;;3 Potentilla erecta;30927;actual measurement;germinule;.579;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.579;;;50;;Air dried weight;;3 Potentilla erecta;30927;other;one-seeded generative dispersule;.7556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla erecta;30927;actual measurement;one-seeded generative dispersule;.579;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.579;;;50;;Air dried weight;;2a Potentilla erecta;30927;actual measurement;one-seeded generative dispersule;.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.2;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Potentilla fruticosa;29725;actual measurement;one-seeded generative dispersule;.247;;-4;;BIOLFLOR database;.247;;;;;Air dried weight;;2a Potentilla fruticosa;29725;other;one-seeded generative dispersule;.37;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.37;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla fruticosa;29725;actual measurement;germinule;.247;;-4;;BIOLFLOR database;.247;;;;;Air dried weight;;3 Potentilla fruticosa;29725;other;germinule;.37;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.37;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla heptaphylla;29728;actual measurement;germinule;.6;;-4;;BIOLFLOR database;.6;;;;;Air dried weight;;3 Potentilla heptaphylla;29728;actual measurement;one-seeded generative dispersule;.6;;-4;;BIOLFLOR database;.6;;;;;Air dried weight;;2a Potentilla inclinata;29340;actual measurement;one-seeded generative dispersule;.374;;-4;;BIOLFLOR database;.374;.382;.367;;;Air dried weight;;2a Potentilla inclinata;29340;actual measurement;generative dispersule;.31;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.31;;;1;n an replicates unknown;Air dried weight;;2 Potentilla inclinata;29340;actual measurement;germinule;.374;;-4;;BIOLFLOR database;.374;.382;.367;;;Air dried weight;;3 Potentilla intermedia;30887;actual measurement;germinule;.44;;-4;;BIOLFLOR database;.44;;;;;Air dried weight;;3 Potentilla intermedia;30887;actual measurement;one-seeded generative dispersule;.44;;-4;;BIOLFLOR database;.44;;;;;Air dried weight;;2a Potentilla micrantha;29976;actual measurement;one-seeded generative dispersule;.638;;-4;;BIOLFLOR database;.638;;;;;Air dried weight;;2a Potentilla micrantha;29976;actual measurement;germinule;.638;;-4;;BIOLFLOR database;.638;;;;;Air dried weight;;3 Potentilla micrantha;29976;actual measurement;generative dispersule;.605;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.605;.61;.6;40;;Air dried weight;;2 Potentilla norvegica;29685;actual measurement;germinule;.116;;-4;;BIOLFLOR database;.116;.117;.115;;;Air dried weight;;3 Potentilla norvegica;29685;actual measurement;one-seeded generative dispersule;.116;;-4;;BIOLFLOR database;.116;.117;.115;;;Air dried weight;;2a Potentilla palustris;30328;actual measurement;one-seeded generative dispersule;.386;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.386;;;50;;Air dried weight;;2a Potentilla palustris;30328;actual measurement;one-seeded generative dispersule;.378;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.378;;;50;;Air dried weight;;2a Potentilla palustris;30328;other;one-seeded generative dispersule;.4932;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla palustris;30328;other;one-seeded generative dispersule;.5568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla palustris;30328;other;one-seeded generative dispersule;.4284;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4284;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla palustris;30328;other;one-seeded generative dispersule;.4692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla palustris;30328;other;one-seeded generative dispersule;.5904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla palustris;30328;actual measurement;germinule;.386;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.386;;;50;;Air dried weight;;3 Potentilla palustris;30328;actual measurement;one-seeded generative dispersule;.432;;-4;;BIOLFLOR database;.432;.441;.423;;;Air dried weight;;2a Potentilla palustris;30328;actual measurement;germinule;.378;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.378;;;50;;Air dried weight;;3 Potentilla palustris;30328;actual measurement;germinule;.432;;-4;;BIOLFLOR database;.432;.441;.423;;;Air dried weight;;3 Potentilla palustris;30328;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Potentilla palustris;30328;other;germinule;.4284;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4284;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla palustris;30328;other;germinule;.4932;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla palustris;30328;other;germinule;.5904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla palustris;30328;other;germinule;.5568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla palustris;30328;actual measurement (following LEDA data standards);germinule;.38;1;-2;.38;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;.38;.38;;preaggregated value obtained from single record;Air dried weight;;3 Potentilla palustris;30328;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Potentilla palustris;30328;other;germinule;.4692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla palustris;30328;actual measurement (following LEDA data standards);germinule;.3;1;-2;.3;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;.3;.3;;preaggregated value obtained from single record;Air dried weight;;3 Potentilla recta;29349;actual measurement;generative dispersule;.37;7;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.37;.762;.243;100;;Air dried weight;;2 Potentilla recta;29349;actual measurement;germinule;.1514;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.1514;;;70;;Air dried weight;;3 Potentilla recta;29349;actual measurement;germinule;.259;;-4;;BIOLFLOR database;.259;.3;.213;;;Air dried weight;;3 Potentilla recta;29349;actual measurement;one-seeded generative dispersule;.1514;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.1514;;;70;;Air dried weight;;2a Potentilla recta;29349;actual measurement;generative dispersule;.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.3;;;1;n an replicates unknown;Air dried weight;;2 Potentilla recta;29349;actual measurement;one-seeded generative dispersule;.259;;-4;;BIOLFLOR database;.259;.3;.213;;;Air dried weight;;2a Potentilla reptans;30622;actual measurement;one-seeded generative dispersule;.243;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.243;;;50;;Air dried weight;;2a Potentilla reptans;30622;other;one-seeded generative dispersule;.2756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla reptans;30622;actual measurement;generative dispersule;.21;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.21;;;1;n an replicates unknown;Air dried weight;;2 Potentilla reptans;30622;actual measurement;generative dispersule;.351;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.351;.352;.35;50;;Air dried weight;;2 Potentilla reptans;30622;actual measurement;germinule;.243;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.243;;;50;;Air dried weight;;3 Potentilla reptans;30622;actual measurement;one-seeded generative dispersule;.285;;-4;;BIOLFLOR database;.285;.316;.24;;;Air dried weight;;2a Potentilla reptans;30622;actual measurement;germinule;.285;;-4;;BIOLFLOR database;.285;.316;.24;;;Air dried weight;;3 Potentilla reptans;30622;other;germinule;.2756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla rupestris;29693;other;germinule;.314;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.314;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla rupestris;29693;other;germinule;.312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla rupestris;29693;other;germinule;.288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla rupestris;29693;other;germinule;.2856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla rupestris;29693;actual measurement;germinule;.292;;-4;;BIOLFLOR database;.292;.303;.28;;;Air dried weight;;3 Potentilla rupestris;29693;actual measurement;one-seeded generative dispersule;.292;;-4;;BIOLFLOR database;.292;.303;.28;;;Air dried weight;;2a Potentilla rupestris;29693;other;one-seeded generative dispersule;.288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla rupestris;29693;other;one-seeded generative dispersule;.312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla rupestris;29693;other;one-seeded generative dispersule;.2856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla rupestris;29693;other;one-seeded generative dispersule;.314;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.314;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla sterilis;30583;other;one-seeded generative dispersule;.5;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Potentilla sterilis;30583;actual measurement;one-seeded generative dispersule;.579;;-4;;BIOLFLOR database;.579;.58;.578;;;Air dried weight;;2a Potentilla sterilis;30583;actual measurement;germinule;.579;;-4;;BIOLFLOR database;.579;.58;.578;;;Air dried weight;;3 Potentilla sterilis;30583;other;germinule;.5;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Potentilla supina;31183;actual measurement;germinule;.061;;-4;;BIOLFLOR database;.061;;;;;Air dried weight;;3 Potentilla supina;31183;actual measurement;one-seeded generative dispersule;.061;;-4;;BIOLFLOR database;.061;;;;;Air dried weight;;2a Potentilla supina;31183;actual measurement;one-seeded generative dispersule;.0735;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0735;.074;.073;100;;Air dried weight;;2a Potentilla tabernaemontani;30295;actual measurement;one-seeded generative dispersule;.618;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.618;;;100;;Air dried weight;;2a Potentilla tabernaemontani;30295;actual measurement;one-seeded generative dispersule;.34;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.34;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Potentilla tabernaemontani;30295;actual measurement;one-seeded generative dispersule;.627;;-4;;BIOLFLOR database;.627;.91;.41;;;Air dried weight;;2a Potentilla tabernaemontani;30295;actual measurement;one-seeded generative dispersule;.906;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.906;;;123;;Air dried weight;;2a Potentilla tabernaemontani;30295;actual measurement;germinule;.618;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.618;;;100;;Air dried weight;;3 Potentilla tabernaemontani;30295;actual measurement;germinule;.906;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.906;;;123;;Air dried weight;;3 Potentilla tabernaemontani;30295;actual measurement;germinule;.627;;-4;;BIOLFLOR database;.627;.91;.41;;;Air dried weight;;3 Potentilla tabernaemontani;30295;actual measurement;generative dispersule;.2375;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2375;.2375;.2375;24;;Air dried weight;;2 Potentilla thuringiaca;30298;actual measurement;germinule;.145;;-4;;BIOLFLOR database;.145;.155;.131;;;Air dried weight;;3 Potentilla thuringiaca;30298;actual measurement;one-seeded generative dispersule;.145;;-4;;BIOLFLOR database;.145;.155;.131;;;Air dried weight;;2a Prenanthes purpurea;9532;actual measurement;germinule;1.359;;-4;;BIOLFLOR database;1.359;1.605;1.112;;;Air dried weight;;3 Prenanthes purpurea;9532;actual measurement;germinule;.28;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.28;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Primula auricula;28913;actual measurement;germinule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;3 Primula auricula;28913;actual measurement;germinule;.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Primula auricula;28913;actual measurement;one-seeded generative dispersule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;2a Primula auricula;28913;actual measurement;one-seeded generative dispersule;.2865;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2865;.287;.286;100;;Air dried weight;;2a Primula elatior;29086;actual measurement;one-seeded generative dispersule;.898;;-4;;BIOLFLOR database;.898;1.046;.759;;;Air dried weight;;2a Primula elatior;29086;actual measurement;germinule;.898;;-4;;BIOLFLOR database;.898;1.046;.759;;;Air dried weight;;3 Primula elatior;29086;actual measurement (following LEDA data standards);germinule;.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.35;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Primula elatior;29086;actual measurement (following LEDA data standards);germinule;.35;1;-2;.35;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.35;.35;.35;;preaggregated value obtained from single record;Air dried weight;;3 Primula elatior;29086;actual measurement (following LEDA data standards);germinule;.24;1;-2;.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.24;.24;.24;;preaggregated value obtained from single record;Air dried weight;;3 Primula elatior;29086;actual measurement (following LEDA data standards);germinule;.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.24;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Primula elatior;29086;actual measurement (following LEDA data standards);germinule;.32;1;-2;.32;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;.32;.32;;preaggregated value obtained from single record;Air dried weight;;3 Primula elatior;29086;actual measurement (following LEDA data standards);germinule;.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Primula farinosa;28915;other;germinule;.0888;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0888;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Primula farinosa;28915;other;germinule;.0488;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Primula farinosa;28915;actual measurement;germinule;.076;;-4;;BIOLFLOR database;.076;.092;.058;;;Air dried weight;;3 Primula farinosa;28915;actual measurement;one-seeded generative dispersule;.076;;-4;;BIOLFLOR database;.076;.092;.058;;;Air dried weight;;2a Primula farinosa;28915;other;one-seeded generative dispersule;.0888;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0888;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Primula farinosa;28915;other;one-seeded generative dispersule;.0488;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Primula hirsuta;28884;actual measurement;one-seeded generative dispersule;.194;;-4;;BIOLFLOR database;.194;;;;;Air dried weight;;2a Primula hirsuta;28884;actual measurement;germinule;.194;;-4;;BIOLFLOR database;.194;;;;;Air dried weight;;3 Primula minima;28954;actual measurement;germinule;.116;;-4;;BIOLFLOR database;.116;;;;;Air dried weight;;3 Primula minima;28954;actual measurement;one-seeded generative dispersule;.116;;-4;;BIOLFLOR database;.116;;;;;Air dried weight;;2a Primula scotica;28898;other;unknown;.058;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.058;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Primula veris;28858;actual measurement (following LEDA data standards);germinule;.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.54;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Primula veris;28858;other;germinule;.8324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Primula veris;28858;actual measurement (following LEDA data standards);germinule;.54;1;-2;.54;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.54;.54;.54;;preaggregated value obtained from single record;Air dried weight;;3 Primula veris;28858;other;one-seeded generative dispersule;.8324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Primula veris;28858;actual measurement;germinule;.892;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.892;;;1;summers of 1995 and 1996;Unknown;;3 Primula veris;28858;actual measurement;one-seeded generative dispersule;1.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.064;;;50;;Air dried weight;;2a Primula veris;28858;actual measurement;one-seeded generative dispersule;.733;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.733;;;100;;Air dried weight;;2a Primula veris;28858;actual measurement;one-seeded generative dispersule;.992;;-4;;BIOLFLOR database;.992;1.2;.69;;;Air dried weight;;2a Primula veris;28858;actual measurement;one-seeded generative dispersule;.7008;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.7008;.754666667;.660666667;150;;Air dried weight;;2a Primula veris;28858;actual measurement;one-seeded generative dispersule;.656;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.656;;;50;;Air dried weight;;2a Primula veris;28858;actual measurement;generative dispersule;.82;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.82;;;1;n an replicates unknown;Air dried weight;;2 Primula veris;28858;actual measurement;germinule;.992;;-4;;BIOLFLOR database;.992;1.2;.69;;;Air dried weight;;3 Primula veris;28858;actual measurement;germinule;.656;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.656;;;50;;Air dried weight;;3 Primula veris;28858;actual measurement;germinule;.733;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.733;;;100;;Air dried weight;;3 Primula veris;28858;actual measurement;germinule;1.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.064;;;50;;Air dried weight;;3 Primula vulgaris;28981;actual measurement;germinule;1.225;;-4;;BIOLFLOR database;1.225;1.6;.7;;;Air dried weight;;3 Primula vulgaris;28981;actual measurement;germinule;.99;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.99;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Primula vulgaris;28981;actual measurement;one-seeded generative dispersule;1.225;;-4;;BIOLFLOR database;1.225;1.6;.7;;;Air dried weight;;2a Primula vulgaris;28981;other;one-seeded generative dispersule;1.1208;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Primula vulgaris;28981;other;germinule;1.1208;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Prunella grandiflora;23985;actual measurement;one-seeded generative dispersule;.778;;-4;;BIOLFLOR database;.778;.904;.68;;;Air dried weight;;2a Prunella grandiflora;23985;actual measurement;one-seeded generative dispersule;1.01;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.01;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Prunella grandiflora;23985;actual measurement;germinule;.778;;-4;;BIOLFLOR database;.778;.904;.68;;;Air dried weight;;3 Prunella laciniata;25036;actual measurement;one-seeded generative dispersule;1.32;;-4;;BIOLFLOR database;1.32;1.535;1.1;;;Air dried weight;;2a Prunella laciniata;25036;actual measurement;one-seeded generative dispersule;.811133333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.811133333;1.114666667;.722;100;;Air dried weight;;2a Prunella laciniata;25036;actual measurement;germinule;1.32;;-4;;BIOLFLOR database;1.32;1.535;1.1;;;Air dried weight;;3 Prunella laciniata;25036;other;one-seeded generative dispersule;1.238;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.238;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Prunella laciniata;25036;other;germinule;1.238;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.238;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Prunella vulgaris;24350;actual measurement (following LEDA data standards);germinule;.76;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.76;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Prunella vulgaris;24350;other;unknown;.5768;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Prunella vulgaris;24350;actual measurement (following LEDA data standards);germinule;.76;1;-2;.76;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.76;.76;.76;;preaggregated value obtained from single record;Air dried weight;;3 Prunella vulgaris;24350;other;one-seeded generative dispersule;.5768;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Prunella vulgaris;24350;actual measurement;generative dispersule;1.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.13;;;1;n an replicates unknown;Air dried weight;;2 Prunella vulgaris;24350;actual measurement;one-seeded generative dispersule;.616;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.616;;;50;;Air dried weight;;2a Prunella vulgaris;24350;actual measurement;one-seeded generative dispersule;.673;;-4;;BIOLFLOR database;.673;.73;.563;;;Air dried weight;;2a Prunella vulgaris;24350;actual measurement;generative dispersule;.67;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.67;.67;.67;1;;Air dried weight;;2 Prunella vulgaris;24350;actual measurement;generative dispersule;.525;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.525;.532;.518;50;;Air dried weight;;2 Prunella vulgaris;24350;actual measurement;germinule;.616;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.616;;;50;;Air dried weight;;3 Prunella vulgaris;24350;actual measurement;germinule;.727;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.727;;;70;;Air dried weight;;3 Prunella vulgaris;24350;actual measurement;germinule;.673;;-4;;BIOLFLOR database;.673;.73;.563;;;Air dried weight;;3 Prunella vulgaris;24350;actual measurement;germinule;.612;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.612;;;1;summers of 1995 and 1996;Unknown;;3 Prunella vulgaris;24350;actual measurement;one-seeded generative dispersule;.727;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.727;;;70;;Air dried weight;;2a Prunus armeniaca;30585;actual measurement;generative dispersule;1177.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1177.9;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Prunus avium;31189;actual measurement;germinule;170;;-4;;BIOLFLOR database;170;;;;;Air dried weight;;3 Prunus avium;31189;actual measurement;germinule;118.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);118.2;;;1;n an replicates unknown;Air dried weight;;3 Prunus avium;31189;actual measurement;one-seeded generative dispersule;279;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;279;;;50;;Air dried weight;;2a Prunus avium;31189;actual measurement;one-seeded generative dispersule;178;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;178;;;25;;Air dried weight;;2a Prunus avium;31189;actual measurement;one-seeded generative dispersule;1597;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1597;;;1;n an replicates unknown;Fresh weight;;2a Prunus avium;31189;other;germinule;197.4544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);197.4544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Prunus avium;31189;other;germinule;190.6604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);190.6604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Prunus cerasifera;29699;actual measurement;generative dispersule;454.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);454.5;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Prunus cerasus;29305;actual measurement;germinule;177.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);177.5;;;1;n an replicates unknown;Air dried weight;;3 Prunus cerasus;29305;actual measurement;germinule;272.5;;-4;;BIOLFLOR database;272.5;;;;;Air dried weight;;3 Prunus cerasus;29305;actual measurement;one-seeded generative dispersule;312;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);312;;;1;n an replicates unknown;Fresh weight;;2a Prunus laurocerasus;29962;actual measurement;one-seeded generative dispersule;168;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;168;;;25;;Air dried weight;;2a Prunus laurocerasus;29962;actual measurement;generative dispersule;357.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);357.1;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Prunus mahaleb;29650;actual measurement;generative dispersule;87.7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);87.7;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Prunus padus;30306;actual measurement;generative dispersule;170;;-4;;BIOLFLOR database;170;210;130;;;Fresh weight;;2 Prunus padus;30306;actual measurement;germinule;80.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);80.5;;;1;n an replicates unknown;Air dried weight;;3 Prunus padus;30306;actual measurement;germinule;50;;-4;;BIOLFLOR database;50;;;;;Air dried weight;;3 Prunus padus;30306;actual measurement;one-seeded generative dispersule;55;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;55;;;50;;Air dried weight;;2a Prunus padus;30306;actual measurement;one-seeded generative dispersule;332;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);332;;;1;n an replicates unknown;Fresh weight;;2a Prunus persica;29943;actual measurement;generative dispersule;2941.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2941.2;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Prunus serotina;29315;actual measurement;generative dispersule;88.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);88.1;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Prunus spinosa;29316;actual measurement;generative dispersule;22.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);22.6;;;1;n and replicates unknown;Air dried weight;;2 Prunus spinosa;29316;actual measurement;germinule;151.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);151.8;;;1;n an replicates unknown;Air dried weight;;3 Prunus spinosa;29316;actual measurement;germinule;145.203;;-4;;BIOLFLOR database;145.203;210.688;106.79;;;Air dried weight;;3 Prunus spinosa;29316;actual measurement;generative dispersule;1684.3;;-4;;BIOLFLOR database;1684.3;;;;;Fresh weight;;2 Prunus spinosa;29316;actual measurement;one-seeded generative dispersule;118.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;118.13;;;20;;Air dried weight;;2a Prunus spinosa;29316;actual measurement;one-seeded generative dispersule;110;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;110;;;20;;Air dried weight;;2a Prunus spinosa;29316;actual measurement;one-seeded generative dispersule;1169;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1169;;;1;n an replicates unknown;Fresh weight;;2a Prunus spinosa;29316;other;germinule;480.3528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);480.3528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Prunus spinosa;29316;other;germinule;152.7324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);152.7324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Prunus virginiana;30310;actual measurement;generative dispersule;61.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);61.3;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Pseudofumaria lutea;45589;actual measurement;one-seeded generative dispersule;1.374;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.374;;;50;;Air dried weight;;2a Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.33;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.25;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.02;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.57;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.58;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.19;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.29;10;-2;1.29;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.31;1.58;1.02;;preaggregated value obtained from single record;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.48;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.14;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pseudofumaria lutea;45589;actual measurement (following LEDA data standards);germinule;1.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.36;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Pterocarya fraxinifolia;23155;actual measurement;generative dispersule;50;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);50;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Puccinellia distans;42706;actual measurement;generative dispersule;.2255;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2255;.232;.219;100;;Air dried weight;;2 Puccinellia distans;42706;actual measurement;germinule;.281;;-4;;BIOLFLOR database;.281;;;;;Air dried weight;;3 Puccinellia distans;42706;actual measurement;germinule;.274;;-4;;BIOLFLOR database;.274;.28;.268;;;Air dried weight;;3 Puccinellia distans;42706;actual measurement;germinule;.252;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.252;;;50;;Air dried weight;;3 Puccinellia distans;42706;actual measurement;one-seeded generative dispersule;.281;;-4;;BIOLFLOR database;.281;;;;;Air dried weight;;2a Puccinellia distans;42706;actual measurement;germinule;.28;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.28;;;100;;Air dried weight;;3 Puccinellia distans;42706;actual measurement;one-seeded generative dispersule;.28;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.28;;;100;;Air dried weight;;2a Puccinellia distans;42706;actual measurement;one-seeded generative dispersule;.252;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.252;;;50;;Air dried weight;;2a Puccinellia distans;42706;actual measurement (following LEDA data standards);germinule;.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.17;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Puccinellia distans;42706;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Puccinellia distans;42706;actual measurement (following LEDA data standards);germinule;.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.19;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Puccinellia distans;42706;actual measurement (following LEDA data standards);germinule;.18;3;-2;.18;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;.19;.17;;preaggregated value obtained from single record;Air dried weight;;3 Puccinellia distans s. borealis;43427;actual measurement (following LEDA data standards);germinule;.22;3;-2;.22;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;.23;.22;;preaggregated value obtained from single record;Air dried weight;;3 Puccinellia distans s. borealis;43427;actual measurement (following LEDA data standards);germinule;.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.23;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Puccinellia distans s. borealis;43427;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Puccinellia distans s. borealis;43427;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.22;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Puccinellia distans s. limosa;43428;actual measurement;germinule;.268;;-4;;BIOLFLOR database;.268;;;;;Air dried weight;;3 Puccinellia fasciculata;42358;other;unknown;.2428;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Puccinellia maritima;43436;actual measurement;germinule;.715;;-4;;BIOLFLOR database;.715;;;;;Air dried weight;;3 Puccinellia maritima;43436;actual measurement;one-seeded generative dispersule;.715;;-4;;BIOLFLOR database;.715;;;;;Air dried weight;;2a Puccinellia maritima;43436;actual measurement;one-seeded generative dispersule;.1776;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1776;.195333333;.164;150;;Air dried weight;;2a Puccinellia maritima;43436;actual measurement;generative dispersule;1.4692;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.4692;1.492;1.437;100;;Air dried weight;;2 Puccinellia rupestris;42933;other;unknown;.4592;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;10;-2;.1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;.11;.09;;preaggregated value obtained from single record;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement;one-seeded generative dispersule;.073;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.073;;;50;;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement;one-seeded generative dispersule;.065;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.065;;;50;;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement;one-seeded generative dispersule;.062;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.062;;;100;;Air dried weight;;2a Pulicaria dysenterica;9613;actual measurement;germinule;.0525;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0525;.054;.051;100;;Air dried weight;;3 Pulicaria vulgaris;10384;actual measurement;germinule;.03667;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03667;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Pulicaria vulgaris;10384;actual measurement;germinule;.037;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.037;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Pulicaria vulgaris;10384;actual measurement;generative dispersule;.1595;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1595;.163;.156;100;;Air dried weight;;2 Pulicaria vulgaris;10384;actual measurement (following LEDA data standards);one-seeded generative dispersule;.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;;;100;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Pulicaria vulgaris;10384;other;germinule;.104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pulicaria vulgaris;10384;other;germinule;.1164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pulicaria vulgaris;10384;other;germinule;.1248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pulicaria vulgaris;10384;other;germinule;.1432;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pulicaria vulgaris;10384;actual measurement (following LEDA data standards);one-seeded generative dispersule;.18;1;-2;.18;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;.18;.18;;preaggregated value obtained from single record;Air dried weight;;2a Pulicaria vulgaris;10384;other;germinule;.116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pulmonaria obscura;11795;actual measurement;generative dispersule;4.3;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.3;4.7;4;1;;Air dried weight;;2 Pulmonaria officinalis;11796;actual measurement;one-seeded generative dispersule;3.64;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.64;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Pulsatilla alpina;27129;actual measurement;germinule;6.68;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.68;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Pulsatilla patens;27045;actual measurement;germinule;2.621;;-4;;BIOLFLOR database;2.621;2.663;2.54;;;Air dried weight;;3 Pulsatilla patens;27045;actual measurement;one-seeded generative dispersule;2.621;;-4;;BIOLFLOR database;2.621;2.663;2.54;;;Air dried weight;;2a Pulsatilla pratensis;27054;actual measurement;one-seeded generative dispersule;2.8;;-4;;BIOLFLOR database;2.8;;;;;Air dried weight;;2a Pulsatilla pratensis;27054;actual measurement;germinule;2.8;;-4;;BIOLFLOR database;2.8;;;;;Air dried weight;;3 Pulsatilla pratensis;27054;actual measurement;generative dispersule;1.881;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.881;1.897;1.865;100;with pappus;Air dried weight;;2 Pulsatilla vulgaris;27065;other;germinule;3.8544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Pulsatilla vulgaris;27065;actual measurement;generative dispersule;3.430931579;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.430931579;3.672;3.252631579;50;;Air dried weight;;2 Pulsatilla vulgaris;27065;other;one-seeded generative dispersule;3.8544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Pulsatilla vulgaris;27065;other;one-seeded generative dispersule;2.8388;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8388;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Pulsatilla vulgaris;27065;actual measurement;germinule;3;;-4;;BIOLFLOR database;3;;;;;Air dried weight;;3 Pulsatilla vulgaris;27065;actual measurement;one-seeded generative dispersule;3;;-4;;BIOLFLOR database;3;;;;;Air dried weight;;2a Pulsatilla vulgaris;27065;other;germinule;2.8388;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8388;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Punica granatum;28168;actual measurement;generative dispersule;10.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);10.14;;;1;n an replicates unknown;Air dried weight;;2 Pyrola minor;28775;actual measurement;generative dispersule;.006;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.006;.006;.006;50;;Air dried weight;;2 Pyrola minor;28775;actual measurement;germinule;.0012;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0012;;;192;;Air dried weight;;3 Pyrola minor;28775;actual measurement;germinule;.001;;-4;;BIOLFLOR database;.001;;;;;Air dried weight;;3 Pyrola minor;28775;actual measurement;one-seeded generative dispersule;.001;;-4;;BIOLFLOR database;.001;;;;;Air dried weight;;2a Pyrola minor;28775;actual measurement;one-seeded generative dispersule;.0012;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0012;;;192;;Air dried weight;;2a Pyrola minor;28775;estimation (following LEDA data standards);germinule;0;4;-2;0;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;0;0;0;;Preaggregated data obtained from single record. No. of seeds per individual: 1000-2000;;;3 Pyrola minor;28775;estimation (following LEDA data standards);germinule;0;3;-2;0;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;0;0;0;;Preaggregated data obtained from single record. No. of seeds per individual: 500-2000;;;3 Pyrola rotundifolia;28777;actual measurement (following LEDA data standards);germinule;0;1;-2;0;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;0;0;0;;preaggregated value obtained from single record;Air dried weight;;3 Pyrus communis;29660;actual measurement;germinule;25;;-4;;BIOLFLOR database;25;;;;;Air dried weight;;3 Pyrus pyraster;31153;actual measurement;generative dispersule;28.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);28.6;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Quercus canariensis;22494;actual measurement;generative dispersule;8000;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);8000;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Quercus cerris;22497;actual measurement;generative dispersule;4166.7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4166.7;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Quercus cerris;22497;actual measurement;one-seeded generative dispersule;1900;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1900;;;50;;Air dried weight;;2a Quercus coccifera;22498;actual measurement;generative dispersule;5555.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5555.5;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Quercus frainetto;22510;actual measurement;generative dispersule;2309.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2309.5;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Quercus ilex;22435;actual measurement;generative dispersule;3139.7;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3139.7;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Quercus palustris;22443;actual measurement;generative dispersule;833.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);833.3;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Quercus petraea;22445;actual measurement;germinule;1124;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1124;;;50;;Air dried weight;;3 Quercus petraea;22445;actual measurement;germinule;774.65;;-4;;BIOLFLOR database;774.65;804.6;744.7;;;Air dried weight;;3 Quercus petraea;22445;actual measurement;one-seeded generative dispersule;1124;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1124;;;50;;Air dried weight;;2a Quercus petraea;22445;actual measurement;one-seeded generative dispersule;774.65;;-4;;BIOLFLOR database;774.65;804.6;744.7;;;Air dried weight;;2a Quercus petraea;22445;actual measurement;generative dispersule;1076.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1076.2;;;1;n an replicates unknown;Air dried weight;;2 Quercus robur;22457;actual measurement;one-seeded generative dispersule;2996;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2996;;;35;;Air dried weight;;2a Quercus robur;22457;actual measurement;one-seeded generative dispersule;4053.4;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4053.4;4086.2;4020.6;100;;Fresh weight;;2a Quercus robur;22457;actual measurement;generative dispersule;3413;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3413;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Quercus rubra;22466;actual measurement;germinule;2694;;-4;;BIOLFLOR database;2694;3594;2172;;;Air dried weight;;3 Quercus rubra;22466;actual measurement;one-seeded generative dispersule;2694;;-4;;BIOLFLOR database;2694;3594;2172;;;Air dried weight;;2a Quercus rubra;22466;actual measurement;one-seeded generative dispersule;4692.3;;-4;;BIOLFLOR database;4692.3;5797;3855;;;Air dried weight;;2a Quercus suber;22470;actual measurement;generative dispersule;3539.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3539.8;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Radiola linoides;25873;actual measurement;one-seeded generative dispersule;.0105;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0105;.011;.01;100;;Air dried weight;;2a Radiola linoides;25873;other;germinule;.0132;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus aconitifolius;26864;actual measurement;germinule;1.718;;-4;;BIOLFLOR database;1.718;1.835;1.6;;;Air dried weight;;3 Ranunculus aconitifolius;26864;actual measurement;germinule;4.634722222;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.634722222;4.647222222;4.622222222;36;;Air dried weight;;3 Ranunculus aconitifolius;26864;actual measurement;one-seeded generative dispersule;1.718;;-4;;BIOLFLOR database;1.718;1.835;1.6;;;Air dried weight;;2a Ranunculus acris;26865;actual measurement;one-seeded generative dispersule;1.217;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.217;;;50;;Air dried weight;;2a Ranunculus acris;26865;actual measurement;one-seeded generative dispersule;1.1748;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.1748;1.224;1.138666667;150;;Air dried weight;;2a Ranunculus acris;26865;actual measurement;one-seeded generative dispersule;1.736;;-4;;BIOLFLOR database;1.736;2.2;1.431;;;Air dried weight;;2a Ranunculus acris;26865;other;one-seeded generative dispersule;1.896;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.896;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus acris;26865;actual measurement;germinule;1.736;;-4;;BIOLFLOR database;1.736;2.2;1.431;;;Air dried weight;;3 Ranunculus acris;26865;actual measurement;germinule;1.378;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.378;;;1;summers of 1995 and 1996;Unknown;;3 Ranunculus acris;26865;actual measurement;one-seeded generative dispersule;1.897;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.897;;;100;;Air dried weight;;2a Ranunculus acris;26865;actual measurement;generative dispersule;2.3228;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.3228;2.481333333;2.184;150;;Air dried weight;;2 Ranunculus acris;26865;actual measurement;generative dispersule;1.481;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];1.481;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Ranunculus acris;26865;actual measurement;germinule;1.897;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.897;;;100;;Air dried weight;;3 Ranunculus acris;26865;actual measurement;germinule;1.217;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.217;;;50;;Air dried weight;;3 Ranunculus acris;26865;actual measurement (following LEDA data standards);germinule;1.83;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.83;;;8;No. of seeds per individual: 2-19;Air dried weight;;3 Ranunculus acris;26865;actual measurement (following LEDA data standards);germinule;1.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.75;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus acris;26865;actual measurement (following LEDA data standards);germinule;1.75;1;-2;1.75;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.75;1.75;1.75;;preaggregated value obtained from single record;Air dried weight;;3 Ranunculus acris;26865;actual measurement (following LEDA data standards);germinule;1.83;1;-2;1.83;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.83;1.83;1.83;;preaggregated value obtained from single record;Air dried weight;;3 Ranunculus acris;26865;actual measurement (following LEDA data standards);germinule;1.83;3;-2;1.83;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.9;2.18;1.7;;Preaggregated data obtained from single record. No. of seeds per individual: 2-19;;;3 Ranunculus acris;26865;other;germinule;1.896;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.896;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus acris;26865;actual measurement (following LEDA data standards);germinule;1.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.83;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus acris;26865;actual measurement (following LEDA data standards);germinule;2.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;2.18;;;8;No. of seeds per individual: 2-19;Air dried weight;;3 Ranunculus acris;26865;actual measurement (following LEDA data standards);germinule;1.7;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.7;;;8;No. of seeds per individual: 2-19;Air dried weight;;3 Ranunculus arvensis;27014;actual measurement (following LEDA data standards);germinule;12.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.42;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus arvensis;27014;other;germinule;11.228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus arvensis;27014;other;germinule;12.496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus arvensis;27014;other;germinule;13.5484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.5484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus arvensis;27014;actual measurement (following LEDA data standards);germinule;12.42;1;-2;12.42;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.42;12.42;12.42;;preaggregated value obtained from single record;Air dried weight;;3 Ranunculus arvensis;27014;actual measurement;germinule;12.487;;-4;;BIOLFLOR database;12.487;13.247;12.1;;;Air dried weight;;3 Ranunculus arvensis;27014;actual measurement;germinule;13.496;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.496;;;50;;Air dried weight;;3 Ranunculus arvensis;27014;actual measurement;one-seeded generative dispersule;12.487;;-4;;BIOLFLOR database;12.487;13.247;12.1;;;Air dried weight;;2a Ranunculus arvensis;27014;other;one-seeded generative dispersule;12.496;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.496;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus arvensis;27014;other;one-seeded generative dispersule;13.5484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.5484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus arvensis;27014;other;one-seeded generative dispersule;11.228;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus arvensis;27014;actual measurement;one-seeded generative dispersule;13.496;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.496;;;50;;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement;one-seeded generative dispersule;.285;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.285;;;20;;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.22;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.39;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.65;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;other;germinule;2.3692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.52;10;-2;2.52;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.5;2.76;2.22;;preaggregated value obtained from single record;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.56;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.43;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.53;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.4;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.55;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.76;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.76;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus auricomus;27000;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.5;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Ranunculus bulbosus;26809;actual measurement (following LEDA data standards);germinule;2.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.23;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus bulbosus;26809;actual measurement (following LEDA data standards);germinule;2.23;1;-2;2.23;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.23;2.23;2.23;;preaggregated value obtained from single record;Air dried weight;;3 Ranunculus bulbosus;26809;actual measurement;one-seeded generative dispersule;3.918;;-4;;BIOLFLOR database;3.918;5;3.1;;;Air dried weight;;2a Ranunculus bulbosus;26809;actual measurement;one-seeded generative dispersule;4.110277778;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.110277778;4.243333333;3.916666667;1;;Air dried weight;;2a Ranunculus bulbosus;26809;actual measurement;germinule;3.918;;-4;;BIOLFLOR database;3.918;5;3.1;;;Air dried weight;;3 Ranunculus bulbosus;26809;actual measurement;germinule;1.834;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.834;;;50;;Air dried weight;;3 Ranunculus bulbosus;26809;actual measurement;one-seeded generative dispersule;1.834;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.834;;;50;;Air dried weight;;2a Ranunculus cassubicus;26942;actual measurement;generative dispersule;.44;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.44;.5;.4;1;;Air dried weight;;2 Ranunculus circinatus;26945;actual measurement;one-seeded generative dispersule;.151;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.151;;;50;;Air dried weight;;2a Ranunculus circinatus;26945;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus circinatus;26945;actual measurement (following LEDA data standards);germinule;.14;1;-2;.14;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.14;.14;.14;;preaggregated value obtained from single record;Air dried weight;;3 Ranunculus ficaria;26860;other;germinule;2.6476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus ficaria;26860;other;germinule;2.1268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus ficaria;26860;actual measurement;one-seeded generative dispersule;1.04;;-4;;BIOLFLOR database;1.04;;;;;Air dried weight;;2a Ranunculus ficaria;26860;actual measurement;germinule;1.04;;-4;;BIOLFLOR database;1.04;;;;;Air dried weight;;3 Ranunculus ficaria;26860;other;one-seeded generative dispersule;2.1268;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1268;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus ficaria;26860;other;one-seeded generative dispersule;2.6476;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus flammula;26624;other;one-seeded generative dispersule;.5764;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5764;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus flammula;26624;other;one-seeded generative dispersule;.4748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus flammula;26624;actual measurement;one-seeded generative dispersule;.496;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.496;;;50;;Air dried weight;;2a Ranunculus flammula;26624;actual measurement;germinule;.384;;-4;;BIOLFLOR database;.384;.395;.37;;;Air dried weight;;3 Ranunculus flammula;26624;actual measurement;germinule;.496;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.496;;;50;;Air dried weight;;3 Ranunculus flammula;26624;actual measurement;germinule;.372;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.372;;;100;;Air dried weight;;3 Ranunculus flammula;26624;actual measurement;one-seeded generative dispersule;.384;;-4;;BIOLFLOR database;.384;.395;.37;;;Air dried weight;;2a Ranunculus flammula;26624;actual measurement;one-seeded generative dispersule;.372;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.372;;;100;;Air dried weight;;2a Ranunculus flammula;26624;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus flammula;26624;actual measurement (following LEDA data standards);germinule;.38;1;-2;.38;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;.38;.38;;preaggregated value obtained from single record;Air dried weight;;3 Ranunculus flammula;26624;other;germinule;.4748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus flammula;26624;other;germinule;.5764;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5764;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus fluitans;26881;actual measurement;one-seeded generative dispersule;.56;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.56;;;50;;Air dried weight;;2a Ranunculus glacialis;26885;actual measurement;one-seeded generative dispersule;.35;;-4;;BIOLFLOR database;.35;;;;;Air dried weight;;2a Ranunculus glacialis;26885;actual measurement;germinule;.35;;-4;;BIOLFLOR database;.35;;;;;Air dried weight;;3 Ranunculus illyricus;26876;actual measurement;germinule;.4456;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.4456;;;50;;Air dried weight;;3 Ranunculus lanuginosus;26737;actual measurement;germinule;1.3;;-4;;BIOLFLOR database;1.3;;;;;Air dried weight;;3 Ranunculus lanuginosus;26737;actual measurement;one-seeded generative dispersule;1.3;;-4;;BIOLFLOR database;1.3;;;;;Air dried weight;;2a Ranunculus lingua;26743;actual measurement;one-seeded generative dispersule;2.854;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.854;;;50;;Air dried weight;;2a Ranunculus lingua;26743;other;one-seeded generative dispersule;2.8468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus lingua;26743;actual measurement;one-seeded generative dispersule;2.401;;-4;;BIOLFLOR database;2.401;;;;;Air dried weight;;2a Ranunculus lingua;26743;actual measurement;one-seeded generative dispersule;.909;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.909;.914;.904;100;;Air dried weight;;2a Ranunculus lingua;26743;actual measurement;germinule;2.854;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.854;;;50;;Air dried weight;;3 Ranunculus lingua;26743;actual measurement;germinule;2.401;;-4;;BIOLFLOR database;2.401;;;;;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.35;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.16;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.29;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.27;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.11;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;other;germinule;2.8468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.24;10;-2;1.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.23;1.35;1.11;;preaggregated value obtained from single record;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.26;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.23;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus lingua;26743;actual measurement (following LEDA data standards);germinule;1.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.17;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus omiophyllus;26822;other;unknown;.238;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.238;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ranunculus ophioglossifolius;26792;other;unknown;.4512;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ranunculus paludosus;26684;actual measurement;germinule;.20714;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.20714;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Ranunculus paludosus;26684;actual measurement;germinule;.207;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.207;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Ranunculus paludosus;26684;actual measurement;germinule;.21;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.21;;;30;collected between 1996-1999;Air dried weight;;3 Ranunculus parviflorus;26692;other;unknown;1.306;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.306;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ranunculus parviflorus;26692;other;unknown;1.1712;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ranunculus parviflorus;26692;other;unknown;1.1256;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1256;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ranunculus parviflorus;26692;other;unknown;1.0756;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Ranunculus peltatus;26695;other;germinule;.6248;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6248;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus peltatus;26695;other;germinule;.274;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.274;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus peltatus;26695;actual measurement;one-seeded generative dispersule;.248;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.248;;;100;;Air dried weight;;2a Ranunculus penicillatus;45469;actual measurement;germinule;.39;;-4;;BIOLFLOR database;.39;;;;;Air dried weight;;3 Ranunculus penicillatus;45469;actual measurement;one-seeded generative dispersule;.39;;-4;;BIOLFLOR database;.39;;;;;Air dried weight;;2a Ranunculus platanifolius;26778;actual measurement;one-seeded generative dispersule;6.831;;-4;;BIOLFLOR database;6.831;;;;;Air dried weight;;2a Ranunculus platanifolius;26778;actual measurement;germinule;6.831;;-4;;BIOLFLOR database;6.831;;;;;Air dried weight;;3 Ranunculus platanifolius;26778;actual measurement;generative dispersule;1.2525;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.2525;1.259;1.246;100;;Air dried weight;;2 Ranunculus polyanthemos;26780;actual measurement;germinule;2.495;;-4;;BIOLFLOR database;2.495;2.658;2.331;;;Air dried weight;;3 Ranunculus polyanthemos;26780;actual measurement;one-seeded generative dispersule;2.495;;-4;;BIOLFLOR database;2.495;2.658;2.331;;;Air dried weight;;2a Ranunculus repens;26770;actual measurement;germinule;1.82;;-4;;BIOLFLOR database;1.82;2.4;1.06;;;Air dried weight;;3 Ranunculus repens;26770;actual measurement;one-seeded generative dispersule;2.323;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.323;;;50;;Air dried weight;;2a Ranunculus repens;26770;actual measurement;germinule;2.323;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.323;;;50;;Air dried weight;;3 Ranunculus repens;26770;actual measurement;one-seeded generative dispersule;1.82;;-4;;BIOLFLOR database;1.82;2.4;1.06;;;Air dried weight;;2a Ranunculus repens;26770;actual measurement;one-seeded generative dispersule;1.923066667;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.923066667;1.957333333;1.864;150;;Air dried weight;;2a Ranunculus repens;26770;other;one-seeded generative dispersule;2.2792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus repens;26770;other;one-seeded generative dispersule;3.5056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.5056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus repens;26770;actual measurement (following LEDA data standards);germinule;1.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.44;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Ranunculus repens;26770;actual measurement (following LEDA data standards);germinule;1.44;1;-2;1.44;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.44;1.44;1.44;;preaggregated value obtained from single record;Air dried weight;;3 Ranunculus repens;26770;other;germinule;3.5056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.5056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus repens;26770;other;germinule;2.2792;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2792;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus reptans;26623;actual measurement;generative dispersule;.355625;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.355625;.3675;.34375;80;;Air dried weight;;2 Ranunculus reptans;26623;actual measurement;generative dispersule;.4;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4;.5;.3;1;;Air dried weight;;2 Ranunculus sardous;26637;actual measurement;germinule;1.466;;-4;;BIOLFLOR database;1.466;;;;;Air dried weight;;3 Ranunculus sardous;26637;other;germinule;1.1148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ranunculus sardous;26637;other;one-seeded generative dispersule;1.1148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ranunculus sardous;26637;actual measurement;one-seeded generative dispersule;1.466;;-4;;BIOLFLOR database;1.466;;;;;Air dried weight;;2a Ranunculus sardous;26637;actual measurement;one-seeded generative dispersule;1.759;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.759;1.788;1.73;100;;Air dried weight;;2a Ranunculus sceleratus;26717;actual measurement;one-seeded generative dispersule;.157;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.157;;;50;;Air dried weight;;2a Ranunculus sceleratus;26717;actual measurement;one-seeded generative dispersule;.084;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.084;;;100;;Air dried weight;;2a Ranunculus sceleratus;26717;actual measurement;one-seeded generative dispersule;.15;;-4;;BIOLFLOR database;.15;.16;.14;;;Air dried weight;;2a Ranunculus sceleratus;26717;actual measurement;germinule;.15;;-4;;BIOLFLOR database;.15;.16;.14;;;Air dried weight;;3 Ranunculus sceleratus;26717;actual measurement;germinule;.084;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.084;;;100;;Air dried weight;;3 Ranunculus sceleratus;26717;actual measurement;germinule;.157;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.157;;;50;;Air dried weight;;3 Ranunculus serpens s. nemorosus;45399;actual measurement;germinule;1.8;;-4;;BIOLFLOR database;1.8;;;;;Air dried weight;;3 Ranunculus serpens s. nemorosus;45399;actual measurement;one-seeded generative dispersule;1.8;;-4;;BIOLFLOR database;1.8;;;;;Air dried weight;;2a Ranunculus thora;26621;actual measurement;one-seeded generative dispersule;2.46;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.46;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Ranunculus trichophyllus;26588;actual measurement;one-seeded generative dispersule;.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.29;;;50;;Air dried weight;;2a Ranunculus trichophyllus;26588;actual measurement;one-seeded generative dispersule;.204;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.204;;;50;;Air dried weight;;2a Ranunculus trichophyllus;26588;other;germinule;.3144;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Raphanus raphanistrum;13549;other;germinule;33.72;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);33.72;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Raphanus raphanistrum;13549;other;germinule;49.7436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);49.7436;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Raphanus raphanistrum;13549;actual measurement;one-seeded generative dispersule;3.97;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.97;;;50;;Air dried weight;;2a Raphanus raphanistrum;13549;actual measurement;one-seeded generative dispersule;17.525;;-4;;BIOLFLOR database;17.525;18.68;16.37;;;Unknown;;2a Raphanus raphanistrum;13549;other;one-seeded generative dispersule;49.7436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);49.7436;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Raphanus raphanistrum;13549;other;one-seeded generative dispersule;33.72;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);33.72;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Raphanus raphanistrum;13549;actual measurement;germinule;3.97;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.97;;;50;;Air dried weight;;3 Raphanus raphanistrum;13549;actual measurement;germinule;17.525;;-4;;BIOLFLOR database;17.525;18.68;16.37;;;Unknown;;3 Rapistrum rugosum;13886;actual measurement;generative dispersule;3.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.13;;;1;n an replicates unknown;Air dried weight;;2 Reseda alba;27957;actual measurement;germinule;.562;;-4;;BIOLFLOR database;.562;;;;;Air dried weight;;3 Reseda alba;27957;actual measurement;one-seeded generative dispersule;.562;;-4;;BIOLFLOR database;.562;;;;;Air dried weight;;2a Reseda lutea;27974;actual measurement;one-seeded generative dispersule;.908;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.908;;;50;;Air dried weight;;2a Reseda lutea;27974;actual measurement;one-seeded generative dispersule;.767;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.767;;;100;;Air dried weight;;2a Reseda lutea;27974;other;one-seeded generative dispersule;.8928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Reseda lutea;27974;actual measurement;one-seeded generative dispersule;.755;;-4;;BIOLFLOR database;.755;.93;.5;;;Air dried weight;;2a Reseda lutea;27974;actual measurement;germinule;.755;;-4;;BIOLFLOR database;.755;.93;.5;;;Air dried weight;;3 Reseda lutea;27974;actual measurement;germinule;.767;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.767;;;100;;Air dried weight;;3 Reseda lutea;27974;actual measurement;germinule;.908;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.908;;;50;;Air dried weight;;3 Reseda lutea;27974;actual measurement (following LEDA data standards);germinule;.27;1;-2;.27;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.27;.27;.27;;preaggregated value obtained from single record;Air dried weight;;3 Reseda lutea;27974;other;germinule;.8928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Reseda lutea;27974;actual measurement (following LEDA data standards);germinule;.47;1;-2;.47;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;.47;.47;;preaggregated value obtained from single record;Air dried weight;;3 Reseda lutea;27974;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.27;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Reseda lutea;27974;actual measurement (following LEDA data standards);germinule;.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Reseda luteola;27977;other;germinule;.2628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Reseda luteola;27977;other;germinule;.3092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Reseda luteola;27977;actual measurement;germinule;.258;;-4;;BIOLFLOR database;.258;.33;.2;;;Air dried weight;;3 Reseda luteola;27977;actual measurement;germinule;.339;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.339;;;50;;Air dried weight;;3 Reseda luteola;27977;actual measurement;germinule;.326;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.326;;;100;;Air dried weight;;3 Reseda luteola;27977;actual measurement;one-seeded generative dispersule;.222133333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.222133333;.225333333;.217333333;150;;Air dried weight;;2a Reseda luteola;27977;actual measurement;one-seeded generative dispersule;.258;;-4;;BIOLFLOR database;.258;.33;.2;;;Air dried weight;;2a Reseda luteola;27977;actual measurement;one-seeded generative dispersule;.339;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.339;;;50;;Air dried weight;;2a Reseda luteola;27977;actual measurement;one-seeded generative dispersule;.326;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.326;;;100;;Air dried weight;;2a Reseda luteola;27977;other;one-seeded generative dispersule;.2628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Reseda luteola;27977;other;one-seeded generative dispersule;.3092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Reseda phyteuma;27929;actual measurement;generative dispersule;1.74;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.74;;;1;n and replicates unknown;Air dried weight;;2 Reynoutria sachalinensis;27578;actual measurement;germinule;.547;;-4;;BIOLFLOR database;.547;.61;.483;;;Air dried weight;;3 Reynoutria sachalinensis;27578;actual measurement;one-seeded generative dispersule;.58;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.58;;;30;;Air dried weight;;2a Rhagadiolus stellatus;10656;actual measurement;generative dispersule;.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.59;;;1;n an replicates unknown;Air dried weight;;2 Rhamnus catharticus;28012;actual measurement;generative dispersule;14.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);14.59;;;1;n an replicates unknown;Air dried weight;;2 Rhamnus catharticus;28012;actual measurement;germinule;15.088;;-4;;BIOLFLOR database;15.088;16.195;14;;;Air dried weight;;3 Rhamnus catharticus;28012;actual measurement;one-seeded generative dispersule;13.23;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.23;;;40;;Air dried weight;;2a Rhamnus catharticus;28012;other;germinule;11.704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhamnus catharticus;28012;other;germinule;75.8712;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);75.8712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhamnus saxatilis;27989;actual measurement;germinule;10.53;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);10.53;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Rheum rhabarbarum;27584;actual measurement;generative dispersule;19.1;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;19.1;20.4;17.8;1;;Air dried weight;;2 Rhinanthus alectorolophus;33445;actual measurement;generative dispersule;4.82;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.82;5.7;4.5;1;;Air dried weight;;2 Rhinanthus alectorolophus;33445;actual measurement;germinule;1.74;;-4;;BIOLFLOR database;1.74;1.78;1.7;;;Air dried weight;;3 Rhinanthus alectorolophus;33445;actual measurement;germinule;2.38;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.38;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Rhinanthus alectorolophus;33445;actual measurement;one-seeded generative dispersule;1.74;;-4;;BIOLFLOR database;1.74;1.78;1.7;;;Air dried weight;;2a Rhinanthus alectorolophus;33445;actual measurement (following LEDA data standards);germinule;3.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.97;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Rhinanthus alectorolophus;33445;actual measurement (following LEDA data standards);germinule;5.25;1;-2;5.25;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.25;5.25;5.25;;preaggregated value obtained from single record;Air dried weight;;3 Rhinanthus alectorolophus;33445;actual measurement (following LEDA data standards);germinule;3.97;1;-2;3.97;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.97;3.97;3.97;;preaggregated value obtained from single record;Air dried weight;;3 Rhinanthus alectorolophus;33445;actual measurement (following LEDA data standards);germinule;5.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.25;;;50;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.4;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;1.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.97;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.35;1;-2;2.35;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.35;2.35;2.35;;preaggregated value obtained from single record;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.31;10;-2;2.31;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.28;2.62;1.95;;preaggregated value obtained from single record;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.35;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;1.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.95;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.11;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.3;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.45;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.24;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.62;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.44;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;other;germinule;1.9472;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9472;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhinanthus angustifolius;33452;other;germinule;2.7868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhinanthus angustifolius;33452;other;germinule;2.2872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhinanthus angustifolius;33452;other;germinule;2.0824;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0824;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement (following LEDA data standards);germinule;2.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.32;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rhinanthus angustifolius;33452;actual measurement;germinule;2.929;;-4;;BIOLFLOR database;2.929;3.175;2.674;;;Air dried weight;;3 Rhinanthus angustifolius;33452;other;one-seeded generative dispersule;2.2872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhinanthus angustifolius;33452;other;one-seeded generative dispersule;2.7868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhinanthus angustifolius;33452;other;one-seeded generative dispersule;2.0824;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0824;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhinanthus angustifolius;33452;other;one-seeded generative dispersule;1.9472;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9472;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhinanthus angustifolius;33452;actual measurement;one-seeded generative dispersule;2.929;;-4;;BIOLFLOR database;2.929;3.175;2.674;;;Air dried weight;;2a Rhinanthus aristatus;32944;actual measurement;generative dispersule;1.78125;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.78125;1.78125;1.78125;80;;Air dried weight;;2 Rhinanthus glacialis;50039;actual measurement;generative dispersule;3.4328;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.4328;3.476;3.336;100;;Air dried weight;;2 Rhinanthus minor;32892;actual measurement;germinule;2.836;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.836;;;50;;Air dried weight;;3 Rhinanthus minor;32892;actual measurement;germinule;2.92;;-4;;BIOLFLOR database;2.92;3;2.84;;;Air dried weight;;3 Rhinanthus minor;32892;actual measurement;germinule;2.841;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.841;;;96;;Air dried weight;;3 Rhinanthus minor;32892;actual measurement;germinule;1.873;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.873;;;1;summers of 1995 and 1996;Unknown;;3 Rhinanthus minor;32892;actual measurement;one-seeded generative dispersule;2.836;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.836;;;50;;Air dried weight;;2a Rhinanthus minor;32892;actual measurement;one-seeded generative dispersule;2.841;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.841;;;96;;Air dried weight;;2a Rhinanthus minor;32892;actual measurement;one-seeded generative dispersule;2.92;;-4;;BIOLFLOR database;2.92;3;2.84;;;Air dried weight;;2a Rhinanthus minor;32892;other;one-seeded generative dispersule;2.3744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhinanthus minor;32892;other;one-seeded generative dispersule;2.5124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhinanthus minor;32892;other;one-seeded generative dispersule;3.2044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhinanthus minor;32892;other;one-seeded generative dispersule;3.0508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhinanthus minor;32892;actual measurement;generative dispersule;1.510857143;7;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.510857143;1.684;1.352;100;;Air dried weight;;2 Rhinanthus minor;32892;other;germinule;3.0508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhinanthus minor;32892;other;germinule;2.5124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhinanthus minor;32892;other;germinule;3.2044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhinanthus minor;32892;other;germinule;2.3744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhodiola rosea;18168;actual measurement;one-seeded generative dispersule;.316;;-4;;BIOLFLOR database;.316;;;;;Air dried weight;;2a Rhodiola rosea;18168;actual measurement;germinule;.316;;-4;;BIOLFLOR database;.316;;;;;Air dried weight;;3 Rhododendron ferrugineum;19514;actual measurement;germinule;.03;;-4;;BIOLFLOR database;.03;.036;.025;;;Air dried weight;;3 Rhododendron ferrugineum;19514;actual measurement;one-seeded generative dispersule;.03;;-4;;BIOLFLOR database;.03;.036;.025;;;Air dried weight;;2a Rhododendron hirsutum;19516;actual measurement;one-seeded generative dispersule;.028;;-4;;BIOLFLOR database;.028;.031;.024;;;Air dried weight;;2a Rhododendron hirsutum;19516;actual measurement;germinule;.028;;-4;;BIOLFLOR database;.028;.031;.024;;;Air dried weight;;3 Rhododendron ponticum;19459;actual measurement;one-seeded generative dispersule;.0596;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0596;;;50;;Air dried weight;;2a Rhodothamnus chamaecistus;19464;actual measurement;germinule;.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Rhus coriaria;952;actual measurement;generative dispersule;11.42;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);11.42;;;1;n an replicates unknown;Air dried weight;;2 Rhus typhina;955;actual measurement;generative dispersule;9.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.2;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Rhynchospora alba;37156;actual measurement;germinule;.543;;-4;;BIOLFLOR database;.543;;;;;Air dried weight;;3 Rhynchospora alba;37156;actual measurement;one-seeded generative dispersule;.543;;-4;;BIOLFLOR database;.543;;;;;Air dried weight;;2a Rhynchospora alba;37156;other;one-seeded generative dispersule;.4556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhynchospora alba;37156;other;one-seeded generative dispersule;.4012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhynchospora alba;37156;other;one-seeded generative dispersule;.4044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhynchospora alba;37156;actual measurement (following LEDA data standards);germinule;.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.43;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Rhynchospora alba;37156;other;germinule;.4556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhynchospora alba;37156;other;germinule;.4012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhynchospora alba;37156;actual measurement (following LEDA data standards);germinule;.43;1;-2;.43;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.43;.43;.43;;preaggregated value obtained from single record;Air dried weight;;3 Rhynchospora alba;37156;other;germinule;.4044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhynchospora fusca;37574;actual measurement (following LEDA data standards);germinule;.55;1;-2;.55;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;.55;.55;;preaggregated value obtained from single record;Air dried weight;;3 Rhynchospora fusca;37574;other;germinule;.53;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.53;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rhynchospora fusca;37574;actual measurement (following LEDA data standards);germinule;.49;1;-2;.49;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;.49;.49;;preaggregated value obtained from single record;Air dried weight;;3 Rhynchospora fusca;37574;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Rhynchospora fusca;37574;actual measurement (following LEDA data standards);germinule;.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Rhynchospora fusca;37574;other;one-seeded generative dispersule;.53;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.53;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rhynchospora fusca;37574;actual measurement;one-seeded generative dispersule;.479;;-4;;BIOLFLOR database;.479;;;;;Air dried weight;;2a Rhynchospora fusca;37574;actual measurement;germinule;.479;;-4;;BIOLFLOR database;.479;;;;;Air dried weight;;3 Rhynchospora fusca;37574;actual measurement;germinule;.527;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.527;.535;.519;100;;Air dried weight;;3 Ribes alpinum;23116;actual measurement;germinule;5.555;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.555;5.668;5.442;100;;Air dried weight;;3 Ribes alpinum;23116;actual measurement;germinule;4.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.8;;;1;n an replicates unknown;Air dried weight;;3 Ribes alpinum;23116;actual measurement;multi-seeded generative dispersule;631;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);631;;;1;n an replicates unknown;Fresh weight;;2b Ribes alpinum;23116;other;germinule;4.0184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.0184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ribes aureum;23118;actual measurement;generative dispersule;362.69;;-4;;BIOLFLOR database;362.69;461.44;268.65;;;Fresh weight;;2 Ribes aureum;23118;actual measurement;germinule;2.269;;-4;;BIOLFLOR database;2.269;;;;;Air dried weight;;3 Ribes nigrum;23122;actual measurement;generative dispersule;94.16716667;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;94.16716667;104.3911111;86.37555556;45;;Fresh weight;;2 Ribes nigrum;23122;actual measurement;one-seeded generative dispersule;.864;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.864;;;100;;Air dried weight;;2a Ribes petraeum;23124;actual measurement;germinule;4.159;;-4;;BIOLFLOR database;4.159;;;;;Air dried weight;;3 Ribes rubrum;23126;actual measurement;germinule;9.162;;-4;;BIOLFLOR database;9.162;;;;;Air dried weight;;3 Ribes uva-crispa;23138;actual measurement;one-seeded generative dispersule;2.93;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.93;;;25;;Air dried weight;;2a Ribes uva-crispa;23138;other;germinule;3.3312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.3312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Robinia pseudacacia;22045;actual measurement;one-seeded generative dispersule;23.08;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23.08;;;20;;Air dried weight;;2a Robinia pseudacacia;22045;actual measurement;one-seeded generative dispersule;16.53;;-4;;BIOLFLOR database;16.53;34;7.3;;;Air dried weight;;2a Robinia pseudacacia;22045;actual measurement;germinule;16.53;;-4;;BIOLFLOR database;16.53;34;7.3;;;Air dried weight;;3 Robinia pseudacacia;22045;actual measurement;germinule;23.08;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23.08;;;20;;Air dried weight;;3 Rorippa amphibia;13138;actual measurement;germinule;5.443;;-4;;BIOLFLOR database;5.443;;;;;Air dried weight;;3 Rorippa amphibia;13138;actual measurement;one-seeded generative dispersule;5.443;;-4;;BIOLFLOR database;5.443;;;;;Air dried weight;;2a Rorippa amphibia;13138;other;one-seeded generative dispersule;.0348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rorippa amphibia;13138;other;one-seeded generative dispersule;.1412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rorippa amphibia;13138;other;germinule;.0348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa amphibia;13138;other;germinule;.1412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa austriaca;13904;actual measurement;one-seeded generative dispersule;.046;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.046;.049;.043;100;;Air dried weight;;2a Rorippa islandica;13905;actual measurement;one-seeded generative dispersule;.054;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.054;;;50;;Air dried weight;;2a Rorippa islandica;13905;actual measurement;one-seeded generative dispersule;.068;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.068;;;50;;Air dried weight;;2a Rorippa islandica;13905;other;germinule;.0604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa islandica;13905;other;germinule;.0576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa islandica;13905;other;germinule;.05412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.05412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa islandica;13905;actual measurement;one-seeded generative dispersule;.022;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.022;.025;.019;100;;Air dried weight;;2a Rorippa islandica;13905;other;germinule;.0568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa islandica;13905;other;germinule;.0688;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0688;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa islandica;13905;other;germinule;.0702;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0702;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa palustris;14626;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Rorippa palustris;14626;actual measurement (following LEDA data standards);germinule;.06;1;-2;.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;.06;.06;;preaggregated value obtained from single record;Air dried weight;;3 Rorippa palustris;14626;other;germinule;.0604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rorippa palustris;14626;actual measurement;one-seeded generative dispersule;.0475;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0475;.048;.047;100;;Air dried weight;;2a Rorippa palustris;14626;actual measurement;one-seeded generative dispersule;.065;;-4;;BIOLFLOR database;.065;.07;.06;;;Air dried weight;;2a Rorippa palustris;14626;actual measurement;germinule;.065;;-4;;BIOLFLOR database;.065;.07;.06;;;Air dried weight;;3 Rorippa palustris;14626;other;one-seeded generative dispersule;.0604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rorippa sylvestris;13910;other;germinule;.1084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1084;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry. Seeds/fruit - 2-5, fruits/plant - 40-50.;Unknown;;3 Rorippa sylvestris;13910;other;one-seeded generative dispersule;.1084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1084;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry. Seeds/fruit - 2-5, fruits/plant - 40-50.;Unknown;;2a Rorippa sylvestris;13910;actual measurement;germinule;.096;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.096;;;25;;Air dried weight;;3 Rorippa sylvestris;13910;actual measurement;germinule;.126;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.126;;;50;;Air dried weight;;3 Rorippa sylvestris;13910;actual measurement;germinule;.064;;-4;;BIOLFLOR database;.064;.077;.051;;;Air dried weight;;3 Rorippa sylvestris;13910;actual measurement;one-seeded generative dispersule;.096;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.096;;;25;;Air dried weight;;2a Rorippa sylvestris;13910;actual measurement;one-seeded generative dispersule;.126;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.126;;;50;;Air dried weight;;2a Rorippa sylvestris;13910;actual measurement;one-seeded generative dispersule;.064;;-4;;BIOLFLOR database;.064;.077;.051;;;Air dried weight;;2a Rorippa sylvestris;13910;actual measurement;one-seeded generative dispersule;.0565;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0565;.063;.05;100;;Air dried weight;;2a Rosa agrestis;29667;actual measurement;germinule;17.322;;-4;;BIOLFLOR database;17.322;;;;;Air dried weight;;3 Rosa agrestis;29667;other;germinule;20.1788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.1788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa arvensis;31158;other;germinule;11.8444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.8444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa arvensis;31158;actual measurement;generative dispersule;1275.8;;-4;;BIOLFLOR database;1275.8;;;;;Fresh weight;;2 Rosa arvensis;31158;actual measurement;germinule;18.86666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;18.86666667;21.5;16.2;1;;Air dried weight;;3 Rosa arvensis;31158;actual measurement;germinule;22.3;;-4;;BIOLFLOR database;22.3;;;;;Air dried weight;;3 Rosa arvensis;31158;actual measurement;one-seeded generative dispersule;7.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.02;;;70;;Air dried weight;;2a Rosa caesia;30273;other;unknown;15.3796;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.3796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rosa caesia;30273;other;unknown;18.9852;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);18.9852;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rosa caesia;30273;other;unknown;11.5344;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.5344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rosa caesia;30273;other;unknown;15.1448;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.1448;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rosa canina;29295;other;germinule;15.2872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.2872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa canina;29295;other;germinule;13.4416;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.4416;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa canina;29295;other;germinule;16.2612;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);16.2612;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa canina;29295;actual measurement;one-seeded generative dispersule;15.76;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15.76;;;50;;Air dried weight;;2a Rosa canina;29295;actual measurement;multi-seeded generative dispersule;2132;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2132;;;1;n an replicates unknown;Fresh weight;;2b Rosa canina;29295;actual measurement;generative dispersule;11.98;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);11.98;;;1;n an replicates unknown;Air dried weight;;2 Rosa canina;29295;actual measurement;germinule;22.627;;-4;;BIOLFLOR database;22.627;23.162;22.44;;;Air dried weight;;3 Rosa canina;29295;actual measurement;germinule;21;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);21;;;1;n an replicates unknown;Air dried weight;;3 Rosa dumalis;60797;actual measurement;germinule;15.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);15.9;;;1;n an replicates unknown;Air dried weight;;3 Rosa dumalis;60797;actual measurement;multi-seeded generative dispersule;1781;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1781;;;1;n an replicates unknown;Fresh weight;;2b Rosa gallica;30842;actual measurement;germinule;15.4085;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;15.4085;15.544;15.273;100;;Air dried weight;;3 Rosa jundzillii;31124;actual measurement;germinule;17.424;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;17.424;17.96;16.888;100;;Air dried weight;;3 Rosa jundzillii;31124;actual measurement;germinule;11.116;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;11.116;11.58;10.76153846;65;;Air dried weight;;3 Rosa majalis;31125;actual measurement;germinule;12.188;;-4;;BIOLFLOR database;12.188;;;;;Air dried weight;;3 Rosa micrantha;30571;actual measurement;generative dispersule;13.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);13.6;;;1;n and replicates unknown;Air dried weight;;2 Rosa micrantha;30571;actual measurement;generative dispersule;524.5446667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;524.5446667;538.643;507.203;100;;Fresh weight;;2 Rosa micrantha;30571;actual measurement;germinule;16.61214286;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;16.61214286;18.63714286;14.58714286;70;;Air dried weight;;3 Rosa micrantha;30571;other;germinule;12.5156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.5156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa mollis;31128;other;germinule;13.4696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);13.4696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa mollis;31128;actual measurement;germinule;16.469;;-4;;BIOLFLOR database;16.469;;;;;Air dried weight;;3 Rosa multiflora;29985;actual measurement;germinule;5.48;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.48;6.7;4.7;1;;Air dried weight;;3 Rosa pendulina;30578;actual measurement;germinule;20.402;;-4;;BIOLFLOR database;20.402;;;;;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement;germinule;15.84;;-4;;BIOLFLOR database;15.84;;;;;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement;one-seeded generative dispersule;15.836;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15.836;;;100;;Air dried weight;;2a Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;16.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.79;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;19.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19.32;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;17.91;10;-2;17.91;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.17;23.52;15.3;;preaggregated value obtained from single record;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;17.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.41;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;23.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23.52;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;19.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19.11;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;15.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.45;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;18.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.41;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;15.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.3;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;19.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa pimpinellifolia;29288;actual measurement (following LEDA data standards);germinule;17.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.15;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rosa rubiginosa;29291;other;germinule;19.5864;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);19.5864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa rubiginosa;29291;other;germinule;11.2928;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.2928;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa rubiginosa;29291;actual measurement;germinule;15.161;;-4;;BIOLFLOR database;15.161;15.607;14.715;;;Air dried weight;;3 Rosa rugosa;30857;actual measurement;one-seeded generative dispersule;5.426;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.426;;;50;;Air dried weight;;2a Rosa sherardii;31137;other;unknown;12.062;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);12.062;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rosa stylosa;30546;other;unknown;7.6276;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.6276;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rosa subcollina;30254;actual measurement;germinule;18.5;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;18.5;22.2;15.5;1;;Air dried weight;;3 Rosa tomentosa;29878;actual measurement;germinule;9.438;;-4;;BIOLFLOR database;9.438;;;;;Air dried weight;;3 Rosa tomentosa;29878;other;germinule;9.966;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);9.966;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rosa villosa;29630;actual measurement;germinule;8.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);8.5;;;1;n an replicates unknown;Air dried weight;;3 Rosa villosa;29630;actual measurement;multi-seeded generative dispersule;1300;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1300;;;1;n an replicates unknown;Fresh weight;;2b Rosmarinus officinalis;25038;actual measurement;one-seeded generative dispersule;1.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.3;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Rosmarinus officinalis;25038;actual measurement;germinule;1;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;1;;;1;n and replicates unknown;Air dried weight;;3 Rubia peregrina;31737;actual measurement;generative dispersule;17.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);17.5;;;1;n and replicates unknown;Air dried weight;;2 Rubia peregrina;31737;other;germinule;22.0748;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);22.0748;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rubia peregrina;31737;other;germinule;20.3024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.3024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rubus anisacanthos;59135;other;unknown;2.3028;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3028;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus bertramii;30532;other;unknown;2.7864;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7864;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus caesius;30108;other;germinule;3.6432;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rubus caesius;30108;other;germinule;3.2212;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2212;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rubus caesius;30108;other;germinule;4.8024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.8024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rubus caesius;30108;other;germinule;3.6264706;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6264706;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rubus caesius;30108;other;germinule;3.6768;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rubus caesius;30108;actual measurement;germinule;3.607;;-4;;BIOLFLOR database;3.607;4.03;3.184;;;Air dried weight;;3 Rubus cardiophyllus;29240;other;unknown;3.064;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.064;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus chamaemorus;30071;actual measurement;one-seeded generative dispersule;7.53;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.53;;;50;;Air dried weight;;2a Rubus chamaemorus;30071;actual measurement;one-seeded generative dispersule;9.94;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.94;;;50;;Air dried weight;;2a Rubus chamaemorus;30071;unknown;generative dispersule;7.6;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];7.6;;;0;;Air dried weight;Johansson, A.(1997): Characterization of seed oils of wild, edible Finnish berries [204];2 Rubus dasyphyllus;30035;other;unknown;2.7164;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus flexuosus;30057;actual measurement;germinule;5.514;;-4;;BIOLFLOR database;5.514;;;;;Air dried weight;;3 Rubus fruticosus ag. L.;58698;actual measurement;generative dispersule;2.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.17;;;1;n and replicates unknown;Air dried weight;;2 Rubus fruticosus ag. L.;58698;actual measurement;one-seeded generative dispersule;2.49;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.49;;;20;;Air dried weight;;2a Rubus fruticosus ag. L.;58698;actual measurement;one-seeded generative dispersule;2.5;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.5;;;50;;Air dried weight;;2a Rubus grabowskii;59180;actual measurement;germinule;3.691;;-4;;BIOLFLOR database;3.691;4.052;3.33;;;Air dried weight;;3 Rubus gratus;30810;other;unknown;3.2132;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2132;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus idaeus;29604;actual measurement (following LEDA data standards);germinule;1.26;1;-2;1.26;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.26;1.26;1.26;;preaggregated value obtained from single record;Air dried weight;;3 Rubus idaeus;29604;actual measurement (following LEDA data standards);germinule;1.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.26;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Rubus idaeus;29604;other;germinule;2.1156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rubus idaeus;29604;actual measurement;germinule;1.45;;-4;;BIOLFLOR database;1.45;1.749;1.15;;;Air dried weight;;3 Rubus idaeus;29604;actual measurement;germinule;4.9175;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.9175;6.345;3.49;100;;Air dried weight;;3 Rubus idaeus;29604;actual measurement;germinule;1.8;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.8;;;1;n an replicates unknown;Air dried weight;;3 Rubus idaeus;29604;actual measurement;one-seeded generative dispersule;1.154;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.154;;;97;;Air dried weight;;2a Rubus idaeus;29604;actual measurement;one-seeded generative dispersule;2.38;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.38;;;100;;Air dried weight;;2a Rubus idaeus;29604;actual measurement;multi-seeded generative dispersule;845;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);845;;;1;n an replicates unknown;Fresh weight;;2b Rubus infestus;30791;actual measurement;germinule;3.989;;-4;;BIOLFLOR database;3.989;;;;;Air dried weight;;3 Rubus lindleianus;29214;other;unknown;2.622;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.622;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus nemoralis;29191;other;unknown;2.6732;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus odoratus;31060;actual measurement;germinule;.99;;-4;;BIOLFLOR database;.99;;;;;Air dried weight;;3 Rubus pedemontanus;59229;actual measurement;germinule;2.415;;-4;;BIOLFLOR database;2.415;;;;;Air dried weight;;3 Rubus plicatus;31066;actual measurement;germinule;3.738;;-4;;BIOLFLOR database;3.738;;;;;Air dried weight;;3 Rubus polyanthemus;30474;actual measurement;germinule;3.803;;-4;;BIOLFLOR database;3.803;;;;;Air dried weight;;3 Rubus pyramidalis;30180;actual measurement;germinule;3.948;;-4;;BIOLFLOR database;3.948;;;;;Air dried weight;;3 Rubus radula;29572;other;unknown;1.846;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.846;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus saxatilis;29888;actual measurement;germinule;8.766;;-4;;BIOLFLOR database;8.766;9.442;8.09;;;Air dried weight;;3 Rubus saxatilis;29888;actual measurement;generative dispersule;602.6;;-4;;BIOLFLOR database;602.6;;;;;Fresh weight;;2 Rubus saxatilis;29888;actual measurement;germinule;10.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);10.3;;;1;n an replicates unknown;Air dried weight;;3 Rubus saxatilis;29888;actual measurement;multi-seeded generative dispersule;391;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);391;;;1;n an replicates unknown;Fresh weight;;2b Rubus saxatilis;29888;actual measurement;one-seeded generative dispersule;8.09;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.09;;;49;;Air dried weight;;2a Rubus saxatilis;29888;actual measurement;one-seeded generative dispersule;10.31;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10.31;;;50;;Air dried weight;;2a Rubus sprengelii;30484;other;unknown;1.4514;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4514;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus ulmifolius;29561;other;unknown;2.5804;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.5804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rubus vestitus;29143;other;unknown;2.2356;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rudbeckia laciniata;9935;actual measurement;one-seeded generative dispersule;2.831;;-4;;BIOLFLOR database;2.831;;;;;Air dried weight;;2a Rudbeckia laciniata;9935;actual measurement;one-seeded generative dispersule;2.824;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.824;2.828;2.82;100;;Air dried weight;;2a Rudbeckia laciniata;9935;actual measurement;germinule;2.831;;-4;;BIOLFLOR database;2.831;;;;;Air dried weight;;3 Rumex acetosa;27593;actual measurement;germinule;.742;;-4;;BIOLFLOR database;.742;1.1;.5;;;Air dried weight;;3 Rumex acetosa;27593;actual measurement;germinule;1.5;;-4;;BIOLFLOR database;1.5;;;;;Air dried weight;;3 Rumex acetosa;27593;actual measurement;germinule;.52;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.52;;;1;summers of 1995 and 1996;Unknown;;3 Rumex acetosa;27593;actual measurement;germinule;.908;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.908;;;50;;Air dried weight;;3 Rumex acetosa;27593;actual measurement;germinule;.737;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.737;;;100;;Air dried weight;;3 Rumex acetosa;27593;actual measurement;germinule;.9;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;1.1;.7;1;n and replicates unknown;Air dried weight;;3 Rumex acetosa;27593;actual measurement;generative dispersule;.32;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.32;;;1;n an replicates unknown;Air dried weight;;2 Rumex acetosa;27593;actual measurement;generative dispersule;.8634;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.8634;.935;.763;100;;Air dried weight;;2 Rumex acetosa;27593;actual measurement;one-seeded generative dispersule;1.5;;-4;;BIOLFLOR database;1.5;;;;;Air dried weight;;2a Rumex acetosa;27593;actual measurement;one-seeded generative dispersule;.737;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.737;;;100;;Air dried weight;;2a Rumex acetosa;27593;actual measurement;one-seeded generative dispersule;.908;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.908;;;50;;Air dried weight;;2a Rumex acetosa;27593;unknown;generative dispersule;1.286;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];1.286;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Rumex acetosa;27593;actual measurement (following LEDA data standards);germinule;.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.95;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Rumex acetosa;27593;actual measurement (following LEDA data standards);germinule;1.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.07;;;10;Weight without appendages. No. of seeds per individual: 10;Air dried weight;;3 Rumex acetosa;27593;actual measurement (following LEDA data standards);one-seeded generative dispersule;.74;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.74;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Rumex acetosa;27593;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.68;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.68;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Rumex acetosa;27593;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.19;4;-2;1.19;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.2;1.68;.74;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Rumex acetosa;27593;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.13;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Rumex acetosa;27593;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.25;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Rumex acetosa;27593;actual measurement (following LEDA data standards);germinule;.82;4;-2;.82;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.76;1.07;.33;;Preaggregated data obtained from single record. Weight without appendages. No. of seeds per individual: 10;;;3 Rumex acetosa;27593;actual measurement (following LEDA data standards);germinule;.87;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.87;;;10;Weight without appendages. No. of seeds per individual: 10;Air dried weight;;3 Rumex acetosa;27593;actual measurement (following LEDA data standards);germinule;.77;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.77;;;10;Weight without appendages. No. of seeds per individual: 10;Air dried weight;;3 Rumex acetosa;27593;actual measurement (following LEDA data standards);germinule;.95;1;-2;.95;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.95;.95;.95;;preaggregated value obtained from single record;Air dried weight;;3 Rumex acetosa;27593;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.33;;;10;Weight without appendages. No. of seeds per individual: 10;Air dried weight;;3 Rumex acetosella;27601;other;germinule;.4388;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4388;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex acetosella;27601;actual measurement;generative dispersule;.3715;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3715;.388;.355;100;;Air dried weight;;2 Rumex acetosella;27601;actual measurement;one-seeded generative dispersule;.399;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.399;;;100;;Air dried weight;;2a Rumex acetosella;27601;actual measurement;one-seeded generative dispersule;.465;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.465;;;100;;Air dried weight;;2a Rumex acetosella;27601;actual measurement;one-seeded generative dispersule;.118;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.118;;;50;;Air dried weight;;2a Rumex acetosella;27601;actual measurement;germinule;.36;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.36;;;30;collected between 1996-1999;Air dried weight;;3 Rumex acetosella;27601;actual measurement;germinule;.36;;-4;;BIOLFLOR database;.36;.433;.3;;;Air dried weight;;3 Rumex acetosella;27601;actual measurement;germinule;.364;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.364;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Rumex acetosella;27601;actual measurement;germinule;.36433;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.36433;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Rumex alpestris;44762;actual measurement;one-seeded generative dispersule;4.333;;-4;;BIOLFLOR database;4.333;;;;;Air dried weight;;2a Rumex alpestris;44762;actual measurement;germinule;1.662;;-4;;BIOLFLOR database;1.662;;;;;Air dried weight;;3 Rumex alpestris;44762;actual measurement;germinule;4.333;;-4;;BIOLFLOR database;4.333;;;;;Air dried weight;;3 Rumex aquaticus;27607;actual measurement;germinule;2.167;;-4;;BIOLFLOR database;2.167;;;;;Air dried weight;;3 Rumex aquaticus;27607;other;germinule;1.94856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.94856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex aquaticus;27607;other;germinule;2.28092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.28092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.55;10;-2;.55;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.56;.63;.49;;preaggregated value obtained from single record;Air dried weight;;3 Rumex conglomeratus;27623;other;germinule;1.5996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.54;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.58;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.58;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.56;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.59;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement (following LEDA data standards);germinule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement;germinule;.989;;-4;;BIOLFLOR database;.989;;;;;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement;germinule;1.422;;-4;;BIOLFLOR database;1.422;;;;;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement;germinule;1.292;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.292;;;50;;Air dried weight;;3 Rumex conglomeratus;27623;actual measurement;one-seeded generative dispersule;1.422;;-4;;BIOLFLOR database;1.422;;;;;Air dried weight;;2a Rumex conglomeratus;27623;actual measurement;one-seeded generative dispersule;1.3355;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.3355;1.339;1.332;100;;Air dried weight;;2a Rumex conglomeratus;27623;actual measurement;one-seeded generative dispersule;1.292;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.292;;;50;;Air dried weight;;2a Rumex conglomeratus;27623;other;one-seeded generative dispersule;1.5996;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rumex crispus;27506;actual measurement;generative dispersule;3.6965;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.6965;3.703;3.69;100;with wings?;Air dried weight;;2 Rumex crispus;27506;actual measurement;generative dispersule;2.6172;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.6172;2.787;2.477;100;;Air dried weight;;2 Rumex crispus;27506;actual measurement;germinule;2.926;;-4;;BIOLFLOR database;2.926;3.186;2.768;;;Air dried weight;;3 Rumex crispus;27506;actual measurement;germinule;1.332;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.332;;;100;;Air dried weight;;3 Rumex crispus;27506;actual measurement;germinule;1.44;;-4;;BIOLFLOR database;1.44;1.529;1.33;;;Air dried weight;;3 Rumex crispus;27506;actual measurement;one-seeded generative dispersule;2.926;;-4;;BIOLFLOR database;2.926;3.186;2.768;;;Air dried weight;;2a Rumex crispus;27506;actual measurement;one-seeded generative dispersule;1.332;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.332;;;100;;Air dried weight;;2a Rumex hydrolapathum;27528;actual measurement;one-seeded generative dispersule;4.421;;-4;;BIOLFLOR database;4.421;;;;;Air dried weight;;2a Rumex hydrolapathum;27528;actual measurement;one-seeded generative dispersule;2.61;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.61;;;100;;Air dried weight;;2a Rumex hydrolapathum;27528;actual measurement;germinule;4.421;;-4;;BIOLFLOR database;4.421;;;;;Air dried weight;;3 Rumex hydrolapathum;27528;actual measurement;germinule;2.61;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.61;;;100;;Air dried weight;;3 Rumex hydrolapathum;27528;actual measurement;germinule;3.112;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.112;;;50;;Air dried weight;;3 Rumex hydrolapathum;27528;actual measurement;germinule;2.499;;-4;;BIOLFLOR database;2.499;2.61;2.387;;;Air dried weight;;3 Rumex hydrolapathum;27528;other;one-seeded generative dispersule;3.8712;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rumex hydrolapathum;27528;actual measurement;generative dispersule;6.654;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;6.654;6.712;6.596;100;;Air dried weight;;2 Rumex hydrolapathum;27528;actual measurement;generative dispersule;2.8145;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.8145;2.824;2.805;100;;Air dried weight;;2 Rumex hydrolapathum;27528;actual measurement;one-seeded generative dispersule;3.112;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.112;;;50;;Air dried weight;;2a Rumex hydrolapathum;27528;actual measurement (following LEDA data standards);germinule;3.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.16;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Rumex hydrolapathum;27528;other;germinule;3.8712;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.8712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex hydrolapathum;27528;actual measurement (following LEDA data standards);germinule;3.16;1;-2;3.16;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.16;3.16;3.16;;preaggregated value obtained from single record;Air dried weight;;3 Rumex longifolius;27534;other;germinule;1.6208;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex longifolius;27534;actual measurement;generative dispersule;4.5695;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.5695;4.785;4.354;100;with wings?;Air dried weight;;2 Rumex maritimus;27537;actual measurement;generative dispersule;.4495;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4495;.45;.449;100;;Air dried weight;;2 Rumex maritimus;27537;actual measurement;one-seeded generative dispersule;.187;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.187;;;230;;Air dried weight;;2a Rumex maritimus;27537;actual measurement;one-seeded generative dispersule;.26;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.26;;;50;;Air dried weight;;2a Rumex maritimus;27537;actual measurement (following LEDA data standards);germinule;.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Rumex maritimus;27537;actual measurement (following LEDA data standards);germinule;.2;1;-2;.2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;.2;.2;;preaggregated value obtained from single record;Air dried weight;;3 Rumex maritimus;27537;other;germinule;.1504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex maritimus;27537;actual measurement (following LEDA data standards);germinule;.2;1;-2;.2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;.2;.2;;preaggregated value obtained from single record;Air dried weight;;3 Rumex maritimus;27537;actual measurement (following LEDA data standards);germinule;.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.2;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Rumex obtusifolius;27542;actual measurement (following LEDA data standards);germinule;1.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Rumex obtusifolius;27542;actual measurement (following LEDA data standards);germinule;1.01;1;-2;1.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.01;1.01;1.01;;preaggregated value obtained from single record;Air dried weight;;3 Rumex obtusifolius;27542;actual measurement (following LEDA data standards);germinule;1.28;1;-2;1.28;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;1.28;1.28;;preaggregated value obtained from single record;Air dried weight;;3 Rumex obtusifolius;27542;actual measurement (following LEDA data standards);germinule;1.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Rumex obtusifolius;27542;actual measurement;germinule;1.254;;-4;;BIOLFLOR database;1.254;1.454;1.1;;;Air dried weight;;3 Rumex obtusifolius;27542;actual measurement;one-seeded generative dispersule;1.096;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.096;;;100;;Air dried weight;;2a Rumex palustris;27549;actual measurement;germinule;.117;;-4;;BIOLFLOR database;.117;;;;;Air dried weight;;3 Rumex palustris;27549;actual measurement;one-seeded generative dispersule;1.1695;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.1695;1.233;1.106;100;;Air dried weight;;2a Rumex palustris;27549;other;germinule;.5676;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex patientia;27551;actual measurement;germinule;1.9;;-4;;BIOLFLOR database;1.9;3;.8;;;Air dried weight;;3 Rumex patientia;27551;actual measurement;germinule;1.9;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;3;.8;1;n and replicates unknown;Air dried weight;;3 Rumex pulcher;27560;actual measurement;one-seeded generative dispersule;.978378378;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.978378378;.978378378;.978378378;74;;Air dried weight;;2a Rumex pulcher;27560;actual measurement;one-seeded generative dispersule;3.178;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.178;3.21;3.146;74;;Air dried weight;;2a Rumex pulcher;27560;other;germinule;2.6536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex rupestris;27449;other;unknown;1.5048;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5048;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;4 Rumex rupestris;27449;other;unknown;1.9008;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9008;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rumex rupestris;27449;other;unknown;1.766;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.766;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rumex rupestris;27449;other;unknown;1.1012;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1012;;;1000;1000 seed weight, unknown number of individuals, Seeds dry.;Air dried weight;;4 Rumex rupestris;27449;other;unknown;3.338;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.338;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rumex rupestris;27449;other;unknown;2.046;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.046;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rumex rupestris;27449;other;unknown;1.7668;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Rumex rupestris;27449;other;unknown;1.076;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.076;;;1000;1000 seed weight, number of individuals, Seeds dry. Population studied annually since 1994. No hybrids occur in this area.;Air dried weight;;4 Rumex sanguineus;27450;other;germinule;.7808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Rumex sanguineus;27450;actual measurement;one-seeded generative dispersule;1.419;;-4;;BIOLFLOR database;1.419;;;;;Air dried weight;;2a Rumex sanguineus;27450;actual measurement;one-seeded generative dispersule;1.1555;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.1555;1.17;1.141;100;;Air dried weight;;2a Rumex sanguineus;27450;actual measurement;germinule;.92;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.92;;;50;;Air dried weight;;3 Rumex sanguineus;27450;actual measurement;germinule;1.126;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.126;;;100;;Air dried weight;;3 Rumex sanguineus;27450;actual measurement;germinule;1.419;;-4;;BIOLFLOR database;1.419;;;;;Air dried weight;;3 Rumex sanguineus;27450;actual measurement;germinule;1.035;;-4;;BIOLFLOR database;1.035;1.13;.902;;;Air dried weight;;3 Rumex sanguineus;27450;actual measurement;one-seeded generative dispersule;1.126;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.126;;;100;;Air dried weight;;2a Rumex sanguineus;27450;actual measurement;one-seeded generative dispersule;.92;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.92;;;50;;Air dried weight;;2a Rumex sanguineus;27450;other;one-seeded generative dispersule;.7808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Rumex scutatus;27451;actual measurement;one-seeded generative dispersule;2.04;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.04;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Rumex scutatus;27451;actual measurement;germinule;1.12;;-4;;BIOLFLOR database;1.12;1.183;1.038;;;Air dried weight;;3 Rumex stenophyllus;27453;actual measurement;germinule;.74;;-4;;BIOLFLOR database;.74;.876;.604;;;Air dried weight;;3 Rumex stenophyllus;27453;actual measurement;germinule;.966;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.966;.99;.942;100;;Air dried weight;;3 Rumex thyrsiflorus;27457;actual measurement;germinule;.521;;-4;;BIOLFLOR database;.521;;;;;Air dried weight;;3 Rumex thyrsiflorus;27457;actual measurement;generative dispersule;.8175;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.8175;.832;.803;100;;Air dried weight;;2 Rumex thyrsiflorus;27457;actual measurement (following LEDA data standards);germinule;.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Rumex thyrsiflorus;27457;actual measurement (following LEDA data standards);germinule;.6;1;-2;.6;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;.6;.6;;preaggregated value obtained from single record;Air dried weight;;3 Ruta graveolens;31663;actual measurement;germinule;1.982;;-4;;BIOLFLOR database;1.982;2;1.963;;;Air dried weight;;3 Ruta graveolens;31663;actual measurement;germinule;2;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;2;;;1;n and replicates unknown;Air dried weight;;3 Ruta graveolens;31663;actual measurement;one-seeded generative dispersule;1.982;;-4;;BIOLFLOR database;1.982;2;1.963;;;Air dried weight;;2a Ruta graveolens;31663;actual measurement;multi-seeded generative dispersule;1.97;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.97;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Sagina apetala;17028;other;one-seeded generative dispersule;.02;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sagina apetala;17028;actual measurement;one-seeded generative dispersule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;2a Sagina apetala;17028;actual measurement;one-seeded generative dispersule;.018;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.018;;;50;;Air dried weight;;2a Sagina apetala;17028;actual measurement;germinule;.00889;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.00889;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Sagina apetala;17028;actual measurement;germinule;.009;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.009;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Sagina apetala;17028;actual measurement;one-seeded generative dispersule;.001;;-4;;BIOLFLOR database;.001;;;;;Air dried weight;;2a Sagina apetala;17028;actual measurement;one-seeded generative dispersule;.0095;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0095;.01;.009;100;;Air dried weight;;2a Sagina apetala;17028;actual measurement;germinule;.01;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.01;;;30;collected between 1996-1999;Air dried weight;;3 Sagina apetala;17028;actual measurement;germinule;.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.02;;;100;;Air dried weight;;3 Sagina apetala;17028;actual measurement;germinule;.018;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.018;;;50;;Air dried weight;;3 Sagina apetala;17028;actual measurement;germinule;.001;;-4;;BIOLFLOR database;.001;;;;;Air dried weight;;3 Sagina apetala;17028;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sagina apetala;17028;other;germinule;.02;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina apetala;17028;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Sagina maritima;17033;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sagina maritima;17033;other;germinule;.02756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina maritima;17033;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Sagina maritima;17033;other;germinule;.1332;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1332;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina maritima;17033;actual measurement;germinule;.01;;-4;;BIOLFLOR database;.01;;;;;Air dried weight;;3 Sagina maritima;17033;actual measurement;one-seeded generative dispersule;.01;;-4;;BIOLFLOR database;.01;;;;;Air dried weight;;2a Sagina maritima;17033;other;one-seeded generative dispersule;.1332;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1332;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sagina maritima;17033;other;one-seeded generative dispersule;.02756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sagina nivalis;15578;other;unknown;.03812;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.03812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sagina nivalis;15578;other;unknown;.036;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.036;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sagina nodosa;16644;actual measurement (following LEDA data standards);germinule;.04;1;-2;.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;.04;.04;;preaggregated value obtained from single record;Air dried weight;;3 Sagina nodosa;16644;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sagina nodosa;16644;other;germinule;.0312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina nodosa;16644;other;one-seeded generative dispersule;.0312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sagina nodosa;16644;actual measurement;one-seeded generative dispersule;.04;;-4;;BIOLFLOR database;.04;;;;;Air dried weight;;2a Sagina nodosa;16644;actual measurement;one-seeded generative dispersule;.0105;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0105;.011;.01;100;;Air dried weight;;2a Sagina nodosa;16644;actual measurement;germinule;.04;;-4;;BIOLFLOR database;.04;;;;;Air dried weight;;3 Sagina procumbens;16230;actual measurement;germinule;.018;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.018;;;100;;Air dried weight;;3 Sagina procumbens;16230;actual measurement;germinule;.019;;-4;;BIOLFLOR database;.019;.02;.018;;;Air dried weight;;3 Sagina procumbens;16230;actual measurement;one-seeded generative dispersule;.018;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.018;;;100;;Air dried weight;;2a Sagina procumbens;16230;actual measurement;one-seeded generative dispersule;.019;;-4;;BIOLFLOR database;.019;.02;.018;;;Air dried weight;;2a Sagina procumbens;16230;actual measurement;generative dispersule;.007333333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.007333333;.008;.006666667;150;;Air dried weight;;2 Sagina procumbens;16230;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sagina procumbens;16230;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Sagina procumbens;16230;actual measurement (following LEDA data standards);germinule;.01;1;-2;.01;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;.01;.01;;preaggregated value obtained from single record;Air dried weight;;3 Sagina procumbens;16230;actual measurement (following LEDA data standards);germinule;.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.01;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sagina saginoides;16651;other;germinule;.02824;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02824;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina saginoides;16651;other;germinule;.02516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina saginoides;16651;other;germinule;.0244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina saginoides;16651;other;germinule;.024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina saginoides;16651;other;germinule;.02384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.02384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina saginoides;16651;actual measurement;one-seeded generative dispersule;.2875;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2875;.294;.281;100;;Air dried weight;;2a Sagina subulata;16231;actual measurement;unknown;.02;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.02;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Sagina subulata;16231;other;germinule;.042;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.042;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina subulata;16231;other;germinule;.0186667;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0186667;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagina subulata;16231;other;germinule;.0196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagittaria sagittifolia;35605;other;germinule;1.668;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.668;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sagittaria sagittifolia;35605;actual measurement;one-seeded generative dispersule;1.924;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.924;;;76;;Air dried weight;;2a Sagittaria sagittifolia;35605;actual measurement;one-seeded generative dispersule;1.0815;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.0815;1.084;1.079;100;;Air dried weight;;2a Salicornia dolichostachya;18004;other;unknown;1.3753333;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3753333;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salicornia europaea;18012;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Salicornia europaea;18012;other;germinule;.9504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salicornia europaea;18012;other;germinule;.8632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salicornia europaea;18012;actual measurement (following LEDA data standards);germinule;.18;1;-2;.18;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;.18;.18;;preaggregated value obtained from single record;Air dried weight;;3 Salicornia obscura;18019;other;unknown;5.6392;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.6392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salicornia pusilla;18025;other;unknown;1.3492;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salicornia ramosissima;18027;other;unknown;.23932;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.23932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salicornia stricta;18033;actual measurement (following LEDA data standards);germinule;.29;1;-2;.29;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;.29;.29;;preaggregated value obtained from single record;Air dried weight;;3 Salicornia stricta;18033;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Salix alba;32638;actual measurement;germinule;.12;17;1;.12;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];;;;100;;Oven/chamber dried weight;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];3 Salix appendiculata;32649;actual measurement;one-seeded generative dispersule;.138;;-4;;BIOLFLOR database;.138;;;;;Air dried weight;;2a Salix appendiculata;32649;actual measurement;germinule;.138;;-4;;BIOLFLOR database;.138;;;;;Air dried weight;;3 Salix caprea;32596;actual measurement;germinule;.109;;-4;;BIOLFLOR database;.109;;;;;Air dried weight;;3 Salix caprea;32596;actual measurement;germinule;.0846;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0846;;;50;;Air dried weight;;3 Salix caprea;32596;actual measurement;one-seeded generative dispersule;.109;;-4;;BIOLFLOR database;.109;;;;;Air dried weight;;2a Salix caprea;32596;actual measurement;one-seeded generative dispersule;.0846;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0846;;;50;;Air dried weight;;2a Salix cinerea;32565;actual measurement;one-seeded generative dispersule;.094;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.094;;;50;;Air dried weight;;2a Salix cinerea;32565;actual measurement;generative dispersule;.04;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.04;.04;.04;1;;Air dried weight;;2 Salix daphnoides;32605;actual measurement;germinule;.14;22;1;.14;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];;;;100;;Oven/chamber dried weight;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];3 Salix elaeagnos;32607;actual measurement;germinule;.25;22;1;;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];.25;;;100;;Oven/chamber dried weight;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];3 Salix fragilis;32570;actual measurement;germinule;.117;;-4;;BIOLFLOR database;.117;;;;;Air dried weight;;3 Salix fragilis;32570;actual measurement;one-seeded generative dispersule;.117;;-4;;BIOLFLOR database;.117;;;;;Air dried weight;;2a Salix glauca;32573;actual measurement;generative dispersule;.2175;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2175;.236;.199;100;with pappus;Air dried weight;;2 Salix glauca;32573;actual measurement (following LEDA data standards);germinule;.24;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.24;;;10;No. of seeds per individual: 10;Air dried weight;;3 Salix glauca;32573;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;10;No. of seeds per individual: 10;Air dried weight;;3 Salix glauca;32573;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;2;-2;.39;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.39;.4;.37;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Salix glauca;32573;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix glauca;32573;actual measurement (following LEDA data standards);one-seeded generative dispersule;.37;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.37;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix glauca;32573;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.4;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix glauca;32573;actual measurement (following LEDA data standards);one-seeded generative dispersule;.37;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.37;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix glauca;32573;actual measurement (following LEDA data standards);germinule;.26;2;-2;.26;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.26;.27;.24;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Salix hastata;32577;actual measurement;germinule;.175;;-4;;BIOLFLOR database;.175;;;;;Air dried weight;;3 Salix hastata;32577;actual measurement;one-seeded generative dispersule;.175;;-4;;BIOLFLOR database;.175;;;;;Air dried weight;;2a Salix herbacea;32589;actual measurement;one-seeded generative dispersule;.238;;-4;;BIOLFLOR database;.238;;;;;Air dried weight;;2a Salix herbacea;32589;actual measurement;germinule;.238;;-4;;BIOLFLOR database;.238;;;;;Air dried weight;;3 Salix herbacea;32589;unknown;generative dispersule;.145;0;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.145;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Salix herbacea;32589;actual measurement;generative dispersule;.183;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.183;.186;.18;50;with pappus;Air dried weight;;2 Salix herbacea;32589;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;10;No. of seeds per individual: 8-10;Air dried weight;;3 Salix herbacea;32589;actual measurement (following LEDA data standards);germinule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;No. of seeds per individual: 8-10;Air dried weight;;3 Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.26;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.26;;;10;Weight including appendages. No. of seeds per individual: 8-10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.23;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.23;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;Weight including appendages. No. of seeds per individual: 8-10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.22;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.22;;;10;Weight including appendages. No. of seeds per individual: 8-10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.26;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.26;;;10;Weight including appendages. No. of seeds per individual: 8-10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;10;Weight including appendages. No. of seeds per individual: 8-10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.23;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.23;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.17;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;;;10;Weight including appendages. No. of seeds per individual: 8-10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.22;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.22;;;10;Weight including appendages. No. of seeds per individual: 8-10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.24;2;-2;.24;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.24;.25;.23;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.24;4;-2;.24;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.23;.26;.17;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 8-10;;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);one-seeded generative dispersule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;10;Weight including appendages. No. of seeds per individual: 8-10;Air dried weight;;2a Salix herbacea;32589;actual measurement (following LEDA data standards);germinule;.14;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;;;10;No. of seeds per individual: 10;Air dried weight;;3 Salix herbacea;32589;actual measurement (following LEDA data standards);germinule;.15;2;-2;.15;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.15;.16;.14;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Salix herbacea;32589;actual measurement (following LEDA data standards);germinule;.13;4;-2;.13;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;.17;.09;;Preaggregated data obtained from single record. No. of seeds per individual: 8-10;;;3 Salix herbacea;32589;actual measurement (following LEDA data standards);germinule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;No. of seeds per individual: 10;Air dried weight;;3 Salix herbacea;32589;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;;;10;No. of seeds per individual: 8-10;Air dried weight;;3 Salix herbacea;32589;actual measurement (following LEDA data standards);germinule;.11;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;;;10;No. of seeds per individual: 8-10;Air dried weight;;3 Salix lapponum;32550;actual measurement;generative dispersule;.494;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.494;.526;.462;50;with pappus;Air dried weight;;2 Salix myrsinites;32555;actual measurement;generative dispersule;.5025;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.5025;.5075;.4975;40;with pappus;Air dried weight;;2 Salix myrsinites;32555;actual measurement (following LEDA data standards);germinule;.24;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.24;;;10;No. of seeds per individual: 10;Air dried weight;;3 Salix myrsinites;32555;actual measurement (following LEDA data standards);one-seeded generative dispersule;.49;1;-2;.49;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.49;.49;.49;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Salix myrsinites;32555;actual measurement (following LEDA data standards);one-seeded generative dispersule;.49;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.49;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix myrsinites;32555;actual measurement (following LEDA data standards);one-seeded generative dispersule;.49;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.49;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix myrsinites;32555;actual measurement (following LEDA data standards);germinule;.24;1;-2;.24;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.24;.24;.24;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Salix pentandra;32567;actual measurement;generative dispersule;.096;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.096;.11;.08;1;;Air dried weight;;2 Salix purpurea;32526;actual measurement;germinule;.09;16;1;;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];.09;;;100;;Oven/chamber dried weight;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];3 Salix repens;32533;actual measurement;generative dispersule;.044;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.044;.05;.03;1;;Air dried weight;;2 Salix reticulata;32535;actual measurement;generative dispersule;.1225;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1225;.1275;.1175;40;with pappus;Air dried weight;;2 Salix reticulata;32535;actual measurement (following LEDA data standards);germinule;.13;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;;;10;No. of seeds per individual: 10;Air dried weight;;3 Salix reticulata;32535;actual measurement (following LEDA data standards);germinule;.1;2;-2;.1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;.13;.07;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Salix reticulata;32535;actual measurement (following LEDA data standards);germinule;.07;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;;;10;No. of seeds per individual: 10;Air dried weight;;3 Salix reticulata;32535;actual measurement (following LEDA data standards);one-seeded generative dispersule;.19;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix reticulata;32535;actual measurement (following LEDA data standards);one-seeded generative dispersule;.19;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix reticulata;32535;actual measurement (following LEDA data standards);one-seeded generative dispersule;.19;2;-2;.19;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;.19;.19;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Salix reticulata;32535;actual measurement (following LEDA data standards);one-seeded generative dispersule;.19;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix reticulata;32535;actual measurement (following LEDA data standards);one-seeded generative dispersule;.19;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Salix triandra;32478;actual measurement;germinule;.02;16;1;;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];.02;;;300;;Oven/chamber dried weight;Karrenberg, Sophie(2003): Phenotypic trade-offs in the sexual reproduction of salicaceae from flood plains [5];3 Salsola kali;18036;actual measurement;generative dispersule;2.3;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.3;2.8;2;1;;Air dried weight;;2 Salsola kali;18036;actual measurement (following LEDA data standards);germinule;2.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.78;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Salsola kali;18036;other;germinule;15.4504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.4504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salsola kali;18036;actual measurement (following LEDA data standards);germinule;2.78;1;-2;2.78;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.78;2.78;2.78;;preaggregated value obtained from single record;Air dried weight;;3 Salvia aethiopis;23706;actual measurement;generative dispersule;1.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.3;;;1;n an replicates unknown;Air dried weight;;2 Salvia glutinosa;23588;actual measurement;one-seeded generative dispersule;5.33;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.33;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Salvia glutinosa;23588;actual measurement;one-seeded generative dispersule;4.358;;-4;;BIOLFLOR database;4.358;;;;;Air dried weight;;2a Salvia glutinosa;23588;actual measurement;germinule;4.358;;-4;;BIOLFLOR database;4.358;;;;;Air dried weight;;3 Salvia nemorosa;24767;actual measurement;germinule;.854;;-4;;BIOLFLOR database;.854;;;;;Air dried weight;;3 Salvia nemorosa;24767;actual measurement;one-seeded generative dispersule;.854;;-4;;BIOLFLOR database;.854;;;;;Air dried weight;;2a Salvia nemorosa;24767;actual measurement (following LEDA data standards);germinule;.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Salvia nemorosa;24767;actual measurement (following LEDA data standards);germinule;.79;1;-2;.79;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;.79;.79;;preaggregated value obtained from single record;Air dried weight;;3 Salvia officinalis;23945;actual measurement (following LEDA data standards);germinule;5.95;1;-2;5.95;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.95;5.95;5.95;;preaggregated value obtained from single record;Air dried weight;;3 Salvia officinalis;23945;actual measurement (following LEDA data standards);germinule;5.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.95;;;50;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Salvia officinalis;23945;actual measurement;one-seeded generative dispersule;7;;-4;;BIOLFLOR database;7;9;5;;;Air dried weight;;2a Salvia officinalis;23945;actual measurement;germinule;7;;-4;;BIOLFLOR database;7;9;5;;;Air dried weight;;3 Salvia officinalis;23945;actual measurement;germinule;7;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;9;5;1;n and replicates unknown;Air dried weight;;3 Salvia pratensis;24299;actual measurement;germinule;1.96;;-4;;BIOLFLOR database;1.96;2.1;1.8;;;Air dried weight;;3 Salvia pratensis;24299;actual measurement;one-seeded generative dispersule;1.96;;-4;;BIOLFLOR database;1.96;2.1;1.8;;;Air dried weight;;2a Salvia pratensis;24299;actual measurement;one-seeded generative dispersule;2.725;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.725;2.8;2.65;20;;Air dried weight;;2a Salvia pratensis;24299;actual measurement;one-seeded generative dispersule;1.76;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.76;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Salvia pratensis;24299;other;one-seeded generative dispersule;2.2704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Salvia pratensis;24299;other;one-seeded generative dispersule;2.2964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Salvia pratensis;24299;other;one-seeded generative dispersule;2.0904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Salvia pratensis;24299;other;one-seeded generative dispersule;3.2784;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2784;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Salvia pratensis;24299;other;one-seeded generative dispersule;2.978;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.978;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Salvia pratensis;24299;other;one-seeded generative dispersule;2.1116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Salvia pratensis;24299;other;one-seeded generative dispersule;3.402;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.402;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Salvia pratensis;24299;other;one-seeded generative dispersule;3.0292;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0292;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Salvia pratensis;24299;other;germinule;2.1116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salvia pratensis;24299;other;germinule;3.402;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.402;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salvia pratensis;24299;other;germinule;3.2784;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2784;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salvia pratensis;24299;other;germinule;2.2704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salvia pratensis;24299;other;germinule;2.0904;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0904;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salvia pratensis;24299;other;germinule;2.2964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salvia pratensis;24299;other;germinule;2.978;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.978;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salvia pratensis;24299;other;germinule;3.0292;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0292;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Salvia sclarea;24774;actual measurement;generative dispersule;2.4;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.4;;;1;n an replicates unknown;Air dried weight;;2 Salvia verbenaca;23951;other;unknown;3.0048;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0048;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salvia verbenaca;23951;other;unknown;3.282;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.282;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salvia verbenaca;23951;other;unknown;2.9592;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.9592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salvia verbenaca;23951;other;unknown;2.7352;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salvia verbenaca;23951;other;unknown;3.1408;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1408;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Salvia verticillata;23952;actual measurement;one-seeded generative dispersule;.768;;-4;;BIOLFLOR database;.768;;;;;Air dried weight;;2a Salvia verticillata;23952;actual measurement;germinule;.768;;-4;;BIOLFLOR database;.768;;;;;Air dried weight;;3 Salvia verticillata;23952;actual measurement;one-seeded generative dispersule;.936;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.936;;;50;;Air dried weight;;2a Salvia verticillata;23952;actual measurement;one-seeded generative dispersule;.738;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.738;;;80;;Air dried weight;;2a Salvia verticillata;23952;actual measurement;generative dispersule;1.35;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.35;;;1;n an replicates unknown;Air dried weight;;2 Salvia verticillata;23952;actual measurement;germinule;.936;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.936;;;50;;Air dried weight;;3 Salvia verticillata;23952;actual measurement;germinule;.738;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.738;;;80;;Air dried weight;;3 Salvia viridis;23412;actual measurement;generative dispersule;2.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.29;;;1;n an replicates unknown;Air dried weight;;2 Sambucus ebulus;15361;actual measurement;generative dispersule;171.993;;-4;;BIOLFLOR database;171.993;;;;;Fresh weight;;2 Sambucus ebulus;15361;other;germinule;11.1628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.1628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sambucus ebulus;15361;other;germinule;7.9064;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);7.9064;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sambucus nigra;15363;actual measurement;generative dispersule;106.7235;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;106.7235;110.082;103.365;100;;Fresh weight;;2 Sambucus nigra;15363;actual measurement;generative dispersule;89.232;;-4;;BIOLFLOR database;89.232;;;;;Fresh weight;;2 Sambucus nigra;15363;actual measurement;germinule;3.232;;-4;;BIOLFLOR database;3.232;3.4;3.063;;;Air dried weight;;3 Sambucus nigra;15363;actual measurement;one-seeded generative dispersule;1.901;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.901;;;100;;Air dried weight;;2a Sambucus nigra;15363;actual measurement;one-seeded generative dispersule;3.44;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.44;;;100;;Air dried weight;;2a Sambucus racemosa;15364;actual measurement;multi-seeded generative dispersule;62;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);62;;;1;n an replicates unknown;Fresh weight;;2b Sambucus racemosa;15364;actual measurement;germinule;3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3;;;1;n an replicates unknown;Air dried weight;;3 Samolus valerandi;28974;actual measurement;one-seeded generative dispersule;.027;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.027;;;50;;Air dried weight;;2a Samolus valerandi;28974;actual measurement;one-seeded generative dispersule;.025;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.025;.025;.025;100;;Air dried weight;;2a Samolus valerandi;28974;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Samolus valerandi;28974;other;germinule;.0316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Samolus valerandi;28974;other;germinule;.028;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.028;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Samolus valerandi;28974;other;germinule;.0288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Samolus valerandi;28974;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Sanguisorba minor;29153;actual measurement;one-seeded generative dispersule;4.106;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.106;;;50;;Air dried weight;;2a Sanguisorba minor;29153;actual measurement;multi-seeded generative dispersule;4.91;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.91;;;50;50-2000 air-dried matured seeds;Air dried weight;;2b Sanguisorba minor;29153;actual measurement;generative dispersule;3.683166667;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.683166667;4.321;3.449333333;1;;Air dried weight;;2 Sanguisorba minor;29153;actual measurement;germinule;4.106;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.106;;;50;;Air dried weight;;3 Sanguisorba minor;29153;actual measurement;one-seeded generative dispersule;5.762;;-4;;BIOLFLOR database;5.762;7.361;4.11;;;Air dried weight;;2a Sanguisorba minor;29153;actual measurement;germinule;5.084;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.084;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Sanguisorba minor;29153;actual measurement;germinule;5.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.08;;;30;collected between 1996-1999;Air dried weight;;3 Sanguisorba minor;29153;actual measurement;generative dispersule;2.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.13;;;1;n an replicates unknown;Air dried weight;;2 Sanguisorba minor;29153;actual measurement;germinule;1.8;;-4;;BIOLFLOR database;1.8;;;;;Air dried weight;;3 Sanguisorba minor;29153;actual measurement;germinule;5.762;;-4;;BIOLFLOR database;5.762;7.361;4.11;;;Air dried weight;;3 Sanguisorba officinalis;30139;actual measurement;generative dispersule;2.133777778;9;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.133777778;2.948;.976;100;;Air dried weight;;2 Sanguisorba officinalis;30139;actual measurement;germinule;.887;;-4;;BIOLFLOR database;.887;;;;;Air dried weight;;3 Sanguisorba officinalis;30139;actual measurement;germinule;1.826;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.826;;;80;;Air dried weight;;3 Sanguisorba officinalis;30139;actual measurement;germinule;2.264;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.264;;;50;;Air dried weight;;3 Sanguisorba officinalis;30139;actual measurement;germinule;1.987;;-4;;BIOLFLOR database;1.987;2.428;1.2;;;Air dried weight;;3 Sanguisorba officinalis;30139;actual measurement;germinule;3.738;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.738;;;50;;Air dried weight;;3 Sanguisorba officinalis;30139;other;one-seeded generative dispersule;2.8592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sanguisorba officinalis;30139;other;one-seeded generative dispersule;2.6576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sanguisorba officinalis;30139;other;one-seeded generative dispersule;2.3532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sanguisorba officinalis;30139;actual measurement;one-seeded generative dispersule;1.987;;-4;;BIOLFLOR database;1.987;2.428;1.2;;;Air dried weight;;2a Sanguisorba officinalis;30139;actual measurement;one-seeded generative dispersule;2.264;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.264;;;50;;Air dried weight;;2a Sanguisorba officinalis;30139;actual measurement;one-seeded generative dispersule;3.738;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.738;;;50;;Air dried weight;;2a Sanguisorba officinalis;30139;actual measurement;one-seeded generative dispersule;1.826;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.826;;;80;;Air dried weight;;2a Sanguisorba officinalis;30139;actual measurement (following LEDA data standards);germinule;1.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.98;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sanguisorba officinalis;30139;actual measurement (following LEDA data standards);germinule;1.98;1;-2;1.98;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.98;1.98;1.98;;preaggregated value obtained from single record;Air dried weight;;3 Sanguisorba officinalis;30139;other;germinule;2.3532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sanguisorba officinalis;30139;other;germinule;2.8592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sanguisorba officinalis;30139;other;germinule;2.6576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sanicula europaea;2102;other;germinule;2.7148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sanicula europaea;2102;actual measurement;one-seeded generative dispersule;2.874;;-4;;BIOLFLOR database;2.874;2.97;2.752;;;Air dried weight;;2a Sanicula europaea;2102;other;one-seeded generative dispersule;2.7148;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7148;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sanicula europaea;2102;actual measurement;germinule;2.972;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.972;;;50;;Air dried weight;;3 Sanicula europaea;2102;actual measurement;one-seeded generative dispersule;2.972;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.972;;;50;;Air dried weight;;2a Sanicula europaea;2102;actual measurement;germinule;2.874;;-4;;BIOLFLOR database;2.874;2.97;2.752;;;Air dried weight;;3 Sanicula europaea;2102;actual measurement;generative dispersule;2.990875;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.990875;3.0725;2.90925;40;;Air dried weight;;2 Santolina chamaecyparissus;9489;actual measurement;one-seeded generative dispersule;.316;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.316;;;50;;Air dried weight;;2a Saponaria ocymoides;16543;actual measurement;germinule;2.06;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.06;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Saponaria ocymoides;16543;actual measurement;generative dispersule;2.083;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.083;2.133;2.035;100;;Air dried weight;;2 Saponaria officinalis;17539;other;one-seeded generative dispersule;1.6952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saponaria officinalis;17539;actual measurement;one-seeded generative dispersule;1.624;;-4;;BIOLFLOR database;1.624;1.925;1.46;;;Air dried weight;;2a Saponaria officinalis;17539;actual measurement;one-seeded generative dispersule;1.621333333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.621333333;1.672666667;1.601333333;150;;Air dried weight;;2a Saponaria officinalis;17539;actual measurement;one-seeded generative dispersule;1.702;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.702;;;50;;Air dried weight;;2a Saponaria officinalis;17539;actual measurement;one-seeded generative dispersule;1.968;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.968;;;50;;Air dried weight;;2a Saponaria officinalis;17539;actual measurement;one-seeded generative dispersule;1.461;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.461;;;100;;Air dried weight;;2a Saponaria officinalis;17539;actual measurement;one-seeded generative dispersule;1.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.29;;;50;;Air dried weight;;2a Saponaria officinalis;17539;actual measurement;germinule;1.624;;-4;;BIOLFLOR database;1.624;1.925;1.46;;;Air dried weight;;3 Saponaria officinalis;17539;actual measurement;germinule;1.461;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.461;;;100;;Air dried weight;;3 Saponaria officinalis;17539;actual measurement;germinule;1.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.29;;;50;;Air dried weight;;3 Saponaria officinalis;17539;actual measurement;germinule;1.702;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.702;;;50;;Air dried weight;;3 Saponaria officinalis;17539;actual measurement;germinule;1.968;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.968;;;50;;Air dried weight;;3 Saponaria officinalis;17539;actual measurement (following LEDA data standards);germinule;1.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.22;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Saponaria officinalis;17539;actual measurement (following LEDA data standards);germinule;1.44;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.44;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Saponaria officinalis;17539;actual measurement (following LEDA data standards);germinule;1.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Saponaria officinalis;17539;actual measurement (following LEDA data standards);germinule;1.18;1;-2;1.18;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;1.18;1.18;;preaggregated value obtained from single record;Air dried weight;;3 Saponaria officinalis;17539;other;germinule;1.6952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saponaria officinalis;17539;actual measurement (following LEDA data standards);germinule;1.22;1;-2;1.22;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.22;1.22;1.22;;preaggregated value obtained from single record;Air dried weight;;3 Saponaria officinalis;17539;actual measurement (following LEDA data standards);germinule;1.44;1;-2;1.44;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.44;1.44;1.44;;preaggregated value obtained from single record;Air dried weight;;3 Satureja hortensis;25007;actual measurement;germinule;.4934;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.4934;;;100;;Air dried weight;;3 Satureja hortensis;25007;actual measurement;one-seeded generative dispersule;.6;;-4;;BIOLFLOR database;.6;.8;.493;;;Air dried weight;;2a Satureja hortensis;25007;actual measurement;germinule;.7;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;.8;.6;1;n and replicates unknown;Air dried weight;;3 Satureja hortensis;25007;actual measurement;germinule;.6;;-4;;BIOLFLOR database;.6;.8;.493;;;Air dried weight;;3 Saussurea alpina;9535;actual measurement;germinule;1.869;;-4;;BIOLFLOR database;1.869;1.96;1.777;;;Air dried weight;;3 Saussurea alpina;9535;actual measurement;generative dispersule;2.415;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.415;2.656666667;2.173333333;30;with pappus;Air dried weight;;2 Saussurea alpina;9535;actual measurement (following LEDA data standards);germinule;.95;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.95;;;10;No. of seeds per individual: 10;Air dried weight;;3 Saussurea alpina;9535;actual measurement (following LEDA data standards);germinule;1.41;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.41;;;10;No. of seeds per individual: 10;Air dried weight;;3 Saussurea alpina;9535;actual measurement (following LEDA data standards);germinule;1.18;2;-2;1.18;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.18;1.41;.95;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Saussurea alpina;9535;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.45;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Saussurea alpina;9535;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.45;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.45;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Saussurea alpina;9535;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.94;2;-2;1.94;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;1.94;2.43;1.45;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 10;;;2a Saussurea alpina;9535;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.43;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;2.43;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Saussurea alpina;9535;actual measurement (following LEDA data standards);one-seeded generative dispersule;2.43;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;2.43;;;10;Weight including appendages. No. of seeds per individual: 10;Air dried weight;;2a Saxifraga aizoides;31321;other;germinule;.0504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga aizoides;31321;other;germinule;.0576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga aizoides;31321;other;one-seeded generative dispersule;.0576;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0576;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga aizoides;31321;other;one-seeded generative dispersule;.0504;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0504;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga aizoides;31321;actual measurement;one-seeded generative dispersule;.053;;-4;;BIOLFLOR database;.053;.067;.04;;;Air dried weight;;2a Saxifraga aizoides;31321;actual measurement;one-seeded generative dispersule;.0435;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0435;.045;.042;100;;Air dried weight;;2a Saxifraga aizoides;31321;actual measurement;germinule;.053;;-4;;BIOLFLOR database;.053;.067;.04;;;Air dried weight;;3 Saxifraga aizoides;31321;actual measurement;germinule;.05;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.05;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Saxifraga bryoides;31348;actual measurement;germinule;.032;;-4;;BIOLFLOR database;.032;;;;;Air dried weight;;3 Saxifraga bryoides;31348;actual measurement;one-seeded generative dispersule;.032;;-4;;BIOLFLOR database;.032;;;;;Air dried weight;;2a Saxifraga caesia;31354;actual measurement;one-seeded generative dispersule;.031;;-4;;BIOLFLOR database;.031;.031;.03;;;Air dried weight;;2a Saxifraga caesia;31354;actual measurement;germinule;.031;;-4;;BIOLFLOR database;.031;.031;.03;;;Air dried weight;;3 Saxifraga cespitosa;31375;other;unknown;.05776;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.05776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Saxifraga cymbalaria;31409;actual measurement;germinule;.037;;-4;;BIOLFLOR database;.037;;;;;Air dried weight;;3 Saxifraga cymbalaria;31409;actual measurement;one-seeded generative dispersule;.037;;-4;;BIOLFLOR database;.037;;;;;Air dried weight;;2a Saxifraga granulata;31381;actual measurement;germinule;.019;;-4;;BIOLFLOR database;.019;.02;.018;;;Air dried weight;;3 Saxifraga granulata;31381;actual measurement;germinule;.03;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;1;summers of 1995 and 1996;Unknown;;3 Saxifraga granulata;31381;actual measurement;generative dispersule;.027;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.027;.027;.027;1;;Air dried weight;;2 Saxifraga granulata;31381;actual measurement;one-seeded generative dispersule;.019;;-4;;BIOLFLOR database;.019;.02;.018;;;Air dried weight;;2a Saxifraga granulata;31381;other;one-seeded generative dispersule;.04288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04288;;;1000;1000 seed weight, unknown number of individuals, Seeds dry. 3-5 fruits/plant. c.90 seeds/fruit.;Air dried weight;;2a Saxifraga granulata;31381;other;germinule;.04288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04288;;;1000;1000 seed weight, unknown number of individuals, Seeds dry. 3-5 fruits/plant. c.90 seeds/fruit.;Air dried weight;;3 Saxifraga hirculus;31463;actual measurement;generative dispersule;.0925;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0925;.094;.091;100;;Air dried weight;;2 Saxifraga hypnoides;31390;actual measurement;germinule;.05;;-4;;BIOLFLOR database;.05;;;;;Air dried weight;;3 Saxifraga hypnoides;31390;actual measurement;germinule;.047;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.047;;;100;;Air dried weight;;3 Saxifraga hypnoides;31390;actual measurement;one-seeded generative dispersule;.05;;-4;;BIOLFLOR database;.05;;;;;Air dried weight;;2a Saxifraga hypnoides;31390;other;germinule;.0356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga hypnoides;31390;other;germinule;.0312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga hypnoides;31390;other;one-seeded generative dispersule;.0468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga hypnoides;31390;other;one-seeded generative dispersule;.0312;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0312;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga hypnoides;31390;other;one-seeded generative dispersule;.0356;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0356;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga hypnoides;31390;actual measurement;one-seeded generative dispersule;.047;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.047;;;100;;Air dried weight;;2a Saxifraga hypnoides;31390;other;germinule;.0468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga mutata;31509;actual measurement;one-seeded generative dispersule;.031;;-4;;BIOLFLOR database;.031;;;;;Air dried weight;;2a Saxifraga mutata;31509;actual measurement;one-seeded generative dispersule;.0285;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0285;.031;.026;100;;Air dried weight;;2a Saxifraga mutata;31509;actual measurement;germinule;.031;;-4;;BIOLFLOR database;.031;;;;;Air dried weight;;3 Saxifraga nivalis;31524;other;unknown;.04;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Saxifraga oppositifolia;31526;other;germinule;.1516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga oppositifolia;31526;other;germinule;.0948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga oppositifolia;31526;other;germinule;.1116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga oppositifolia;31526;actual measurement;germinule;.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Saxifraga oppositifolia;31526;actual measurement;germinule;.105;;-4;;BIOLFLOR database;.105;.125;.089;;;Air dried weight;;3 Saxifraga oppositifolia;31526;actual measurement;one-seeded generative dispersule;.105;;-4;;BIOLFLOR database;.105;.125;.089;;;Air dried weight;;2a Saxifraga oppositifolia;31526;other;one-seeded generative dispersule;.1516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga oppositifolia;31526;other;one-seeded generative dispersule;.1116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga oppositifolia;31526;other;one-seeded generative dispersule;.0948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga paniculata;31528;actual measurement;one-seeded generative dispersule;.06;;-4;;BIOLFLOR database;.06;.081;.04;;;Air dried weight;;2a Saxifraga paniculata;31528;actual measurement;germinule;.06;;-4;;BIOLFLOR database;.06;.081;.04;;;Air dried weight;;3 Saxifraga rivularis;31573;other;unknown;.0376;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0376;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Saxifraga rosacea;31574;other;unknown;.0568;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Saxifraga rotundifolia;31582;actual measurement;one-seeded generative dispersule;.043;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.043;.044;.042;100;;Air dried weight;;2a Saxifraga stellaris;31429;actual measurement;germinule;.023;;-4;;BIOLFLOR database;.023;;;;;Air dried weight;;3 Saxifraga stellaris;31429;actual measurement;one-seeded generative dispersule;.023;;-4;;BIOLFLOR database;.023;;;;;Air dried weight;;2a Saxifraga stellaris;31429;actual measurement;one-seeded generative dispersule;.036;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.036;.037;.035;100;;Air dried weight;;2a Saxifraga stellaris;31429;other;one-seeded generative dispersule;.0352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga stellaris;31429;other;germinule;.0352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga tridactylites;31616;other;germinule;.0216;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0216;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Saxifraga tridactylites;31616;other;one-seeded generative dispersule;.0216;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0216;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Saxifraga tridactylites;31616;actual measurement;one-seeded generative dispersule;.009;;-4;;BIOLFLOR database;.009;.011;.005;;;Air dried weight;;2a Saxifraga tridactylites;31616;actual measurement;one-seeded generative dispersule;.014;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.014;;;183;;Air dried weight;;2a Saxifraga tridactylites;31616;actual measurement;one-seeded generative dispersule;.012;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.012;;;100;;Air dried weight;;2a Saxifraga tridactylites;31616;actual measurement;one-seeded generative dispersule;.012;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.012;;;100;;Air dried weight;;2a Saxifraga tridactylites;31616;actual measurement;germinule;.009;;-4;;BIOLFLOR database;.009;.011;.005;;;Air dried weight;;3 Saxifraga tridactylites;31616;actual measurement;germinule;.012;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.012;;;100;;Air dried weight;;3 Saxifraga tridactylites;31616;actual measurement;germinule;.014;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.014;;;183;;Air dried weight;;3 Saxifraga tridactylites;31616;actual measurement;germinule;.012;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.012;;;100;;Air dried weight;;3 Scabiosa atropurpurea;19064;actual measurement;generative dispersule;.84;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.84;;;1;n and replicates unknown;Air dried weight;;2 Scabiosa canescens;19427;actual measurement;germinule;1.127;;-4;;BIOLFLOR database;1.127;;;;;Air dried weight;;3 Scabiosa canescens;19427;actual measurement;one-seeded generative dispersule;1.127;;-4;;BIOLFLOR database;1.127;;;;;Air dried weight;;2a Scabiosa canescens;19427;actual measurement;one-seeded generative dispersule;1.344833333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.344833333;1.406;1.283666667;30;;Air dried weight;;2a Scabiosa columbaria;19381;actual measurement;germinule;1.353;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.353;;;100;;Air dried weight;;3 Scabiosa columbaria;19381;actual measurement;one-seeded generative dispersule;2.48;;-4;;BIOLFLOR database;2.48;2.6;2.36;;;Air dried weight;;2a Scabiosa columbaria;19381;actual measurement;germinule;1.279;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.279;;;100;;Air dried weight;;3 Scabiosa columbaria;19381;actual measurement;generative dispersule;1.82;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.82;;;1;n an replicates unknown;Air dried weight;;2 Scabiosa columbaria;19381;actual measurement;germinule;2.48;;-4;;BIOLFLOR database;2.48;2.6;2.36;;;Air dried weight;;3 Scabiosa columbaria;19381;other;one-seeded generative dispersule;2.058;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.058;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scabiosa columbaria;19381;actual measurement;generative dispersule;2.84;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.84;3.4;2.5;1;;Air dried weight;;2 Scabiosa columbaria;19381;actual measurement;one-seeded generative dispersule;1.353;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.353;;;100;;Air dried weight;;2a Scabiosa columbaria;19381;actual measurement;one-seeded generative dispersule;1.279;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.279;;;100;;Air dried weight;;2a Scabiosa columbaria;19381;actual measurement;one-seeded generative dispersule;2.47;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.47;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Scabiosa columbaria;19381;other;germinule;2.058;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.058;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scabiosa lucida;19283;actual measurement;one-seeded generative dispersule;2.1;;-4;;BIOLFLOR database;2.1;;;;;Air dried weight;;2a Scabiosa lucida;19283;actual measurement;unknown;1.53;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];1.53;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Scabiosa lucida;19283;actual measurement;germinule;2.1;;-4;;BIOLFLOR database;2.1;;;;;Air dried weight;;3 Scabiosa ochroleuca;19228;actual measurement;germinule;1.416;;-4;;BIOLFLOR database;1.416;1.9;1.16;;;Air dried weight;;3 Scabiosa ochroleuca;19228;actual measurement;generative dispersule;1.583;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.583;1.686;1.48;100;;Air dried weight;;2 Scabiosa ochroleuca;19228;actual measurement;one-seeded generative dispersule;1.416;;-4;;BIOLFLOR database;1.416;1.9;1.16;;;Air dried weight;;2a Scandix pecten-veneris;1087;actual measurement;germinule;4.2987;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.2987;;;100;;Air dried weight;;3 Scandix pecten-veneris;1087;other;germinule;19.5728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);19.5728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scandix pecten-veneris;1087;other;germinule;15.462;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.462;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scandix pecten-veneris;1087;other;germinule;18.4528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);18.4528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scandix pecten-veneris;1087;other;germinule;6.7168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.7168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scheuchzeria palustris;43986;actual measurement (following LEDA data standards);germinule;6.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.36;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Scheuchzeria palustris;43986;actual measurement (following LEDA data standards);germinule;6.36;1;-2;6.36;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6.36;6.36;6.36;;preaggregated value obtained from single record;Air dried weight;;3 Scheuchzeria palustris;43986;actual measurement;one-seeded generative dispersule;8.042;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;8.042;8.23;7.854;100;;Air dried weight;;2a Schoenus ferrugineus;37576;actual measurement;germinule;.288;;-4;;BIOLFLOR database;.288;;;;;Air dried weight;;3 Schoenus ferrugineus;37576;actual measurement;germinule;.2145;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2145;.218;.211;100;;Air dried weight;;3 Schoenus nigricans;37577;actual measurement;germinule;.5;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.5;;;50;;Air dried weight;;3 Schoenus nigricans;37577;actual measurement;one-seeded generative dispersule;.5;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.5;;;50;;Air dried weight;;2a Schoenus nigricans;37577;actual measurement;one-seeded generative dispersule;.5;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.5;;;50;;Air dried weight;;2a Schoenus nigricans;37577;actual measurement;germinule;.653;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.653;.674;.632;100;;Air dried weight;;3 Schoenus nigricans;37577;actual measurement;germinule;.538;;-4;;BIOLFLOR database;.538;.69;.25;;;Air dried weight;;3 Schoenus nigricans;37577;actual measurement;germinule;.5;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.5;;;50;;Air dried weight;;3 Schoenus nigricans;37577;actual measurement;germinule;1.117;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.117;;;100;;Air dried weight;;3 Schoenus nigricans;37577;actual measurement;one-seeded generative dispersule;1.117;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.117;;;100;;Air dried weight;;2a Schoenus nigricans;37577;actual measurement;one-seeded generative dispersule;.538;;-4;;BIOLFLOR database;.538;.69;.25;;;Air dried weight;;2a Schoenus nigricans;37577;actual measurement;one-seeded generative dispersule;.55;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.55;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Schoenus nigricans;37577;other;one-seeded generative dispersule;.542;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.542;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Schoenus nigricans;37577;other;one-seeded generative dispersule;.7104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Schoenus nigricans;37577;actual measurement (following LEDA data standards);germinule;.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Schoenus nigricans;37577;other;germinule;.7104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Schoenus nigricans;37577;actual measurement (following LEDA data standards);germinule;.62;1;-2;.62;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;.62;.62;;preaggregated value obtained from single record;Air dried weight;;3 Schoenus nigricans;37577;other;germinule;.542;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.542;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scilla autumnalis;38085;other;unknown;1.348;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Scilla autumnalis;38085;other;unknown;1.4228;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4228;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Scilla autumnalis;38085;other;unknown;1.1476;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1476;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Scilla bifolia;38937;actual measurement;germinule;9.55;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);9.55;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Scirpus cespitosus;37472;actual measurement;one-seeded generative dispersule;.418;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.418;;;50;;Air dried weight;;2a Scirpus cespitosus;37472;actual measurement (following LEDA data standards);germinule;.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.43;;;100;species determinated as Scirpus cespitosus subsp. Germanicus, used balance: Mettler H51, seed;Air dried weight;;3 Scirpus cespitosus;37472;actual measurement (following LEDA data standards);germinule;.43;1;-2;.43;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.43;.43;.43;;preaggregated value obtained from single record;Air dried weight;;3 Scirpus fluitans;37478;actual measurement;one-seeded generative dispersule;.127;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.127;;;15;;Air dried weight;;2a Scirpus hudsonianus;37482;actual measurement;one-seeded generative dispersule;.224;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.224;.226;.222;100;;Air dried weight;;2a Scirpus hudsonianus;37482;actual measurement;generative dispersule;.182;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.182;.182;.182;50;with pappus;Air dried weight;;2 Scirpus lacustris;37486;actual measurement;germinule;1.625;;-4;;BIOLFLOR database;1.625;1.63;1.62;;;Air dried weight;;3 Scirpus lacustris;37486;actual measurement;germinule;2.355;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.355;;;50;;Air dried weight;;3 Scirpus lacustris;37486;actual measurement;germinule;1.618;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.618;;;100;;Air dried weight;;3 Scirpus lacustris;37486;actual measurement;one-seeded generative dispersule;1.625;;-4;;BIOLFLOR database;1.625;1.63;1.62;;;Air dried weight;;2a Scirpus lacustris;37486;actual measurement;germinule;1.488;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.488;;;50;;Air dried weight;;3 Scirpus lacustris;37486;actual measurement;one-seeded generative dispersule;2.355;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.355;;;50;;Air dried weight;;2a Scirpus lacustris;37486;actual measurement;one-seeded generative dispersule;1.618;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.618;;;100;;Air dried weight;;2a Scirpus lacustris;37486;actual measurement;one-seeded generative dispersule;1.488;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.488;;;50;;Air dried weight;;2a Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.57;10;-2;1.57;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.58;1.66;1.51;;preaggregated value obtained from single record;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.72;10;-2;2.72;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.66;2.91;2.24;;preaggregated value obtained from single record;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.55;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.66;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.66;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.9;1;-2;2.9;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.9;2.9;2.9;;preaggregated value obtained from single record;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.9;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.91;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.91;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.59;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.78;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.78;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.85;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.85;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.89;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.71;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.71;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.73;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.36;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;2.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.5;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.6;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.51;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.51;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.59;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.6;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris;37486;actual measurement (following LEDA data standards);germinule;1.54;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.54;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus lacustris s. tabernaemontani;37488;actual measurement;one-seeded generative dispersule;1.326;;-4;;BIOLFLOR database;1.326;;;;;Air dried weight;;2a Scirpus lacustris s. tabernaemontani;37488;actual measurement;germinule;1.326;;-4;;BIOLFLOR database;1.326;;;;;Air dried weight;;3 Scirpus maritimus;37054;actual measurement;germinule;1.858;;-4;;BIOLFLOR database;1.858;2.083;1.723;;;Air dried weight;;3 Scirpus maritimus;37054;actual measurement;germinule;3.217;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.217;3.227;3.207;100;;Air dried weight;;3 Scirpus maritimus;37054;actual measurement;one-seeded generative dispersule;1.858;;-4;;BIOLFLOR database;1.858;2.083;1.723;;;Air dried weight;;2a Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.36;10;-2;3.36;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.34;3.56;3.19;;preaggregated value obtained from single record;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.08;1;-2;3.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.08;3.08;3.08;;preaggregated value obtained from single record;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.3;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.56;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.19;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.33;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.39;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.08;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.45;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.22;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.38;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus maritimus;37054;actual measurement (following LEDA data standards);germinule;3.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3.39;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus setaceus;37063;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus setaceus;37063;actual measurement (following LEDA data standards);germinule;.09;1;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.09;;preaggregated value obtained from single record;Air dried weight;;3 Scirpus setaceus;37063;actual measurement;germinule;.05167;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.05167;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Scirpus setaceus;37063;actual measurement;germinule;.052;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.052;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Scirpus setaceus;37063;actual measurement;germinule;.05;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.05;;;30;collected between 1996-1999;Air dried weight;;3 Scirpus sylvaticus;37067;actual measurement;one-seeded generative dispersule;.101;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.101;.102;.1;100;;Air dried weight;;2a Scirpus sylvaticus;37067;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;.11;.08;;;Air dried weight;;2a Scirpus sylvaticus;37067;actual measurement;germinule;.143;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.143;;;50;;Air dried weight;;3 Scirpus sylvaticus;37067;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;.11;.08;;;Air dried weight;;3 Scirpus sylvaticus;37067;actual measurement;germinule;.114;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.114;;;200;;Air dried weight;;3 Scirpus sylvaticus;37067;actual measurement;one-seeded generative dispersule;.143;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.143;;;50;;Air dried weight;;2a Scirpus sylvaticus;37067;actual measurement;one-seeded generative dispersule;.114;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.114;;;200;;Air dried weight;;2a Scirpus sylvaticus;37067;other;one-seeded generative dispersule;.154;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.154;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scirpus sylvaticus;37067;other;one-seeded generative dispersule;.1392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scirpus sylvaticus;37067;actual measurement (following LEDA data standards);germinule;.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Scirpus sylvaticus;37067;other;germinule;.154;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.154;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scirpus sylvaticus;37067;other;germinule;.1392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scirpus sylvaticus;37067;actual measurement (following LEDA data standards);germinule;.11;1;-2;.11;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;.11;.11;;preaggregated value obtained from single record;Air dried weight;;3 Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.66;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.66;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.24;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.4;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.59;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.08;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.25;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.41;10;-2;1.41;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.39;1.66;1.08;;preaggregated value obtained from single record;Air dried weight;;2a Scleranthus annuus;17086;other;germinule;1.3056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.41;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.42;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.59;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Scleranthus annuus;17086;other;one-seeded generative dispersule;1.3056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scleranthus annuus;17086;actual measurement;one-seeded generative dispersule;1.158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.158;;;50;;Air dried weight;;2a Scleranthus annuus;17086;actual measurement;one-seeded generative dispersule;1.397;;-4;;BIOLFLOR database;1.397;1.66;1.16;;;Air dried weight;;2a Scleranthus annuus;17086;actual measurement;germinule;1.61;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.61;;;50;;Air dried weight;;3 Scleranthus annuus;17086;actual measurement;germinule;1.158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.158;;;50;;Air dried weight;;3 Scleranthus annuus;17086;actual measurement;germinule;1.397;;-4;;BIOLFLOR database;1.397;1.66;1.16;;;Air dried weight;;3 Scleranthus annuus;17086;actual measurement;one-seeded generative dispersule;1.61;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.61;;;50;;Air dried weight;;2a Scleranthus perennis;17092;actual measurement;germinule;1.473;;-4;;BIOLFLOR database;1.473;1.56;1.385;;;Air dried weight;;3 Scleranthus perennis;17092;actual measurement;one-seeded generative dispersule;1.473;;-4;;BIOLFLOR database;1.473;1.56;1.385;;;Air dried weight;;2a Scleranthus perennis;17092;other;one-seeded generative dispersule;1.0532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scleranthus perennis;17092;other;one-seeded generative dispersule;1.034;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.034;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scleranthus perennis;17092;other;one-seeded generative dispersule;1.9732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scleranthus perennis;17092;other;germinule;1.0532;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0532;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scleranthus perennis;17092;other;germinule;1.9732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scleranthus perennis;17092;other;germinule;1.034;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.034;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scolochloa festucacea;42941;actual measurement;generative dispersule;2.209333333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.209333333;2.444;2.054;25;;Air dried weight;;2 Scorpiurus vermiculatus;22047;actual measurement;one-seeded generative dispersule;6.52;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];6.52;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Scorzonera austriaca;9461;actual measurement;one-seeded generative dispersule;6.1;;-4;;BIOLFLOR database;6.1;;;;;Air dried weight;;2a Scorzonera austriaca;9461;actual measurement;germinule;6.1;;-4;;BIOLFLOR database;6.1;;;;;Air dried weight;;3 Scorzonera austriaca;9461;actual measurement;germinule;6.75;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.75;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Scorzonera hispanica;9619;actual measurement;germinule;7.638;;-4;;BIOLFLOR database;7.638;;;;;Air dried weight;;3 Scorzonera hispanica;9619;actual measurement;germinule;7.6384;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);7.6384;;;100;;Air dried weight;;3 Scorzonera hispanica;9619;actual measurement;one-seeded generative dispersule;7.638;;-4;;BIOLFLOR database;7.638;;;;;Air dried weight;;2a Scorzonera humilis;9541;actual measurement;generative dispersule;2.64;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.64;3;2.4;1;;Air dried weight;;2 Scorzonera humilis;9541;other;germinule;5.1776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.1776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scorzonera humilis;9541;other;germinule;2.6392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scorzonera humilis;9541;other;germinule;4.3856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.3856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scorzonera laciniata;10007;actual measurement;germinule;2.799;;-4;;BIOLFLOR database;2.799;;;;;Air dried weight;;3 Scorzonera laciniata;10007;actual measurement;generative dispersule;3.534;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.534;3.544;3.524;50;;Air dried weight;;2 Scrophularia auriculata;33429;actual measurement;germinule;.096;;-4;;BIOLFLOR database;.096;;;;;Air dried weight;;3 Scrophularia auriculata;33429;actual measurement;germinule;.108;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.108;;;50;;Air dried weight;;3 Scrophularia auriculata;33429;actual measurement;germinule;.071;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.071;;;100;;Air dried weight;;3 Scrophularia auriculata;33429;actual measurement;one-seeded generative dispersule;.096;;-4;;BIOLFLOR database;.096;;;;;Air dried weight;;2a Scrophularia auriculata;33429;other;one-seeded generative dispersule;.1196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scrophularia auriculata;33429;actual measurement;one-seeded generative dispersule;.071;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.071;;;100;;Air dried weight;;2a Scrophularia auriculata;33429;actual measurement;one-seeded generative dispersule;.108;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.108;;;50;;Air dried weight;;2a Scrophularia auriculata;33429;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Scrophularia auriculata;33429;other;germinule;.1196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scrophularia auriculata;33429;actual measurement (following LEDA data standards);germinule;.1;1;-2;.1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;.1;.1;;preaggregated value obtained from single record;Air dried weight;;3 Scrophularia canina;32910;actual measurement;one-seeded generative dispersule;.18;;-4;;BIOLFLOR database;.18;;;;;Air dried weight;;2a Scrophularia canina;32910;actual measurement;germinule;.18;;-4;;BIOLFLOR database;.18;;;;;Air dried weight;;3 Scrophularia canina;32910;actual measurement;unknown;.34;0;1;;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];.34;;;0;;Air dried weight;Pluess, Andrea(2005): Seed weight increases with altitude in the Swiss Alps between related species but not among populations of individual species [144];4 Scrophularia nodosa;32862;actual measurement;germinule;.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.14;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement;germinule;.079;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.079;;;100;;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement;germinule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement;germinule;.082;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.082;;;50;;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement;germinule;.093;;-4;;BIOLFLOR database;.093;;;;;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement;one-seeded generative dispersule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;2a Scrophularia nodosa;32862;actual measurement;one-seeded generative dispersule;.079;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.079;;;100;;Air dried weight;;2a Scrophularia nodosa;32862;actual measurement;one-seeded generative dispersule;.082;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.082;;;50;;Air dried weight;;2a Scrophularia nodosa;32862;actual measurement;one-seeded generative dispersule;.093;;-4;;BIOLFLOR database;.093;;;;;Air dried weight;;2a Scrophularia nodosa;32862;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement (following LEDA data standards);germinule;.09;1;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.09;;preaggregated value obtained from single record;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement (following LEDA data standards);germinule;.1;1;-2;.1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;.1;.1;;preaggregated value obtained from single record;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement (following LEDA data standards);germinule;.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Scrophularia nodosa;32862;actual measurement (following LEDA data standards);germinule;.09;1;-2;.09;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.09;.09;.09;;preaggregated value obtained from single record;Air dried weight;;3 Scrophularia scopolii;33438;actual measurement;one-seeded generative dispersule;.135;;-4;;BIOLFLOR database;.135;.138;.133;;;Air dried weight;;2a Scrophularia scopolii;33438;actual measurement;germinule;.135;;-4;;BIOLFLOR database;.135;.138;.133;;;Air dried weight;;3 Scrophularia scorodonia;34168;other;unknown;.0996;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0996;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Scrophularia scorodonia;34168;other;unknown;.1304;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1304;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Scrophularia scorodonia;34168;other;unknown;.1168;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Scrophularia scorodonia;34168;other;unknown;.1768;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1768;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Scrophularia umbrosa;34372;actual measurement (following LEDA data standards);germinule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;3 Scrophularia umbrosa;34372;other;germinule;.1116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scrophularia umbrosa;34372;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Scrophularia umbrosa;34372;actual measurement;germinule;.098;;-4;;BIOLFLOR database;.098;.104;.092;;;Air dried weight;;3 Scrophularia umbrosa;34372;actual measurement;one-seeded generative dispersule;.098;;-4;;BIOLFLOR database;.098;.104;.092;;;Air dried weight;;2a Scrophularia umbrosa;34372;actual measurement;one-seeded generative dispersule;.070533333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.070533333;.075;.065;100;;Air dried weight;;2a Scrophularia umbrosa;34372;other;one-seeded generative dispersule;.1116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scrophularia umbrosa;34372;actual measurement;generative dispersule;.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;1;n an replicates unknown;Air dried weight;;2 Scrophularia vernalis;33383;actual measurement;one-seeded generative dispersule;.195;;-4;;BIOLFLOR database;.195;;;;;Air dried weight;;2a Scrophularia vernalis;33383;actual measurement;germinule;.195;;-4;;BIOLFLOR database;.195;;;;;Air dried weight;;3 Scutellaria altissima;25013;actual measurement;germinule;1.504;;-4;;BIOLFLOR database;1.504;1.585;1.452;;;Air dried weight;;3 Scutellaria altissima;25013;actual measurement;one-seeded generative dispersule;1.504;;-4;;BIOLFLOR database;1.504;1.585;1.452;;;Air dried weight;;2a Scutellaria galericulata;24386;actual measurement;germinule;.816;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.816;;;50;;Air dried weight;;3 Scutellaria galericulata;24386;actual measurement;germinule;.655;;-4;;BIOLFLOR database;.655;;;;;Air dried weight;;3 Scutellaria galericulata;24386;actual measurement;generative dispersule;.480833333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.480833333;.568333333;.393333333;60;;Air dried weight;;2 Scutellaria galericulata;24386;other;one-seeded generative dispersule;.7016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Scutellaria galericulata;24386;actual measurement;one-seeded generative dispersule;.816;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.816;;;50;;Air dried weight;;2a Scutellaria galericulata;24386;actual measurement;one-seeded generative dispersule;.655;;-4;;BIOLFLOR database;.655;;;;;Air dried weight;;2a Scutellaria galericulata;24386;other;germinule;.7016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Scutellaria minor;23967;actual measurement;generative dispersule;.181;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.181;.194;.167;100;;Air dried weight;;2 Secale cereale;42376;actual measurement;generative dispersule;45.78;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;45.78;49.2;43;1;;Air dried weight;;2 Secale cereale;42376;actual measurement;germinule;31.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;50;13;1;n and replicates unknown;Air dried weight;;3 Sedum acre;18178;actual measurement;germinule;.037;;-4;;BIOLFLOR database;.037;.049;.03;;;Air dried weight;;3 Sedum acre;18178;actual measurement;germinule;.049;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.049;;;50;;Air dried weight;;3 Sedum acre;18178;actual measurement;one-seeded generative dispersule;.037;;-4;;BIOLFLOR database;.037;.049;.03;;;Air dried weight;;2a Sedum acre;18178;actual measurement;germinule;.026;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.026;;;100;;Air dried weight;;3 Sedum acre;18178;other;one-seeded generative dispersule;.04;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sedum acre;18178;actual measurement;one-seeded generative dispersule;.026;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.026;;;100;;Air dried weight;;2a Sedum acre;18178;actual measurement;one-seeded generative dispersule;.049;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.049;;;50;;Air dried weight;;2a Sedum acre;18178;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sedum acre;18178;actual measurement (following LEDA data standards);germinule;.04;1;-2;.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;.04;.04;;preaggregated value obtained from single record;Air dried weight;;3 Sedum acre;18178;other;germinule;.04;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sedum album;18182;actual measurement;one-seeded generative dispersule;.02;;-4;;BIOLFLOR database;.02;;;;;Air dried weight;;2a Sedum album;18182;actual measurement;germinule;.02;;-4;;BIOLFLOR database;.02;;;;;Air dried weight;;3 Sedum anglicum;18189;other;unknown;.04428;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sedum anglicum;18189;other;unknown;.034;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.034;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sedum annuum;18195;actual measurement;germinule;.019;;-4;;BIOLFLOR database;.019;.021;.017;;;Air dried weight;;3 Sedum annuum;18195;actual measurement;germinule;.0173;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.0173;;;100;;Air dried weight;;3 Sedum annuum;18195;actual measurement;one-seeded generative dispersule;.019;;-4;;BIOLFLOR database;.019;.021;.017;;;Air dried weight;;2a Sedum cepaea;18212;actual measurement;one-seeded generative dispersule;.037;;-4;;BIOLFLOR database;.037;;;;;Air dried weight;;2a Sedum cepaea;18212;actual measurement;germinule;.037;;-4;;BIOLFLOR database;.037;;;;;Air dried weight;;3 Sedum dasyphyllum;18216;actual measurement;germinule;.026;;-4;;BIOLFLOR database;.026;.026;.025;;;Air dried weight;;3 Sedum dasyphyllum;18216;actual measurement;one-seeded generative dispersule;.026;;-4;;BIOLFLOR database;.026;.026;.025;;;Air dried weight;;2a Sedum forsterianum;46133;actual measurement;one-seeded generative dispersule;.016;;-4;;BIOLFLOR database;.016;.016;.015;;;Air dried weight;;2a Sedum forsterianum;46133;actual measurement;germinule;.016;;-4;;BIOLFLOR database;.016;.016;.015;;;Air dried weight;;3 Sedum hispanicum;18232;actual measurement;germinule;.02;;-4;;BIOLFLOR database;.02;.02;.019;;;Air dried weight;;3 Sedum hispanicum;18232;actual measurement;one-seeded generative dispersule;.02;;-4;;BIOLFLOR database;.02;.02;.019;;;Air dried weight;;2a Sedum hispanicum;18232;actual measurement;generative dispersule;.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;1;n an replicates unknown;Air dried weight;;2 Sedum ochroleucum;18248;actual measurement;generative dispersule;.015;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.015;.016;.014;50;;Air dried weight;;2 Sedum rubens;18260;actual measurement;one-seeded generative dispersule;.022;;-4;;BIOLFLOR database;.022;;;;;Air dried weight;;2a Sedum rubens;18260;actual measurement;germinule;.022;;-4;;BIOLFLOR database;.022;;;;;Air dried weight;;3 Sedum rupestre;18224;actual measurement;germinule;.074;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.074;;;50;;Air dried weight;;3 Sedum rupestre;18224;actual measurement;one-seeded generative dispersule;.066;;-4;;BIOLFLOR database;.066;;;;;Air dried weight;;2a Sedum rupestre;18224;actual measurement;germinule;.066;;-4;;BIOLFLOR database;.066;;;;;Air dried weight;;3 Sedum rupestre;18224;actual measurement;one-seeded generative dispersule;.074;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.074;;;50;;Air dried weight;;2a Sedum rupestre;18224;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Sedum rupestre;18224;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sedum sexangulare;18275;actual measurement;one-seeded generative dispersule;.01;;-4;;BIOLFLOR database;.01;;;;;Air dried weight;;2a Sedum sexangulare;18275;actual measurement;germinule;.01;;-4;;BIOLFLOR database;.01;;;;;Air dried weight;;3 Sedum spurium;18278;actual measurement;one-seeded generative dispersule;.1;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.1;;;25;;Air dried weight;;2a Sedum spurium;18278;actual measurement;generative dispersule;.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08;;;1;n an replicates unknown;Air dried weight;;2 Sedum telephium;18283;actual measurement;one-seeded generative dispersule;.056;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.056;;;100;;Air dried weight;;2a Sedum telephium;18283;actual measurement;one-seeded generative dispersule;.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.06;;;50;;Air dried weight;;2a Sedum telephium;18283;actual measurement (following LEDA data standards);germinule;.02;1;-2;.02;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;.02;.02;;preaggregated value obtained from single record;Air dried weight;;3 Sedum telephium;18283;other;germinule;.0472;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0472;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sedum telephium;18283;actual measurement (following LEDA data standards);germinule;.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.02;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Sedum telephium s. maximum;18293;actual measurement;one-seeded generative dispersule;.053;;-4;;BIOLFLOR database;.053;.055;.05;;;Air dried weight;;2a Sedum telephium s. maximum;18293;actual measurement;germinule;.053;;-4;;BIOLFLOR database;.053;.055;.05;;;Air dried weight;;3 Sedum telephium s. telephium;18284;actual measurement;germinule;.066;;-4;;BIOLFLOR database;.066;.071;.06;;;Air dried weight;;3 Sedum telephium s. telephium;18284;actual measurement;one-seeded generative dispersule;.066;;-4;;BIOLFLOR database;.066;.071;.06;;;Air dried weight;;2a Sedum villosum;18303;actual measurement;one-seeded generative dispersule;.024;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.024;.024;.024;100;;Air dried weight;;2a Sedum villosum;18303;other;germinule;.026;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.026;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Selinum carvifolia;1092;other;germinule;1.9916;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9916;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Selinum carvifolia;1092;other;germinule;1.43;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.43;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Selinum carvifolia;1092;other;germinule;1.592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Selinum carvifolia;1092;actual measurement;germinule;.97;;-4;;BIOLFLOR database;.97;1.193;.787;;;Air dried weight;;3 Selinum carvifolia;1092;actual measurement;generative dispersule;1.5596;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.5596;1.679;1.454;100;;Air dried weight;;2 Selinum carvifolia;1092;actual measurement;one-seeded generative dispersule;.97;;-4;;BIOLFLOR database;.97;1.193;.787;;;Air dried weight;;2a Selinum carvifolia;1092;other;one-seeded generative dispersule;1.43;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.43;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Selinum carvifolia;1092;other;one-seeded generative dispersule;1.592;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.592;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Selinum carvifolia;1092;other;one-seeded generative dispersule;1.9916;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9916;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sempervivum arachnoideum;18309;actual measurement;germinule;.028;;-4;;BIOLFLOR database;.028;.033;.023;;;Air dried weight;;3 Sempervivum arachnoideum;18309;actual measurement;one-seeded generative dispersule;.028;;-4;;BIOLFLOR database;.028;.033;.023;;;Air dried weight;;2a Senecio alpinus;9622;actual measurement;germinule;.571;;-4;;BIOLFLOR database;.571;.76;.55;;;Air dried weight;;3 Senecio alpinus;9622;actual measurement;germinule;.5314;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.5314;;;50;;Air dried weight;;3 Senecio aquaticus;9544;actual measurement;germinule;.243;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.243;.254;.232;100;;Air dried weight;;3 Senecio aquaticus;9544;actual measurement;one-seeded generative dispersule;.372;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.372;;;100;;Air dried weight;;2a Senecio aquaticus;9544;actual measurement;one-seeded generative dispersule;.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.29;;;50;;Air dried weight;;2a Senecio aquaticus;9544;actual measurement (following LEDA data standards);germinule;.35;1;-2;.35;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.35;.35;.35;;preaggregated value obtained from single record;Air dried weight;;3 Senecio aquaticus;9544;actual measurement (following LEDA data standards);germinule;.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.35;;;100;used balance: Mettler Toledo 4, seed without pappus;Air dried weight;;3 Senecio aquaticus;9544;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;5;-2;.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;.42;.37;;preaggregated value obtained from single record;Air dried weight;;2a Senecio aquaticus;9544;actual measurement (following LEDA data standards);one-seeded generative dispersule;.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.42;;;20;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Senecio aquaticus;9544;actual measurement (following LEDA data standards);one-seeded generative dispersule;.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.37;;;20;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Senecio aquaticus;9544;other;germinule;.4848;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4848;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Senecio aquaticus;9544;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;20;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Senecio aquaticus;9544;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;;;20;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Senecio aquaticus;9544;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;20;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Senecio aquaticus;9544;actual measurement (following LEDA data standards);one-seeded generative dispersule;.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.42;;;50;used balance: Mettler H51, disp. unit with pappus and flower remnant;Air dried weight;;2a Senecio aquaticus;9544;actual measurement (following LEDA data standards);one-seeded generative dispersule;.42;1;-2;.42;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.42;.42;.42;;preaggregated value obtained from single record;Air dried weight;;2a Senecio congestus;9467;actual measurement;one-seeded generative dispersule;.29;;-4;;BIOLFLOR database;.29;;;;;Air dried weight;;2a Senecio congestus;9467;actual measurement;germinule;.29;;-4;;BIOLFLOR database;.29;;;;;Air dried weight;;3 Senecio doronicum;9471;actual measurement;germinule;.28;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.28;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Senecio erucifolius;11230;actual measurement;one-seeded generative dispersule;.315;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.315;;;50;;Air dried weight;;2a Senecio erucifolius;11230;actual measurement;one-seeded generative dispersule;.1225;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1225;.123;.122;100;;Air dried weight;;2a Senecio erucifolius;11230;other;germinule;.31;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.31;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Senecio fluviatilis;9545;actual measurement;one-seeded generative dispersule;.974;;-4;;BIOLFLOR database;.974;;;;;Air dried weight;;2a Senecio fluviatilis;9545;actual measurement;germinule;.908;;-4;;BIOLFLOR database;.908;;;;;Air dried weight;;3 Senecio fluviatilis;9545;actual measurement;germinule;.974;;-4;;BIOLFLOR database;.974;;;;;Air dried weight;;3 Senecio inaequidens;9629;actual measurement;germinule;.074;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.074;.08;.06;1;;Air dried weight;;3 Senecio inaequidens;9629;actual measurement (following LEDA data standards);germinule;.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;;;100;used balance: Mettler Toledo 4, seed without pappus;Air dried weight;;3 Senecio inaequidens;9629;actual measurement (following LEDA data standards);germinule;.28;1;-2;.28;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;.28;.28;;preaggregated value obtained from single record;Air dried weight;;3 Senecio inaequidens;9629;other;germinule;.2572;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2572;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Senecio inaequidens;9629;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;;;30;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Senecio inaequidens;9629;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-2;.39;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;.39;.39;;preaggregated value obtained from single record;Air dried weight;;2a Senecio incanus;9472;actual measurement;germinule;1.55;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.55;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Senecio incanus;9472;actual measurement;generative dispersule;.78;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.78;.81;.73;100;determined as Senecio incanus subsp. carniolicus;Air dried weight;;2 Senecio integrifolius s. integrifolius;10152;actual measurement;germinule;.505;;-4;;BIOLFLOR database;.505;.54;.44;;;Air dried weight;;3 Senecio integrifolius s. integrifolius;10152;actual measurement;one-seeded generative dispersule;.505;;-4;;BIOLFLOR database;.505;.54;.44;;;Air dried weight;;2a Senecio jacobaea;10452;other;one-seeded generative dispersule;.286;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.286;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Senecio jacobaea;10452;other;one-seeded generative dispersule;.286;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.286;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Senecio jacobaea;10452;actual measurement;one-seeded generative dispersule;.52;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.52;;;50;;Air dried weight;;2a Senecio jacobaea;10452;actual measurement;one-seeded generative dispersule;.319;;-4;;BIOLFLOR database;.319;;;;;Air dried weight;;2a Senecio jacobaea;10452;actual measurement;one-seeded generative dispersule;.394;;-4;;BIOLFLOR database;.394;;;;;Air dried weight;;2a Senecio jacobaea;10452;actual measurement;one-seeded generative dispersule;.217;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.217;.224;.21;50;;Air dried weight;;2a Senecio jacobaea;10452;actual measurement;germinule;.52;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.52;;;50;;Air dried weight;;3 Senecio jacobaea;10452;actual measurement;germinule;.192;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.192;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Senecio jacobaea;10452;actual measurement;germinule;.319;;-4;;BIOLFLOR database;.319;;;;;Air dried weight;;3 Senecio jacobaea;10452;actual measurement;germinule;.394;;-4;;BIOLFLOR database;.394;;;;;Air dried weight;;3 Senecio jacobaea;10452;actual measurement;germinule;.19167;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.19167;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Senecio jacobaea;10452;other;germinule;.286;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.286;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Senecio paludosus;11419;actual measurement;germinule;.699;;-4;;BIOLFLOR database;.699;;;;;Air dried weight;;3 Senecio paludosus;11419;actual measurement;one-seeded generative dispersule;.638;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.638;.745;.531;100;;Air dried weight;;2a Senecio squalidus;9306;actual measurement;one-seeded generative dispersule;.214;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.214;;;100;;Air dried weight;;2a Senecio squalidus;9306;actual measurement;germinule;.228;;-4;;BIOLFLOR database;.228;.228;.181;;;Air dried weight;;3 Senecio squalidus;9306;other;germinule;.202;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.202;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Senecio subalpinus;10020;actual measurement;germinule;.499;;-4;;BIOLFLOR database;.499;;;;;Air dried weight;;3 Senecio sylvaticus;9889;actual measurement;germinule;.232;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.232;;;100;;Air dried weight;;3 Senecio sylvaticus;9889;actual measurement;germinule;.254;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.254;;;50;;Air dried weight;;3 Senecio sylvaticus;9889;actual measurement;germinule;.23;;-4;;BIOLFLOR database;.23;;;;;Air dried weight;;3 Senecio sylvaticus;9889;actual measurement;germinule;.28;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.28;.3;.26;1;;Air dried weight;;3 Senecio sylvaticus;9889;actual measurement;one-seeded generative dispersule;.254;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.254;;;50;;Air dried weight;;2a Senecio sylvaticus;9889;actual measurement;one-seeded generative dispersule;.23;;-4;;BIOLFLOR database;.23;;;;;Air dried weight;;2a Senecio sylvaticus;9889;actual measurement;one-seeded generative dispersule;.232;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.232;;;100;;Air dried weight;;2a Senecio sylvaticus;9889;other;one-seeded generative dispersule;.2288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Senecio sylvaticus;9889;other;germinule;.2288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Senecio vernalis;11179;actual measurement;one-seeded generative dispersule;.158;;-4;;BIOLFLOR database;.158;.167;.149;;;Air dried weight;;2a Senecio vernalis;11179;actual measurement;germinule;.158;;-4;;BIOLFLOR database;.158;.167;.149;;;Air dried weight;;3 Senecio viscosus;10121;actual measurement;germinule;.604;;-4;;BIOLFLOR database;.604;.673;.57;;;Air dried weight;;3 Senecio viscosus;10121;actual measurement;germinule;.597;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.597;;;100;;Air dried weight;;3 Senecio viscosus;10121;actual measurement;one-seeded generative dispersule;.604;;-4;;BIOLFLOR database;.604;.673;.57;;;Air dried weight;;2a Senecio viscosus;10121;actual measurement;one-seeded generative dispersule;.597;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.597;;;100;;Air dried weight;;2a Senecio viscosus;10121;other;one-seeded generative dispersule;.422;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.422;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Senecio viscosus;10121;actual measurement;generative dispersule;.3885;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3885;.422;.355;100;with pappus;Air dried weight;;2 Senecio viscosus;10121;actual measurement (following LEDA data standards);germinule;.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Senecio viscosus;10121;actual measurement (following LEDA data standards);germinule;.6;1;-2;.6;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;.6;.6;;preaggregated value obtained from single record;Air dried weight;;3 Senecio viscosus;10121;other;germinule;.422;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.422;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Senecio vulgaris;10456;actual measurement;one-seeded generative dispersule;.255;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.255;;;100;;Air dried weight;;2a Senecio vulgaris;10456;actual measurement;one-seeded generative dispersule;.283;;-4;;BIOLFLOR database;.283;;;;;Air dried weight;;2a Senecio vulgaris;10456;actual measurement;germinule;.255;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.255;;;100;;Air dried weight;;3 Senecio vulgaris;10456;actual measurement;germinule;.283;;-4;;BIOLFLOR database;.283;;;;;Air dried weight;;3 Serratula tinctoria;10123;actual measurement;germinule;2.842;;-4;;BIOLFLOR database;2.842;3.2;2.484;;;Air dried weight;;3 Serratula tinctoria;10123;actual measurement;one-seeded generative dispersule;2.592;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.592;;;50;;Air dried weight;;2a Serratula tinctoria;10123;actual measurement;one-seeded generative dispersule;3.203;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.203;;;100;;Air dried weight;;2a Serratula tinctoria;10123;actual measurement;one-seeded generative dispersule;2.426;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.426;;;50;;Air dried weight;;2a Serratula tinctoria;10123;actual measurement;germinule;2.426;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.426;;;50;;Air dried weight;;3 Serratula tinctoria;10123;actual measurement;germinule;2.592;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.592;;;50;;Air dried weight;;3 Serratula tinctoria;10123;actual measurement;germinule;1.74;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.74;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Serratula tinctoria;10123;actual measurement;germinule;3.203;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.203;;;100;;Air dried weight;;3 Serratula tinctoria;10123;actual measurement;one-seeded generative dispersule;2.842;;-4;;BIOLFLOR database;2.842;3.2;2.484;;;Air dried weight;;2a Serratula tinctoria;10123;actual measurement;one-seeded generative dispersule;4.231;;-4;;BIOLFLOR database;4.231;;;;;Air dried weight;;2a Serratula tinctoria;10123;actual measurement;one-seeded generative dispersule;1.6285;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.6285;1.693;1.564;100;;Air dried weight;;2a Serratula tinctoria;10123;other;one-seeded generative dispersule;1.9336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Serratula tinctoria;10123;other;one-seeded generative dispersule;3.6692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Serratula tinctoria;10123;other;germinule;1.9336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Serratula tinctoria;10123;other;germinule;3.6692;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6692;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Seseli hippomarathrum;1571;actual measurement;germinule;1.52;;-4;;BIOLFLOR database;1.52;1.76;1.4;;;Air dried weight;;3 Seseli hippomarathrum;1571;actual measurement;one-seeded generative dispersule;1.52;;-4;;BIOLFLOR database;1.52;1.76;1.4;;;Air dried weight;;2a Seseli libanotis;1044;actual measurement;one-seeded generative dispersule;1.556;;-4;;BIOLFLOR database;1.556;1.733;1.339;;;Air dried weight;;2a Seseli libanotis;1044;actual measurement;germinule;1.556;;-4;;BIOLFLOR database;1.556;1.733;1.339;;;Air dried weight;;3 Seseli libanotis;1044;other;one-seeded generative dispersule;1.3888;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3888;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Seseli libanotis;1044;other;one-seeded generative dispersule;1.4832;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4832;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Seseli libanotis;1044;other;one-seeded generative dispersule;1.7188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Seseli libanotis;1044;other;germinule;1.3888;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3888;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Seseli libanotis;1044;other;germinule;1.4832;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4832;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Seseli libanotis;1044;other;germinule;1.7188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Seseli montanum;1050;actual measurement;one-seeded generative dispersule;1.66;;-4;;BIOLFLOR database;1.66;;;;;Air dried weight;;2a Seseli montanum;1050;actual measurement;germinule;1.66;;-4;;BIOLFLOR database;1.66;;;;;Air dried weight;;3 Sesleria albicans;43301;actual measurement;germinule;1.03;;-4;;BIOLFLOR database;1.03;;;;;Air dried weight;;3 Sesleria albicans;43301;actual measurement;germinule;1.377;;-4;;BIOLFLOR database;1.377;1.543;1.21;;;Air dried weight;;3 Sesleria albicans;43301;actual measurement;generative dispersule;.5;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.5;.517;.483;100;;Air dried weight;;2 Sesleria albicans;43301;actual measurement;germinule;.323;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.323;;;56;;Air dried weight;;3 Sesleria albicans;43301;actual measurement;one-seeded generative dispersule;1.377;;-4;;BIOLFLOR database;1.377;1.543;1.21;;;Air dried weight;;2a Sesleria albicans;43301;actual measurement;one-seeded generative dispersule;.323;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.323;;;56;;Air dried weight;;2a Sesleria albicans;43301;other;germinule;1.1528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sesleria albicans;43301;other;one-seeded generative dispersule;1.1528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sesleria caerulea;42378;actual measurement;one-seeded generative dispersule;1.696;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.696;1.727;1.665;100;;Air dried weight;;2a Setaria italica;42741;actual measurement;one-seeded generative dispersule;2.967;;-4;;BIOLFLOR database;2.967;3.17;2.79;;;Air dried weight;;2a Setaria italica;42741;actual measurement;germinule;2.967;;-4;;BIOLFLOR database;2.967;3.17;2.79;;;Air dried weight;;3 Setaria pumila;43456;actual measurement;generative dispersule;2.303;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.303;2.393;2.213;100;;Air dried weight;;2 Setaria pumila;43456;actual measurement;generative dispersule;1.59;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.59;1.59;1.59;1;;Air dried weight;;2 Setaria pumila;43456;actual measurement;germinule;1.59;;-4;;BIOLFLOR database;1.59;1.7;1.487;;;Air dried weight;;3 Setaria pumila;43456;actual measurement;one-seeded generative dispersule;1.59;;-4;;BIOLFLOR database;1.59;1.7;1.487;;;Air dried weight;;2a Setaria verticillata;43457;actual measurement;generative dispersule;1.02;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.02;1.2;.8;1;;Air dried weight;;2 Setaria verticillata;43457;other;germinule;.97;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.97;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.05;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.19;10;-2;1.19;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.17;1.25;1.05;;preaggregated value obtained from single record;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.25;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.19;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.19;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.22;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.22;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.12;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.11;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement (following LEDA data standards);germinule;1.14;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.14;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Setaria viridis;42743;actual measurement;one-seeded generative dispersule;.811;;-4;;BIOLFLOR database;.811;.902;.719;;;Air dried weight;;2a Setaria viridis;42743;actual measurement;germinule;.811;;-4;;BIOLFLOR database;.811;.902;.719;;;Air dried weight;;3 Setaria viridis;42743;actual measurement;generative dispersule;.77;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.77;;;1;n an replicates unknown;Air dried weight;;2 Sherardia arvensis;31967;actual measurement;germinule;1.55733;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.55733;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Sherardia arvensis;31967;actual measurement;germinule;1.56;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.56;;;30;collected between 1996-1999;Air dried weight;;3 Sherardia arvensis;31967;actual measurement;germinule;1.784;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.784;;;50;;Air dried weight;;3 Sherardia arvensis;31967;actual measurement;germinule;1.574;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.574;;;50;;Air dried weight;;3 Sherardia arvensis;31967;actual measurement;germinule;1.557;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.557;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Sherardia arvensis;31967;actual measurement;germinule;2.297;;-4;;BIOLFLOR database;2.297;2.93;1.6;;;Air dried weight;;3 Sherardia arvensis;31967;actual measurement;one-seeded generative dispersule;1.784;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.784;;;50;;Air dried weight;;2a Sherardia arvensis;31967;actual measurement;one-seeded generative dispersule;1.574;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.574;;;50;;Air dried weight;;2a Sherardia arvensis;31967;actual measurement;one-seeded generative dispersule;2.297;;-4;;BIOLFLOR database;2.297;2.93;1.6;;;Air dried weight;;2a Sherardia arvensis;31967;other;one-seeded generative dispersule;1.8936;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sherardia arvensis;31967;other;germinule;1.8936;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);germinule;.63;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.63;;;59;No. of seeds per individual: 25-95;Air dried weight;;3 Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);germinule;.47;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.47;;;59;No. of seeds per individual: 25-95;Air dried weight;;3 Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);germinule;.5;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.5;;;59;No. of seeds per individual: 25-95;Air dried weight;;3 Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);germinule;.55;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.55;;;59;No. of seeds per individual: 25-95;Air dried weight;;3 Sibbaldia procumbens;30472;other;germinule;.4376;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4376;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sibbaldia procumbens;30472;other;germinule;.48;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.48;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);germinule;.53;4;-2;.53;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.54;.63;.47;;Preaggregated data obtained from single record. No. of seeds per individual: 25-95;;;3 Sibbaldia procumbens;30472;other;one-seeded generative dispersule;.48;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.48;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sibbaldia procumbens;30472;other;one-seeded generative dispersule;.4376;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4376;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sibbaldia procumbens;30472;actual measurement;one-seeded generative dispersule;.484;;-4;;BIOLFLOR database;.484;.5;.46;;;Air dried weight;;2a Sibbaldia procumbens;30472;actual measurement;germinule;.484;;-4;;BIOLFLOR database;.484;.5;.46;;;Air dried weight;;3 Sibbaldia procumbens;30472;actual measurement;generative dispersule;.5465;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.5465;.578;.515;100;;Air dried weight;;2 Sibbaldia procumbens;30472;actual measurement;generative dispersule;.552;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.552;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Sideritis montana;24820;actual measurement;generative dispersule;.62;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.62;;;1;n an replicates unknown;Air dried weight;;2 Sideritis romana;23674;actual measurement;generative dispersule;.516;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.516;.516;.516;75;;Air dried weight;;2 Silaum silaus;993;actual measurement;generative dispersule;1.1215;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.1215;1.122;1.121;100;;Air dried weight;;2 Silaum silaus;993;actual measurement;one-seeded generative dispersule;1.766;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.766;;;50;;Air dried weight;;2a Silaum silaus;993;actual measurement;one-seeded generative dispersule;1.09;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.09;;;30;;Air dried weight;;2a Silaum silaus;993;other;germinule;3.02;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.02;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene acaulis;17102;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.33;;;23;No. of seeds per individual: 23;Air dried weight;;3 Silene acaulis;17102;actual measurement (following LEDA data standards);germinule;.32;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.32;;;63;No. of seeds per individual: 51-74;Air dried weight;;3 Silene acaulis;17102;other;germinule;.3604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene acaulis;17102;other;germinule;.32;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.32;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene acaulis;17102;actual measurement (following LEDA data standards);germinule;.25;2;-2;.25;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;.32;.18;;Preaggregated data obtained from single record. No. of seeds per individual: 51-74;;;3 Silene acaulis;17102;actual measurement (following LEDA data standards);germinule;.33;1;-2;.33;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.33;.33;.33;;Preaggregated data obtained from single record. No. of seeds per individual: 23;;;3 Silene acaulis;17102;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.18;;;63;No. of seeds per individual: 51-74;Air dried weight;;3 Silene acaulis;17102;actual measurement;germinule;.403;;-4;;BIOLFLOR database;.403;.54;.326;;;Air dried weight;;3 Silene acaulis;17102;actual measurement;germinule;.19;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.19;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Silene acaulis;17102;actual measurement;generative dispersule;.260714286;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.260714286;.267142857;.254285714;70;;Air dried weight;;2 Silene acaulis;17102;other;one-seeded generative dispersule;.32;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.32;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene acaulis;17102;other;one-seeded generative dispersule;.3604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene acaulis;17102;actual measurement;one-seeded generative dispersule;.403;;-4;;BIOLFLOR database;.403;.54;.326;;;Air dried weight;;2a Silene armeria;17110;actual measurement;germinule;.128;;-4;;BIOLFLOR database;.128;.137;.124;;;Air dried weight;;3 Silene armeria;17110;actual measurement;germinule;.1332;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1332;;;100;;Air dried weight;;3 Silene armeria;17110;actual measurement;one-seeded generative dispersule;.128;;-4;;BIOLFLOR database;.128;.137;.124;;;Air dried weight;;2a Silene colorata;15529;actual measurement;germinule;.45067;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.45067;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Silene conica;16631;other;germinule;.3632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene conica;16631;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Silene conica;16631;other;germinule;.3296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene conica;16631;other;germinule;.3484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene conica;16631;actual measurement (following LEDA data standards);germinule;.29;1;-2;.29;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;.29;.29;;preaggregated value obtained from single record;Air dried weight;;3 Silene cretica;16289;actual measurement;one-seeded generative dispersule;.901;;-4;;BIOLFLOR database;.901;.917;.89;;;Air dried weight;;2a Silene cretica;16289;actual measurement;germinule;.901;;-4;;BIOLFLOR database;.901;.917;.89;;;Air dried weight;;3 Silene cretica;16289;actual measurement;germinule;.8902;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.8902;;;100;;Air dried weight;;3 Silene dichotoma;15776;actual measurement;germinule;.875;;-4;;BIOLFLOR database;.875;1;.642;;;Air dried weight;;3 Silene dichotoma;15776;actual measurement;one-seeded generative dispersule;.875;;-4;;BIOLFLOR database;.875;1;.642;;;Air dried weight;;2a Silene dioica;17578;actual measurement;germinule;.767;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.767;;;100;;Air dried weight;;3 Silene dioica;17578;actual measurement;germinule;.624;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.624;;;100;;Air dried weight;;3 Silene dioica;17578;actual measurement;one-seeded generative dispersule;.612;;-4;;BIOLFLOR database;.612;.7;.425;;;Air dried weight;;2a Silene dioica;17578;actual measurement;generative dispersule;.91;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.91;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Silene dioica;17578;actual measurement;germinule;1.08533;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.08533;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Silene dioica;17578;actual measurement;germinule;.612;;-4;;BIOLFLOR database;.612;.7;.425;;;Air dried weight;;3 Silene dioica;17578;actual measurement;one-seeded generative dispersule;.767;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.767;;;100;;Air dried weight;;2a Silene dioica;17578;actual measurement;one-seeded generative dispersule;.624;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.624;;;100;;Air dried weight;;2a Silene dioica;17578;other;one-seeded generative dispersule;.7972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene dioica;17578;actual measurement (following LEDA data standards);germinule;.84;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Silene dioica;17578;other;germinule;.7972;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7972;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene dioica;17578;actual measurement (following LEDA data standards);germinule;.84;1;-2;.84;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;.84;.84;;preaggregated value obtained from single record;Air dried weight;;3 Silene gallica;16298;other;germinule;.384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene gallica;16298;other;germinule;.3508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene gallica;16298;other;one-seeded generative dispersule;.3508;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3508;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene gallica;16298;other;one-seeded generative dispersule;.384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene gallica;16298;actual measurement;germinule;.31;;-4;;BIOLFLOR database;.31;.338;.285;;;Air dried weight;;3 Silene gallica;16298;actual measurement;germinule;.27;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.27;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Silene gallica;16298;actual measurement;germinule;.27033;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.27033;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Silene gallica;16298;actual measurement;one-seeded generative dispersule;.31;;-4;;BIOLFLOR database;.31;.338;.285;;;Air dried weight;;2a Silene italica;16602;actual measurement;generative dispersule;.38;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.38;;;1;n an replicates unknown;Air dried weight;;2 Silene italica;16602;other;germinule;.6432;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene italica;16602;other;germinule;.6072;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6072;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene latifolia;17283;actual measurement;generative dispersule;.797;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.797;.797;.797;1;;Air dried weight;;2 Silene latifolia;17283;actual measurement;one-seeded generative dispersule;.812;;-4;;BIOLFLOR database;.812;.93;.707;;;Air dried weight;;2a Silene latifolia;17283;actual measurement;germinule;.812;;-4;;BIOLFLOR database;.812;.93;.707;;;Air dried weight;;3 Silene latifolia;17283;actual measurement;one-seeded generative dispersule;1.107;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.107;;;100;;Air dried weight;;2a Silene latifolia;17283;actual measurement;one-seeded generative dispersule;1.088;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.088;;;50;;Air dried weight;;2a Silene latifolia;17283;actual measurement;one-seeded generative dispersule;.935;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.935;;;100;;Air dried weight;;2a Silene latifolia;17283;actual measurement;germinule;.935;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.935;;;100;;Air dried weight;;3 Silene latifolia;17283;actual measurement;germinule;1.107;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.107;;;100;;Air dried weight;;3 Silene latifolia;17283;actual measurement;germinule;1.088;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.088;;;50;;Air dried weight;;3 Silene linicola;17593;actual measurement;germinule;2.419;;-4;;BIOLFLOR database;2.419;2.51;2.368;;;Air dried weight;;3 Silene linicola;17593;actual measurement;one-seeded generative dispersule;2.419;;-4;;BIOLFLOR database;2.419;2.51;2.368;;;Air dried weight;;2a Silene noctiflora;17252;actual measurement;one-seeded generative dispersule;1.042;;-4;;BIOLFLOR database;1.042;1.042;1.041;;;Air dried weight;;2a Silene noctiflora;17252;actual measurement;one-seeded generative dispersule;1.061;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.061;1.089;1.033;100;;Air dried weight;;2a Silene noctiflora;17252;other;one-seeded generative dispersule;1.1056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene noctiflora;17252;other;one-seeded generative dispersule;1.0516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene noctiflora;17252;other;one-seeded generative dispersule;1.0956;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene noctiflora;17252;other;one-seeded generative dispersule;1.166;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.166;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene noctiflora;17252;other;one-seeded generative dispersule;1.1084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene noctiflora;17252;actual measurement;germinule;1.042;;-4;;BIOLFLOR database;1.042;1.042;1.041;;;Air dried weight;;3 Silene noctiflora;17252;actual measurement;one-seeded generative dispersule;1.008;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.008;;;50;;Air dried weight;;2a Silene noctiflora;17252;actual measurement;germinule;1.008;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.008;;;50;;Air dried weight;;3 Silene noctiflora;17252;other;germinule;1.166;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.166;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene noctiflora;17252;other;germinule;1.1056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene noctiflora;17252;other;germinule;1.1084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene noctiflora;17252;other;germinule;1.0956;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene noctiflora;17252;other;germinule;1.0516;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0516;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene nutans;16673;other;germinule;.3396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene nutans;16673;actual measurement;germinule;.279;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.279;;;100;;Air dried weight;;3 Silene nutans;16673;actual measurement;germinule;.298;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.298;;;100;;Air dried weight;;3 Silene nutans;16673;actual measurement;germinule;.296;;-4;;BIOLFLOR database;.296;;;;;Air dried weight;;3 Silene nutans;16673;actual measurement;germinule;.275;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.275;;;100;;Air dried weight;;3 Silene nutans;16673;actual measurement;germinule;.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.29;;;50;;Air dried weight;;3 Silene nutans;16673;actual measurement;germinule;.64;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.64;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Silene nutans;16673;actual measurement;one-seeded generative dispersule;.279;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.279;;;100;;Air dried weight;;2a Silene nutans;16673;actual measurement;one-seeded generative dispersule;.298;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.298;;;100;;Air dried weight;;2a Silene nutans;16673;actual measurement;one-seeded generative dispersule;.275;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.275;;;100;;Air dried weight;;2a Silene nutans;16673;actual measurement;one-seeded generative dispersule;.296;;-4;;BIOLFLOR database;.296;;;;;Air dried weight;;2a Silene nutans;16673;actual measurement;one-seeded generative dispersule;.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.29;;;50;;Air dried weight;;2a Silene nutans;16673;other;one-seeded generative dispersule;.3396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene otites;15749;other;germinule;.2016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene otites;15749;other;one-seeded generative dispersule;.2016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene otites;15749;other;one-seeded generative dispersule;.1664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene otites;15749;other;one-seeded generative dispersule;.188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silene otites;15749;other;germinule;.188;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.188;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene otites;15749;other;germinule;.1664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene otites;15749;actual measurement;one-seeded generative dispersule;.187;;-4;;BIOLFLOR database;.187;;;;;Air dried weight;;2a Silene otites;15749;actual measurement;germinule;.41;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.41;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Silene otites;15749;actual measurement;germinule;.187;;-4;;BIOLFLOR database;.187;;;;;Air dried weight;;3 Silene pusilla;17617;actual measurement;germinule;.12;;-4;;BIOLFLOR database;.12;;;;;Air dried weight;;3 Silene pusilla;17617;actual measurement;one-seeded generative dispersule;.12;;-4;;BIOLFLOR database;.12;;;;;Air dried weight;;2a Silene rupestris;17622;actual measurement;one-seeded generative dispersule;.074;;-4;;BIOLFLOR database;.074;.081;.072;;;Air dried weight;;2a Silene rupestris;17622;actual measurement;germinule;.074;;-4;;BIOLFLOR database;.074;.081;.072;;;Air dried weight;;3 Silene saxifraga;16769;actual measurement;germinule;.33;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.33;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Silene scabriflora;17265;actual measurement;germinule;.32;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.32;;;30;collected between 1996-1999;Air dried weight;;3 Silene scabriflora;17265;actual measurement;germinule;.316;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.316;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Silene tatarica;17273;actual measurement;germinule;.167;;-4;;BIOLFLOR database;.167;;;;;Air dried weight;;3 Silene tatarica;17273;actual measurement;germinule;.1624;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1624;;;50;;Air dried weight;;3 Silene tatarica;17273;actual measurement;one-seeded generative dispersule;.167;;-4;;BIOLFLOR database;.167;;;;;Air dried weight;;2a Silene uniflora;17634;other;unknown;.7308;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7308;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Silene vulgaris;16657;actual measurement (following LEDA data standards);germinule;.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.86;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Silene vulgaris;16657;actual measurement (following LEDA data standards);germinule;.56;1;-2;.56;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.56;.56;.56;;preaggregated value obtained from single record;Air dried weight;;3 Silene vulgaris;16657;actual measurement (following LEDA data standards);germinule;.86;1;-2;.86;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.86;.86;.86;;preaggregated value obtained from single record;Air dried weight;;3 Silene vulgaris;16657;other;germinule;.7336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Silene vulgaris;16657;actual measurement (following LEDA data standards);germinule;.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.56;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Silene vulgaris;16657;actual measurement;germinule;1.068;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.068;;;100;;Air dried weight;;3 Silene vulgaris;16657;actual measurement;germinule;1.199;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.199;;;100;;Air dried weight;;3 Silene vulgaris;16657;actual measurement;one-seeded generative dispersule;.813;;-4;;BIOLFLOR database;.813;1.07;.661;;;Air dried weight;;2a Silene vulgaris;16657;actual measurement;one-seeded generative dispersule;.708111111;6;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.708111111;.79;.678;1;;Air dried weight;;2a Silene vulgaris;16657;actual measurement;germinule;1.456;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.456;;;50;;Air dried weight;;3 Silene vulgaris;16657;actual measurement;germinule;.813;;-4;;BIOLFLOR database;.813;1.07;.661;;;Air dried weight;;3 Silene vulgaris;16657;actual measurement;one-seeded generative dispersule;1.199;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.199;;;100;;Air dried weight;;2a Silene vulgaris;16657;actual measurement;one-seeded generative dispersule;1.456;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.456;;;50;;Air dried weight;;2a Silene vulgaris;16657;actual measurement;one-seeded generative dispersule;1.068;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.068;;;100;;Air dried weight;;2a Silene vulgaris;16657;other;one-seeded generative dispersule;.7336;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7336;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Silybum marianum;9640;actual measurement;one-seeded generative dispersule;32.393;;-4;;BIOLFLOR database;32.393;;;;;Air dried weight;;2a Silybum marianum;9640;actual measurement;one-seeded generative dispersule;14;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];14;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Silybum marianum;9640;actual measurement;generative dispersule;22.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);22.17;;;1;n an replicates unknown;Air dried weight;;2 Silybum marianum;9640;actual measurement;germinule;32.393;;-4;;BIOLFLOR database;32.393;;;;;Air dried weight;;3 Silybum marianum;9640;actual measurement;germinule;12.8;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];12.8;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Sinapis alba;13450;actual measurement;germinule;4.25;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;5.5;3;1;n and replicates unknown;Air dried weight;;3 Sinapis alba;13450;actual measurement;one-seeded generative dispersule;4.814;;-4;;BIOLFLOR database;4.814;6.5;3;;;Air dried weight;;2a Sinapis alba;13450;actual measurement;germinule;4.814;;-4;;BIOLFLOR database;4.814;6.5;3;;;Air dried weight;;3 Sinapis alba;13450;other;one-seeded generative dispersule;2.6932;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sinapis alba;13450;other;germinule;2.6932;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.6932;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.29;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.45;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.36;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.45;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.43;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.43;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.37;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.37;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.45;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;other;germinule;3.0868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.45;1;-2;2.45;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.45;2.45;2.45;;preaggregated value obtained from single record;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.37;9;-2;2.37;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.37;2.45;2.27;;preaggregated value obtained from single record;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.39;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.27;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;actual measurement (following LEDA data standards);germinule;2.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.31;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sinapis arvensis;13454;other;one-seeded generative dispersule;3.0868;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0868;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sinapis arvensis;13454;actual measurement;one-seeded generative dispersule;1.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.15;;;50;;Air dried weight;;2a Sinapis arvensis;13454;actual measurement;germinule;1.698;;-4;;BIOLFLOR database;1.698;2.49;1.15;;;Air dried weight;;3 Sinapis arvensis;13454;actual measurement;germinule;1.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.15;;;50;;Air dried weight;;3 Sinapis arvensis;13454;actual measurement;germinule;3.086;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.086;;;50;;Air dried weight;;3 Sinapis arvensis;13454;actual measurement;one-seeded generative dispersule;1.698;;-4;;BIOLFLOR database;1.698;2.49;1.15;;;Air dried weight;;2a Sinapis arvensis;13454;actual measurement;one-seeded generative dispersule;2.6585;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.6585;2.675;2.642;100;;Air dried weight;;2a Sinapis arvensis;13454;actual measurement;one-seeded generative dispersule;3.086;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.086;;;50;;Air dried weight;;2a Sison amomum;995;other;unknown;1.2424;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2424;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sisymbrium altissimum;13034;actual measurement;germinule;.248;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.248;;;100;;Air dried weight;;3 Sisymbrium altissimum;13034;actual measurement;one-seeded generative dispersule;.215;;-4;;BIOLFLOR database;.215;.25;.166;;;Air dried weight;;2a Sisymbrium altissimum;13034;actual measurement;germinule;.215;;-4;;BIOLFLOR database;.215;.25;.166;;;Air dried weight;;3 Sisymbrium altissimum;13034;actual measurement;one-seeded generative dispersule;.248;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.248;;;100;;Air dried weight;;2a Sisymbrium austriacum;13926;actual measurement;germinule;.259;;-4;;BIOLFLOR database;.259;.292;.235;;;Air dried weight;;3 Sisymbrium austriacum;13926;actual measurement;one-seeded generative dispersule;.259;;-4;;BIOLFLOR database;.259;.292;.235;;;Air dried weight;;2a Sisymbrium irio;14646;actual measurement;germinule;.115;;-4;;BIOLFLOR database;.115;.116;.113;;;Air dried weight;;3 Sisymbrium irio;14646;actual measurement;one-seeded generative dispersule;.115;;-4;;BIOLFLOR database;.115;.116;.113;;;Air dried weight;;2a Sisymbrium irio;14646;other;one-seeded generative dispersule;.0876;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0876;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sisymbrium irio;14646;actual measurement;generative dispersule;.08;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.08;;;1;n an replicates unknown;Air dried weight;;2 Sisymbrium irio;14646;other;one-seeded generative dispersule;.0992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sisymbrium irio;14646;other;one-seeded generative dispersule;.08;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.08;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sisymbrium irio;14646;other;germinule;.0992;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0992;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sisymbrium irio;14646;other;germinule;.0876;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0876;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sisymbrium irio;14646;other;germinule;.08;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.08;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sisymbrium loeselii;13930;actual measurement;one-seeded generative dispersule;.158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.158;;;50;;Air dried weight;;2a Sisymbrium loeselii;13930;actual measurement;germinule;.158;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.158;;;50;;Air dried weight;;3 Sisymbrium loeselii;13930;actual measurement;one-seeded generative dispersule;.086;;-4;;BIOLFLOR database;.086;.1;.073;;;Air dried weight;;2a Sisymbrium loeselii;13930;actual measurement;generative dispersule;.03;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.03;;;1;n an replicates unknown;Air dried weight;;2 Sisymbrium loeselii;13930;actual measurement;germinule;.086;;-4;;BIOLFLOR database;.086;.1;.073;;;Air dried weight;;3 Sisymbrium officinale;13041;actual measurement;germinule;.234;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.234;;;100;;Air dried weight;;3 Sisymbrium officinale;13041;actual measurement;germinule;.247;;-4;;BIOLFLOR database;.247;.295;.2;;;Air dried weight;;3 Sisymbrium officinale;13041;actual measurement;germinule;.33;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.33;;;50;;Air dried weight;;3 Sisymbrium officinale;13041;actual measurement;one-seeded generative dispersule;.234;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.234;;;100;;Air dried weight;;2a Sisymbrium officinale;13041;actual measurement;one-seeded generative dispersule;.33;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.33;;;50;;Air dried weight;;2a Sisymbrium officinale;13041;actual measurement;one-seeded generative dispersule;.247;;-4;;BIOLFLOR database;.247;.295;.2;;;Air dried weight;;2a Sisymbrium orientale;13042;actual measurement;one-seeded generative dispersule;.184;;-4;;BIOLFLOR database;.184;;;;;Air dried weight;;2a Sisymbrium orientale;13042;actual measurement;germinule;.184;;-4;;BIOLFLOR database;.184;;;;;Air dried weight;;3 Sisymbrium strictissimum;13809;actual measurement;germinule;.349;;-4;;BIOLFLOR database;.349;.359;.338;;;Air dried weight;;3 Sisymbrium strictissimum;13809;actual measurement;one-seeded generative dispersule;.349;;-4;;BIOLFLOR database;.349;.359;.338;;;Air dried weight;;2a Sisymbrium strictissimum;13809;actual measurement;one-seeded generative dispersule;.441;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.441;.4439;.4366;100;;Air dried weight;;2a Sisymbrium strictissimum;13809;other;one-seeded generative dispersule;.4024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sisymbrium strictissimum;13809;other;germinule;.4024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sisymbrium volgense;12712;actual measurement;one-seeded generative dispersule;.182;;-4;;BIOLFLOR database;.182;.183;.18;;;Air dried weight;;2a Sisymbrium volgense;12712;actual measurement;germinule;.182;;-4;;BIOLFLOR database;.182;.183;.18;;;Air dried weight;;3 Sisyrinchium bermudiana;36801;actual measurement;germinule;.767;;-4;;BIOLFLOR database;.767;;;;;Air dried weight;;3 Sisyrinchium bermudiana;36801;actual measurement;one-seeded generative dispersule;.767;;-4;;BIOLFLOR database;.767;;;;;Air dried weight;;2a Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.24;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.09;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.09;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.17;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.17;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.25;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;.86;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.86;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;other;germinule;1.4196;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4196;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.15;10;-2;1.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;1.25;.86;;preaggregated value obtained from single record;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.16;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.23;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Sium latifolium;1536;actual measurement (following LEDA data standards);germinule;1.12;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.12;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Smilax aspera;38836;actual measurement;germinule;38.23;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);38.23;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Smyrnium olusatrum;1000;actual measurement;one-seeded generative dispersule;34.098;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34.098;;;100;;Air dried weight;;2a Smyrnium olusatrum;1000;actual measurement;one-seeded generative dispersule;20.458;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.458;;;50;;Air dried weight;;2a Smyrnium olusatrum;1000;other;germinule;28.5284;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);28.5284;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Smyrnium olusatrum;1000;other;germinule;27.8664;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);27.8664;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Smyrnium perfoliatum;2032;actual measurement;germinule;11.968;;-4;;BIOLFLOR database;11.968;;;;;Air dried weight;;3 Smyrnium perfoliatum;2032;actual measurement;germinule;11.9676;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);11.9676;;;100;;Air dried weight;;3 Smyrnium perfoliatum;2032;actual measurement;one-seeded generative dispersule;11.968;;-4;;BIOLFLOR database;11.968;;;;;Air dried weight;;2a Solanum americanum;35074;other;unknown;.588;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.588;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Solanum dulcamara;35041;actual measurement (following LEDA data standards);germinule;1.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.64;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Solanum dulcamara;35041;actual measurement (following LEDA data standards);germinule;1.64;1;-2;1.64;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.64;1.64;1.64;;preaggregated value obtained from single record;Air dried weight;;3 Solanum dulcamara;35041;actual measurement;multi-seeded generative dispersule;228;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);228;;;1;n an replicates unknown;Fresh weight;;2b Solanum dulcamara;35041;actual measurement;germinule;1.595;;-4;;BIOLFLOR database;1.595;1.7;1.49;;;Air dried weight;;3 Solanum dulcamara;35041;actual measurement;one-seeded generative dispersule;1.38;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.38;;;100;;Air dried weight;;2a Solanum dulcamara;35041;actual measurement;one-seeded generative dispersule;1.486;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.486;;;100;;Air dried weight;;2a Solanum dulcamara;35041;actual measurement;germinule;1.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.3;;;1;n an replicates unknown;Air dried weight;;3 Solanum dulcamara;35041;actual measurement;germinule;2.095882353;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.095882353;2.103529412;2.088235294;85;;Air dried weight;;3 Solanum nigrum;34958;actual measurement;germinule;.745;;-4;;BIOLFLOR database;.745;.76;.719;;;Air dried weight;;3 Solanum nigrum;34958;actual measurement;one-seeded generative dispersule;.882;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.882;;;50;;Air dried weight;;2a Solanum nigrum;34958;actual measurement;one-seeded generative dispersule;.755;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.755;;;20;;Air dried weight;;2a Solanum nigrum;34958;actual measurement;generative dispersule;2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2;;;1;n an replicates unknown;Air dried weight;;2 Solanum nigrum;34958;other;germinule;.8144;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8144;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Solanum nigrum;34958;other;germinule;.304;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.304;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Soldanella alpina;28904;actual measurement;germinule;.24;;-4;;BIOLFLOR database;.24;;;;;Air dried weight;;3 Soldanella alpina;28904;actual measurement;one-seeded generative dispersule;.24;;-4;;BIOLFLOR database;.24;;;;;Air dried weight;;2a Soldanella montana;28961;actual measurement;one-seeded generative dispersule;.568;;-4;;BIOLFLOR database;.568;;;;;Air dried weight;;2a Soldanella montana;28961;actual measurement;germinule;.568;;-4;;BIOLFLOR database;.568;;;;;Air dried weight;;3 Solidago canadensis;9491;actual measurement;germinule;.037;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.037;;;50;;Air dried weight;;3 Solidago canadensis;9491;actual measurement;germinule;.06;;-4;;BIOLFLOR database;.06;;;;;Air dried weight;;3 Solidago canadensis;9491;actual measurement;germinule;.064;;-4;;BIOLFLOR database;.064;;;;;Air dried weight;;3 Solidago canadensis;9491;actual measurement;one-seeded generative dispersule;.037;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.037;;;50;;Air dried weight;;2a Solidago canadensis;9491;actual measurement;one-seeded generative dispersule;.064;;-4;;BIOLFLOR database;.064;;;;;Air dried weight;;2a Solidago canadensis;9491;actual measurement;one-seeded generative dispersule;.0525;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0525;.055;.05;100;;Air dried weight;;2a Solidago canadensis;9491;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;;;100;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Solidago canadensis;9491;actual measurement (following LEDA data standards);one-seeded generative dispersule;.11;1;-2;.11;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.11;.11;.11;;preaggregated value obtained from single record;Air dried weight;;2a Solidago gigantea;10023;actual measurement;germinule;.06;;-4;;BIOLFLOR database;.06;;;;;Air dried weight;;3 Solidago gigantea;10023;actual measurement;one-seeded generative dispersule;.0616;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0616;;;320;;Air dried weight;;2a Solidago gigantea;10023;actual measurement;one-seeded generative dispersule;.074;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.074;;;50;;Air dried weight;;2a Solidago graminifolia;9892;actual measurement;one-seeded generative dispersule;.054;;-4;;BIOLFLOR database;.054;;;;;Air dried weight;;2a Solidago graminifolia;9892;actual measurement;germinule;.054;;-4;;BIOLFLOR database;.054;;;;;Air dried weight;;3 Solidago graminifolia;9892;actual measurement;germinule;.043;;-4;;BIOLFLOR database;.043;;;;;Air dried weight;;3 Solidago virgaurea;9820;actual measurement;generative dispersule;.74;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.74;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Solidago virgaurea;9820;actual measurement;germinule;.547;;-4;;BIOLFLOR database;.547;.6;.52;;;Air dried weight;;3 Solidago virgaurea;9820;actual measurement;germinule;.69;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.69;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Solidago virgaurea;9820;actual measurement;one-seeded generative dispersule;.519;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.519;;;100;;Air dried weight;;2a Solidago virgaurea;9820;actual measurement;one-seeded generative dispersule;.742;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.742;;;50;;Air dried weight;;2a Solidago virgaurea;9820;actual measurement;generative dispersule;.6255;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.6255;.746;.505;100;with pappus;Air dried weight;;2 Solidago virgaurea;9820;actual measurement (following LEDA data standards);germinule;.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;;;50;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Solidago virgaurea;9820;other;germinule;.3696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Solidago virgaurea;9820;actual measurement (following LEDA data standards);germinule;.61;1;-2;.61;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;.61;.61;;preaggregated value obtained from single record;Air dried weight;;3 Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;.85;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.85;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.6;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;other;germinule;.678;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.678;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;.82;10;-2;.82;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.82;1.07;.6;;preaggregated value obtained from single record;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.07;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.61;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.98;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.02;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.03;;;10;used balance: Mettler H51, disp. unit with pappus;Air dried weight;;2a Sonchus arvensis;10586;other;one-seeded generative dispersule;.678;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.678;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sonchus arvensis;10586;actual measurement;one-seeded generative dispersule;.466;;-4;;BIOLFLOR database;.466;;;;;Air dried weight;;2a Sonchus arvensis;10586;actual measurement;one-seeded generative dispersule;.602;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.602;;;100;;Air dried weight;;2a Sonchus arvensis;10586;actual measurement;germinule;.466;;-4;;BIOLFLOR database;.466;;;;;Air dried weight;;3 Sonchus arvensis;10586;actual measurement;germinule;.602;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.602;;;100;;Air dried weight;;3 Sonchus arvensis;10586;actual measurement;generative dispersule;1.7725;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.7725;1.83;1.715;60;with pappus;Air dried weight;;2 Sonchus asper;9413;actual measurement;generative dispersule;.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.17;;;1;n an replicates unknown;Air dried weight;;2 Sonchus asper;9413;actual measurement;germinule;.324;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.324;;;100;;Air dried weight;;3 Sonchus asper;9413;actual measurement;germinule;.279;;-4;;BIOLFLOR database;.279;.323;.249;;;Air dried weight;;3 Sonchus asper;9413;actual measurement;one-seeded generative dispersule;.279;;-4;;BIOLFLOR database;.279;.323;.249;;;Air dried weight;;2a Sonchus asper;9413;actual measurement;one-seeded generative dispersule;.324;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.324;;;100;;Air dried weight;;2a Sonchus asper;9413;actual measurement;one-seeded generative dispersule;.344;;-4;;BIOLFLOR database;.344;;;;;Air dried weight;;2a Sonchus asper;9413;actual measurement;generative dispersule;.283666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.283666667;.324;.263;50;;Air dried weight;;2 Sonchus asper;9413;actual measurement (following LEDA data standards);germinule;.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;;;100;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Sonchus asper;9413;actual measurement (following LEDA data standards);one-seeded generative dispersule;.26;1;-2;.26;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.26;.26;.26;;preaggregated value obtained from single record;Air dried weight;;2a Sonchus asper;9413;actual measurement (following LEDA data standards);germinule;.28;1;-2;.28;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.28;.28;.28;;preaggregated value obtained from single record;Air dried weight;;3 Sonchus asper;9413;actual measurement (following LEDA data standards);one-seeded generative dispersule;.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.26;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Sonchus oleraceus;10587;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;1;-2;.38;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;.38;.38;;preaggregated value obtained from single record;Air dried weight;;2a Sonchus oleraceus;10587;actual measurement (following LEDA data standards);one-seeded generative dispersule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;30;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Sonchus oleraceus;10587;other;germinule;.278;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.278;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sonchus oleraceus;10587;other;one-seeded generative dispersule;.278;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.278;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sonchus oleraceus;10587;actual measurement;one-seeded generative dispersule;.269;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.269;;;100;;Air dried weight;;2a Sonchus oleraceus;10587;actual measurement;germinule;.269;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.269;;;100;;Air dried weight;;3 Sonchus oleraceus;10587;actual measurement;one-seeded generative dispersule;.527;;-4;;BIOLFLOR database;.527;;;;;Air dried weight;;2a Sonchus oleraceus;10587;actual measurement;one-seeded generative dispersule;.272;;-4;;BIOLFLOR database;.272;.3;.208;;;Air dried weight;;2a Sonchus oleraceus;10587;actual measurement;germinule;.272;;-4;;BIOLFLOR database;.272;.3;.208;;;Air dried weight;;3 Sonchus palustris;9894;actual measurement;germinule;.448;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.448;;;50;;Air dried weight;;3 Sonchus palustris;9894;actual measurement;germinule;.48;;-4;;BIOLFLOR database;.48;.539;.42;;;Air dried weight;;3 Sonchus palustris;9894;actual measurement;one-seeded generative dispersule;.448;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.448;;;50;;Air dried weight;;2a Sonchus palustris;9894;actual measurement;one-seeded generative dispersule;.48;;-4;;BIOLFLOR database;.48;.539;.42;;;Air dried weight;;2a Sonchus palustris;9894;actual measurement;one-seeded generative dispersule;.448;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.448;.48;.416;100;;Air dried weight;;2a Sonchus palustris;9894;other;one-seeded generative dispersule;.6468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sonchus palustris;9894;other;one-seeded generative dispersule;.5636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Sonchus palustris;9894;actual measurement;generative dispersule;.56;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.56;;;1;n an replicates unknown;Air dried weight;;2 Sonchus palustris;9894;actual measurement (following LEDA data standards);germinule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;100;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Sonchus palustris;9894;other;germinule;.5636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sonchus palustris;9894;other;germinule;.6468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sonchus palustris;9894;actual measurement (following LEDA data standards);one-seeded generative dispersule;.81;1;-2;.81;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.81;.81;.81;;preaggregated value obtained from single record;Air dried weight;;2a Sonchus palustris;9894;actual measurement (following LEDA data standards);one-seeded generative dispersule;.81;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.81;;;15;used balance: Mettler Toledo 4, seed with pappus;Air dried weight;;2a Sonchus palustris;9894;actual measurement (following LEDA data standards);germinule;.63;1;-2;.63;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;.63;.63;;preaggregated value obtained from single record;Air dried weight;;3 Sorbus aria;30087;actual measurement;one-seeded generative dispersule;13.3;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.3;;;25;;Air dried weight;;2a Sorbus aria;30087;actual measurement;generative dispersule;456.65;;-4;;BIOLFLOR database;456.65;473.3;440;;;Fresh weight;;2 Sorbus aria;30087;actual measurement;germinule;22.64933333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;22.64933333;22.932;22.367;100;;Air dried weight;;3 Sorbus aria;30087;actual measurement;germinule;22;;-4;;BIOLFLOR database;22;23.2;20.8;;;Air dried weight;;3 Sorbus aucuparia;29162;actual measurement;generative dispersule;360;;-4;;BIOLFLOR database;360;490;250;;;Air dried weight;;2 Sorbus aucuparia;29162;actual measurement;generative dispersule;424.241;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;424.241;429.28;419.202;100;;Fresh weight;;2 Sorbus aucuparia;29162;actual measurement;generative dispersule;4.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);4.2;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Sorbus aucuparia;29162;actual measurement;germinule;4.094;;-4;;BIOLFLOR database;4.094;7.6;1.15;;;Air dried weight;;3 Sorbus aucuparia;29162;actual measurement;one-seeded generative dispersule;3.14;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.14;;;50;;Air dried weight;;2a Sorbus aucuparia;29162;actual measurement;one-seeded generative dispersule;2.58;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.58;;;100;;Air dried weight;;2a Sorbus aucuparia;29162;actual measurement;germinule;3.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.5;;;1;n an replicates unknown;Air dried weight;;3 Sorbus aucuparia;29162;actual measurement;multi-seeded generative dispersule;288;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);288;;;1;n an replicates unknown;Fresh weight;;2b Sorbus aucuparia;29162;other;germinule;3.1964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.1964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sorbus chamaemespilus;30433;actual measurement;germinule;15.9;;-4;;BIOLFLOR database;15.9;;;;;Air dried weight;;3 Sorbus domestica;29168;actual measurement;generative dispersule;33.2;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);33.2;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Sorbus domestica;29168;actual measurement;germinule;27.5;;-4;;BIOLFLOR database;27.5;;;;;Air dried weight;;3 Sorbus intermedia;30014;actual measurement;germinule;69.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);69.9;;;1;n an replicates unknown;Air dried weight;;3 Sorbus intermedia;30014;actual measurement;germinule;18;;-4;;BIOLFLOR database;18;;;;;Air dried weight;;3 Sorbus intermedia;30014;actual measurement;generative dispersule;508.41;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;508.41;529.3788235;487.4411765;85;;Unknown;;2 Sorbus intermedia;30014;actual measurement;generative dispersule;244.27;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;244.27;252.724;235.816;25;dried berries?;Unknown;;2 Sorbus intermedia;30014;actual measurement;multi-seeded generative dispersule;2078;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2078;;;1;n an replicates unknown;Fresh weight;;2b Sorbus lancastriensis;30724;other;unknown;14.51;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.51;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sorbus lancastriensis;30724;other;unknown;15.912;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.912;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sorbus lancastriensis;30724;other;unknown;15.8744;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.8744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sorbus latifolia;29544;actual measurement;germinule;27;;-4;;BIOLFLOR database;27;;;;;Air dried weight;;3 Sorbus pannonica;29110;actual measurement;generative dispersule;860.185;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;860.185;879.179;841.191;100;;Unknown;;2 Sorbus porrigentiformis;31012;other;unknown;16.2088;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);16.2088;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sorbus torminalis;29551;other;germinule;16.8752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);16.8752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sorbus torminalis;29551;actual measurement;generative dispersule;39;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);39;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Sorbus torminalis;29551;actual measurement;generative dispersule;400;;-4;;BIOLFLOR database;400;;;;;Fresh weight;;2 Sorbus torminalis;29551;actual measurement;germinule;20.2;;-4;;BIOLFLOR database;20.2;;;;;Air dried weight;;3 Sorghum bicolor;43458;actual measurement;germinule;2.3756;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.3756;;;50;;Air dried weight;;3 Sparganium angustifolium;43989;other;unknown;2.0596;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.0596;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sparganium angustifolium;43989;other;unknown;1.9676;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9676;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.83;10;-2;15.83;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.9;17.63;14.61;;preaggregated value obtained from single record;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;16.02;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.02;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.73;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;16.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.2;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;other;germinule;3.4896;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.4896;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sparganium emersum;43992;other;germinule;3.2244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.2244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.61;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;16.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16.36;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.92;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.2;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.2;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;17.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.74;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.57;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Sparganium emersum;43992;actual measurement;generative dispersule;15.337;;-4;;BIOLFLOR database;15.337;16.476;13.91;;;Unknown;;2 Sparganium emersum;43992;actual measurement;germinule;4.31;;-4;;BIOLFLOR database;4.31;;;;;Air dried weight;;3 Sparganium emersum;43992;actual measurement;one-seeded generative dispersule;4.307;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.307;;;30;;Air dried weight;;2a Sparganium erectum;43993;actual measurement;germinule;13.1;;-4;;BIOLFLOR database;13.1;;;;;Air dried weight;;3 Sparganium erectum;43993;actual measurement;generative dispersule;20.981;;-4;;BIOLFLOR database;20.981;25.599;18.633;;;Unknown;;2 Sparganium erectum;43993;actual measurement;one-seeded generative dispersule;13.05;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.05;;;25;;Air dried weight;;2a Sparganium erectum;43993;actual measurement (following LEDA data standards);germinule;22.29;1;-2;22.29;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22.29;22.29;22.29;;preaggregated value obtained from single record;Air dried weight;;3 Sparganium erectum;43993;actual measurement (following LEDA data standards);germinule;22.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22.29;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Sparganium minimum;43999;actual measurement;generative dispersule;2.6;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.6;3.3;1.9;1;;Air dried weight;;2 Spartina x townsendii;43118;actual measurement (following LEDA data standards);one-seeded generative dispersule;10.99;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.99;;;30;used balance: Mettler H51, disp. unit;Air dried weight;;2a Spartina x townsendii;43118;actual measurement (following LEDA data standards);one-seeded generative dispersule;10.99;1;-2;10.99;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.99;10.99;10.99;;preaggregated value obtained from single record;Air dried weight;;2a Spartium junceum;20623;actual measurement;germinule;10.76;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);10.76;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Spartium junceum;20623;actual measurement;germinule;14;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];14;;;60;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Spergula arvensis;16731;actual measurement;germinule;.376;;-4;;BIOLFLOR database;.376;.5;.27;;;Air dried weight;;3 Spergula arvensis;16731;actual measurement;germinule;.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.16;;;30;collected between 1996-1999;Air dried weight;;3 Spergula arvensis;16731;actual measurement;germinule;.162;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.162;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Spergula arvensis;16731;actual measurement;germinule;.449;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.449;;;100;;Air dried weight;;3 Spergula arvensis;16731;actual measurement;germinule;.422;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.422;;;100;;Air dried weight;;3 Spergula arvensis;16731;actual measurement;germinule;.162;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.162;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Spergula arvensis;16731;actual measurement;one-seeded generative dispersule;.376;;-4;;BIOLFLOR database;.376;.5;.27;;;Air dried weight;;2a Spergula arvensis;16731;actual measurement;one-seeded generative dispersule;.422;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.422;;;100;;Air dried weight;;2a Spergula arvensis;16731;actual measurement;one-seeded generative dispersule;.449;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.449;;;100;;Air dried weight;;2a Spergula arvensis;16731;other;germinule;.4164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Spergula arvensis;16731;other;one-seeded generative dispersule;.4164;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4164;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Spergula morisonii;17638;actual measurement;one-seeded generative dispersule;.161;;-4;;BIOLFLOR database;.161;.162;.161;;;Air dried weight;;2a Spergula morisonii;17638;actual measurement;germinule;.161;;-4;;BIOLFLOR database;.161;.162;.161;;;Air dried weight;;3 Spergula pentandra;16733;actual measurement;germinule;.136;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.136;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Spergula pentandra;16733;actual measurement;germinule;.136;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.136;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Spergula pentandra;16733;actual measurement;germinule;.14;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.14;;;30;collected between 1996-1999;Air dried weight;;3 Spergularia echinosperma;15958;actual measurement;germinule;.012;;-4;;BIOLFLOR database;.012;;;;;Air dried weight;;3 Spergularia echinosperma;15958;actual measurement;one-seeded generative dispersule;.012;;-4;;BIOLFLOR database;.012;;;;;Air dried weight;;2a Spergularia echinosperma;15958;actual measurement;one-seeded generative dispersule;.017;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.017;.02;.014;100;;Air dried weight;;2a Spergularia marina;17645;actual measurement;one-seeded generative dispersule;.072;;-4;;BIOLFLOR database;.072;.117;.03;;;Air dried weight;;2a Spergularia marina;17645;actual measurement;one-seeded generative dispersule;.103;;-4;;BIOLFLOR database;.103;.188;.057;;;Air dried weight;;2a Spergularia marina;17645;actual measurement;one-seeded generative dispersule;.0425;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0425;.043;.042;100;;Air dried weight;;2a Spergularia marina;17645;actual measurement;germinule;.072;;-4;;BIOLFLOR database;.072;.117;.03;;;Air dried weight;;3 Spergularia marina;17645;actual measurement;germinule;.103;;-4;;BIOLFLOR database;.103;.188;.057;;;Air dried weight;;3 Spergularia marina;17645;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Spergularia marina;17645;actual measurement (following LEDA data standards);germinule;.06;1;-2;.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.06;.06;.06;;preaggregated value obtained from single record;Air dried weight;;3 Spergularia media;16741;actual measurement (following LEDA data standards);germinule;.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Spergularia media;16741;actual measurement (following LEDA data standards);germinule;.1;1;-2;.1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.1;.1;.1;;preaggregated value obtained from single record;Air dried weight;;3 Spergularia rubra;17650;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Spergularia rubra;17650;other;germinule;.029;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.029;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Spergularia rubra;17650;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Spergularia rubra;17650;actual measurement;germinule;.055;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.055;;;20;;Air dried weight;;3 Spergularia rubra;17650;actual measurement;germinule;.029;;-4;;BIOLFLOR database;.029;.03;.028;;;Air dried weight;;3 Spergularia rubra;17650;actual measurement;germinule;.025;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.025;;;100;;Air dried weight;;3 Spergularia rubra;17650;actual measurement;one-seeded generative dispersule;.055;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.055;;;20;;Air dried weight;;2a Spergularia rubra;17650;actual measurement;one-seeded generative dispersule;.0205;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0205;.021;.02;100;;Air dried weight;;2a Spergularia rubra;17650;actual measurement;one-seeded generative dispersule;.029;;-4;;BIOLFLOR database;.029;.03;.028;;;Air dried weight;;2a Spergularia rubra;17650;actual measurement;one-seeded generative dispersule;.025;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.025;;;100;;Air dried weight;;2a Spergularia rubra;17650;other;one-seeded generative dispersule;.029;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.029;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Spergularia rupicola;17651;other;unknown;.0436;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0436;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Spinacia oleracea;18064;actual measurement;germinule;10.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;13;8;1;n and replicates unknown;Air dried weight;;3 Spinacia oleracea;18064;actual measurement;generative dispersule;2.28;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.28;2.5;2;1;;Air dried weight;;2 Stachys alopecuros;24036;actual measurement;germinule;1.3232;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.3232;;;50;;Air dried weight;;3 Stachys alopecuros;24036;actual measurement;one-seeded generative dispersule;1.09;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.09;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Stachys alpina;24038;actual measurement;generative dispersule;4.3;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.3;5;3;1;;Air dried weight;;2 Stachys alpina;24038;other;germinule;5.0056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.0056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys alpina;24038;other;germinule;3.6016;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.6016;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys alpina;24038;other;germinule;5.7076;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.7076;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys annua;24834;actual measurement;germinule;.977;;-4;;BIOLFLOR database;.977;1.112;.842;;;Air dried weight;;3 Stachys annua;24834;actual measurement;one-seeded generative dispersule;.977;;-4;;BIOLFLOR database;.977;1.112;.842;;;Air dried weight;;2a Stachys arvensis;24369;actual measurement;one-seeded generative dispersule;.72;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.72;;;50;;Air dried weight;;2a Stachys arvensis;24369;other;germinule;.7984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys arvensis;24369;other;germinule;.6524;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys arvensis;24369;other;one-seeded generative dispersule;.7984;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7984;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys arvensis;24369;other;one-seeded generative dispersule;.6524;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6524;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys arvensis;24369;actual measurement;one-seeded generative dispersule;.72;;-4;;BIOLFLOR database;.72;;;;;Air dried weight;;2a Stachys arvensis;24369;actual measurement;germinule;.72;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.72;;;50;;Air dried weight;;3 Stachys arvensis;24369;actual measurement;germinule;.72;;-4;;BIOLFLOR database;.72;;;;;Air dried weight;;3 Stachys byzantina;24371;actual measurement;generative dispersule;1.28;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.28;;;1;n an replicates unknown;Air dried weight;;2 Stachys germanica;24844;other;one-seeded generative dispersule;1.53788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.53788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys germanica;24844;other;one-seeded generative dispersule;1.84;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.84;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys germanica;24844;other;one-seeded generative dispersule;1.3908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys germanica;24844;other;one-seeded generative dispersule;1.218;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.218;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys germanica;24844;actual measurement;one-seeded generative dispersule;1.429;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.429;;;100;;Air dried weight;;2a Stachys germanica;24844;actual measurement;germinule;1.429;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.429;;;100;;Air dried weight;;3 Stachys germanica;24844;actual measurement;germinule;1.697;;-4;;BIOLFLOR database;1.697;1.964;1.43;;;Air dried weight;;3 Stachys germanica;24844;actual measurement;one-seeded generative dispersule;1.697;;-4;;BIOLFLOR database;1.697;1.964;1.43;;;Air dried weight;;2a Stachys germanica;24844;other;germinule;1.3908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys germanica;24844;other;germinule;1.218;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.218;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys germanica;24844;other;germinule;1.84;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.84;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys germanica;24844;other;germinule;1.53788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.53788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys officinalis;24916;actual measurement;germinule;1.373;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.373;;;100;;Air dried weight;;3 Stachys officinalis;24916;actual measurement;germinule;1.414;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.414;;;50;;Air dried weight;;3 Stachys officinalis;24916;actual measurement;one-seeded generative dispersule;1.2185;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.2185;1.251;1.186;100;;Air dried weight;;2a Stachys officinalis;24916;actual measurement;one-seeded generative dispersule;1.212;;-4;;BIOLFLOR database;1.212;1.37;.979;;;Air dried weight;;2a Stachys officinalis;24916;actual measurement;germinule;1.659;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.659;;;50;;Air dried weight;;3 Stachys officinalis;24916;actual measurement;germinule;1.212;;-4;;BIOLFLOR database;1.212;1.37;.979;;;Air dried weight;;3 Stachys officinalis;24916;actual measurement;one-seeded generative dispersule;.98;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.98;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Stachys officinalis;24916;actual measurement;one-seeded generative dispersule;1.659;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.659;;;50;;Air dried weight;;2a Stachys officinalis;24916;actual measurement;one-seeded generative dispersule;1.414;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.414;;;50;;Air dried weight;;2a Stachys officinalis;24916;actual measurement;one-seeded generative dispersule;1.373;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.373;;;100;;Air dried weight;;2a Stachys palustris;24921;other;one-seeded generative dispersule;1.1236;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys palustris;24921;other;one-seeded generative dispersule;1.1744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys palustris;24921;other;one-seeded generative dispersule;1.5064;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5064;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stachys palustris;24921;actual measurement;germinule;1.251;;-4;;BIOLFLOR database;1.251;1.39;1.111;;;Air dried weight;;3 Stachys palustris;24921;actual measurement;germinule;1.045;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.045;;;100;;Air dried weight;;3 Stachys palustris;24921;actual measurement;germinule;1.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.16;;;50;;Air dried weight;;3 Stachys palustris;24921;actual measurement;germinule;1.226;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.226;;;50;;Air dried weight;;3 Stachys palustris;24921;actual measurement;one-seeded generative dispersule;1.045;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.045;;;100;;Air dried weight;;2a Stachys palustris;24921;actual measurement;one-seeded generative dispersule;1.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.16;;;50;;Air dried weight;;2a Stachys palustris;24921;actual measurement;one-seeded generative dispersule;1.226;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.226;;;50;;Air dried weight;;2a Stachys palustris;24921;actual measurement;one-seeded generative dispersule;1.251;;-4;;BIOLFLOR database;1.251;1.39;1.111;;;Air dried weight;;2a Stachys palustris;24921;actual measurement (following LEDA data standards);germinule;1.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.07;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Stachys palustris;24921;actual measurement (following LEDA data standards);germinule;1.07;1;-2;1.07;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.07;1.07;1.07;;preaggregated value obtained from single record;Air dried weight;;3 Stachys palustris;24921;other;germinule;1.5064;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.5064;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys palustris;24921;other;germinule;1.1236;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys palustris;24921;other;germinule;1.1744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stachys recta;24800;actual measurement;one-seeded generative dispersule;1.747;;-4;;BIOLFLOR database;1.747;1.9;1.5;;;Air dried weight;;2a Stachys recta;24800;actual measurement;germinule;1.747;;-4;;BIOLFLOR database;1.747;1.9;1.5;;;Air dried weight;;3 Stachys recta;24800;actual measurement;one-seeded generative dispersule;1.63;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.63;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Stachys sylvatica;24023;actual measurement;one-seeded generative dispersule;1.55;;-4;;BIOLFLOR database;1.55;1.7;1.4;;;Air dried weight;;2a Stachys sylvatica;24023;actual measurement;one-seeded generative dispersule;1.43;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.43;;;100;;Air dried weight;;2a Stachys sylvatica;24023;actual measurement;one-seeded generative dispersule;1.402;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.402;;;100;;Air dried weight;;2a Stachys sylvatica;24023;actual measurement;generative dispersule;1.542;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.542;1.57;1.514;100;;Air dried weight;;2 Stachys sylvatica;24023;actual measurement;germinule;1.43;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.43;;;100;;Air dried weight;;3 Stachys sylvatica;24023;actual measurement;germinule;1.402;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.402;;;100;;Air dried weight;;3 Stachys sylvatica;24023;actual measurement;germinule;1.55;;-4;;BIOLFLOR database;1.55;1.7;1.4;;;Air dried weight;;3 Stachys sylvatica;24023;actual measurement;one-seeded generative dispersule;1.23;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.23;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Stachys sylvatica;24023;actual measurement (following LEDA data standards);germinule;1.24;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.24;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Stachys sylvatica;24023;actual measurement (following LEDA data standards);germinule;1.24;1;-2;1.24;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.24;1.24;1.24;;preaggregated value obtained from single record;Air dried weight;;3 Staphylea pinnata;34660;actual measurement;generative dispersule;484.4;;-4;;BIOLFLOR database;484.4;;;;;Air dried weight;;2 Stellaria graminea;17658;actual measurement;one-seeded generative dispersule;.304;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.304;;;100;;Air dried weight;;2a Stellaria graminea;17658;actual measurement;one-seeded generative dispersule;.324;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.324;;;50;;Air dried weight;;2a Stellaria graminea;17658;actual measurement;one-seeded generative dispersule;.471;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.471;;;100;;Air dried weight;;2a Stellaria graminea;17658;actual measurement;germinule;.273;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.273;;;1;summers of 1995 and 1996;Unknown;;3 Stellaria graminea;17658;actual measurement;one-seeded generative dispersule;.303;;-4;;BIOLFLOR database;.303;.335;.278;;;Air dried weight;;2a Stellaria graminea;17658;actual measurement;one-seeded generative dispersule;.279733333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.279733333;.292;.272666667;150;;Air dried weight;;2a Stellaria graminea;17658;actual measurement;germinule;.304;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.304;;;100;;Air dried weight;;3 Stellaria graminea;17658;actual measurement;germinule;.303;;-4;;BIOLFLOR database;.303;.335;.278;;;Air dried weight;;3 Stellaria graminea;17658;actual measurement;germinule;.471;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.471;;;100;;Air dried weight;;3 Stellaria graminea;17658;actual measurement;germinule;.324;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.324;;;50;;Air dried weight;;3 Stellaria holostea;16753;actual measurement;germinule;2.92;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.92;;;20;;Air dried weight;;3 Stellaria holostea;16753;actual measurement;germinule;3.109;;-4;;BIOLFLOR database;3.109;3.7;2.4;;;Air dried weight;;3 Stellaria holostea;16753;actual measurement;one-seeded generative dispersule;2.92;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.92;;;20;;Air dried weight;;2a Stellaria holostea;16753;actual measurement;one-seeded generative dispersule;3.109;;-4;;BIOLFLOR database;3.109;3.7;2.4;;;Air dried weight;;2a Stellaria holostea;16753;other;one-seeded generative dispersule;2.1448;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1448;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stellaria holostea;16753;actual measurement (following LEDA data standards);germinule;2.74;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.74;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Stellaria holostea;16753;other;germinule;2.1448;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.1448;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stellaria holostea;16753;actual measurement (following LEDA data standards);germinule;2.74;1;-2;2.74;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2.74;2.74;2.74;;preaggregated value obtained from single record;Air dried weight;;3 Stellaria longifolia;15974;actual measurement;one-seeded generative dispersule;.086;;-4;;BIOLFLOR database;.086;;;;;Air dried weight;;2a Stellaria longifolia;15974;actual measurement;germinule;.086;;-4;;BIOLFLOR database;.086;;;;;Air dried weight;;3 Stellaria media;16755;actual measurement;germinule;.479;;-4;;BIOLFLOR database;.479;.71;.327;;;Air dried weight;;3 Stellaria media;16755;actual measurement;germinule;.327;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.327;;;100;;Air dried weight;;3 Stellaria media;16755;actual measurement;germinule;.351;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.351;;;50;;Air dried weight;;3 Stellaria media;16755;actual measurement;generative dispersule;.4128;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4128;.434666667;.393333333;150;;Air dried weight;;2 Stellaria media;16755;actual measurement;one-seeded generative dispersule;.479;;-4;;BIOLFLOR database;.479;.71;.327;;;Air dried weight;;2a Stellaria media;16755;actual measurement;one-seeded generative dispersule;.351;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.351;;;50;;Air dried weight;;2a Stellaria media;16755;actual measurement;one-seeded generative dispersule;.327;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.327;;;100;;Air dried weight;;2a Stellaria media;16755;other;one-seeded generative dispersule;.4176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stellaria media;16755;actual measurement;generative dispersule;.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29;;;1;n an replicates unknown;Air dried weight;;2 Stellaria media;16755;other;germinule;.4176;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4176;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stellaria neglecta;16759;other;germinule;.602;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.602;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stellaria neglecta;16759;other;germinule;.9204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stellaria neglecta;16759;actual measurement;one-seeded generative dispersule;1.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.02;;;10;;Air dried weight;;2a Stellaria nemorum;16761;actual measurement;one-seeded generative dispersule;.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.15;;;50;;Air dried weight;;2a Stellaria nemorum;16761;other;one-seeded generative dispersule;.2184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Stellaria nemorum;16761;actual measurement;germinule;.266;;-4;;BIOLFLOR database;.266;.321;.211;;;Air dried weight;;3 Stellaria nemorum;16761;actual measurement;germinule;.15;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.15;;;50;;Air dried weight;;3 Stellaria nemorum;16761;actual measurement;one-seeded generative dispersule;.266;;-4;;BIOLFLOR database;.266;.321;.211;;;Air dried weight;;2a Stellaria nemorum;16761;actual measurement (following LEDA data standards);germinule;.23;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.23;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Stellaria nemorum;16761;other;germinule;.2184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stellaria nemorum;16761;actual measurement (following LEDA data standards);germinule;.23;1;-2;.23;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.23;.23;.23;;preaggregated value obtained from single record;Air dried weight;;3 Stellaria pallida;17302;other;germinule;.1332;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1332;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Stellaria pallida;17302;actual measurement;one-seeded generative dispersule;.096;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.096;;;50;;Air dried weight;;2a Stellaria palustris;17304;actual measurement;one-seeded generative dispersule;.524;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.524;;;50;;Air dried weight;;2a Stellaria palustris;17304;actual measurement;one-seeded generative dispersule;.47;;-4;;BIOLFLOR database;.47;;;;;Air dried weight;;2a Stellaria palustris;17304;actual measurement;one-seeded generative dispersule;.514;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.514;;;50;;Air dried weight;;2a Stellaria palustris;17304;actual measurement;germinule;.514;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.514;;;50;;Air dried weight;;3 Stellaria palustris;17304;actual measurement;germinule;.47;;-4;;BIOLFLOR database;.47;;;;;Air dried weight;;3 Stellaria palustris;17304;actual measurement;germinule;.524;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.524;;;50;;Air dried weight;;3 Stellaria palustris;17304;actual measurement (following LEDA data standards);germinule;.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.45;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Stellaria palustris;17304;actual measurement (following LEDA data standards);germinule;.45;1;-2;.45;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.45;.45;.45;;preaggregated value obtained from single record;Air dried weight;;3 Stellaria uliginosa;17654;other;germinule;.0834;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0834;;;1000;1000 seed weight, unknown number of individuals, Seeds dry. >20 fruits/plant. c.5-8 seeds/fruit.;Air dried weight;;3 Stellaria uliginosa;17654;actual measurement;germinule;.059;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.059;;;100;;Air dried weight;;3 Stellaria uliginosa;17654;actual measurement;germinule;.06;;-4;;BIOLFLOR database;.06;.06;.059;;;Air dried weight;;3 Stellaria uliginosa;17654;actual measurement;one-seeded generative dispersule;.059;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.059;;;100;;Air dried weight;;2a Stellaria uliginosa;17654;actual measurement;one-seeded generative dispersule;.06;;-4;;BIOLFLOR database;.06;.06;.059;;;Air dried weight;;2a Stellaria uliginosa;17654;other;germinule;.0733;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0733;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;3 Stellaria uliginosa;17654;other;one-seeded generative dispersule;.0733;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0733;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;2a Stellaria uliginosa;17654;other;one-seeded generative dispersule;.0834;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0834;;;1000;1000 seed weight, unknown number of individuals, Seeds dry. >20 fruits/plant. c.5-8 seeds/fruit.;Air dried weight;;2a Stipa bromoides;42954;actual measurement;generative dispersule;5.15;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.15;;;1;n an replicates unknown;Air dried weight;;2 Stipa capillata;42956;actual measurement;germinule;9.558;;-4;;BIOLFLOR database;9.558;10.71;9;;;Air dried weight;;3 Stipa capillata;42956;actual measurement;one-seeded generative dispersule;9.558;;-4;;BIOLFLOR database;9.558;10.71;9;;;Air dried weight;;2a Stipa capillata;42956;actual measurement;generative dispersule;2.388;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.388;2.388;2.388;75;;Air dried weight;;2 Stipa pennata;42760;actual measurement;one-seeded generative dispersule;37.77;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);37.77;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Stipa pennata;42760;actual measurement;one-seeded generative dispersule;39;;-4;;BIOLFLOR database;39;;;;;Air dried weight;;2a Stipa pennata;42760;actual measurement;germinule;39;;-4;;BIOLFLOR database;39;;;;;Air dried weight;;3 Streptopus amplexifolius;38421;actual measurement;germinule;1.835723164;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.835723164;1.852;1.810169492;25;;Air dried weight;;3 Streptopus amplexifolius;38421;actual measurement;germinule;1.841894737;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.841894737;1.868;1.815789474;25;;Air dried weight;;3 Suaeda maritima;17972;actual measurement;germinule;.332;;-4;;BIOLFLOR database;.332;.394;.269;;;Air dried weight;;3 Suaeda maritima;17972;actual measurement;one-seeded generative dispersule;.332;;-4;;BIOLFLOR database;.332;.394;.269;;;Air dried weight;;2a Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.88;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.88;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.92;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.85;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.85;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;1.01;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.01;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.89;10;-2;.89;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.9;1.01;.79;;preaggregated value obtained from single record;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.73;1;-2;.73;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.73;.73;.73;;preaggregated value obtained from single record;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.73;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.83;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.83;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.95;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.95;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.9;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Suaeda maritima;17972;actual measurement (following LEDA data standards);germinule;.84;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Succisa pratensis;19186;other;germinule;1.7756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Succisa pratensis;19186;other;germinule;.7124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Succisa pratensis;19186;actual measurement;one-seeded generative dispersule;1.367;;-4;;BIOLFLOR database;1.367;1.6;1.026;;;Air dried weight;;2a Succisa pratensis;19186;actual measurement;one-seeded generative dispersule;1.373733333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.373733333;1.457333333;1.322;150;;Air dried weight;;2a Succisa pratensis;19186;actual measurement;one-seeded generative dispersule;1.57;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.57;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Succisa pratensis;19186;other;one-seeded generative dispersule;1.7756;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7756;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Succisa pratensis;19186;other;one-seeded generative dispersule;.7124;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7124;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Succisa pratensis;19186;actual measurement;germinule;1.367;;-4;;BIOLFLOR database;1.367;1.6;1.026;;;Air dried weight;;3 Succisa pratensis;19186;actual measurement;one-seeded generative dispersule;1.536;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.536;;;50;;Air dried weight;;2a Succisa pratensis;19186;actual measurement;germinule;1.338;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.338;;;1;summers of 1995 and 1996;Unknown;;3 Succisa pratensis;19186;actual measurement;germinule;1.536;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.536;;;50;;Air dried weight;;3 Succisella inflexa;19319;actual measurement;germinule;2.195;;-4;;BIOLFLOR database;2.195;2.306;2.083;;;Air dried weight;;3 Succisella inflexa;19319;actual measurement;one-seeded generative dispersule;2.195;;-4;;BIOLFLOR database;2.195;2.306;2.083;;;Air dried weight;;2a Succisella inflexa;19319;actual measurement;one-seeded generative dispersule;1.213;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.213;1.319;1.107;100;;Air dried weight;;2a Swertia perennis;22863;actual measurement;one-seeded generative dispersule;.361;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.361;.366;.356;100;;Air dried weight;;2a Symphoricarpos albus;15329;actual measurement;one-seeded generative dispersule;6.97;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.97;;;10;;Air dried weight;;2a Symphoricarpos albus;15329;actual measurement;germinule;9.811;;-4;;BIOLFLOR database;9.811;11.8;7.821;;;Air dried weight;;3 Symphoricarpos albus;15329;actual measurement;one-seeded generative dispersule;6.22;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.22;;;50;;Air dried weight;;2a Symphytum officinale;11757;actual measurement;generative dispersule;5.52;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;5.52;7;4.5;1;;Air dried weight;;2 Symphytum officinale;11757;other;germinule;11.1288;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);11.1288;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Symphytum tuberosum;11764;other;germinule;5.6285714;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.6285714;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Symphytum tuberosum;11764;actual measurement;one-seeded generative dispersule;6.85;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.85;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.43;10;-2;5.43;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.38;5.97;4.63;;preaggregated value obtained from single record;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.69;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.69;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;4.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;4.63;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.47;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.97;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.97;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.39;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.28;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.08;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.07;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.07;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.67;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.67;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Syringa vulgaris;26377;actual measurement (following LEDA data standards);germinule;5.55;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;5.55;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Taeniatherum caput-medusae;43480;actual measurement;germinule;2.674666667;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.674666667;2.674666667;2.674666667;75;;Air dried weight;;3 Tamus communis;36357;actual measurement;germinule;18.33;;-4;;BIOLFLOR database;18.33;;;;;Air dried weight;;3 Tamus communis;36357;actual measurement;one-seeded generative dispersule;18.326;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18.326;;;100;;Air dried weight;;2a Tamus communis;36357;actual measurement;one-seeded generative dispersule;15.71;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15.71;;;50;;Air dried weight;;2a Tamus communis;36357;other;germinule;15.9072;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.9072;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tamus communis;36357;other;germinule;15.4968;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);15.4968;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tanacetum corymbosum;9823;actual measurement;germinule;.51;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.51;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Tanacetum macrophyllum;10157;actual measurement;germinule;.319;;-4;;BIOLFLOR database;.319;;;;;Air dried weight;;3 Tanacetum macrophyllum;10157;actual measurement;one-seeded generative dispersule;.319;;-4;;BIOLFLOR database;.319;;;;;Air dried weight;;2a Tanacetum parthenium;11451;actual measurement;one-seeded generative dispersule;.118;;-4;;BIOLFLOR database;.118;;;;;Air dried weight;;2a Tanacetum parthenium;11451;other;one-seeded generative dispersule;.1096;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1096;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Tanacetum parthenium;11451;actual measurement;germinule;.118;;-4;;BIOLFLOR database;.118;;;;;Air dried weight;;3 Tanacetum parthenium;11451;actual measurement;one-seeded generative dispersule;.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.104;;;50;;Air dried weight;;2a Tanacetum parthenium;11451;actual measurement;generative dispersule;.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1;;;1;n an replicates unknown;Air dried weight;;2 Tanacetum parthenium;11451;actual measurement;germinule;.104;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.104;;;50;;Air dried weight;;3 Tanacetum parthenium;11451;other;germinule;.1096;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1096;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.57;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.57;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.51;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.51;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.53;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.5;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;other;germinule;.2108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tanacetum vulgare;10128;other;germinule;.1596;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1596;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tanacetum vulgare;10128;other;germinule;.15;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.15;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tanacetum vulgare;10128;other;germinule;.1544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tanacetum vulgare;10128;other;germinule;.17;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.17;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.49;10;-2;.49;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;.57;.38;;preaggregated value obtained from single record;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.38;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.38;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement (following LEDA data standards);germinule;.49;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.49;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement;germinule;.135;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.135;;;50;;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement;germinule;.113;;-4;;BIOLFLOR database;.113;.13;.1;;;Air dried weight;;3 Tanacetum vulgare;10128;actual measurement;one-seeded generative dispersule;.135;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.135;;;50;;Air dried weight;;2a Tanacetum vulgare;10128;actual measurement;one-seeded generative dispersule;.113;;-4;;BIOLFLOR database;.113;.13;.1;;;Air dried weight;;2a Tanacetum vulgare;10128;other;one-seeded generative dispersule;.2108;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2108;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Tanacetum vulgare;10128;other;one-seeded generative dispersule;.17;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.17;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Tanacetum vulgare;10128;other;one-seeded generative dispersule;.1544;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1544;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Tanacetum vulgare;10128;other;one-seeded generative dispersule;.15;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.15;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Tanacetum vulgare;10128;other;one-seeded generative dispersule;.1596;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1596;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Taraxacum Sec. Erythrosperma;9235;actual measurement;germinule;.378;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.378;;;1;summers of 1995 and 1996;Unknown;;3 Taraxacum Sec. Erythrosperma;9235;actual measurement;one-seeded generative dispersule;.32;;-4;;BIOLFLOR database;.32;.34;.3;;;Air dried weight;;2a Taraxacum Sec. Erythrosperma;9235;actual measurement;germinule;.32;;-4;;BIOLFLOR database;.32;.34;.3;;;Air dried weight;;3 Taraxacum Sec. Palustria;9256;actual measurement;germinule;.61;;-4;;BIOLFLOR database;.61;;;;;Air dried weight;;3 Taraxacum Sec. Ruderalia;59373;actual measurement;generative dispersule;.744166667;10;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.744166667;.802;.664;100;;Air dried weight;;2 Taraxacum Sec. Ruderalia;59373;actual measurement;germinule;.666;;-4;;BIOLFLOR database;.666;;;;;Air dried weight;;3 Taraxacum Sec. Ruderalia;59373;actual measurement;germinule;.606;;-4;;BIOLFLOR database;.606;.65;.573;;;Air dried weight;;3 Taraxacum Sec. Ruderalia;59373;actual measurement;one-seeded generative dispersule;.606;;-4;;BIOLFLOR database;.606;.65;.573;;;Air dried weight;;2a Taraxacum laevigatum ag.;59280;actual measurement;one-seeded generative dispersule;.42725;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.42725;.435;.419;100;;Air dried weight;;2a Taraxacum officinale;44250;other;unknown;.5316;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Taraxacum palustre;44238;other;unknown;.6136585;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6136585;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Taraxacum palustre;44238;other;unknown;.9468;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Taraxacum palustre;44238;other;unknown;.6988;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Taraxacum species;9261;actual measurement;one-seeded generative dispersule;.639;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.639;;;110;;Air dried weight;;2a Taraxacum species;9261;actual measurement;generative dispersule;.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.5;;;1;n an replicates unknown, low data quality;Air dried weight;;2 Taxodium distichum;838;actual measurement;generative dispersule;92.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);92.3;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Taxus baccata;835;actual measurement;generative dispersule;62.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);62.5;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Taxus baccata;835;actual measurement;one-seeded generative dispersule;61.8;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;61.8;;;60;;Air dried weight;;2a Taxus baccata;835;actual measurement;one-seeded generative dispersule;56.3;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;56.3;;;56;;Air dried weight;;2a Taxus baccata;835;actual measurement;one-seeded generative dispersule;43.02;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43.02;;;10;;Air dried weight;;2a Taxus baccata;835;actual measurement;generative dispersule;.82;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.82;;;1;n an replicates unknown;Air dried weight;;2 Taxus baccata;835;other;germinule;47.5184;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);47.5184;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teesdalia coronopifolia;13050;actual measurement;germinule;.221;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.221;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Teesdalia coronopifolia;13050;actual measurement;germinule;.22143;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.22143;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Teesdalia coronopifolia;13050;actual measurement;germinule;.22;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.22;;;30;collected between 1996-1999;Air dried weight;;3 Teesdalia nudicaulis;13470;actual measurement;germinule;.244;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.244;;;50;;Air dried weight;;3 Teesdalia nudicaulis;13470;actual measurement;germinule;.272;;-4;;BIOLFLOR database;.272;.299;.24;;;Air dried weight;;3 Teesdalia nudicaulis;13470;other;one-seeded generative dispersule;.2828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teesdalia nudicaulis;13470;actual measurement;multi-seeded generative dispersule;.262533333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.262533333;.279333333;.248666667;150;;Air dried weight;;2b Teesdalia nudicaulis;13470;other;one-seeded generative dispersule;.3412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teesdalia nudicaulis;13470;other;one-seeded generative dispersule;.3152;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3152;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teesdalia nudicaulis;13470;actual measurement;one-seeded generative dispersule;.244;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.244;;;50;;Air dried weight;;2a Teesdalia nudicaulis;13470;actual measurement;one-seeded generative dispersule;.272;;-4;;BIOLFLOR database;.272;.299;.24;;;Air dried weight;;2a Teesdalia nudicaulis;13470;other;germinule;.3412;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3412;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teesdalia nudicaulis;13470;other;germinule;.3152;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3152;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teesdalia nudicaulis;13470;other;germinule;.2828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Telekia speciosa;9521;actual measurement;one-seeded generative dispersule;.654;;-4;;BIOLFLOR database;.654;;;;;Air dried weight;;2a Telekia speciosa;9521;actual measurement;germinule;.654;;-4;;BIOLFLOR database;.654;;;;;Air dried weight;;3 Telekia speciosissima;10339;actual measurement;germinule;.33;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.33;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Tellima grandiflora;31626;actual measurement;one-seeded generative dispersule;.0695;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0695;;;200;;Air dried weight;;2a Tellima grandiflora;31626;actual measurement;one-seeded generative dispersule;.067;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.067;;;100;;Air dried weight;;2a Tetragonolobus maritimus;21564;actual measurement;generative dispersule;2.881111111;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.881111111;2.902222222;2.86;90;;Air dried weight;;2 Tetragonolobus maritimus;21564;other;germinule;4.736;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);4.736;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;other;germinule;1.2168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;other;germinule;1.1396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;other;germinule;.8808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;other;germinule;1.1128;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1128;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;other;germinule;1.3168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;other;germinule;1.1208;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;other;germinule;1.2204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;other;germinule;1.1084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium botrys;23469;actual measurement;germinule;.942;;-4;;BIOLFLOR database;.942;1;.8;;;Air dried weight;;3 Teucrium botrys;23469;actual measurement;one-seeded generative dispersule;.942;;-4;;BIOLFLOR database;.942;1;.8;;;Air dried weight;;2a Teucrium botrys;23469;other;one-seeded generative dispersule;1.1128;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1128;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium botrys;23469;other;one-seeded generative dispersule;1.3168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium botrys;23469;other;one-seeded generative dispersule;1.2168;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2168;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium botrys;23469;other;one-seeded generative dispersule;1.1396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium botrys;23469;other;one-seeded generative dispersule;1.1208;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1208;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium botrys;23469;other;one-seeded generative dispersule;1.2204;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium botrys;23469;other;one-seeded generative dispersule;.8808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium botrys;23469;other;one-seeded generative dispersule;1.1084;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1084;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium chamaedrys;24813;actual measurement;one-seeded generative dispersule;1.17;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.17;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Teucrium chamaedrys;24813;actual measurement;one-seeded generative dispersule;1.5;;-4;;BIOLFLOR database;1.5;1.7;1.4;;;Air dried weight;;2a Teucrium chamaedrys;24813;actual measurement;germinule;1.5;;-4;;BIOLFLOR database;1.5;1.7;1.4;;;Air dried weight;;3 Teucrium chamaedrys;24813;actual measurement;generative dispersule;.71;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.71;;;1;n and replicates unknown;Air dried weight;;2 Teucrium montanum;23362;actual measurement;germinule;.914;;-4;;BIOLFLOR database;.914;1.103;.651;;;Air dried weight;;3 Teucrium montanum;23362;actual measurement;one-seeded generative dispersule;.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.5;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Teucrium montanum;23362;actual measurement;one-seeded generative dispersule;.914;;-4;;BIOLFLOR database;.914;1.103;.651;;;Air dried weight;;2a Teucrium scordium;24902;actual measurement;generative dispersule;.8095;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.8095;.826;.793;100;;Air dried weight;;2 Teucrium scordium;24902;actual measurement;generative dispersule;.62;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.62;.7;.5;1;;Air dried weight;;2 Teucrium scordium;24902;other;germinule;.4396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium scordium;24902;other;germinule;.396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium scordium;24902;other;germinule;.36;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.36;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium scorodonia;24460;other;germinule;.9112;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium scorodonia;24460;other;germinule;.908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium scorodonia;24460;other;germinule;.8512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Teucrium scorodonia;24460;actual measurement;germinule;.76;;-4;;BIOLFLOR database;.76;.87;.7;;;Air dried weight;;3 Teucrium scorodonia;24460;actual measurement;germinule;.874;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.874;;;50;;Air dried weight;;3 Teucrium scorodonia;24460;actual measurement;germinule;.924;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.924;;;100;;Air dried weight;;3 Teucrium scorodonia;24460;actual measurement;one-seeded generative dispersule;.76;;-4;;BIOLFLOR database;.76;.87;.7;;;Air dried weight;;2a Teucrium scorodonia;24460;actual measurement;one-seeded generative dispersule;.92;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.92;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Teucrium scorodonia;24460;actual measurement;one-seeded generative dispersule;.874;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.874;;;50;;Air dried weight;;2a Teucrium scorodonia;24460;actual measurement;one-seeded generative dispersule;.924;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.924;;;100;;Air dried weight;;2a Teucrium scorodonia;24460;other;one-seeded generative dispersule;.908;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.908;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium scorodonia;24460;other;one-seeded generative dispersule;.8512;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8512;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Teucrium scorodonia;24460;other;one-seeded generative dispersule;.9112;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thalictrum alpinum;26671;actual measurement;generative dispersule;.857;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.857;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Thalictrum aquilegiifolium;26672;actual measurement;germinule;2;;-4;;BIOLFLOR database;2;;;;;Air dried weight;;3 Thalictrum aquilegiifolium;26672;actual measurement;one-seeded generative dispersule;2;;-4;;BIOLFLOR database;2;;;;;Air dried weight;;2a Thalictrum flavum;26674;actual measurement;one-seeded generative dispersule;.68;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.68;;;50;;Air dried weight;;2a Thalictrum flavum;26674;actual measurement;one-seeded generative dispersule;.881;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.881;;;50;;Air dried weight;;2a Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.06;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.06;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.59;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.64;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.75;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.68;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.68;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.79;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;.89;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum flavum;26674;other;germinule;1.4716;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.64;10;-2;1.64;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.64;1.79;1.52;;preaggregated value obtained from single record;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;.89;1;-2;.89;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.89;.89;.89;;preaggregated value obtained from single record;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.06;1;-2;1.06;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.06;1.06;1.06;;preaggregated value obtained from single record;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.56;1;-2;1.56;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.56;1.56;1.56;;preaggregated value obtained from single record;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.56;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.56;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.53;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.53;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.64;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.52;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum flavum;26674;actual measurement (following LEDA data standards);germinule;1.72;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.72;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Thalictrum lucidum;26571;actual measurement;one-seeded generative dispersule;.767;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.767;.778;.756;100;;Air dried weight;;2a Thalictrum minus;26547;actual measurement;germinule;2.7;;-4;;BIOLFLOR database;2.7;;;;;Air dried weight;;3 Thalictrum minus;26547;actual measurement;one-seeded generative dispersule;2.07;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.07;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Thalictrum minus;26547;actual measurement;one-seeded generative dispersule;2.216;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.216;;;50;;Air dried weight;;2a Thalictrum minus;26547;actual measurement;generative dispersule;.5;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.5;.6;.4;1;;Air dried weight;;2 Thalictrum minus;26547;actual measurement;germinule;2.216;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.216;;;50;;Air dried weight;;3 Thalictrum minus;26547;actual measurement;one-seeded generative dispersule;2.7;;-4;;BIOLFLOR database;2.7;;;;;Air dried weight;;2a Thalictrum minus;26547;other;one-seeded generative dispersule;1.8732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;1.1;10;-2;1.1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.11;1.35;.92;;preaggregated value obtained from single record;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;1.05;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.05;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;other;germinule;1.8732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;.98;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.98;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;1.21;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.21;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;1.28;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.28;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;1.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.1;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;1.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.18;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;1.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.35;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;1.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.1;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;.96;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.96;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum minus;26547;actual measurement (following LEDA data standards);germinule;.92;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.92;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Thalictrum simplex;26562;actual measurement;one-seeded generative dispersule;.943;;-4;;BIOLFLOR database;.943;;;;;Air dried weight;;2a Thalictrum simplex;26562;actual measurement;germinule;.943;;-4;;BIOLFLOR database;.943;;;;;Air dried weight;;3 Thapsia villosa;2036;actual measurement;germinule;5.98722;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);5.98722;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Thesium alpinum;32434;actual measurement;germinule;3.9;;-4;;BIOLFLOR database;3.9;;;;;Air dried weight;;3 Thesium alpinum;32434;actual measurement;one-seeded generative dispersule;3.9;;-4;;BIOLFLOR database;3.9;;;;;Air dried weight;;2a Thesium bavarum;32443;actual measurement;generative dispersule;3.3;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.3;3.9;2.6;1;;Air dried weight;;2 Thesium bavarum;32443;actual measurement;one-seeded generative dispersule;3.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.59;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Thesium humifusum;32462;other;unknown;2.934;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.934;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Thesium linophyllon;32439;actual measurement;germinule;6.6;;-4;;BIOLFLOR database;6.6;;;;;Air dried weight;;3 Thesium linophyllon;32439;actual measurement;one-seeded generative dispersule;6.6;;-4;;BIOLFLOR database;6.6;;;;;Air dried weight;;2a Thesium pyrenaicum;32417;actual measurement;generative dispersule;4.24;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.24;5.7;3.4;1;;Air dried weight;;2 Thlaspi alliaceum;13472;actual measurement;germinule;.667;;-4;;BIOLFLOR database;.667;.668;.665;;;Air dried weight;;3 Thlaspi alliaceum;13472;actual measurement;one-seeded generative dispersule;.667;;-4;;BIOLFLOR database;.667;.668;.665;;;Air dried weight;;2a Thlaspi alpestre;13822;other;unknown;.2344;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2344;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Thlaspi alpestre;13822;other;unknown;.2204;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Thlaspi arvense;13825;actual measurement;one-seeded generative dispersule;1.163;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.163;;;100;;Air dried weight;;2a Thlaspi arvense;13825;actual measurement;one-seeded generative dispersule;1.183;;-4;;BIOLFLOR database;1.183;1.572;.95;;;Air dried weight;;2a Thlaspi arvense;13825;actual measurement;one-seeded generative dispersule;.95;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.95;;;50;;Air dried weight;;2a Thlaspi arvense;13825;other;germinule;.9624;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thlaspi arvense;13825;other;one-seeded generative dispersule;.9624;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9624;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thlaspi arvense;13825;actual measurement;germinule;1.163;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.163;;;100;;Air dried weight;;3 Thlaspi arvense;13825;actual measurement;germinule;1.183;;-4;;BIOLFLOR database;1.183;1.572;.95;;;Air dried weight;;3 Thlaspi arvense;13825;actual measurement;germinule;.95;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.95;;;50;;Air dried weight;;3 Thlaspi arvense;13825;actual measurement;generative dispersule;1.21;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.21;;;1;n an replicates unknown;Air dried weight;;2 Thlaspi caerulescens;45966;actual measurement;generative dispersule;.45375;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.45375;.455;.4525;40;;Air dried weight;;2 Thlaspi caerulescens;45966;actual measurement;germinule;.409;;-4;;BIOLFLOR database;.409;;;;;Air dried weight;;3 Thlaspi caerulescens;45966;actual measurement;germinule;.39;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.39;;;50;;Air dried weight;;3 Thlaspi caerulescens;45966;actual measurement;germinule;.37;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.37;;;50;;Air dried weight;;3 Thlaspi caerulescens;45966;actual measurement;one-seeded generative dispersule;.409;;-4;;BIOLFLOR database;.409;;;;;Air dried weight;;2a Thlaspi caerulescens;45966;actual measurement;one-seeded generative dispersule;.37;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.37;;;50;;Air dried weight;;2a Thlaspi caerulescens;45966;other;one-seeded generative dispersule;.3648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thlaspi caerulescens;45966;actual measurement;one-seeded generative dispersule;.39;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.39;;;50;;Air dried weight;;2a Thlaspi caerulescens;45966;other;germinule;.3648;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3648;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thlaspi cepaeifolium;13068;actual measurement;one-seeded generative dispersule;1.04;;-4;;BIOLFLOR database;1.04;;;;;Air dried weight;;2a Thlaspi cepaeifolium;13068;actual measurement;germinule;1.04;;-4;;BIOLFLOR database;1.04;;;;;Air dried weight;;3 Thlaspi montanum;14668;actual measurement;one-seeded generative dispersule;.7;;-4;;BIOLFLOR database;.7;;;;;Air dried weight;;2a Thlaspi montanum;14668;actual measurement;germinule;.7;;-4;;BIOLFLOR database;.7;;;;;Air dried weight;;3 Thlaspi montanum;14668;actual measurement;generative dispersule;.638;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.638;1;.09;1;;Air dried weight;;2 Thlaspi perfoliatum;14669;other;one-seeded generative dispersule;.3348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thlaspi perfoliatum;14669;other;one-seeded generative dispersule;.2396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thlaspi perfoliatum;14669;actual measurement;generative dispersule;2.43;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.43;;;1;n an replicates unknown;Air dried weight;;2 Thlaspi perfoliatum;14669;other;one-seeded generative dispersule;.4234;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4234;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thlaspi perfoliatum;14669;actual measurement;one-seeded generative dispersule;.267;;-4;;BIOLFLOR database;.267;.3;.188;;;Air dried weight;;2a Thlaspi perfoliatum;14669;actual measurement;germinule;.267;;-4;;BIOLFLOR database;.267;.3;.188;;;Air dried weight;;3 Thlaspi perfoliatum;14669;other;germinule;.4234;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4234;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thlaspi perfoliatum;14669;other;germinule;.2396;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2396;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thlaspi perfoliatum;14669;other;germinule;.3348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thuja orientalis;756;actual measurement;germinule;20.439;;-4;;BIOLFLOR database;20.439;20.699;20.293;;;Air dried weight;;3 Thuja plicata;44580;actual measurement;generative dispersule;1.24;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.24;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Thymelaea passerina;34584;actual measurement;generative dispersule;1.94;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.94;2.2;1.5;1;;Air dried weight;;2 Thymus glabrescens s. decipiens;24081;actual measurement;one-seeded generative dispersule;.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13;;;50;50-2000 air-dried matured seeds;Air dried weight;;2a Thymus nitens;24512;actual measurement;generative dispersule;.12;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.12;;;1;n and replicates unknown;Air dried weight;;2 Thymus pannonicus;24516;actual measurement;generative dispersule;.15;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.15;;;1;n an replicates unknown;Air dried weight;;2 Thymus praecox;24924;actual measurement;germinule;.167;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.167;;;100;;Air dried weight;;3 Thymus praecox;24924;actual measurement;germinule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;3 Thymus praecox;24924;actual measurement;germinule;.127;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.127;;;50;;Air dried weight;;3 Thymus praecox;24924;actual measurement;germinule;.119;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.119;;;100;;Air dried weight;;3 Thymus praecox;24924;actual measurement;germinule;.37;;-4;;BIOLFLOR database;.37;.43;.3;;;Air dried weight;;3 Thymus praecox;24924;actual measurement;one-seeded generative dispersule;.167;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.167;;;100;;Air dried weight;;2a Thymus praecox;24924;actual measurement;one-seeded generative dispersule;.127;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.127;;;50;;Air dried weight;;2a Thymus praecox;24924;actual measurement;one-seeded generative dispersule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;2a Thymus praecox;24924;actual measurement;one-seeded generative dispersule;.119;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.119;;;100;;Air dried weight;;2a Thymus praecox;24924;other;one-seeded generative dispersule;.182;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.182;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thymus praecox;24924;actual measurement;one-seeded generative dispersule;.37;;-4;;BIOLFLOR database;.37;.43;.3;;;Air dried weight;;2a Thymus praecox;24924;other;germinule;.182;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.182;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thymus pulegioides;24929;other;germinule;.12296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thymus pulegioides;24929;other;germinule;.1828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thymus pulegioides;24929;actual measurement;one-seeded generative dispersule;.15;;-4;;BIOLFLOR database;.15;;;;;Air dried weight;;2a Thymus pulegioides;24929;actual measurement;one-seeded generative dispersule;.195333333;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.195333333;.304;.138;100;;Air dried weight;;2a Thymus pulegioides;24929;other;one-seeded generative dispersule;.1828;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1828;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thymus pulegioides;24929;other;one-seeded generative dispersule;.12296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.12296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thymus pulegioides;24929;actual measurement;germinule;.15;;-4;;BIOLFLOR database;.15;;;;;Air dried weight;;3 Thymus pulegioides;24929;actual measurement;generative dispersule;.11;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.11;;;1;n and replicates unknown;Air dried weight;;2 Thymus serpyllum;24928;actual measurement;generative dispersule;.4;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4;.4;.4;1;;Air dried weight;;2 Thymus serpyllum;24928;actual measurement;germinule;.11;;-4;;BIOLFLOR database;.11;;;;;Air dried weight;;3 Thymus serpyllum;24928;actual measurement;germinule;.168;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.168;;;1;summers of 1995 and 1996;Unknown;;3 Thymus serpyllum;24928;other;one-seeded generative dispersule;.1964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Thymus serpyllum;24928;actual measurement;one-seeded generative dispersule;.11;;-4;;BIOLFLOR database;.11;;;;;Air dried weight;;2a Thymus serpyllum;24928;other;germinule;.1964;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1964;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Thymus vulgaris;23794;actual measurement;generative dispersule;.137333333;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.137333333;.137333333;.137333333;75;;Air dried weight;;2 Thymus vulgaris;23794;actual measurement;one-seeded generative dispersule;.3;;-4;;BIOLFLOR database;.3;;;;;Air dried weight;;2a Thymus vulgaris;23794;actual measurement;germinule;.3;;-4;;BIOLFLOR database;.3;;;;;Air dried weight;;3 Thymus vulgaris;23794;actual measurement;germinule;.3;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.3;;;1;n and replicates unknown;Air dried weight;;3 Tilia cordata;34664;actual measurement;generative dispersule;78.25;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;78.25;84.24666667;72.25333333;1;;Air dried weight;;2 Tilia cordata;34664;actual measurement;generative dispersule;38.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);38.1;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Tilia cordata;34664;actual measurement;one-seeded generative dispersule;35.3;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35.3;;;30;;Air dried weight;;2a Tilia platyphyllos;34634;actual measurement;generative dispersule;181.1;;-4;;BIOLFLOR database;181.1;;;;;Air dried weight;;2 Tilia platyphyllos;34634;actual measurement;germinule;111.98;;-4;;BIOLFLOR database;111.98;113.96;110;;;Air dried weight;;3 Tilia tomentosa;34652;actual measurement;generative dispersule;87;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);87;;;1;Measurement was number of seeds per kilogram, n an replicates unknown;Unknown;;2 Tofieldia calyculata;38841;actual measurement;generative dispersule;.030666667;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.030666667;.031333333;.028666667;150;;Air dried weight;;2 Tofieldia calyculata;38841;actual measurement;germinule;.048;;-4;;BIOLFLOR database;.048;;;;;Air dried weight;;3 Tofieldia calyculata;38841;actual measurement;one-seeded generative dispersule;.048;;-4;;BIOLFLOR database;.048;;;;;Air dried weight;;2a Tofieldia pusilla;38843;actual measurement;generative dispersule;.047;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.047;.049;.045;100;;Air dried weight;;2 Tofieldia pusilla;38843;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Tofieldia pusilla;38843;actual measurement (following LEDA data standards);germinule;.04;1;-2;.04;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.04;.04;.04;;preaggregated value obtained from single record;Air dried weight;;3 Tofieldia pusilla;38843;other;germinule;.0276;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0276;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tofieldia pusilla;38843;other;germinule;.0484;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0484;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tolpis barbata;10568;actual measurement;germinule;.09531;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.09531;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Tolpis barbata;10568;actual measurement;germinule;.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1;;;30;collected between 1996-1999;Air dried weight;;3 Tolpis barbata;10568;actual measurement;germinule;.095;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.095;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Tolpis barbata;10568;actual measurement;one-seeded generative dispersule;.1;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.1;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Tolpis staticifolia;11441;actual measurement;generative dispersule;.1295;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1295;.13;.129;100;;Air dried weight;;2 Tordylium maximum;1545;actual measurement;generative dispersule;2.98;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.98;4.5;1.9;1;;Air dried weight;;2 Tordylium maximum;1545;other;germinule;2.7888;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7888;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Torilis arvensis;1012;other;unknown;2.298;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.298;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Torilis japonica;1552;other;germinule;1.8608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Torilis japonica;1552;other;germinule;1.7752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Torilis japonica;1552;other;one-seeded generative dispersule;1.7752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Torilis japonica;1552;other;one-seeded generative dispersule;1.8608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Torilis japonica;1552;actual measurement;one-seeded generative dispersule;1.734;;-4;;BIOLFLOR database;1.734;1.98;1.558;;;Air dried weight;;2a Torilis japonica;1552;actual measurement;one-seeded generative dispersule;1.983;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.983;;;98;;Air dried weight;;2a Torilis japonica;1552;actual measurement;one-seeded generative dispersule;1.512;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.512;;;50;;Air dried weight;;2a Torilis japonica;1552;actual measurement;one-seeded generative dispersule;1.804;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.804;;;50;;Air dried weight;;2a Torilis japonica;1552;actual measurement;germinule;1.734;;-4;;BIOLFLOR database;1.734;1.98;1.558;;;Air dried weight;;3 Torilis japonica;1552;actual measurement;germinule;1.983;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.983;;;98;;Air dried weight;;3 Torilis japonica;1552;actual measurement;germinule;1.512;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.512;;;50;;Air dried weight;;3 Torilis japonica;1552;actual measurement;germinule;1.804;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.804;;;50;;Air dried weight;;3 Torilis leptophylla;1553;actual measurement;generative dispersule;.9;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.9;;;1;n an replicates unknown;Air dried weight;;2 Torilis leptophylla;1553;actual measurement;one-seeded generative dispersule;1.796;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.796;;;100;;Air dried weight;;2a Torilis nodosa;1554;other;unknown;1.4888;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4888;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Tradescantia virginiana;35787;actual measurement;unknown;2.873;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];2.873;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Tragopogon dubius;9874;actual measurement;germinule;7.02;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.02;7.5;6.6;1;;Air dried weight;;3 Tragopogon dubius;9874;actual measurement (following LEDA data standards);one-seeded generative dispersule;8.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.9;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon dubius;9874;actual measurement (following LEDA data standards);one-seeded generative dispersule;8.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.5;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon dubius;9874;actual measurement (following LEDA data standards);one-seeded generative dispersule;8.5;3;-2;8.5;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.57;8.9;8.3;;preaggregated value obtained from single record;Air dried weight;;2a Tragopogon dubius;9874;actual measurement (following LEDA data standards);one-seeded generative dispersule;8.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8.3;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.5;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;11.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11.6;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;12.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.6;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.9;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.9;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.3;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;other;germinule;10.5936;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);10.5936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.7;10;-2;14.7;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.26;18.4;11.6;;preaggregated value obtained from single record;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;18.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18.4;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.8;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.8;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;15.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15.1;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;11.8;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11.8;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon porrifolius;9289;actual measurement (following LEDA data standards);one-seeded generative dispersule;11.6;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11.6;;;1;used balance: Mettler Toledo 4, disp. unit with pappus;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);germinule;9.94;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.94;;;20;used balance: Mettler H51, seed without pappus;Air dried weight;;3 Tragopogon pratensis;9791;actual measurement (following LEDA data standards);one-seeded generative dispersule;11.1;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11.1;;;1;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);one-seeded generative dispersule;12.77;1;-2;12.77;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.77;12.77;12.77;;preaggregated value obtained from single record;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);one-seeded generative dispersule;10.61;1;-2;10.61;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.61;10.61;10.61;;preaggregated value obtained from single record;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);one-seeded generative dispersule;10.15;1;-2;10.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.15;10.15;10.15;;preaggregated value obtained from single record;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);one-seeded generative dispersule;11.1;1;-2;11.1;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11.1;11.1;11.1;;preaggregated value obtained from single record;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);one-seeded generative dispersule;12.77;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.77;;;2;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);one-seeded generative dispersule;10.61;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.61;;;4;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);one-seeded generative dispersule;10.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;10.15;;;3;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement (following LEDA data standards);germinule;9.94;1;-2;9.94;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9.94;9.94;9.94;;preaggregated value obtained from single record;Air dried weight;;3 Tragopogon pratensis;9791;other;germinule;6.6764;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.6764;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tragopogon pratensis;9791;actual measurement;generative dispersule;14.757;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;14.757;15.55;14.307;100;;Air dried weight;;2 Tragopogon pratensis;9791;actual measurement;germinule;8.2692;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;8.2692;8.647;8.089;100;;Air dried weight;;3 Tragopogon pratensis;9791;actual measurement;germinule;8.8;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;8.8;9.8;7.7;1;;Air dried weight;;3 Tragopogon pratensis;9791;actual measurement;one-seeded generative dispersule;13.156;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.156;;;50;;Air dried weight;;2a Tragopogon pratensis;9791;actual measurement;one-seeded generative dispersule;4.69;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4.69;;;20;;Air dried weight;;2a Tragopogon pratensis s. orientalis;10571;actual measurement;germinule;8.648;;-4;;BIOLFLOR database;8.648;8.657;8.639;;;Air dried weight;;3 Tragopogon pratensis s. orientalis;10571;actual measurement;germinule;8.92;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;8.92;10.3;7.3;1;;Air dried weight;;3 Tragopogon pratensis s. pratensis;10265;actual measurement;germinule;7.642;;-4;;BIOLFLOR database;7.642;8.234;7;;;Air dried weight;;3 Tragopogon pratensis s. pratensis;10265;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.25;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.25;;;1;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Tragopogon pratensis s. pratensis;10265;actual measurement (following LEDA data standards);one-seeded generative dispersule;14.25;1;-2;14.25;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14.25;14.25;14.25;;preaggregated value obtained from single record;Air dried weight;;2a Tragus racemosus;43483;actual measurement;generative dispersule;1.857;;-4;;BIOLFLOR database;1.857;1.987;1.752;;;Air dried weight;;2 Trientalis europaea;28871;actual measurement;generative dispersule;.7255;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.7255;.733;.718;100;;Air dried weight;;2 Trientalis europaea;28871;actual measurement;generative dispersule;.559;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.559;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Trifolium alpestre;21116;actual measurement;germinule;4;;-4;;BIOLFLOR database;4;;;;;Air dried weight;;3 Trifolium alpestre;21116;actual measurement;germinule;1.32;;-4;;BIOLFLOR database;1.32;1.6;1.04;;;Air dried weight;;3 Trifolium alpestre;21116;actual measurement;one-seeded generative dispersule;4;;-4;;BIOLFLOR database;4;;;;;Air dried weight;;2a Trifolium angustifolium;22108;actual measurement;germinule;1.399;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.399;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium angustifolium;22108;actual measurement;generative dispersule;1.49;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.49;;;1;n an replicates unknown;Air dried weight;;2 Trifolium angustifolium;22108;actual measurement;generative dispersule;1.22;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.22;;;1;n and replicates unknown;Air dried weight;;2 Trifolium angustifolium;22108;actual measurement;one-seeded generative dispersule;1.02;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];1.02;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Trifolium arvense;19943;actual measurement;one-seeded generative dispersule;.305;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.305;;;100;;Air dried weight;;2a Trifolium arvense;19943;actual measurement;one-seeded generative dispersule;.18;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.18;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Trifolium arvense;19943;actual measurement;one-seeded generative dispersule;.371;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.371;;;100;;Air dried weight;;2a Trifolium arvense;19943;actual measurement;germinule;.293;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.293;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium arvense;19943;actual measurement;germinule;.387;;-4;;BIOLFLOR database;.387;.55;.3;;;Air dried weight;;3 Trifolium arvense;19943;actual measurement;germinule;.29333;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29333;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium arvense;19943;actual measurement;germinule;.29;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.29;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium arvense;19943;actual measurement;germinule;.382;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.382;;;1;summers of 1995 and 1996;Unknown;;3 Trifolium arvense;19943;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Trifolium arvense;19943;actual measurement (following LEDA data standards);germinule;.3;1;-2;.3;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;.3;.3;;preaggregated value obtained from single record;Air dried weight;;3 Trifolium arvense;19943;other;germinule;.4736;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4736;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium arvense;19943;other;germinule;.3696;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3696;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium aureum;21992;actual measurement;germinule;.44;;-4;;BIOLFLOR database;.44;.66;.22;;;Air dried weight;;3 Trifolium badium;21993;actual measurement;germinule;1.016;;-4;;BIOLFLOR database;1.016;1.36;.7;;;Air dried weight;;3 Trifolium badium;21993;actual measurement;germinule;.75;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.75;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Trifolium bocconei;21123;other;unknown;.3348;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Trifolium campestre;21008;actual measurement (following LEDA data standards);germinule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Trifolium campestre;21008;actual measurement (following LEDA data standards);germinule;.34;1;-2;.34;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;.34;.34;;preaggregated value obtained from single record;Air dried weight;;3 Trifolium campestre;21008;actual measurement;germinule;.24633;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.24633;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium campestre;21008;actual measurement;germinule;.246;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.246;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium campestre;21008;actual measurement;germinule;.25;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.25;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium campestre;21008;actual measurement;germinule;.357;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.357;;;100;;Air dried weight;;3 Trifolium campestre;21008;actual measurement;germinule;.302;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.302;;;50;;Air dried weight;;3 Trifolium campestre;21008;actual measurement;germinule;.352;;-4;;BIOLFLOR database;.352;.5;.24;;;Air dried weight;;3 Trifolium campestre;21008;actual measurement;germinule;.462;;-4;;BIOLFLOR database;.462;;;;;Air dried weight;;3 Trifolium campestre;21008;actual measurement;germinule;.312;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.312;;;50;;Air dried weight;;3 Trifolium campestre;21008;actual measurement;one-seeded generative dispersule;.312;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.312;;;50;;Air dried weight;;2a Trifolium campestre;21008;actual measurement;one-seeded generative dispersule;.462;;-4;;BIOLFLOR database;.462;;;;;Air dried weight;;2a Trifolium campestre;21008;actual measurement;one-seeded generative dispersule;.357;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.357;;;100;;Air dried weight;;2a Trifolium campestre;21008;actual measurement;one-seeded generative dispersule;.302;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.302;;;50;;Air dried weight;;2a Trifolium cernuum;21095;actual measurement;germinule;.24409;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.24409;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium cernuum;21095;actual measurement;germinule;.244;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.244;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium cherleri;21998;actual measurement;one-seeded generative dispersule;1.34;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];1.34;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Trifolium dubium;21100;actual measurement;one-seeded generative dispersule;.227;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.227;;;100;;Air dried weight;;2a Trifolium dubium;21100;actual measurement;one-seeded generative dispersule;.324;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.324;;;50;;Air dried weight;;2a Trifolium dubium;21100;actual measurement;one-seeded generative dispersule;.62;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.62;;;50;;Air dried weight;;2a Trifolium dubium;21100;actual measurement;one-seeded generative dispersule;.324;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.324;;;50;;Air dried weight;;2a Trifolium dubium;21100;actual measurement;germinule;.363;;-4;;BIOLFLOR database;.363;.6;.227;;;Air dried weight;;3 Trifolium dubium;21100;actual measurement;germinule;.384;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.384;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium dubium;21100;actual measurement;germinule;.458125;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.458125;.45875;.4575;80;;Air dried weight;;3 Trifolium dubium;21100;actual measurement;germinule;.38;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.38;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium dubium;21100;actual measurement;germinule;.384;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.384;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium dubium;21100;actual measurement (following LEDA data standards);germinule;.46;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.46;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Trifolium dubium;21100;other;germinule;.3724;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3724;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.53;10;-2;.53;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.55;.65;.39;;preaggregated value obtained from single record;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.39;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.39;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.53;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.53;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.47;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.47;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.5;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.65;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.52;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.52;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);one-seeded generative dispersule;.5;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.5;;;10;used balance: Mettler H51, disp. unit;Air dried weight;;2a Trifolium dubium;21100;actual measurement (following LEDA data standards);germinule;.46;1;-2;.46;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.46;.46;.46;;preaggregated value obtained from single record;Air dried weight;;3 Trifolium fragiferum;22005;actual measurement (following LEDA data standards);germinule;1.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.4;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Trifolium fragiferum;22005;other;germinule;1.1856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium fragiferum;22005;actual measurement (following LEDA data standards);germinule;1.4;1;-2;1.4;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.4;1.4;1.4;;preaggregated value obtained from single record;Air dried weight;;3 Trifolium fragiferum;22005;actual measurement;one-seeded generative dispersule;5.314;;-4;;BIOLFLOR database;5.314;;;;;Air dried weight;;2a Trifolium fragiferum;22005;actual measurement;germinule;1.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.42;;;50;;Air dried weight;;3 Trifolium fragiferum;22005;actual measurement;germinule;1.34;;-4;;BIOLFLOR database;1.34;1.5;1.18;;;Air dried weight;;3 Trifolium fragiferum;22005;actual measurement;germinule;1.1585;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.1585;1.246;1.071;100;;Air dried weight;;3 Trifolium fragiferum;22005;actual measurement;germinule;5.314;;-4;;BIOLFLOR database;5.314;;;;;Air dried weight;;3 Trifolium fragiferum;22005;actual measurement;one-seeded generative dispersule;1.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.42;;;50;;Air dried weight;;2a Trifolium fragiferum;22005;other;one-seeded generative dispersule;1.1856;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1856;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Trifolium glomeratum;21105;actual measurement;germinule;.45;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.45;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium glomeratum;21105;actual measurement;germinule;.453;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.453;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium glomeratum;21105;actual measurement;germinule;.453;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.453;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium hirtum;21106;actual measurement;germinule;2.344;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.344;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium hybridum;21107;actual measurement;germinule;.63;;-4;;BIOLFLOR database;.63;.88;.4;;;Air dried weight;;3 Trifolium hybridum;21107;actual measurement;one-seeded generative dispersule;.715;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.715;;;100;;Air dried weight;;2a Trifolium hybridum;21107;actual measurement;generative dispersule;1.148;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.148;1.189;1.107;100;;Air dried weight;;2 Trifolium hybridum;21107;actual measurement;generative dispersule;1.583333333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.583333333;1.726666667;1.44;1;;Air dried weight;;2 Trifolium incarnatum;21571;actual measurement;germinule;3.251;;-4;;BIOLFLOR database;3.251;3.5;2.98;;;Air dried weight;;3 Trifolium incarnatum;21571;other;germinule;2.3752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.3752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium medium;22081;other;germinule;1.8332;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8332;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium medium;22081;actual measurement;germinule;2.42;;-4;;BIOLFLOR database;2.42;2.84;2.16;;;Air dried weight;;3 Trifolium micranthum;19621;actual measurement;germinule;.318;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.318;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium micranthum;19621;actual measurement;germinule;.318;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.318;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium micranthum;19621;other;germinule;.3432;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3432;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium montanum;21547;actual measurement;germinule;.85;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.85;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Trifolium montanum;21547;actual measurement;one-seeded generative dispersule;1.5;;-4;;BIOLFLOR database;1.5;;;;;Air dried weight;;2a Trifolium montanum;21547;actual measurement;germinule;1.5;;-4;;BIOLFLOR database;1.5;;;;;Air dried weight;;3 Trifolium montanum;21547;actual measurement;germinule;.657;;-4;;BIOLFLOR database;.657;.83;.57;;;Air dried weight;;3 Trifolium montanum;21547;actual measurement;germinule;.64;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.64;.64;.64;20;;Air dried weight;;3 Trifolium montanum;21547;actual measurement;germinule;.717;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.717;.724;.71;100;;Air dried weight;;3 Trifolium montanum;21547;actual measurement;generative dispersule;1.0675;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.0675;1.1;1.035;20;;Air dried weight;;2 Trifolium ochroleucon;22088;actual measurement;germinule;1.76;;-4;;BIOLFLOR database;1.76;1.9;1.62;;;Air dried weight;;3 Trifolium ochroleucon;22088;actual measurement;germinule;3.562;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.562;3.695;3.429;100;;Air dried weight;;3 Trifolium ochroleucon;22088;other;germinule;1.8732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.8732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium ornithopodioides;21173;other;germinule;.5212;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5212;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium ornithopodioides;21173;actual measurement;germinule;.74909;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.74909;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium ornithopodioides;21173;actual measurement;germinule;.749;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.749;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium pallescens;19933;actual measurement;germinule;.62;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.62;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Trifolium patens;19935;actual measurement;germinule;.635;;-4;;BIOLFLOR database;.635;.69;.58;;;Air dried weight;;3 Trifolium pratense;22096;actual measurement;generative dispersule;2.37;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.37;;;1;n an replicates unknown;Air dried weight;;2 Trifolium pratense;22096;actual measurement;germinule;1.483;;-4;;BIOLFLOR database;1.483;2.2;1.03;;;Air dried weight;;3 Trifolium pratense;22096;actual measurement;germinule;1.062;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.062;1.1;1.024;100;;Air dried weight;;3 Trifolium pratense;22096;actual measurement;germinule;1.625;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.625;;;1;summers of 1995 and 1996;Unknown;;3 Trifolium pratense;22096;actual measurement;one-seeded generative dispersule;1.354;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.354;;;100;;Air dried weight;;2a Trifolium pratense;22096;actual measurement;one-seeded generative dispersule;1.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.42;;;50;;Air dried weight;;2a Trifolium pratense;22096;actual measurement;generative dispersule;2.191;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.191;2.282;2.1;50;with calyx;Air dried weight;;2 Trifolium pratense;22096;actual measurement (following LEDA data standards);germinule;1.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.36;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Trifolium pratense;22096;actual measurement (following LEDA data standards);germinule;1.36;1;-2;1.36;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.36;1.36;1.36;;preaggregated value obtained from single record;Air dried weight;;3 Trifolium repens;22101;other;germinule;.4844;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4844;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium repens;22101;other;germinule;.5088;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5088;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium repens;22101;actual measurement;generative dispersule;.56;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.56;;;1;n an replicates unknown;Air dried weight;;2 Trifolium repens;22101;actual measurement;germinule;.588;;-4;;BIOLFLOR database;.588;.8;.44;;;Air dried weight;;3 Trifolium repens;22101;actual measurement;one-seeded generative dispersule;.563;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.563;;;100;;Air dried weight;;2a Trifolium repens;22101;actual measurement;one-seeded generative dispersule;.497;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.497;;;100;;Air dried weight;;2a Trifolium repens;22101;actual measurement;germinule;.228;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.228;;;1;summers of 1995 and 1996;Unknown;;3 Trifolium repens;22101;actual measurement;germinule;.643733333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.643733333;.664;.621333333;150;;Air dried weight;;3 Trifolium repens;22101;actual measurement;germinule;.627333333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.627333333;.645333333;.606666667;150;;Air dried weight;;3 Trifolium repens;22101;actual measurement;generative dispersule;1.2;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.2;1.368888889;1.031111111;45;with calyx;Air dried weight;;2 Trifolium resupinatum;20696;actual measurement (following LEDA data standards);germinule;.73;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.73;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Trifolium resupinatum;20696;actual measurement (following LEDA data standards);germinule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Trifolium resupinatum;20696;actual measurement (following LEDA data standards);germinule;.79;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.79;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Trifolium resupinatum;20696;actual measurement (following LEDA data standards);germinule;.65;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.65;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Trifolium resupinatum;20696;actual measurement (following LEDA data standards);germinule;.65;5;-2;.65;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.69;.79;.63;;preaggregated value obtained from single record;Air dried weight;;3 Trifolium resupinatum;20696;actual measurement (following LEDA data standards);germinule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;10;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Trifolium retusum;21630;actual measurement;germinule;.275;;-4;;BIOLFLOR database;.275;.32;.23;;;Air dried weight;;3 Trifolium rubens;19602;actual measurement;germinule;2.01;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);2.01;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Trifolium rubens;19602;actual measurement;germinule;2.07;;-4;;BIOLFLOR database;2.07;2.3;1.84;;;Air dried weight;;3 Trifolium scabrum;21632;actual measurement;germinule;.56;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.56;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium scabrum;21632;actual measurement;germinule;.56333;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.56333;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium scabrum;21632;actual measurement;generative dispersule;.78;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.78;;;1;n an replicates unknown;Air dried weight;;2 Trifolium scabrum;21632;actual measurement;germinule;.528;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.528;.528;.528;75;;Air dried weight;;3 Trifolium spadiceum;20366;actual measurement;germinule;.854;;-4;;BIOLFLOR database;.854;.917;.7;;;Air dried weight;;3 Trifolium stellatum;20369;actual measurement;generative dispersule;4.214666667;3;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.214666667;4.31;4.076;50;;Air dried weight;;2 Trifolium stellatum;20369;actual measurement;germinule;2.113513514;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.113513514;2.113513514;2.113513514;74;;Air dried weight;;3 Trifolium stellatum;20369;other;germinule;3.4044;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.4044;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium striatum;21076;other;germinule;2.2092;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.2092;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium striatum;21076;other;germinule;1.9556;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.9556;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium striatum;21076;other;germinule;1.7956;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium striatum;21076;actual measurement;germinule;1.738;;-4;;BIOLFLOR database;1.738;2.6;1.22;;;Air dried weight;;3 Trifolium striatum;21076;actual measurement;germinule;1.57;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.57;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium striatum;21076;actual measurement;one-seeded generative dispersule;1.703;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.703;;;50;;Air dried weight;;2a Trifolium striatum;21076;actual measurement;germinule;1.565;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.565;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium striatum;21076;actual measurement;germinule;1.565;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.565;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium striatum;21076;other;germinule;2.7608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.7608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium striatum;21076;actual measurement;one-seeded generative dispersule;.463;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.463;;;30;;Air dried weight;;2a Trifolium strictum;20370;actual measurement;germinule;.25;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.25;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium strictum;20370;actual measurement;germinule;.24824;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.24824;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium strictum;20370;other;unknown;.574;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.574;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Trifolium subterraneum;21077;other;germinule;2.8752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.8752;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trifolium subterraneum;21077;actual measurement;germinule;6.22;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.22;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium subterraneum;21077;actual measurement;germinule;6.224;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.224;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium subterraneum;21077;actual measurement;germinule;6.22367;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.22367;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium subterraneum;21077;actual measurement;one-seeded generative dispersule;5.88;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];5.88;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Trifolium suffocatum;20371;actual measurement;germinule;.19;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.19;;;30;collected between 1996-1999;Air dried weight;;3 Trifolium suffocatum;20371;actual measurement;germinule;.19077;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.19077;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Trifolium suffocatum;20371;actual measurement;germinule;.191;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.191;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Trifolium thalii;22050;actual measurement;germinule;1.02;;-4;;BIOLFLOR database;1.02;;;;;Air dried weight;;3 Triglochin maritima;36323;actual measurement;germinule;.621;;-4;;BIOLFLOR database;.621;.73;.486;;;Air dried weight;;3 Triglochin maritima;36323;actual measurement;one-seeded generative dispersule;.621;;-4;;BIOLFLOR database;.621;.73;.486;;;Air dried weight;;2a Triglochin maritima;36323;actual measurement (following LEDA data standards);germinule;.48;1;-2;.48;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;.48;.48;;preaggregated value obtained from single record;Air dried weight;;3 Triglochin maritima;36323;actual measurement (following LEDA data standards);germinule;.64;1;-2;.64;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;.64;.64;;preaggregated value obtained from single record;Air dried weight;;3 Triglochin maritima;36323;actual measurement (following LEDA data standards);germinule;.64;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.64;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Triglochin maritima;36323;actual measurement (following LEDA data standards);germinule;.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Triglochin palustris;36324;actual measurement (following LEDA data standards);germinule;.67;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.67;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Triglochin palustris;36324;actual measurement (following LEDA data standards);germinule;.67;1;-2;.67;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.67;.67;.67;;preaggregated value obtained from single record;Air dried weight;;3 Triglochin palustris;36324;actual measurement;germinule;.899;;-4;;BIOLFLOR database;.899;;;;;Air dried weight;;3 Triglochin palustris;36324;actual measurement;one-seeded generative dispersule;.3;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.3;;;50;;Air dried weight;;2a Triglochin palustris;36324;actual measurement;generative dispersule;.52;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.52;.6;.4;1;;Air dried weight;;2 Triglochin palustris;36324;actual measurement;germinule;.3;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.3;;;50;;Air dried weight;;3 Triglochin palustris;36324;actual measurement;one-seeded generative dispersule;.899;;-4;;BIOLFLOR database;.899;;;;;Air dried weight;;2a Trigonella foenum-graecum;21525;actual measurement;one-seeded generative dispersule;14.939;;-4;;BIOLFLOR database;14.939;;;;;Air dried weight;;2a Trigonella foenum-graecum;21525;actual measurement;germinule;14.939;;-4;;BIOLFLOR database;14.939;;;;;Air dried weight;;3 Trinia glauca;966;actual measurement;germinule;1.24;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.24;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Trinia glauca;966;actual measurement;one-seeded generative dispersule;2.411;;-4;;BIOLFLOR database;2.411;;;;;Air dried weight;;2a Trinia glauca;966;actual measurement;germinule;2.411;;-4;;BIOLFLOR database;2.411;;;;;Air dried weight;;3 Trinia glauca;966;other;one-seeded generative dispersule;1.7732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Trinia glauca;966;other;one-seeded generative dispersule;1.4728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Trinia glauca;966;other;one-seeded generative dispersule;2.166;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.166;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Trinia glauca;966;other;one-seeded generative dispersule;1.6776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Trinia glauca;966;other;germinule;2.166;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);2.166;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trinia glauca;966;other;germinule;1.7732;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.7732;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trinia glauca;966;other;germinule;1.6776;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.6776;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trinia glauca;966;other;germinule;1.4728;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4728;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trisetum flavescens;42564;actual measurement;generative dispersule;.1795;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1795;.181;.178;100;;Air dried weight;;2 Trisetum flavescens;42564;actual measurement;generative dispersule;.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;.5;;;1;n and replicates unknown;Air dried weight;;2 Trisetum flavescens;42564;actual measurement;one-seeded generative dispersule;.179;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.179;;;150;;Air dried weight;;2a Trisetum flavescens;42564;actual measurement;generative dispersule;.59;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.59;;;1;n an replicates unknown;Air dried weight;;2 Trisetum flavescens;42564;actual measurement;germinule;.18;;-4;;BIOLFLOR database;.18;;;;;Air dried weight;;3 Trisetum flavescens;42564;actual measurement;germinule;.31;;-4;;BIOLFLOR database;.31;.5;.2;;;Air dried weight;;3 Trisetum flavescens;42564;actual measurement;germinule;.179;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.179;;;150;;Air dried weight;;3 Trisetum flavescens;42564;actual measurement;one-seeded generative dispersule;.31;;-4;;BIOLFLOR database;.31;.5;.2;;;Air dried weight;;2a Triticum aestivum;43825;actual measurement;germinule;43.75;;-4;;BIOLFLOR database;43.75;60;30;;;Air dried weight;;3 Triticum aestivum;43825;actual measurement;germinule;42.5;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;55;30;1;n and replicates unknown;Air dried weight;;3 Triticum aestivum;43825;actual measurement;one-seeded generative dispersule;43.75;;-4;;BIOLFLOR database;43.75;60;30;;;Air dried weight;;2a Trollius europaeus;26598;actual measurement;one-seeded generative dispersule;1.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.064;;;50;;Air dried weight;;2a Trollius europaeus;26598;other;one-seeded generative dispersule;.9072;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9072;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Trollius europaeus;26598;other;one-seeded generative dispersule;.8116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Trollius europaeus;26598;other;one-seeded generative dispersule;.9468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Trollius europaeus;26598;actual measurement;one-seeded generative dispersule;.87;;-4;;BIOLFLOR database;.87;1.06;.7;;;Air dried weight;;2a Trollius europaeus;26598;actual measurement;one-seeded generative dispersule;.7745;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.7745;.797;.752;100;;Air dried weight;;2a Trollius europaeus;26598;actual measurement;one-seeded generative dispersule;.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.81;;;50;;Air dried weight;;2a Trollius europaeus;26598;actual measurement;germinule;.87;;-4;;BIOLFLOR database;.87;1.06;.7;;;Air dried weight;;3 Trollius europaeus;26598;actual measurement;germinule;1.064;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.064;;;50;;Air dried weight;;3 Trollius europaeus;26598;actual measurement;germinule;.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.81;;;50;;Air dried weight;;3 Trollius europaeus;26598;other;germinule;.8116;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8116;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trollius europaeus;26598;other;germinule;.9072;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9072;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Trollius europaeus;26598;other;germinule;.9468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Tuberaria guttata;18499;actual measurement;germinule;.11;;-4;;BIOLFLOR database;.11;.14;.08;;;Air dried weight;;3 Tuberaria guttata;18499;actual measurement;one-seeded generative dispersule;.11;;-4;;BIOLFLOR database;.11;.14;.08;;;Air dried weight;;2a Tulipa sylvestris;38854;actual measurement;germinule;8.821;;-4;;BIOLFLOR database;8.821;10.3;7.238;;;Air dried weight;;3 Tulipa sylvestris;38854;actual measurement;one-seeded generative dispersule;8.821;;-4;;BIOLFLOR database;8.821;10.3;7.238;;;Air dried weight;;2a Tussilago farfara;9608;actual measurement;one-seeded generative dispersule;.255;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.255;;;100;;Air dried weight;;2a Tussilago farfara;9608;actual measurement;one-seeded generative dispersule;.2;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];.2;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Tussilago farfara;9608;actual measurement;germinule;.221;;-4;;BIOLFLOR database;.221;.302;.168;;;Air dried weight;;3 Tussilago farfara;9608;actual measurement;germinule;.191;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.191;.206;.176;100;;Air dried weight;;3 Tussilago farfara;9608;actual measurement;germinule;.19;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];.19;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Tussilago farfara;9608;other;germinule;.2944;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2944;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Typha angustifolia;44027;other;germinule;.3054;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3054;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Typha angustifolia;44027;actual measurement;germinule;.025;;-4;;BIOLFLOR database;.025;.027;.024;;;Air dried weight;;3 Typha angustifolia;44027;actual measurement;germinule;.045;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.045;;;50;;Air dried weight;;3 Typha angustifolia;44027;actual measurement;germinule;.036;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.036;;;50;;Air dried weight;;3 Typha angustifolia;44027;actual measurement;one-seeded generative dispersule;.025;;-4;;BIOLFLOR database;.025;.027;.024;;;Air dried weight;;2a Typha angustifolia;44027;actual measurement;one-seeded generative dispersule;.036;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.036;;;50;;Air dried weight;;2a Typha angustifolia;44027;actual measurement;one-seeded generative dispersule;.045;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.045;;;50;;Air dried weight;;2a Typha angustifolia;44027;other;one-seeded generative dispersule;.3054;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3054;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Typha latifolia;44041;other;one-seeded generative dispersule;.0604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Typha latifolia;44041;actual measurement;one-seeded generative dispersule;.0573;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0573;;;50;;Air dried weight;;2a Typha latifolia;44041;actual measurement;one-seeded generative dispersule;.029;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.029;;;100;;Air dried weight;;2a Typha latifolia;44041;actual measurement;one-seeded generative dispersule;.088;;-4;;BIOLFLOR database;.088;;;;;Air dried weight;;2a Typha latifolia;44041;actual measurement;generative dispersule;.06;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.06;.06;.06;100;;Air dried weight;;2 Typha latifolia;44041;actual measurement;germinule;.029;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.029;;;100;;Air dried weight;;3 Typha latifolia;44041;actual measurement;germinule;.0573;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0573;;;50;;Air dried weight;;3 Typha latifolia;44041;actual measurement;germinule;.083;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.083;;;50;;Air dried weight;;3 Typha latifolia;44041;actual measurement;germinule;.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.03;;;50;;Air dried weight;;3 Typha latifolia;44041;actual measurement;germinule;.088;;-4;;BIOLFLOR database;.088;;;;;Air dried weight;;3 Typha latifolia;44041;actual measurement;one-seeded generative dispersule;.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.03;;;50;;Air dried weight;;2a Typha latifolia;44041;actual measurement;one-seeded generative dispersule;.083;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.083;;;50;;Air dried weight;;2a Typha latifolia;44041;other;germinule;.0604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Typha minima;44044;actual measurement;one-seeded generative dispersule;.0225;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0225;.024;.021;100;;Air dried weight;;2a Typha shuttleworthii;44053;actual measurement;one-seeded generative dispersule;.0475;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0475;.049;.046;100;;Air dried weight;;2a Ulex europaeus;21090;actual measurement;germinule;6.2;;-4;;BIOLFLOR database;6.2;;;;;Air dried weight;;3 Ulex europaeus;21090;actual measurement;one-seeded generative dispersule;6.2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.2;;;50;;Air dried weight;;2a Ulex europaeus;21090;actual measurement;germinule;6.2;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.2;;;50;;Air dried weight;;3 Ulex europaeus;21090;actual measurement;germinule;5.96;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.96;;;50;;Air dried weight;;3 Ulex europaeus;21090;actual measurement;one-seeded generative dispersule;5.96;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.96;;;50;;Air dried weight;;2a Ulex europaeus;21090;actual measurement;one-seeded generative dispersule;6.2;;-4;;BIOLFLOR database;6.2;;;;;Air dried weight;;2a Ulex gallii;19611;actual measurement;one-seeded generative dispersule;6.7;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.7;;;50;;Air dried weight;;2a Ulex gallii;19611;other;germinule;6.126;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.126;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ulex gallii;19611;other;germinule;6.3988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.3988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ulex gallii;19611;other;germinule;5.8804;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.8804;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ulex gallii;19611;other;germinule;6.0712;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);6.0712;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ulex minor;21091;other;germinule;3.434;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.434;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;3 Ulex minor;21091;actual measurement;germinule;3.2;0;1;;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3.2;;;30;;Air dried weight;Lopez, Josefa(2000): Production and morphology of fruit and seeds in Genisteae (Fabaceae) of south-west Spain [132];3 Ulmus glabra;35180;actual measurement;germinule;12.465;;-4;;BIOLFLOR database;12.465;15;9.93;;;Air dried weight;;3 Ulmus glabra;35180;actual measurement;germinule;9.93;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.93;;;50;;Air dried weight;;3 Ulmus glabra;35180;actual measurement;germinule;7.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.42;;;10;;Air dried weight;;3 Ulmus glabra;35180;other;germinule;16.1392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);16.1392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Ulmus glabra;35180;other;one-seeded generative dispersule;16.1392;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);16.1392;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Ulmus glabra;35180;actual measurement;one-seeded generative dispersule;12.465;;-4;;BIOLFLOR database;12.465;15;9.93;;;Air dried weight;;2a Ulmus glabra;35180;actual measurement;one-seeded generative dispersule;9.93;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.93;;;50;;Air dried weight;;2a Ulmus glabra;35180;actual measurement;one-seeded generative dispersule;7.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.42;;;10;;Air dried weight;;2a Ulmus laevis;35184;actual measurement;germinule;8;;-4;;BIOLFLOR database;8;;;;;Air dried weight;;3 Ulmus laevis;35184;actual measurement;one-seeded generative dispersule;8;;-4;;BIOLFLOR database;8;;;;;Air dried weight;;2a Ulmus minor;35187;actual measurement;germinule;9;;-4;;BIOLFLOR database;9;;;;;Air dried weight;;3 Ulmus minor;35187;actual measurement;one-seeded generative dispersule;9;;-4;;BIOLFLOR database;9;;;;;Air dried weight;;2a Umbilicus rupestris;18389;actual measurement;one-seeded generative dispersule;.009;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.009;;;100;;Air dried weight;;2a Umbilicus rupestris;18389;other;germinule;.0052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Urospermum dalechampii;10440;actual measurement;generative dispersule;1.11;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.11;;;1;n and replicates unknown;Air dried weight;;2 Urtica dioica;35149;actual measurement;generative dispersule;.333;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.333;.338;.328;100;with appendages;Air dried weight;;2 Urtica dioica;35149;actual measurement;generative dispersule;.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13;;;1;n an replicates unknown;Air dried weight;;2 Urtica dioica;35149;actual measurement;germinule;.144;;-4;;BIOLFLOR database;.144;.156;.137;;;Air dried weight;;3 Urtica dioica;35149;actual measurement;germinule;.146;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.146;;;100;;Air dried weight;;3 Urtica dioica;35149;actual measurement;germinule;.19;;-4;;BIOLFLOR database;.19;;;;;Air dried weight;;3 Urtica dioica;35149;actual measurement;germinule;.177;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.177;;;100;;Air dried weight;;3 Urtica dioica;35149;actual measurement;germinule;.202;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.202;;;100;;Air dried weight;;3 Urtica dioica;35149;actual measurement;one-seeded generative dispersule;.19;;-4;;BIOLFLOR database;.19;;;;;Air dried weight;;2a Urtica dioica;35149;actual measurement;one-seeded generative dispersule;.146;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.146;;;100;;Air dried weight;;2a Urtica dioica;35149;actual measurement;one-seeded generative dispersule;.202;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.202;;;100;;Air dried weight;;2a Urtica dioica;35149;actual measurement;one-seeded generative dispersule;.177;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.177;;;100;;Air dried weight;;2a Urtica dioica;35149;actual measurement (following LEDA data standards);germinule;.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Urtica dioica;35149;actual measurement (following LEDA data standards);germinule;.15;1;-2;.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;.15;.15;;preaggregated value obtained from single record;Air dried weight;;3 Urtica kioviensis;35156;actual measurement;germinule;.117;;-4;;BIOLFLOR database;.117;;;;;Air dried weight;;3 Urtica urens;35160;actual measurement;germinule;.509;;-4;;BIOLFLOR database;.509;.6;.427;;;Air dried weight;;3 Urtica urens;35160;actual measurement;one-seeded generative dispersule;.534;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.534;;;50;;Air dried weight;;2a Urtica urens;35160;actual measurement;one-seeded generative dispersule;.522;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.522;;;50;;Air dried weight;;2a Urtica urens;35160;actual measurement;one-seeded generative dispersule;.473;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.473;;;100;;Air dried weight;;2a Urtica urens;35160;other;germinule;.528;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.528;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vaccaria hispanica;45231;actual measurement;germinule;7.525;;-4;;BIOLFLOR database;7.525;7.666;7.424;;;Air dried weight;;3 Vaccaria hispanica;45231;actual measurement;one-seeded generative dispersule;7.525;;-4;;BIOLFLOR database;7.525;7.666;7.424;;;Air dried weight;;2a Vaccinium macrocarpon;19470;actual measurement;germinule;1.027;;-4;;BIOLFLOR database;1.027;1.19;.63;;;Air dried weight;;3 Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);germinule;.63;1;-2;.63;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;.63;.63;;preaggregated value obtained from single record;Air dried weight;;3 Vaccinium macrocarpon;19470;actual measurement (following LEDA data standards);germinule;.63;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.63;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);germinule;.16;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;;;10;No. of seeds per individual: 10;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;;;10;No. of seeds per individual: 10;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);germinule;.24;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.24;;;10;No. of seeds per individual: 10;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);germinule;.25;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.25;;;10;No. of seeds per individual: 10;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);germinule;.25;3;-2;.25;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.26;.29;.24;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Vaccinium myrtillus;19475;other;germinule;.2704;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2704;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);germinule;.16;1;-2;.16;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;.16;.16;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Vaccinium myrtillus;19475;actual measurement;generative dispersule;.201;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.201;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Vaccinium myrtillus;19475;actual measurement;generative dispersule;249.207;;-4;;BIOLFLOR database;249.207;346.01;202.98;;;Fresh weight;;2 Vaccinium myrtillus;19475;actual measurement;germinule;.4;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.4;;;1;n an replicates unknown;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement;germinule;.35;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.35;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement;germinule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement;germinule;.4;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.4;;;1;summers of 1995 and 1996;Unknown;;3 Vaccinium myrtillus;19475;actual measurement;germinule;.262;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.262;.271;.253;100;;Air dried weight;;3 Vaccinium myrtillus;19475;actual measurement;one-seeded generative dispersule;.257;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.257;;;100;;Air dried weight;;2a Vaccinium myrtillus;19475;actual measurement;one-seeded generative dispersule;.298;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.298;;;100;;Air dried weight;;2a Vaccinium myrtillus;19475;actual measurement;one-seeded generative dispersule;.277;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.277;;;100;;Air dried weight;;2a Vaccinium myrtillus;19475;actual measurement;multi-seeded generative dispersule;481;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);481;;;1;n an replicates unknown;Fresh weight;;2b Vaccinium oxycoccos;19476;actual measurement;multi-seeded generative dispersule;322;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);322;;;1;n an replicates unknown;Fresh weight;;2b Vaccinium oxycoccos;19476;actual measurement;germinule;.525;;-4;;BIOLFLOR database;.525;.85;.37;;;Air dried weight;;3 Vaccinium oxycoccos;19476;actual measurement;one-seeded generative dispersule;.368;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.368;;;50;;Air dried weight;;2a Vaccinium oxycoccos;19476;actual measurement;one-seeded generative dispersule;.468;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.468;;;50;;Air dried weight;;2a Vaccinium oxycoccos;19476;actual measurement;germinule;.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.5;;;1;n an replicates unknown;Air dried weight;;3 Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);multi-seeded generative dispersule;7.75;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7.75;;;2;Weight including appendages. No. of seeds per individual: 2;Air dried weight;;2b Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);germinule;.34;1;-2;.34;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;.34;.34;;preaggregated value obtained from single record;Air dried weight;;3 Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);germinule;7.4;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7.4;;;2;No. of seeds per individual: 2;Air dried weight;;3 Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);germinule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Vaccinium oxycoccos;19476;other;germinule;.352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);one-seeded generative dispersule;7.75;2;-2;7.75;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7.75;7.75;7.75;;Preaggregated data obtained from single record. Weight including appendages. No. of seeds per individual: 2;;;2a Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);one-seeded generative dispersule;7.75;1;-4;7.75;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7.75;7.75;7.75;;preaggregated value obtained from single record;Air dried weight;;2a Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);one-seeded generative dispersule;7.75;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7.75;;;2;Weight including appendages. No. of seeds per individual: 2;Air dried weight;;2a Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);germinule;7.4;1;-2;7.4;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7.4;7.4;7.4;;Preaggregated data obtained from single record. No. of seeds per individual: 2;;;3 Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);germinule;.22;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.22;;;12;No. of seeds per individual: 12;Air dried weight;;3 Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);germinule;.22;1;-2;.22;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.22;.22;.22;;Preaggregated data obtained from single record. No. of seeds per individual: 12;;;3 Vaccinium uliginosum;19479;other;germinule;.1812;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1812;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vaccinium uliginosum;19479;other;germinule;.1796;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1796;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vaccinium uliginosum;19479;other;germinule;.278;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.278;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vaccinium uliginosum;19479;actual measurement;generative dispersule;.222;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.222;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Vaccinium uliginosum;19479;actual measurement;generative dispersule;121.4;;-4;;BIOLFLOR database;121.4;296.8;37;;;Fresh weight;;2 Vaccinium uliginosum;19479;actual measurement;germinule;.27;;-4;;BIOLFLOR database;.27;.3;.24;;;Air dried weight;;3 Vaccinium uliginosum;19479;actual measurement;germinule;.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.3;;;1;n an replicates unknown;Air dried weight;;3 Vaccinium uliginosum;19479;actual measurement;multi-seeded generative dispersule;307;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);307;;;1;n an replicates unknown;Fresh weight;;2b Vaccinium vitis-idaea;19439;actual measurement;multi-seeded generative dispersule;246;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);246;;;1;n an replicates unknown;Fresh weight;;2b Vaccinium vitis-idaea;19439;actual measurement;one-seeded generative dispersule;.389;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.389;;;25;;Air dried weight;;2a Vaccinium vitis-idaea;19439;actual measurement;one-seeded generative dispersule;.265;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.265;;;50;;Air dried weight;;2a Vaccinium vitis-idaea;19439;actual measurement;germinule;.3;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.3;;;1;n an replicates unknown;Air dried weight;;3 Vaccinium vitis-idaea;19439;actual measurement;germinule;.3;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.3;;;1;summers of 1995 and 1996;Unknown;;3 Vaccinium vitis-idaea;19439;actual measurement;generative dispersule;.236;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.236;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Vaccinium vitis-idaea;19439;actual measurement;germinule;.2974;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.2974;.316;.284;100;;Air dried weight;;3 Vaccinium vitis-idaea;19439;actual measurement;germinule;.26;;-4;;BIOLFLOR database;.26;;;;;Air dried weight;;3 Vaccinium vitis-idaea;19439;actual measurement;generative dispersule;28.58;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;28.58;28.58;28.58;1;;Unknown;;2 Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;10;No. of seeds per individual: 10;Air dried weight;;3 Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;;;10;No. of seeds per individual: 10;Air dried weight;;3 Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);germinule;.27;2;-2;.27;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.27;.27;.27;;Preaggregated data obtained from single record. No. of seeds per individual: 10;;;3 Valeriana dioica;34884;other;germinule;.634;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.634;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Valeriana dioica;34884;other;germinule;.4064;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4064;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Valeriana dioica;34884;actual measurement;germinule;1.5505;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.5505;2.83;.271;100;;Air dried weight;;3 Valeriana dioica;34884;actual measurement;one-seeded generative dispersule;.396;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.396;;;50;;Air dried weight;;2a Valeriana dioica;34884;actual measurement;one-seeded generative dispersule;1.009;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.009;;;100;;Air dried weight;;2a Valeriana montana;34812;actual measurement;germinule;1.244;;-4;;BIOLFLOR database;1.244;;;;;Air dried weight;;3 Valeriana officinalis;34832;actual measurement;germinule;.619;;-4;;BIOLFLOR database;.619;.667;.59;;;Air dried weight;;3 Valeriana officinalis;34832;actual measurement;one-seeded generative dispersule;.947;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.947;;;100;;Air dried weight;;2a Valeriana officinalis;34832;actual measurement;one-seeded generative dispersule;.774;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.774;;;50;;Air dried weight;;2a Valeriana officinalis;34832;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;;;20;used balance: Mettler H51, seed with pappus;Air dried weight;;2a Valeriana officinalis;34832;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.13;1;-2;1.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.13;1.13;1.13;;preaggregated value obtained from single record;Air dried weight;;2a Valeriana officinalis;34832;other;germinule;.956;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.956;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Valeriana officinalis;34832;other;germinule;1.038;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.038;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Valeriana officinalis s. collina;34846;actual measurement;germinule;.81;;-4;;BIOLFLOR database;.81;.95;.669;;;Air dried weight;;3 Valeriana officinalis s. sambucifolia;34746;actual measurement;germinule;.761;;-4;;BIOLFLOR database;.761;.854;.667;;;Air dried weight;;3 Valerianella carinata;34818;actual measurement;germinule;.663;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.663;;;140;;Air dried weight;;3 Valerianella carinata;34818;actual measurement;germinule;.613;;-4;;BIOLFLOR database;.613;.66;.565;;;Air dried weight;;3 Valerianella carinata;34818;actual measurement;one-seeded generative dispersule;.663;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.663;;;140;;Air dried weight;;2a Valerianella carinata;34818;actual measurement;one-seeded generative dispersule;.613;;-4;;BIOLFLOR database;.613;.66;.565;;;Air dried weight;;2a Valerianella carinata;34818;other;one-seeded generative dispersule;.35;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.35;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Valerianella carinata;34818;other;germinule;.35;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.35;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Valerianella dentata;34825;actual measurement (following LEDA data standards);germinule;.84;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Valerianella dentata;34825;other;germinule;1.094;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.094;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Valerianella dentata;34825;actual measurement (following LEDA data standards);germinule;.84;1;-2;.84;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.84;.84;.84;;preaggregated value obtained from single record;Air dried weight;;3 Valerianella dentata;34825;other;one-seeded generative dispersule;1.094;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.094;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Valerianella dentata;34825;actual measurement;one-seeded generative dispersule;.886;;-4;;BIOLFLOR database;.886;;;;;Air dried weight;;2a Valerianella dentata;34825;actual measurement;germinule;.886;;-4;;BIOLFLOR database;.886;;;;;Air dried weight;;3 Valerianella eriocarpa;34768;actual measurement;one-seeded generative dispersule;.67;;-4;;BIOLFLOR database;.67;.691;.654;;;Air dried weight;;2a Valerianella eriocarpa;34768;actual measurement;germinule;.67;;-4;;BIOLFLOR database;.67;.691;.654;;;Air dried weight;;3 Valerianella locusta;34776;actual measurement;germinule;1.45;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2.1;.8;1;n and replicates unknown;Air dried weight;;3 Valerianella locusta;34776;actual measurement;germinule;.647;;-4;;BIOLFLOR database;.647;.7;.541;;;Air dried weight;;3 Valerianella locusta;34776;actual measurement;germinule;.512;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.512;;;100;;Air dried weight;;3 Valerianella locusta;34776;actual measurement;germinule;.708;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.708;;;50;;Air dried weight;;3 Valerianella locusta;34776;actual measurement;one-seeded generative dispersule;.512;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.512;;;100;;Air dried weight;;2a Valerianella locusta;34776;actual measurement;one-seeded generative dispersule;.708;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.708;;;50;;Air dried weight;;2a Valerianella locusta;34776;actual measurement;one-seeded generative dispersule;.647;;-4;;BIOLFLOR database;.647;.7;.541;;;Air dried weight;;2a Valerianella locusta;34776;other;one-seeded generative dispersule;.7324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Valerianella locusta;34776;other;germinule;.7324;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.7324;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Valerianella rimosa;34795;other;germinule;1.4468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Valerianella rimosa;34795;other;germinule;1.4192;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4192;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry.;Unknown;;3 Valerianella rimosa;34795;other;one-seeded generative dispersule;1.4468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Valerianella rimosa;34795;other;germinule;1.1628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1628;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry.;Unknown;;3 Valerianella rimosa;34795;other;one-seeded generative dispersule;1.1628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.1628;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry.;Unknown;;2a Valerianella rimosa;34795;other;one-seeded generative dispersule;1.4192;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.4192;;;1000;1000 seed weight, unknown number of individuals, Seeds both moist & dry.;Unknown;;2a Valerianella rimosa;34795;actual measurement;one-seeded generative dispersule;1.35;;-4;;BIOLFLOR database;1.35;;;;;Air dried weight;;2a Valerianella rimosa;34795;actual measurement;germinule;1.35;;-4;;BIOLFLOR database;1.35;;;;;Air dried weight;;3 Veratrum album;38054;actual measurement;germinule;3.67;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);3.67;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Veratrum album;38054;actual measurement;generative dispersule;3.38;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.38;3.6;3.1;1;;Air dried weight;;2 Verbascum blattaria;32871;actual measurement;one-seeded generative dispersule;.105;;-4;;BIOLFLOR database;.105;;;;;Air dried weight;;2a Verbascum blattaria;32871;actual measurement;germinule;.105;;-4;;BIOLFLOR database;.105;;;;;Air dried weight;;3 Verbascum densiflorum;33851;actual measurement;germinule;.099;;-4;;BIOLFLOR database;.099;.11;.082;;;Air dried weight;;3 Verbascum densiflorum;33851;actual measurement;one-seeded generative dispersule;.099;;-4;;BIOLFLOR database;.099;.11;.082;;;Air dried weight;;2a Verbascum lychnitis;33779;actual measurement;one-seeded generative dispersule;.106;;-4;;BIOLFLOR database;.106;.12;.1;;;Air dried weight;;2a Verbascum lychnitis;33779;actual measurement;one-seeded generative dispersule;.122133333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.122133333;.125333333;.12;150;;Air dried weight;;2a Verbascum lychnitis;33779;other;one-seeded generative dispersule;.1316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Verbascum lychnitis;33779;actual measurement;germinule;.106;;-4;;BIOLFLOR database;.106;.12;.1;;;Air dried weight;;3 Verbascum lychnitis;33779;other;germinule;.1316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum nigrum;32834;actual measurement (following LEDA data standards);germinule;.13;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Verbascum nigrum;32834;actual measurement (following LEDA data standards);germinule;.13;1;-2;.13;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.13;.13;.13;;preaggregated value obtained from single record;Air dried weight;;3 Verbascum nigrum;32834;other;germinule;.1264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum nigrum;32834;actual measurement;germinule;.086;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.086;;;100;;Air dried weight;;3 Verbascum nigrum;32834;actual measurement;one-seeded generative dispersule;.105;;-4;;BIOLFLOR database;.105;.12;.091;;;Air dried weight;;2a Verbascum nigrum;32834;actual measurement;one-seeded generative dispersule;.086;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.086;;;100;;Air dried weight;;2a Verbascum nigrum;32834;actual measurement;germinule;.105;;-4;;BIOLFLOR database;.105;.12;.091;;;Air dried weight;;3 Verbascum nigrum;32834;actual measurement;germinule;.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.13;;;100;;Air dried weight;;3 Verbascum nigrum;32834;other;one-seeded generative dispersule;.1264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Verbascum nigrum;32834;actual measurement;one-seeded generative dispersule;.13;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.13;;;100;;Air dried weight;;2a Verbascum phlomoides;32841;actual measurement;one-seeded generative dispersule;.215;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.215;;;50;;Air dried weight;;2a Verbascum phlomoides;32841;actual measurement;one-seeded generative dispersule;.103;;-4;;BIOLFLOR database;.103;.118;.087;;;Air dried weight;;2a Verbascum phlomoides;32841;other;germinule;.1436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1436;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;3 Verbascum phlomoides;32841;other;one-seeded generative dispersule;.1436;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1436;;;1000;1000 seed weight, unknown number of individuals, Seeds moist.;Fresh weight;;2a Verbascum phlomoides;32841;actual measurement;germinule;.215;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.215;;;50;;Air dried weight;;3 Verbascum phlomoides;32841;actual measurement;germinule;.103;;-4;;BIOLFLOR database;.103;.118;.087;;;Air dried weight;;3 Verbascum phoeniceum;32842;actual measurement;germinule;.118;;-4;;BIOLFLOR database;.118;;;;;Air dried weight;;3 Verbascum phoeniceum;32842;actual measurement;one-seeded generative dispersule;.118;;-4;;BIOLFLOR database;.118;;;;;Air dried weight;;2a Verbascum pulverulentum;33747;actual measurement;one-seeded generative dispersule;.152;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.152;;;50;;Air dried weight;;2a Verbascum pulverulentum;33747;actual measurement;one-seeded generative dispersule;.171;;-4;;BIOLFLOR database;.171;.172;.171;;;Air dried weight;;2a Verbascum pulverulentum;33747;other;one-seeded generative dispersule;.1652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Verbascum pulverulentum;33747;other;one-seeded generative dispersule;.1788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Verbascum pulverulentum;33747;other;one-seeded generative dispersule;.1628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Verbascum pulverulentum;33747;actual measurement;germinule;.171;;-4;;BIOLFLOR database;.171;.172;.171;;;Air dried weight;;3 Verbascum pulverulentum;33747;actual measurement;germinule;.152;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.152;;;50;;Air dried weight;;3 Verbascum pulverulentum;33747;other;germinule;.1788;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1788;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum pulverulentum;33747;other;germinule;.1628;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1628;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum pulverulentum;33747;other;germinule;.1652;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1652;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum sinuatum;33712;actual measurement;germinule;.15;;-4;;BIOLFLOR database;.15;;;;;Air dried weight;;3 Verbascum sinuatum;33712;actual measurement;one-seeded generative dispersule;.15;;-4;;BIOLFLOR database;.15;;;;;Air dried weight;;2a Verbascum speciosum;32855;actual measurement;generative dispersule;.09;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.09;;;1;n an replicates unknown;Air dried weight;;2 Verbascum thapsus;32859;actual measurement;germinule;.092;;-4;;BIOLFLOR database;.092;.1;.085;;;Air dried weight;;3 Verbascum thapsus;32859;actual measurement;germinule;.092;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.092;;;100;;Air dried weight;;3 Verbascum thapsus;32859;actual measurement;germinule;.065;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.065;;;50;;Air dried weight;;3 Verbascum thapsus;32859;actual measurement;one-seeded generative dispersule;.092;;-4;;BIOLFLOR database;.092;.1;.085;;;Air dried weight;;2a Verbascum thapsus;32859;other;one-seeded generative dispersule;.1032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Verbascum thapsus;32859;other;one-seeded generative dispersule;.106;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.106;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Verbascum thapsus;32859;actual measurement;one-seeded generative dispersule;.092;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.092;;;100;;Air dried weight;;2a Verbascum thapsus;32859;actual measurement;one-seeded generative dispersule;.065;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.065;;;50;;Air dried weight;;2a Verbascum thapsus;32859;actual measurement (following LEDA data standards);germinule;.16;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.16;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Verbascum thapsus;32859;other;germinule;.1032;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1032;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum thapsus;32859;other;germinule;.106;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.106;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum thapsus;32859;actual measurement (following LEDA data standards);germinule;.16;1;-2;.16;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.16;.16;.16;;preaggregated value obtained from single record;Air dried weight;;3 Verbascum virgatum;33376;other;germinule;.2352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum virgatum;33376;other;germinule;.1012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Verbascum virgatum;33376;actual measurement;one-seeded generative dispersule;.127;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.127;;;15;;Air dried weight;;2a Verbena officinalis;35092;actual measurement;germinule;.38;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.38;;;20;;Air dried weight;;3 Verbena officinalis;35092;actual measurement;germinule;.45;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.45;;;40;;Air dried weight;;3 Verbena officinalis;35092;actual measurement;germinule;.337;;-4;;BIOLFLOR database;.337;.38;.3;;;Air dried weight;;3 Verbena officinalis;35092;actual measurement;one-seeded generative dispersule;.38;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.38;;;20;;Air dried weight;;2a Verbena officinalis;35092;actual measurement;one-seeded generative dispersule;.45;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.45;;;40;;Air dried weight;;2a Verbena officinalis;35092;actual measurement;one-seeded generative dispersule;.337;;-4;;BIOLFLOR database;.337;.38;.3;;;Air dried weight;;2a Veronica agrestis;34127;actual measurement;one-seeded generative dispersule;.261;;-4;;BIOLFLOR database;.261;;;;;Air dried weight;;2a Veronica agrestis;34127;actual measurement;one-seeded generative dispersule;.356;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.356;;;50;;Air dried weight;;2a Veronica agrestis;34127;actual measurement;germinule;.261;;-4;;BIOLFLOR database;.261;;;;;Air dried weight;;3 Veronica agrestis;34127;actual measurement;germinule;.356;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.356;;;50;;Air dried weight;;3 Veronica alpina;33325;actual measurement;generative dispersule;.0655;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0655;.07;.061;100;seed;Air dried weight;;2 Veronica alpina;33325;actual measurement;generative dispersule;.051;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.051;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Veronica alpina;33325;actual measurement;germinule;.199;;-4;;BIOLFLOR database;.199;;;;;Air dried weight;;3 Veronica alpina;33325;actual measurement;one-seeded generative dispersule;.199;;-4;;BIOLFLOR database;.199;;;;;Air dried weight;;2a Veronica alpina;33325;other;one-seeded generative dispersule;.052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica alpina;33325;actual measurement (following LEDA data standards);germinule;.06;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;;;35;No. of seeds per individual: 10-70;Air dried weight;;3 Veronica alpina;33325;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;35;No. of seeds per individual: 10-70;Air dried weight;;3 Veronica alpina;33325;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;35;No. of seeds per individual: 10-70;Air dried weight;;3 Veronica alpina;33325;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;35;No. of seeds per individual: 10-70;Air dried weight;;3 Veronica alpina;33325;actual measurement (following LEDA data standards);germinule;.08;5;-2;.08;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;.08;.06;;Preaggregated data obtained from single record. No. of seeds per individual: 10-70;;;3 Veronica alpina;33325;actual measurement (following LEDA data standards);germinule;.04;1;-2;.04;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.04;.04;;Preaggregated data obtained from single record. No. of seeds per individual: 124;;;3 Veronica alpina;33325;other;germinule;.052;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.052;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica alpina;33325;actual measurement (following LEDA data standards);germinule;.04;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;;;124;No. of seeds per individual: 124;Air dried weight;;3 Veronica alpina;33325;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;;;35;No. of seeds per individual: 10-70;Air dried weight;;3 Veronica anagallis-aquatica;32774;other;germinule;.0372;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0372;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica anagallis-aquatica;32774;actual measurement;one-seeded generative dispersule;.028;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.028;.028;.028;100;;Air dried weight;;2a Veronica anagallis-aquatica;32774;actual measurement;one-seeded generative dispersule;.061;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.061;;;20;;Air dried weight;;2a Veronica anagalloides;34184;actual measurement;one-seeded generative dispersule;.035;;-4;;BIOLFLOR database;.035;;;;;Air dried weight;;2a Veronica anagalloides;34184;actual measurement;germinule;.035;;-4;;BIOLFLOR database;.035;;;;;Air dried weight;;3 Veronica arvensis;33302;actual measurement;germinule;.131;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.131;;;97;;Air dried weight;;3 Veronica arvensis;33302;actual measurement;germinule;.096;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.096;;;25;;Air dried weight;;3 Veronica arvensis;33302;actual measurement;germinule;.125;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.125;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Veronica arvensis;33302;actual measurement;germinule;.125;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.125;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Veronica arvensis;33302;actual measurement;germinule;.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.13;;;30;collected between 1996-1999;Air dried weight;;3 Veronica arvensis;33302;actual measurement;germinule;.1;;-4;;BIOLFLOR database;.1;.12;.083;;;Air dried weight;;3 Veronica arvensis;33302;actual measurement;one-seeded generative dispersule;.131;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.131;;;97;;Air dried weight;;2a Veronica arvensis;33302;actual measurement;one-seeded generative dispersule;.096;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.096;;;25;;Air dried weight;;2a Veronica arvensis;33302;actual measurement;one-seeded generative dispersule;.1;;-4;;BIOLFLOR database;.1;.12;.083;;;Air dried weight;;2a Veronica arvensis;33302;actual measurement;one-seeded generative dispersule;.128;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.128;.132;.124;100;;Air dried weight;;2a Veronica arvensis;33302;other;one-seeded generative dispersule;.1568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica arvensis;33302;other;one-seeded generative dispersule;.0936;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica arvensis;33302;other;germinule;.1568;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1568;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica arvensis;33302;other;germinule;.0936;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0936;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica austriaca;32781;actual measurement;generative dispersule;.3;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.3;.4;.2;1;;Air dried weight;;2 Veronica austriaca s. teucrium;33306;actual measurement;germinule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;3 Veronica austriaca s. teucrium;33306;actual measurement;one-seeded generative dispersule;.2;;-4;;BIOLFLOR database;.2;;;;;Air dried weight;;2a Veronica austriaca s. teucrium;33306;actual measurement;generative dispersule;.18;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.18;.3;.1;1;;Air dried weight;;2 Veronica beccabunga;33863;other;one-seeded generative dispersule;.0468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica beccabunga;33863;actual measurement;one-seeded generative dispersule;.041;;-4;;BIOLFLOR database;.041;.044;.037;;;Air dried weight;;2a Veronica beccabunga;33863;actual measurement;one-seeded generative dispersule;.0495;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.0495;.051;.048;100;;Air dried weight;;2a Veronica beccabunga;33863;actual measurement;germinule;.041;;-4;;BIOLFLOR database;.041;.044;.037;;;Air dried weight;;3 Veronica beccabunga;33863;actual measurement;one-seeded generative dispersule;.051;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.051;;;50;;Air dried weight;;2a Veronica beccabunga;33863;actual measurement;germinule;.051;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.051;;;50;;Air dried weight;;3 Veronica beccabunga;33863;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.75;;;10;used balance: Mettler Toledo 4, fruit;Air dried weight;;2a Veronica beccabunga;33863;other;germinule;.0468;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0468;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica beccabunga;33863;actual measurement (following LEDA data standards);one-seeded generative dispersule;1.75;1;-2;1.75;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.75;1.75;1.75;;preaggregated value obtained from single record;Air dried weight;;2a Veronica catenata;33875;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Veronica catenata;33875;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Veronica catenata;33875;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Veronica catenata;33875;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Veronica catenata;33875;other;germinule;.0462;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0462;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica catenata;33875;actual measurement (following LEDA data standards);germinule;.03;1;-2;.03;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;.03;.03;;preaggregated value obtained from single record;Air dried weight;;3 Veronica catenata;33875;actual measurement (following LEDA data standards);germinule;.03;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.03;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Veronica catenata;33875;actual measurement;one-seeded generative dispersule;.036;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.036;;;50;;Air dried weight;;2a Veronica catenata;33875;actual measurement;one-seeded generative dispersule;.0275;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.0275;;;50;;Air dried weight;;2a Veronica chamaedrys;32792;actual measurement;generative dispersule;.24;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.24;.3;.2;1;;Air dried weight;;2 Veronica chamaedrys;32792;actual measurement;generative dispersule;.222;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.222;.235333333;.202;150;;Air dried weight;;2 Veronica chamaedrys;32792;actual measurement;germinule;.215;;-4;;BIOLFLOR database;.215;.25;.18;;;Air dried weight;;3 Veronica chamaedrys;32792;actual measurement;germinule;.18;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.18;;;50;;Air dried weight;;3 Veronica chamaedrys;32792;actual measurement;germinule;.193;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.193;;;1;summers of 1995 and 1996;Unknown;;3 Veronica chamaedrys;32792;actual measurement;one-seeded generative dispersule;.18;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.18;;;50;;Air dried weight;;2a Veronica chamaedrys;32792;actual measurement;one-seeded generative dispersule;.215;;-4;;BIOLFLOR database;.215;.25;.18;;;Air dried weight;;2a Veronica filiformis;33807;actual measurement;germinule;.278;;-4;;BIOLFLOR database;.278;;;;;Air dried weight;;3 Veronica filiformis;33807;actual measurement;one-seeded generative dispersule;.278;;-4;;BIOLFLOR database;.278;;;;;Air dried weight;;2a Veronica fruticans;34175;other;one-seeded generative dispersule;.1272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica fruticans;34175;other;one-seeded generative dispersule;.1244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica fruticans;34175;actual measurement;one-seeded generative dispersule;.175;;-4;;BIOLFLOR database;.175;;;;;Air dried weight;;2a Veronica fruticans;34175;actual measurement;germinule;.175;;-4;;BIOLFLOR database;.175;;;;;Air dried weight;;3 Veronica fruticans;34175;other;germinule;.1272;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1272;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica fruticans;34175;other;germinule;.1244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica fruticulosa;32798;actual measurement;germinule;.245;;-4;;BIOLFLOR database;.245;;;;;Air dried weight;;3 Veronica fruticulosa;32798;actual measurement;one-seeded generative dispersule;.245;;-4;;BIOLFLOR database;.245;;;;;Air dried weight;;2a Veronica gentianoides;33811;actual measurement;generative dispersule;.15;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.15;;;1;n an replicates unknown;Air dried weight;;2 Veronica hederifolia;33317;actual measurement;germinule;3.007;;-4;;BIOLFLOR database;3.007;3.935;2.352;;;Air dried weight;;3 Veronica hederifolia;33317;actual measurement;germinule;5.96;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.96;;;50;;Air dried weight;;3 Veronica hederifolia;33317;actual measurement;one-seeded generative dispersule;3.007;;-4;;BIOLFLOR database;3.007;3.935;2.352;;;Air dried weight;;2a Veronica hederifolia;33317;other;one-seeded generative dispersule;3.5872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.5872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica hederifolia;33317;actual measurement;generative dispersule;4.02;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;4.02;4.9;3.1;1;;Air dried weight;;2 Veronica hederifolia;33317;actual measurement;one-seeded generative dispersule;5.96;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5.96;;;50;;Air dried weight;;2a Veronica hederifolia;33317;other;germinule;3.5872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.5872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica longifolia;32803;actual measurement;one-seeded generative dispersule;.05;;-4;;BIOLFLOR database;.05;.057;.043;;;Air dried weight;;2a Veronica longifolia;32803;actual measurement;germinule;.05;;-4;;BIOLFLOR database;.05;.057;.043;;;Air dried weight;;3 Veronica montana;33758;actual measurement;germinule;.338;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.338;;;50;;Air dried weight;;3 Veronica montana;33758;actual measurement;one-seeded generative dispersule;.338;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.338;;;50;;Air dried weight;;2a Veronica montana;33758;actual measurement;one-seeded generative dispersule;.34;;-4;;BIOLFLOR database;.34;;;;;Air dried weight;;2a Veronica montana;33758;actual measurement;germinule;.34;;-4;;BIOLFLOR database;.34;;;;;Air dried weight;;3 Veronica montana;33758;actual measurement;germinule;.56;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.56;;;50;;Air dried weight;;3 Veronica montana;33758;actual measurement;one-seeded generative dispersule;.56;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.56;;;50;;Air dried weight;;2a Veronica montana;33758;other;one-seeded generative dispersule;.4236;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica montana;33758;actual measurement;generative dispersule;.32;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.32;.4;.2;1;;Air dried weight;;2 Veronica montana;33758;actual measurement;generative dispersule;.426428571;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.426428571;.481428571;.371428571;70;;Air dried weight;;2 Veronica montana;33758;other;germinule;.4236;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4236;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica officinalis;33764;actual measurement (following LEDA data standards);germinule;.08;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Veronica officinalis;33764;actual measurement (following LEDA data standards);germinule;.08;1;-2;.08;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.08;.08;.08;;preaggregated value obtained from single record;Air dried weight;;3 Veronica officinalis;33764;other;germinule;.1428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica officinalis;33764;other;one-seeded generative dispersule;.1428;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1428;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica officinalis;33764;actual measurement;generative dispersule;.1072;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.1072;.109333333;.104666667;150;;Air dried weight;;2 Veronica officinalis;33764;actual measurement;one-seeded generative dispersule;.172;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.172;;;50;;Air dried weight;;2a Veronica officinalis;33764;actual measurement;one-seeded generative dispersule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;2a Veronica officinalis;33764;actual measurement;germinule;.111;;-4;;BIOLFLOR database;.111;.146;.1;;;Air dried weight;;3 Veronica officinalis;33764;actual measurement;germinule;.11;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.11;;;50;;Air dried weight;;3 Veronica officinalis;33764;actual measurement;germinule;.135;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.135;;;1;summers of 1995 and 1996;Unknown;;3 Veronica officinalis;33764;actual measurement;one-seeded generative dispersule;.111;;-4;;BIOLFLOR database;.111;.146;.1;;;Air dried weight;;2a Veronica officinalis;33764;actual measurement;germinule;.172;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.172;;;50;;Air dried weight;;3 Veronica paniculata;32731;actual measurement;germinule;.105;;-4;;BIOLFLOR database;.105;;;;;Air dried weight;;3 Veronica paniculata;32731;actual measurement;one-seeded generative dispersule;.105;;-4;;BIOLFLOR database;.105;;;;;Air dried weight;;2a Veronica peregrina;33270;actual measurement;unknown;.038;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];.038;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];4 Veronica peregrina;33270;other;germinule;.0252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica persica;33737;other;germinule;.604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica persica;33737;actual measurement;germinule;.522;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.522;;;50;;Air dried weight;;3 Veronica persica;33737;actual measurement;germinule;.569;;-4;;BIOLFLOR database;.569;.9;.4;;;Air dried weight;;3 Veronica persica;33737;actual measurement;one-seeded generative dispersule;.522;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.522;;;50;;Air dried weight;;2a Veronica persica;33737;actual measurement;one-seeded generative dispersule;.569;;-4;;BIOLFLOR database;.569;.9;.4;;;Air dried weight;;2a Veronica persica;33737;other;one-seeded generative dispersule;.604;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.604;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica polita;33745;other;one-seeded generative dispersule;.3244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica polita;33745;actual measurement;one-seeded generative dispersule;.334;;-4;;BIOLFLOR database;.334;.35;.305;;;Air dried weight;;2a Veronica polita;33745;actual measurement;one-seeded generative dispersule;.284;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.284;;;50;;Air dried weight;;2a Veronica polita;33745;actual measurement;germinule;.334;;-4;;BIOLFLOR database;.334;.35;.305;;;Air dried weight;;3 Veronica polita;33745;actual measurement;germinule;.284;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.284;;;50;;Air dried weight;;3 Veronica polita;33745;other;germinule;.3244;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3244;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica praecox;33746;other;germinule;.2316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica praecox;33746;other;germinule;.1872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica praecox;33746;other;germinule;.1352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica praecox;33746;actual measurement;germinule;.194;;-4;;BIOLFLOR database;.194;.196;.192;;;Air dried weight;;3 Veronica praecox;33746;actual measurement;one-seeded generative dispersule;.194;;-4;;BIOLFLOR database;.194;.196;.192;;;Air dried weight;;2a Veronica praecox;33746;other;one-seeded generative dispersule;.1352;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1352;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica praecox;33746;other;one-seeded generative dispersule;.1872;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1872;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica praecox;33746;other;one-seeded generative dispersule;.2316;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2316;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica scutellata;34347;actual measurement;one-seeded generative dispersule;2.2915;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;2.2915;2.372;2.211;100;;Air dried weight;;2a Veronica scutellata;34347;actual measurement;one-seeded generative dispersule;.184;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.184;;;50;;Air dried weight;;2a Veronica scutellata;34347;actual measurement (following LEDA data standards);germinule;.15;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Veronica scutellata;34347;actual measurement (following LEDA data standards);germinule;.15;1;-2;.15;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.15;.15;.15;;preaggregated value obtained from single record;Air dried weight;;3 Veronica scutellata;34347;actual measurement (following LEDA data standards);germinule;.18;1;-2;.18;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;.18;.18;;preaggregated value obtained from single record;Air dried weight;;3 Veronica scutellata;34347;actual measurement (following LEDA data standards);germinule;.18;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.18;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Veronica scutellata;34347;other;germinule;.1808;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1808;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica serpyllifolia;32740;other;germinule;.04;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica serpyllifolia;32740;other;germinule;.0444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica serpyllifolia;32740;other;germinule;.0536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica serpyllifolia;32740;actual measurement;one-seeded generative dispersule;.066;;-4;;BIOLFLOR database;.066;.075;.055;;;Air dried weight;;2a Veronica serpyllifolia;32740;actual measurement;one-seeded generative dispersule;.046;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.046;;;50;;Air dried weight;;2a Veronica serpyllifolia;32740;actual measurement;germinule;.066;;-4;;BIOLFLOR database;.066;.075;.055;;;Air dried weight;;3 Veronica serpyllifolia;32740;actual measurement;germinule;.046;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.046;;;50;;Air dried weight;;3 Veronica serpyllifolia;32740;other;germinule;.04608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica serpyllifolia;32740;other;one-seeded generative dispersule;.04;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica serpyllifolia;32740;other;one-seeded generative dispersule;.04608;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.04608;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica serpyllifolia;32740;other;one-seeded generative dispersule;.0444;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0444;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica serpyllifolia;32740;other;one-seeded generative dispersule;.0536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica spicata;32745;actual measurement;germinule;.1446;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1446;;;50;;Air dried weight;;3 Veronica spicata;32745;other;germinule;.1;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica spicata;32745;other;germinule;.1384;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1384;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica spicata;32745;other;germinule;.0976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica spicata s. spicata;33276;actual measurement;generative dispersule;.4;1;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.4;.4;.4;1;;Air dried weight;;2 Veronica spicata s. spicata;33276;actual measurement;germinule;.086;;-4;;BIOLFLOR database;.086;.09;.082;;;Air dried weight;;3 Veronica spicata s. spicata;33276;actual measurement;one-seeded generative dispersule;.086;;-4;;BIOLFLOR database;.086;.09;.082;;;Air dried weight;;2a Veronica triphyllos;33282;actual measurement;one-seeded generative dispersule;.321;;-4;;BIOLFLOR database;.321;.362;.28;;;Air dried weight;;2a Veronica triphyllos;33282;actual measurement;germinule;.321;;-4;;BIOLFLOR database;.321;.362;.28;;;Air dried weight;;3 Veronica triphyllos;33282;other;one-seeded generative dispersule;.4128;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4128;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica triphyllos;33282;other;one-seeded generative dispersule;.4976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica triphyllos;33282;other;one-seeded generative dispersule;.4012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica triphyllos;33282;other;germinule;.4012;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4012;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica triphyllos;33282;other;germinule;.4976;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4976;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica triphyllos;33282;other;germinule;.4128;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4128;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica urticifolia;34194;actual measurement;germinule;.104;;-4;;BIOLFLOR database;.104;;;;;Air dried weight;;3 Veronica urticifolia;34194;actual measurement;germinule;.11;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.11;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Veronica urticifolia;34194;actual measurement;one-seeded generative dispersule;.104;;-4;;BIOLFLOR database;.104;;;;;Air dried weight;;2a Veronica verna;34375;actual measurement;germinule;.11;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.11;;;30;collected between 1996-1999;Air dried weight;;3 Veronica verna;34375;actual measurement;germinule;.113;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.113;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Veronica verna;34375;actual measurement;one-seeded generative dispersule;.128;;-4;;BIOLFLOR database;.128;;;;;Air dried weight;;2a Veronica verna;34375;actual measurement;germinule;.1129;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1129;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Veronica verna;34375;actual measurement;germinule;.128;;-4;;BIOLFLOR database;.128;;;;;Air dried weight;;3 Veronica verna;34375;other;one-seeded generative dispersule;.1492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica verna;34375;other;one-seeded generative dispersule;.1292;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1292;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica verna;34375;other;one-seeded generative dispersule;.0636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Veronica verna;34375;other;germinule;.1492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica verna;34375;other;germinule;.1292;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.1292;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Veronica verna;34375;other;germinule;.0636;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0636;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viburnum lantana;15334;other;germinule;25.74;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);25.74;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viburnum lantana;15334;other;germinule;31.0156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);31.0156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viburnum lantana;15334;other;germinule;69.6156;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);69.6156;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viburnum lantana;15334;actual measurement;generative dispersule;10;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);10;;;1;n an replicates unknown;Air dried weight;;2 Viburnum lantana;15334;actual measurement;germinule;38.4;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;38.4;43.4;36.2;1;;Air dried weight;;3 Viburnum opulus;15336;actual measurement;generative dispersule;379.382;;-4;;BIOLFLOR database;379.382;;;;;Fresh weight;;2 Viburnum opulus;15336;actual measurement;germinule;25.496;;-4;;BIOLFLOR database;25.496;;;;;Air dried weight;;3 Viburnum opulus;15336;actual measurement;germinule;30.5;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);30.5;;;1;n an replicates unknown;Air dried weight;;3 Viburnum opulus;15336;actual measurement;germinule;29.491;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;29.491;29.705;29.277;100;;Air dried weight;;3 Viburnum opulus;15336;actual measurement;one-seeded generative dispersule;21.04;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21.04;;;25;;Air dried weight;;2a Viburnum opulus;15336;actual measurement;one-seeded generative dispersule;494;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);494;;;1;n an replicates unknown;Fresh weight;;2a Viburnum opulus;15336;other;germinule;36.3296;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);36.3296;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viburnum tinus;15337;actual measurement;germinule;27.16;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);27.16;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Vicia articulata;22076;actual measurement;germinule;41.577;;-4;;BIOLFLOR database;41.577;61.335;23;;;Air dried weight;;3 Vicia articulata;22076;actual measurement;one-seeded generative dispersule;41.577;;-4;;BIOLFLOR database;41.577;61.335;23;;;Air dried weight;;2a Vicia cassubica;19692;actual measurement;germinule;28.965;;-4;;BIOLFLOR database;28.965;34.3;23.63;;;Air dried weight;;3 Vicia cassubica;19692;actual measurement;generative dispersule;47.097;4;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;47.097;49.612;43.016;25;;Air dried weight;;2 Vicia cassubica;19692;actual measurement;one-seeded generative dispersule;28.965;;-4;;BIOLFLOR database;28.965;34.3;23.63;;;Air dried weight;;2a Vicia cracca;22128;actual measurement;one-seeded generative dispersule;14.289;;-4;;BIOLFLOR database;14.289;23.661;9.55;;;Air dried weight;;2a Vicia cracca;22128;actual measurement;one-seeded generative dispersule;18.598;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;18.598;19.532;17.55666667;150;;Air dried weight;;2a Vicia cracca;22128;other;one-seeded generative dispersule;14.4988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.4988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Vicia cracca;22128;actual measurement;germinule;23.661;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23.661;;;100;;Air dried weight;;3 Vicia cracca;22128;actual measurement;germinule;14.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14.29;;;50;;Air dried weight;;3 Vicia cracca;22128;actual measurement;germinule;14.289;;-4;;BIOLFLOR database;14.289;23.661;9.55;;;Air dried weight;;3 Vicia cracca;22128;actual measurement;one-seeded generative dispersule;14.29;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14.29;;;50;;Air dried weight;;2a Vicia cracca;22128;actual measurement;one-seeded generative dispersule;23.661;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23.661;;;100;;Air dried weight;;2a Vicia cracca;22128;actual measurement (following LEDA data standards);germinule;12.42;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.42;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Vicia cracca;22128;actual measurement (following LEDA data standards);germinule;12.42;1;-2;12.42;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12.42;12.42;12.42;;preaggregated value obtained from single record;Air dried weight;;3 Vicia cracca;22128;other;germinule;14.4988;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);14.4988;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vicia dumetorum;21606;actual measurement;one-seeded generative dispersule;54.13;;-4;;BIOLFLOR database;54.13;67;30.02;;;Air dried weight;;2a Vicia dumetorum;21606;actual measurement;germinule;54.13;;-4;;BIOLFLOR database;54.13;67;30.02;;;Air dried weight;;3 Vicia dumetorum;21606;actual measurement;generative dispersule;44.76428571;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;44.76428571;45.34;44.18857143;35;;Air dried weight;;2 Vicia ervilia;20343;actual measurement;one-seeded generative dispersule;42.778;;-4;;BIOLFLOR database;42.778;;;;;Air dried weight;;2a Vicia ervilia;20343;actual measurement;germinule;45;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;50;40;1;n and replicates unknown;Air dried weight;;3 Vicia ervilia;20343;actual measurement;germinule;42.778;;-4;;BIOLFLOR database;42.778;50;40;;;Air dried weight;;3 Vicia faba;20755;actual measurement;germinule;1390;1;1;;Source data from University of Regensburg , Chair of Botany, DE (Jackel), E-Mail: auc.jackel@t-online.de;;2500;280;1;n and replicates unknown;Air dried weight;;3 Vicia grandiflora;21610;actual measurement;germinule;20.58;;-4;;BIOLFLOR database;20.58;22.4;18.16;;;Air dried weight;;3 Vicia grandiflora;21610;actual measurement;one-seeded generative dispersule;20.58;;-4;;BIOLFLOR database;20.58;22.4;18.16;;;Air dried weight;;2a Vicia hirsuta;20346;actual measurement;one-seeded generative dispersule;7.778;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.778;;;50;;Air dried weight;;2a Vicia hirsuta;20346;actual measurement;one-seeded generative dispersule;2.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.192;;;100;;Air dried weight;;2a Vicia hirsuta;20346;other;one-seeded generative dispersule;5.2772;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.2772;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Vicia hirsuta;20346;actual measurement;germinule;2.192;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.192;;;100;;Air dried weight;;3 Vicia hirsuta;20346;actual measurement;germinule;7.778;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7.778;;;50;;Air dried weight;;3 Vicia hirsuta;20346;actual measurement;one-seeded generative dispersule;6.955;;-4;;BIOLFLOR database;6.955;9.5;5.4;;;Air dried weight;;2a Vicia hirsuta;20346;actual measurement;germinule;6.955;;-4;;BIOLFLOR database;6.955;9.5;5.4;;;Air dried weight;;3 Vicia hirsuta;20346;actual measurement (following LEDA data standards);germinule;7.75;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7.75;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Vicia hirsuta;20346;other;germinule;5.2772;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);5.2772;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vicia hirsuta;20346;actual measurement (following LEDA data standards);germinule;7.75;1;-2;7.75;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7.75;7.75;7.75;;preaggregated value obtained from single record;Air dried weight;;3 Vicia lathyroides;21160;other;germinule;1.948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vicia lathyroides;21160;actual measurement;germinule;2.875;;-4;;BIOLFLOR database;2.875;3.53;2.22;;;Air dried weight;;3 Vicia lathyroides;21160;actual measurement;germinule;2.067;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.067;;;50;;Air dried weight;;3 Vicia lathyroides;21160;actual measurement;one-seeded generative dispersule;2.875;;-4;;BIOLFLOR database;2.875;3.53;2.22;;;Air dried weight;;2a Vicia lathyroides;21160;other;one-seeded generative dispersule;1.948;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.948;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Vicia lathyroides;21160;actual measurement;one-seeded generative dispersule;2.067;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.067;;;50;;Air dried weight;;2a Vicia lutea;21163;actual measurement;one-seeded generative dispersule;67.043;;-4;;BIOLFLOR database;67.043;;;;;Air dried weight;;2a Vicia lutea;21163;other;one-seeded generative dispersule;29.0024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);29.0024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Vicia lutea;21163;actual measurement;germinule;67.043;;-4;;BIOLFLOR database;67.043;;;;;Air dried weight;;3 Vicia lutea;21163;other;germinule;29.0024;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);29.0024;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vicia narbonensis;21166;actual measurement;one-seeded generative dispersule;245.1;;-4;;BIOLFLOR database;245.1;310;180;;;Air dried weight;;2a Vicia narbonensis;21166;actual measurement;germinule;245.1;;-4;;BIOLFLOR database;245.1;310;180;;;Air dried weight;;3 Vicia oroboides;22135;actual measurement;germinule;14.273;;-4;;BIOLFLOR database;14.273;15.139;13.393;;;Air dried weight;;3 Vicia oroboides;22135;actual measurement;one-seeded generative dispersule;14.273;;-4;;BIOLFLOR database;14.273;15.139;13.393;;;Air dried weight;;2a Vicia orobus;20763;actual measurement;germinule;21.177;;-4;;BIOLFLOR database;21.177;21.726;20.73;;;Air dried weight;;3 Vicia orobus;20763;actual measurement;one-seeded generative dispersule;21.177;;-4;;BIOLFLOR database;21.177;21.726;20.73;;;Air dried weight;;2a Vicia pannonica;22136;actual measurement;one-seeded generative dispersule;37.685;;-4;;BIOLFLOR database;37.685;49.39;25.98;;;Air dried weight;;2a Vicia pannonica;22136;actual measurement;germinule;37.685;;-4;;BIOLFLOR database;37.685;49.39;25.98;;;Air dried weight;;3 Vicia pisiformis;22140;actual measurement;one-seeded generative dispersule;38.44;;-4;;BIOLFLOR database;38.44;46.98;29.9;;;Air dried weight;;2a Vicia pisiformis;22140;actual measurement;germinule;38.44;;-4;;BIOLFLOR database;38.44;46.98;29.9;;;Air dried weight;;3 Vicia sativa;22143;actual measurement;generative dispersule;14.26;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;14.26;16.7;12.2;1;;Air dried weight;;2 Vicia sativa;22143;actual measurement;germinule;39.441;;-4;;BIOLFLOR database;39.441;85;11.7;;;Air dried weight;;3 Vicia sativa;22143;actual measurement;one-seeded generative dispersule;39.441;;-4;;BIOLFLOR database;39.441;85;11.7;;;Air dried weight;;2a Vicia sativa s. nigra;19593;actual measurement;one-seeded generative dispersule;12.531;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.531;;;100;;Air dried weight;;2a Vicia sativa s. nigra;19593;actual measurement;one-seeded generative dispersule;13.009;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.009;;;100;;Air dried weight;;2a Vicia sativa s. nigra;19593;actual measurement;one-seeded generative dispersule;18.07;;-4;;BIOLFLOR database;18.07;31;10.3;;;Air dried weight;;2a Vicia sativa s. nigra;19593;actual measurement;one-seeded generative dispersule;9.452;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.452;;;50;;Air dried weight;;2a Vicia sativa s. nigra;19593;actual measurement;one-seeded generative dispersule;13.591;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.591;;;100;;Air dried weight;;2a Vicia sativa s. nigra;19593;actual measurement;germinule;9.452;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9.452;;;50;;Air dried weight;;3 Vicia sativa s. nigra;19593;actual measurement;germinule;13.009;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.009;;;100;;Air dried weight;;3 Vicia sativa s. nigra;19593;actual measurement;germinule;18.07;;-4;;BIOLFLOR database;18.07;31;10.3;;;Air dried weight;;3 Vicia sativa s. nigra;19593;actual measurement;germinule;13.591;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13.591;;;100;;Air dried weight;;3 Vicia sativa s. nigra;19593;actual measurement;germinule;12.531;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12.531;;;100;;Air dried weight;;3 Vicia sepium;20357;actual measurement;germinule;26.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26.16;;;50;;Air dried weight;;3 Vicia sepium;20357;actual measurement;germinule;21.396;;-4;;BIOLFLOR database;21.396;28.679;10;;;Air dried weight;;3 Vicia sepium;20357;actual measurement;one-seeded generative dispersule;26.16;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26.16;;;50;;Air dried weight;;2a Vicia sepium;20357;actual measurement;one-seeded generative dispersule;21.396;;-4;;BIOLFLOR database;21.396;28.679;10;;;Air dried weight;;2a Vicia sepium;20357;other;one-seeded generative dispersule;20.9348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.9348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Vicia sepium;20357;actual measurement (following LEDA data standards);germinule;22.59;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22.59;;;30;used balance: Mettler H51, seed;Air dried weight;;3 Vicia sepium;20357;other;germinule;20.9348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);20.9348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vicia sepium;20357;actual measurement (following LEDA data standards);germinule;22.59;1;-2;22.59;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22.59;22.59;22.59;;preaggregated value obtained from single record;Air dried weight;;3 Vicia sylvatica;20360;actual measurement;one-seeded generative dispersule;24.285;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24.285;;;50;;Air dried weight;;2a Vicia sylvatica;20360;actual measurement;one-seeded generative dispersule;20.22;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.22;;;25;;Air dried weight;;2a Vicia sylvatica;20360;actual measurement;germinule;20.22;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20.22;;;25;;Air dried weight;;3 Vicia sylvatica;20360;actual measurement;germinule;24.285;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24.285;;;50;;Air dried weight;;3 Vicia sylvatica;20360;actual measurement;one-seeded generative dispersule;21.2;;-4;;BIOLFLOR database;21.2;23.9;18.5;;;Air dried weight;;2a Vicia sylvatica;20360;actual measurement;germinule;21.2;;-4;;BIOLFLOR database;21.2;23.9;18.5;;;Air dried weight;;3 Vicia tenuifolia;22123;actual measurement;germinule;20.5;;-4;;BIOLFLOR database;20.5;24.1;16.9;;;Air dried weight;;3 Vicia tenuifolia;22123;actual measurement;germinule;28.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28.06;;;50;;Air dried weight;;3 Vicia tenuifolia;22123;actual measurement;one-seeded generative dispersule;20.5;;-4;;BIOLFLOR database;20.5;24.1;16.9;;;Air dried weight;;2a Vicia tenuifolia;22123;actual measurement;one-seeded generative dispersule;28.06;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28.06;;;50;;Air dried weight;;2a Vicia tetrasperma;22147;actual measurement;one-seeded generative dispersule;3.35;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.35;;;50;;Air dried weight;;2a Vicia tetrasperma;22147;actual measurement;germinule;2.694;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.694;;;50;;Air dried weight;;3 Vicia tetrasperma;22147;actual measurement;one-seeded generative dispersule;2.694;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.694;;;50;;Air dried weight;;2a Vicia tetrasperma;22147;actual measurement;one-seeded generative dispersule;3.549;;-4;;BIOLFLOR database;3.549;5.24;2.51;;;Air dried weight;;2a Vicia tetrasperma;22147;actual measurement;germinule;3.549;;-4;;BIOLFLOR database;3.549;5.24;2.51;;;Air dried weight;;3 Vicia tetrasperma;22147;actual measurement;germinule;3.35;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3.35;;;50;;Air dried weight;;3 Vicia villosa s. varia;22113;actual measurement;germinule;47.7;;-4;;BIOLFLOR database;47.7;54.4;41;;;Air dried weight;;3 Vicia villosa s. varia;22113;actual measurement;one-seeded generative dispersule;47.7;;-4;;BIOLFLOR database;47.7;54.4;41;;;Air dried weight;;2a Vinca minor;2536;actual measurement;germinule;6.13;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.13;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Vincetoxicum hirundinaria;2467;actual measurement;germinule;6.75;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);6.75;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Vincetoxicum hirundinaria;2467;actual measurement;germinule;7.22;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;7.22;8.2;5.4;1;;Air dried weight;;3 Vincetoxicum hirundinaria;2467;actual measurement;generative dispersule;8.3;;-4;;BIOLFLOR database;8.3;;;;;Air dried weight;;2 Viola alba;35426;actual measurement;one-seeded generative dispersule;1.29;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];1.29;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Viola alba;35426;actual measurement;germinule;1.2;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];1.2;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Viola arvensis;35403;actual measurement;germinule;.401;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.401;;;94;;Air dried weight;;3 Viola arvensis;35403;actual measurement;one-seeded generative dispersule;.512;;-4;;BIOLFLOR database;.512;.579;.4;;;Air dried weight;;2a Viola arvensis;35403;actual measurement;germinule;.512;;-4;;BIOLFLOR database;.512;.579;.4;;;Air dried weight;;3 Viola arvensis;35403;actual measurement;one-seeded generative dispersule;.401;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.401;;;94;;Air dried weight;;2a Viola arvensis;35403;actual measurement;generative dispersule;.21;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.21;;;1;n an replicates unknown;Air dried weight;;2 Viola arvensis;35403;actual measurement (following LEDA data standards);germinule;.62;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;;;100;used balance: Mettler H51, seed;Air dried weight;;3 Viola arvensis;35403;actual measurement (following LEDA data standards);germinule;.62;1;-2;.62;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.62;.62;.62;;preaggregated value obtained from single record;Air dried weight;;3 Viola biflora;35415;actual measurement;generative dispersule;.74;10;1;;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];.74;;;0;;Air dried weight;Bruun, Hans Henrik(2005): Distinct patterns in alpine vegetation around dens of the Arctic fox [28];2 Viola canina;35384;actual measurement;germinule;.905;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.905;;;1;summers of 1995 and 1996;Unknown;;3 Viola canina;35384;actual measurement;one-seeded generative dispersule;.576;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.576;;;50;;Air dried weight;;2a Viola canina;35384;actual measurement (following LEDA data standards);germinule;1.31;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.31;;;20;used balance: Mettler H51, seed;Air dried weight;;3 Viola canina;35384;other;germinule;1.3264;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.3264;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viola canina;35384;actual measurement (following LEDA data standards);germinule;1.31;1;-2;1.31;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1.31;1.31;1.31;;preaggregated value obtained from single record;Air dried weight;;3 Viola canina s. canina;35385;actual measurement;one-seeded generative dispersule;.703;;-4;;BIOLFLOR database;.703;;;;;Air dried weight;;2a Viola canina s. canina;35385;actual measurement;germinule;.703;;-4;;BIOLFLOR database;.703;;;;;Air dried weight;;3 Viola canina s. montana;35386;actual measurement;germinule;.671;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.671;;;10;;Air dried weight;;3 Viola collina;35356;actual measurement;germinule;1.9;;-4;;BIOLFLOR database;1.9;;;;;Air dried weight;;3 Viola collina;35356;actual measurement;one-seeded generative dispersule;1.9;;-4;;BIOLFLOR database;1.9;;;;;Air dried weight;;2a Viola elatior;35336;actual measurement;one-seeded generative dispersule;1.698;;-4;;BIOLFLOR database;1.698;;;;;Air dried weight;;2a Viola elatior;35336;actual measurement;one-seeded generative dispersule;1.447;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.447;1.447;1.447;100;;Air dried weight;;2a Viola elatior;35336;actual measurement;germinule;1.698;;-4;;BIOLFLOR database;1.698;;;;;Air dried weight;;3 Viola hirta;35355;actual measurement;unknown;4.1;0;1;;Berg, H.(1999): Offspring performance in three cleistogamous Viola species [145];4.1;;;0;;Unknown;Berg, H.(1999): Offspring performance in three cleistogamous Viola species [145];4 Viola hirta;35355;actual measurement;germinule;2.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.81;;;10;;Air dried weight;;3 Viola hirta;35355;actual measurement;germinule;1.73;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);1.73;;;50;50-2000 air-dried matured seeds;Air dried weight;;3 Viola hirta;35355;actual measurement;germinule;2.77;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.77;;;10;;Air dried weight;;3 Viola hirta;35355;actual measurement;germinule;3;;-4;;BIOLFLOR database;3;;;;;Air dried weight;;3 Viola hirta;35355;actual measurement;one-seeded generative dispersule;3;;-4;;BIOLFLOR database;3;;;;;Air dried weight;;2a Viola hirta;35355;actual measurement;one-seeded generative dispersule;2.77;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.77;;;10;;Air dried weight;;2a Viola hirta;35355;actual measurement;one-seeded generative dispersule;2.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2.81;;;10;;Air dried weight;;2a Viola hirta;35355;other;one-seeded generative dispersule;3.9752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9752;;;1000;1000 seed weight, unknown number of individuals, Seeds dry. 3-10 fruits/plant. 33 seeds/fruit.;Air dried weight;;2a Viola hirta;35355;other;germinule;3.9752;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.9752;;;1000;1000 seed weight, unknown number of individuals, Seeds dry. 3-10 fruits/plant. 33 seeds/fruit.;Air dried weight;;3 Viola kitaibeliana;35323;other;unknown;.514;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.514;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Viola lactea;35326;other;unknown;.9204;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.9204;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Viola lutea;35331;other;germinule;.8056;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8056;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viola lutea;35331;other;germinule;.8744;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.8744;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viola lutea;35331;actual measurement;one-seeded generative dispersule;.25;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.25;;;50;;Air dried weight;;2a Viola lutea;35331;actual measurement;one-seeded generative dispersule;.42;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.42;;;20;;Air dried weight;;2a Viola mirabilis;35297;actual measurement;unknown;1.7;0;1;;Berg, H.(1999): Offspring performance in three cleistogamous Viola species [145];1.7;;;0;;Unknown;Berg, H.(1999): Offspring performance in three cleistogamous Viola species [145];4 Viola odorata;35309;actual measurement;generative dispersule;.18;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.18;;;1;n an replicates unknown;Air dried weight;;2 Viola odorata;35309;actual measurement;generative dispersule;3.28;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;3.28;3.7;2.8;1;;Air dried weight;;2 Viola odorata;35309;other;germinule;3.3096;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.3096;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viola palustris;35276;actual measurement;one-seeded generative dispersule;.81;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.81;;;50;;Air dried weight;;2a Viola palustris;35276;actual measurement;one-seeded generative dispersule;.62;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.62;;;50;;Air dried weight;;2a Viola palustris;35276;actual measurement;one-seeded generative dispersule;.627;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.627;;;100;;Air dried weight;;2a Viola persicifolia;35285;actual measurement (following LEDA data standards);germinule;.48;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;;;20;used balance: Mettler Toledo 4, seed;Air dried weight;;3 Viola persicifolia;35285;actual measurement (following LEDA data standards);germinule;.48;1;-2;.48;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.48;.48;.48;;preaggregated value obtained from single record;Air dried weight;;3 Viola pumila;35256;actual measurement;germinule;1.083;;-4;;BIOLFLOR database;1.083;1.289;.949;;;Air dried weight;;3 Viola pumila;35256;actual measurement;one-seeded generative dispersule;1.083;;-4;;BIOLFLOR database;1.083;1.289;.949;;;Air dried weight;;2a Viola pumila;35256;actual measurement;one-seeded generative dispersule;1.123;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;1.123;1.13;1.116;100;;Air dried weight;;2a Viola reichenbachiana;35262;other;one-seeded generative dispersule;1.2104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Viola reichenbachiana;35262;actual measurement;one-seeded generative dispersule;4;;-4;;BIOLFLOR database;4;;;;;Air dried weight;;2a Viola reichenbachiana;35262;actual measurement;one-seeded generative dispersule;.864;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.864;;;100;;Air dried weight;;2a Viola reichenbachiana;35262;actual measurement;germinule;4;;-4;;BIOLFLOR database;4;;;;;Air dried weight;;3 Viola reichenbachiana;35262;actual measurement;germinule;.864;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.864;;;100;;Air dried weight;;3 Viola reichenbachiana;35262;other;germinule;1.2104;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2104;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viola riviniana;35267;actual measurement;unknown;2.6;0;1;;Berg, H.(1999): Offspring performance in three cleistogamous Viola species [145];2.6;;;0;;Unknown;Berg, H.(1999): Offspring performance in three cleistogamous Viola species [145];4 Viola riviniana;35267;actual measurement;germinule;1.01;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.01;;;20;;Air dried weight;;3 Viola riviniana;35267;actual measurement;germinule;1.43;;-4;;BIOLFLOR database;1.43;2.1;1;;;Air dried weight;;3 Viola riviniana;35267;actual measurement;germinule;.45;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.45;;;40;;Air dried weight;;3 Viola riviniana;35267;actual measurement;one-seeded generative dispersule;1.01;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1.01;;;20;;Air dried weight;;2a Viola riviniana;35267;actual measurement;one-seeded generative dispersule;1.43;;-4;;BIOLFLOR database;1.43;2.1;1;;;Air dried weight;;2a Viola riviniana;35267;actual measurement;one-seeded generative dispersule;.45;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.45;;;40;;Air dried weight;;2a Viola riviniana;35267;other;germinule;1.2112;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viola riviniana;35267;other;one-seeded generative dispersule;1.2112;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.2112;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Viola tricolor;35219;other;one-seeded generative dispersule;.6536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Viola tricolor;35219;other;one-seeded generative dispersule;.5492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Viola tricolor;35219;actual measurement;one-seeded generative dispersule;.526;;-4;;BIOLFLOR database;.526;;;;;Air dried weight;;2a Viola tricolor;35219;actual measurement;one-seeded generative dispersule;2.35;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2.35;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2a Viola tricolor;35219;actual measurement;germinule;.526;;-4;;BIOLFLOR database;.526;;;;;Air dried weight;;3 Viola tricolor;35219;actual measurement;germinule;2.2;0;1;;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];2.2;;;300;;Unknown;Lisci, Marcello(1996): Structur and function of the elaiosome in some angiosperm species [191];3 Viola tricolor;35219;actual measurement;one-seeded generative dispersule;.611;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.611;;;50;;Air dried weight;;2a Viola tricolor;35219;actual measurement;germinule;.503;7;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.503;;;1;summers of 1995 and 1996;Unknown;;3 Viola tricolor;35219;actual measurement;germinule;.611;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.611;;;50;;Air dried weight;;3 Viola tricolor;35219;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;50;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor;35219;actual measurement (following LEDA data standards);germinule;.29;1;-2;.29;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;.29;.29;;preaggregated value obtained from single record;Air dried weight;;3 Viola tricolor;35219;other;germinule;.6536;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.6536;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viola tricolor;35219;other;germinule;.5492;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5492;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.32;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.35;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.35;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.26;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.26;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.33;10;-2;.33;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;.45;.27;;preaggregated value obtained from single record;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.31;10;-2;.31;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.32;.4;.26;;preaggregated value obtained from single record;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.34;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.34;;;10;used balance: Mettler H51, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.33;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.27;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.27;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.45;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.45;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.29;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.29;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.41;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.41;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.3;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.3;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.33;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.33;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);germinule;.36;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.36;;;10;used balance: Mettler Toledo 6, seed;Air dried weight;;3 Viscum album;25275;actual measurement;generative dispersule;376.72;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;376.72;389.86;363.58;50;;Fresh weight;;2 Viscum album;25275;actual measurement;one-seeded generative dispersule;6.472;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6.472;;;50;;Air dried weight;;2a Viscum album;25275;actual measurement;one-seeded generative dispersule;8.03;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8.03;;;15;;Air dried weight;;2a Vitis labrusca;34493;actual measurement;multi-seeded generative dispersule;54.654;0;1;;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];54.654;;;0;;Air dried weight;Mazer, Susan(1989): Ecological, taxonomic, and life history correlates of seed mass among Indiana dunes angiosperm [];2b Vitis vinifera;34500;actual measurement;generative dispersule;18;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);18;;;1;n an replicates unknown;Air dried weight;;2 Vulpia bromoides;42790;other;one-seeded generative dispersule;.5372;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5372;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Vulpia bromoides;42790;actual measurement;one-seeded generative dispersule;.304;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.304;;;100;;Air dried weight;;2a Vulpia bromoides;42790;actual measurement;germinule;.527;;-4;;BIOLFLOR database;.527;.588;.427;;;Air dried weight;;3 Vulpia bromoides;42790;actual measurement;germinule;.304;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.304;;;100;;Air dried weight;;3 Vulpia bromoides;42790;actual measurement;one-seeded generative dispersule;.527;;-4;;BIOLFLOR database;.527;.588;.427;;;Air dried weight;;2a Vulpia bromoides;42790;other;germinule;.5372;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5372;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vulpia ciliata;42792;other;germinule;.5488;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.5488;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vulpia ciliata;42792;other;germinule;.3632;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.3632;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vulpia ciliata;42792;actual measurement;germinule;.12;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.12;;;30;collected between 1996-1999;Air dried weight;;3 Vulpia ciliata;42792;actual measurement;germinule;.12;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.12;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Vulpia ciliata;42792;actual measurement;germinule;.12;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.12;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Vulpia ciliata;42792;actual measurement;one-seeded generative dispersule;.333;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.333;;;50;;Air dried weight;;2a Vulpia fasciculata;43348;other;unknown;3.0584;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);3.0584;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Vulpia geniculata;42796;actual measurement;one-seeded generative dispersule;.22;0;1;;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];.22;;;100;;Air dried weight;Maranon, T.(1993): Physiological-Basis and Ecological Significance of the Seed Size and Relative Growth-Rate Relationship in Mediterranean Annuals [7];2a Vulpia muralis;43835;actual measurement;germinule;.1;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.1;;;30;collected between 1996-1999;Air dried weight;;3 Vulpia muralis;43835;actual measurement;germinule;.09625;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.09625;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Vulpia myuros;42798;actual measurement;generative dispersule;.517333333;5;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.517333333;.546;.488;150;;Air dried weight;;2 Vulpia myuros;42798;actual measurement;germinule;.434;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.434;;;50;;Air dried weight;;3 Vulpia myuros;42798;actual measurement;germinule;.602;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.602;;;50;;Air dried weight;;3 Vulpia myuros;42798;actual measurement;one-seeded generative dispersule;.434;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.434;;;50;;Air dried weight;;2a Vulpia myuros;42798;actual measurement;one-seeded generative dispersule;.602;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.602;;;50;;Air dried weight;;2a Vulpia myuros;42798;actual measurement;germinule;.513;;-4;;BIOLFLOR database;.513;.56;.464;;;Air dried weight;;3 Vulpia myuros;42798;actual measurement;germinule;.125;30;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.125;;;1;Seeds weighed individually when possible or in small groups (n max = 10). For majority 30 weights per species.;Air dried weight;;3 Vulpia myuros;42798;actual measurement;germinule;.154;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.154;;;1;1996-1997, n an replicates unknown;Air dried weight;;3 Vulpia myuros;42798;actual measurement;germinule;.15;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.15;;;30;collected between 1996-1999;Air dried weight;;3 Vulpia myuros;42798;actual measurement;one-seeded generative dispersule;.513;;-4;;BIOLFLOR database;.513;.56;.464;;;Air dried weight;;2a Vulpia myuros;42798;other;one-seeded generative dispersule;.4952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;2a Vulpia myuros;42798;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-4;;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;;;50;used balance: Mettler Toledo 4, disp. unit with needle;Air dried weight;;2a Vulpia myuros;42798;actual measurement (following LEDA data standards);one-seeded generative dispersule;.4;1;-2;.4;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;.4;.4;.4;;preaggregated value obtained from single record;Air dried weight;;2a Vulpia myuros;42798;other;germinule;.4952;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.4952;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Vulpia unilateralis;43838;other;unknown;.2716;1;2;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.2716;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;4 Wahlenbergia hederacea;14756;other;germinule;.0252;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);.0252;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Wahlenbergia hederacea;14756;actual measurement;generative dispersule;.025;2;1;;Source data from University of Regensburg, Chair of Botany, DE (Römermann), E-Mail: roemermann@em.uni-frankfurt.de;.025;.026;.024;100;;Air dried weight;;2 Xanthium spinosum;11345;actual measurement;generative dispersule;200;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);200;;;1;n an replicates unknown;Air dried weight;;2 Xeranthemum annuum;9610;actual measurement;generative dispersule;.6;1;1;;Götzenberger, Lars (lars.goetzenberger@ufz.de);.6;;;1;n an replicates unknown;Air dried weight;;2 Zannichellia palustris;43857;actual measurement;one-seeded generative dispersule;.32;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;.32;;;50;;Air dried weight;;2a Zannichellia palustris;43857;other;germinule;1.0348;1;1;;Royal Botanic Gardens, Kew, Richmond, Surrey, TW9 3AB, UK (http://www.kew.org);1.0348;;;1000;1000 seed weight, unknown number of individuals;Air dried weight;;3 Zea mays;43844;actual measurement;one-seeded generative dispersule;104.72;1;1;;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;104.72;;;100;;Air dried weight;;2a