The following table was created as response to the SQL query SELECT sbs_sbsname "SBS name", sbs_sbsnumber "SBS number", m_methodname "general method", lm_singlevalue "single value [mg]", lm_n "sample size", lm_valid "valid", ref_refname "reference", lflv_name "leaf state", lm_mean "mean LM [mg]", lm_maximum "maximum LM [mg]", lm_minimum "minimum LM [mg]", lm_median "median LM [mg]", lm_replicates "number of replicates", lm_stddev "standard deviation", lm_stderror "standard error", lm_collectiondate "collection date", lm_comment "general comment", or_origrefname "original reference" FROM (SELECT case when lm_median is not null then lm_median when lm_mean is not null then lm_mean when lm_minimum is not null and lm_maximum is not null then (lm_minimum + lm_maximum) / 2 when lm_minimum is not null then lm_minimum when lm_maximum is not null then lm_maximum else null end AS lm_singlevalue, sbs_sbsnumber, sbs_sbsname, m_methodname, lm_median, lm_mean, lm_minimum, lm_maximum, lm_n, lm_valid, ref_refname, lflv_name, lm_replicates, lm_stddev, lm_stderror, lm_collectiondate, lm_comment, or_origrefname, lm_sbsnumber FROM (SELECT sbs.sbs_sbsnumber, sbs.sbs_sbsname, m_lm.m_methodname, m_lm.lm_median, m_lm.lm_mean, m_lm.lm_minimum, m_lm.lm_maximum, m_lm.lm_n, m_lm.lm_valid, m_lm.ref_refname, m_lm.lflv_name, m_lm.lm_replicates, m_lm.lm_stddev, m_lm.lm_stderror, m_lm.lm_collectiondate, m_lm.lm_comment, m_lm.or_origrefname, m_lm.lm_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 r_lm.lm_sbsnumber, m.m_methodname, r_lm.lm_median, r_lm.lm_mean, r_lm.lm_minimum, r_lm.lm_maximum, r_lm.lm_n, r_lm.lm_valid, r_lm.ref_refname, r_lm.lflv_name, r_lm.lm_replicates, r_lm.lm_stddev, r_lm.lm_stderror, r_lm.lm_collectiondate, r_lm.lm_comment, r_lm.or_origrefname FROM (SELECT methodid AS m_methodid, methodname AS m_methodname FROM (select * from method_lv)) m JOIN (SELECT lm_lflv.lm_sbsnumber, lm_lflv.lm_methodid, lm_lflv.lm_median, lm_lflv.lm_mean, lm_lflv.lm_minimum, lm_lflv.lm_maximum, lm_lflv.lm_n, lm_lflv.lm_valid, r.ref_refname, lm_lflv.lflv_name, lm_lflv.lm_replicates, lm_lflv.lm_stddev, lm_lflv.lm_stderror, lm_lflv.lm_collectiondate, lm_lflv.lm_comment, lm_lflv.or_origrefname FROM (SELECT referenceid AS ref_referenceid, refname AS ref_refname FROM (select referenceid, refname, reftypeid from reference)) r LEFT JOIN (SELECT lm_orf.lm_sbsnumber, lm_orf.lm_methodid, lm_orf.lm_median, lm_orf.lm_mean, lm_orf.lm_minimum, lm_orf.lm_maximum, lm_orf.lm_n, lm_orf.lm_valid, lm_orf.lm_referenceid, lflv.lflv_name, lm_orf.lm_replicates, lm_orf.lm_stddev, lm_orf.lm_stderror, lm_orf.lm_collectiondate, lm_orf.lm_comment, lm_orf.or_origrefname FROM (SELECT lm.lm_sbsnumber, lm.lm_methodid, lm.lm_median, lm.lm_mean, lm.lm_minimum, lm.lm_maximum, lm.lm_n, lm.lm_valid, lm.lm_referenceid, lm.lm_leafformid, lm.lm_replicates, lm.lm_stddev, lm.lm_stderror, lm.lm_collectiondate, lm.lm_comment, orf.or_origrefname FROM (SELECT sbsnumber AS lm_sbsnumber, methodid AS lm_methodid, median AS lm_median, mean AS lm_mean, minimum AS lm_minimum, maximum AS lm_maximum, n AS lm_n, valid AS lm_valid, referenceid AS lm_referenceid, leafformid AS lm_leafformid, replicates AS lm_replicates, stddeviation AS lm_stddev, stderror AS lm_stderror, collectiondate AS lm_collectiondate, p_comment AS lm_comment, origreferenceid AS lm_origreferenceid FROM (SELECT sbsnumber, leafmassid, taxonid, mean, median, minimum, maximum, stderror, stddeviation, n, replicates, created_when, updated_when, collectiondate, p_comment, methodid, referenceid, origreferenceid, habitattypeid, georefid, valid, validsince, validuntil, ledaid, batchid, leafformid FROM leafmass natural join taxontosbsassignment WHERE valid IN (-2, 1))) lm 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 lm.lm_origreferenceid = orf.or_origrefid) lm_orf FULL JOIN (SELECT leafformid AS lflv_id, leafformname AS lflv_name FROM (select leafformid, leafformname from leafform_lv)) lflv ON lm_orf.lm_leafformid = lflv.lflv_id) lm_lflv ON r.ref_referenceid = lm_lflv.lm_referenceid) r_lm ON m.m_methodid = r_lm.lm_methodid) m_lm ON sbs.sbs_sbsnumber = m_lm.lm_sbsnumber)) ORDER BY sbs_sbsname on Tue Apr 29 10:41:16 CEST 2008 . SBS name;SBS number;general method;single value [mg];sample size;valid;reference;leaf state;mean LM [mg];maximum LM [mg];minimum LM [mg];median LM [mg];number of replicates;standard deviation;standard error;collection date;general comment;original reference Abies alba;697;actual measurement (following LEDA data standards);5.48;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.48;8.7;3.65;5.48;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Abies alba;697;actual measurement (following LEDA data standards);5.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.48;8.7;3.65;5.31;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Acer campestre;811;actual measurement;35.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;35.1;;;1;;;1997-06-11 00:00:00.0;; Acer campestre;811;actual measurement;333.3158926;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;333.3158926;;;2;;;1996-09-02 00:00:00.0;; Aceras anthropophorum;39442;actual measurement;14.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.9;;;1;;;1997-06-04 00:00:00.0;; Aceras anthropophorum;39442;actual measurement (following LEDA data standards);51.78;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;55.68;70.85;44.4;51.78;2;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Achillea cartilaginea;4689;actual measurement (following LEDA data standards);22.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.11;32.22;15.3;22.31;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Achillea cartilaginea;4689;actual measurement (following LEDA data standards);22.21;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.11;32.22;15.3;22.21;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Achillea collina;3512;laboratory/greenhouse/garden experiment;60.6;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.6;97.54;31.11;60.6;2;;;2004-08-17 00:00:00.0;Preaggregated value obtained from single record. ; Achillea collina;3512;laboratory/greenhouse/garden experiment;59.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.6;97.54;31.11;59.87;2;;;2004-08-17 00:00:00.0;preaggregated value obtained from single record; Achillea macrophylla;4009;laboratory/greenhouse/garden experiment;655;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;643;915;315;655;2;;;2005-06-22 00:00:00.0;preaggregated value obtained from single record; Achillea macrophylla;4009;actual measurement (following LEDA data standards);764.68;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;810.47;1163.51;503.22;764.68;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Achillea macrophylla;4009;actual measurement (following LEDA data standards);787.57;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;810.47;1163.51;503.22;787.57;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Achillea millefolium;3013;actual measurement;15.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.4;;;2;;;;; Achillea millefolium;3013;actual measurement;28.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;28.56;39.37;20.63;28.59;2;;;2003-06-12 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Achillea millefolium;3013;actual measurement;21.3;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;21.3;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Achillea pannonica;5321;actual measurement (following LEDA data standards);14.06;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.06;19.62;8.42;14.06;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Achillea pannonica;5321;actual measurement (following LEDA data standards);180.55;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;210.68;413.01;60.62;180.55;1;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Achillea pannonica;5321;actual measurement (following LEDA data standards);14.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.06;19.62;8.42;14.24;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Achillea pannonica;5321;actual measurement (following LEDA data standards);150.41;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;210.68;413.01;60.62;150.41;1;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Achillea ptarmica;4799;actual measurement;5.617766497;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.617766497;;;2;;;1996-07-15 00:00:00.0;; Acinos arvensis;24493;actual measurement;34.01136364;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;34.01136364;;;2;;;1996-08-08 00:00:00.0;; Acinos arvensis;24493;actual measurement (following LEDA data standards);2.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.64;3.9;1.51;2.59;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Acinos arvensis;24493;actual measurement (following LEDA data standards);2.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.76;3.94;1.6;2.74;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Acinos arvensis;24493;actual measurement (following LEDA data standards);2.76;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.76;3.94;1.6;2.76;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Acinos arvensis;24493;actual measurement (following LEDA data standards);2.6;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.64;3.9;1.51;2.6;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Acinos arvensis;24493;actual measurement;3.548192771;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.548192771;;;2;;;1996-06-18 00:00:00.0;; Aconitum lycoctonum subsp. vulparia;45330;actual measurement (following LEDA data standards);485.92;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;500.54;758.37;367.7;485.92;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Aconitum lycoctonum subsp. vulparia;45330;actual measurement (following LEDA data standards);609.31;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;740.29;1194.16;521.31;609.31;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Aconitum lycoctonum subsp. vulparia;45330;actual measurement (following LEDA data standards);619.47;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;740.29;1194.16;521.31;619.47;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Aconitum lycoctonum subsp. vulparia;45330;actual measurement (following LEDA data standards);500.54;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;500.54;758.37;367.7;500.54;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Aconitum napellus;27279;actual measurement (following LEDA data standards);269.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;296.09;538.62;166.61;269.37;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Aconitum napellus;27279;actual measurement (following LEDA data standards);306.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;336.53;600.6;186.35;306.05;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Aconitum napellus;27279;actual measurement (following LEDA data standards);330.99;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;336.53;600.6;186.35;330.99;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Aconitum napellus;27279;actual measurement (following LEDA data standards);291.79;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;296.09;538.62;166.61;291.79;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Acorus calamus;35825;actual measurement;973.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;973.1;;;2;;;1996-09-02 00:00:00.0;; Acorus calamus;35825;actual measurement (following LEDA data standards);537.48;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;595.54;1412.75;244.85;537.48;2;;;;Preaggregated value obtained from single record. ; Actaea spicata;27324;actual measurement (following LEDA data standards);509.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;574.87;1277.56;266.61;509.4;1;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Actaea spicata;27324;actual measurement (following LEDA data standards);580.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;701.83;1718.15;343.85;580.84;1;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Actaea spicata;27324;actual measurement (following LEDA data standards);592.67;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;701.83;1718.15;343.85;592.67;1;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Actaea spicata;27324;actual measurement (following LEDA data standards);501.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;574.87;1277.56;266.61;501.11;1;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Adenostyles alliariae;3188;actual measurement (following LEDA data standards);2217.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2561.11;4245;1595;2217.5;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Adenostyles alliariae;3188;actual measurement (following LEDA data standards);3320;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4043.89;7220;2770;3320;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Adenostyles alliariae;3188;actual measurement (following LEDA data standards);3495;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4043.89;7220;2770;3495;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Adenostyles alliariae;3188;actual measurement (following LEDA data standards);2125;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2561.11;4245;1595;2125;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Adonis aestivalis;27328;actual measurement (following LEDA data standards);4.6;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.6;4.6;4.6;4.6;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Adonis aestivalis;27328;actual measurement (following LEDA data standards);4.6;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.6;4.6;4.6;4.6;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Adonis vernalis;29095;actual measurement (following LEDA data standards);199.1;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;199.1;199.1;199.1;199.1;1;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Adonis vernalis;29095;actual measurement (following LEDA data standards);18.33;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;16.25;21.2;8.25;18.33;2;;;2005-06-12 00:00:00.0;preaggregated value obtained from single record; Adoxa moschatellina;2407;actual measurement;34.57449275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;34.57449275;;;2;;;1996-05-10 00:00:00.0;; Adoxa moschatellina;2407;actual measurement;45.42195247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;45.42195247;;;2;;;1996-05-23 00:00:00.0;; Adoxa moschatellina;2407;actual measurement;69.54262597;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;69.54262597;;;2;;;1996-04-30 00:00:00.0;; Aegopodium podagraria;2007;actual measurement;519.0084626;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;519.0084626;;;2;;;1996-09-05 00:00:00.0;; Aegopodium podagraria;2007;actual measurement;988.1078676;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;988.1078676;;;2;;;1996-09-02 00:00:00.0;; Aethusa cynapium;1502;actual measurement;54.84773452;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;54.84773452;;;2;;;1996-05-21 00:00:00.0;; Aethusa cynapium;1502;actual measurement (following LEDA data standards);205.64;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;230.53;297.37;188.58;205.64;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Aethusa cynapium;1502;actual measurement (following LEDA data standards);218.09;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;230.53;297.37;188.58;218.09;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Aethusa cynapium;1502;actual measurement;86.19929428;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;86.19929428;;;2;;;1996-08-08 00:00:00.0;; Aethusa cynapium;1502;actual measurement;26.26586103;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.26586103;;;2;;;1996-07-08 00:00:00.0;; Agrimonia eupatoria;29512;actual measurement;714.0233678;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;714.0233678;;;2;;;1996-08-29 00:00:00.0;; Agrimonia eupatoria;29512;actual measurement;275.0515268;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;275.0515268;;;2;;;1996-07-15 00:00:00.0;; Agrimonia procera;29916;actual measurement;718.4170108;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;718.4170108;;;2;;;1996-09-23 00:00:00.0;; Agrimonia procera;29916;actual measurement (following LEDA data standards);572.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;572.62;731.25;431.78;572.7;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Agrimonia procera;29916;actual measurement (following LEDA data standards);574.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;572.62;731.25;431.78;574.99;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Agrimonia procera;29916;actual measurement (following LEDA data standards);670.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;670.2;817.5;501.79;670.2;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Agrimonia procera;29916;actual measurement (following LEDA data standards);673.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;670.2;817.5;501.79;673.13;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Agropyron cristatum;40526;field experiment;.0163;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.0163;;;;20;;2.1;1989-05-12 00:00:00.0;vegetative tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Agrostemma githago;16318;laboratory/greenhouse/garden experiment;57.78;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;57.78;85.16;33.59;57.78;2;;;2004-06-01 00:00:00.0;Preaggregated value obtained from single record. ; Agrostemma githago;16318;laboratory/greenhouse/garden experiment;56.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;57.78;85.16;33.59;56.67;2;;;2004-06-01 00:00:00.0;preaggregated value obtained from single record; Agrostis canina;40532;actual measurement;2.830072464;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.830072464;;;2;;;1996-08-08 00:00:00.0;; Agrostis canina;40532;actual measurement (following LEDA data standards);1.07;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;1.09;1.95;.4;1.07;2;;;;Preaggregated value obtained from single record. ; Agrostis capillaris;41392;actual measurement;6.195785441;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.195785441;;;2;;;1996-08-14 00:00:00.0;; Agrostis capillaris;41392;actual measurement;10.63644737;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.63644737;;;2;;;1996-08-08 00:00:00.0;; Agrostis capillaris;41392;actual measurement;6.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;6.95;11.48;2.85;6.63;2;;;2003-06-04 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Agrostis capillaris;41392;actual measurement;17.28361582;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.28361582;;;2;;;;; Agrostis curtisii;40483;actual measurement;2.972363636;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.972363636;;;2;;;1996-08-31 00:00:00.0;; Agrostis gigantea;40852;actual measurement (following LEDA data standards);9.71;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.65;16.74;7.31;9.71;2;;;2004-09-08 00:00:00.0;preaggregated value obtained from single record; Agrostis gigantea;40852;actual measurement (following LEDA data standards);10.18;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.65;16.74;7.31;10.18;2;;;2004-09-08 00:00:00.0;Preaggregated value obtained from single record. ; Agrostis mertensii;40856;actual measurement (following LEDA data standards);3.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;3.2;;;;4;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);1.85;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.85;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);1.43;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.43;;;;3;;;2003-08-30 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);1.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.8;;;;2;;;2003-08-30 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);6.25;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.25;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);1.73;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;1.73;;;;3;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);3.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.95;;;;2;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);3.45;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.45;;;;2;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);2.55;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.55;;;;2;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);4.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.1;;;;2;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis mertensii;40856;actual measurement (following LEDA data standards);6.05;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;6.05;;;;2;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Agrostis stolonifera;40861;actual measurement;7.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.1;;;1;;;1997-08-08 00:00:00.0;; Agrostis stolonifera;40861;actual measurement;17.83758117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.83758117;;;2;;;1996-09-02 00:00:00.0;; Agrostis stolonifera;40861;actual measurement;2.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;3.2;10.16;1.66;2.42;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Agrostis stolonifera;40861;actual measurement;10.2754491;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.2754491;;;2;;;1996-08-16 00:00:00.0;; Agrostis vinealis;41896;actual measurement;28.24332524;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.24332524;;;2;;;1996-08-16 00:00:00.0;; Agrostis vinealis;41896;actual measurement (following LEDA data standards);1.39;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.65;4.17;.74;1.39;4;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Agrostis vinealis;41896;actual measurement (following LEDA data standards);1.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.65;4.17;.74;1.43;4;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. ; Aira caryophyllea;40866;actual measurement;.982010582;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.982010582;;;2;;;1996-06-03 00:00:00.0;; Aira caryophyllea;40866;actual measurement;1.072839506;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.072839506;;;2;;;1996-05-23 00:00:00.0;; Aira caryophyllea;40866;actual measurement;1.179238754;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.179238754;;;2;;;1996-05-23 00:00:00.0;; Aira praecox;41629;actual measurement;.388571429;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.388571429;;;2;;;1996-06-03 00:00:00.0;; Aira praecox;41629;actual measurement;.814285714;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.814285714;;;2;;;1996-05-23 00:00:00.0;; Aira praecox;41629;laboratory/greenhouse/garden experiment;1.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.2;1.57;.87;1.24;2;;;2004-05-24 00:00:00.0;preaggregated value obtained from single record; Aira praecox;41629;laboratory/greenhouse/garden experiment;1.22;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.2;1.57;.87;1.22;2;;;2004-05-24 00:00:00.0;Preaggregated value obtained from single record. ; Aira praecox;41629;actual measurement;.455;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.455;;;2;;;1996-05-30 00:00:00.0;; Ajuga chamaepitys;24497;actual measurement (following LEDA data standards);3.1;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.1;4.06;2.29;3.1;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Ajuga chamaepitys;24497;actual measurement (following LEDA data standards);3.03;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.1;4.06;2.29;3.03;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Ajuga genevensis;24142;actual measurement (following LEDA data standards);17.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.69;21.89;13.29;17.89;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Ajuga genevensis;24142;actual measurement (following LEDA data standards);18.09;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.69;21.89;13.29;18.09;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Ajuga pyramidalis;24144;actual measurement (following LEDA data standards);32.35;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;47.59;109.9;23.85;32.35;2;;;2005-06-17 00:00:00.0;preaggregated value obtained from single record; Ajuga pyramidalis;24144;actual measurement;58.6;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;58.6;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Ajuga reptans;25159;actual measurement;17.36967841;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.36967841;;;2;;;1996-06-18 00:00:00.0;; Alcea rosea;25760;laboratory/greenhouse/garden experiment;615;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;710;1090;425;615;2;;;2005-07-11 00:00:00.0;preaggregated value obtained from single record; Alchemilla alpina;29517;actual measurement (following LEDA data standards);48.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;48.6;;;;1;;;2003-08-20 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);30.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;30.9;;;;1;;;2003-08-28 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);16;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;16;;;;1;;;2003-08-30 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);17.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.6;;;;1;;;2003-08-30 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);20.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20.7;;;;1;;;2003-08-30 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);21.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;21.3;;;;1;;;2003-08-30 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);37.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;37.6;;;;1;;;2003-02-09 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);39.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;39.1;;;;1;;;2003-02-09 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);24.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;24.7;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);34.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;34.3;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla alpina;29517;actual measurement;4.6;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;4.6;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Alchemilla alpina;29517;actual measurement (following LEDA data standards);30.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;30.4;;;;1;;;2003-08-28 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);27.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;27.5;;;;1;;;2003-08-20 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);20;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20;;;;1;;;2003-08-29 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);18.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.3;;;;1;;;2003-08-29 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);16.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;16.9;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);18.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.3;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);40.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;40.3;;;;1;;;2003-08-20 00:00:00.0;; Alchemilla alpina;29517;actual measurement (following LEDA data standards);40.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;40.9;;;;1;;;2003-08-20 00:00:00.0;; Alchemilla alpina;29517;actual measurement;20.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.3;;;2;;;1996-08-02 00:00:00.0;; Alchemilla filicaulis;30404;actual measurement;68.68956522;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;68.68956522;;;2;;;1996-09-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement;434.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;434.2;;;2;;;;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);22.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22.8;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);34.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;34.7;;;;1;;;2003-02-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);38.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;38.4;;;;1;;;2003-02-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);46.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;46.5;;;;1;;;2003-02-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);56.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;56.1;;;;1;;;2003-02-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);21.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;21.7;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);59.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;59.6;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);22.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22.9;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);18.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.3;;;;1;;;2003-08-29 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);40.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;40.5;;;;1;;;2003-08-29 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);44;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;44;;;;1;;;2003-08-28 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);49.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;49.9;;;;1;;;2003-08-28 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);21.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;21.3;;;;1;;;2003-08-30 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);65.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;65.3;;;;1;;;2003-08-30 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);17.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.9;;;;1;;;2003-02-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);31.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;31.7;;;;1;;;2003-02-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);28.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;28.5;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement;455.5375919;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;455.5375919;;;2;;;;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);213.17;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;213.17;231.39;194.96;213.17;2;;;2004-08-25 00:00:00.0;preaggregated value obtained from single record; Alchemilla glabra;30979;actual measurement (following LEDA data standards);98;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;98;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);72.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;72.6;;;;1;;;2003-04-09 00:00:00.0;; Alchemilla glabra;30979;actual measurement (following LEDA data standards);213.17;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;213.17;231.39;194.96;213.17;2;;;2004-08-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alchemilla glabra;30979;actual measurement;455.5375919;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;455.5375919;;;2;;;1996-06-18 00:00:00.0;; Alchemilla glaucescens;29479;actual measurement (following LEDA data standards);99.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;106.13;186.64;78.88;99.45;1;;;2003-07-23 00:00:00.0;Preaggregated value obtained from single record. determination of Alchemilla-aggregate is sometimes difficult; Alchemilla glaucescens;29479;actual measurement (following LEDA data standards);46.5;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.85;84.78;29.22;46.5;1;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alchemilla glaucescens;29479;actual measurement (following LEDA data standards);146.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;165.76;288.76;113.63;146.89;1;;;2003-07-23 00:00:00.0;Preaggregated value obtained from single record. determination of Alchemilla-aggregate is sometimes difficult; Alchemilla glaucescens;29479;actual measurement (following LEDA data standards);46.2;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.85;84.78;29.22;46.2;1;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Alchemilla mollis;30970;actual measurement (following LEDA data standards);474.78;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;474.78;585.19;364.37;474.78;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alchemilla mollis;30970;actual measurement (following LEDA data standards);474.78;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;474.78;585.19;364.37;474.78;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Alchemilla monticola;29465;actual measurement (following LEDA data standards);135.93;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;153.58;213.03;119.69;135.93;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alchemilla monticola;29465;actual measurement (following LEDA data standards);135.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;153.58;213.03;119.69;135.63;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Alchemilla propinqua;30381;actual measurement (following LEDA data standards);128.76;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;131.5;232.55;51.46;128.76;2;;;2004-08-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alchemilla propinqua;30381;actual measurement (following LEDA data standards);126.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;131.5;232.55;51.46;126.32;2;;;2004-08-25 00:00:00.0;preaggregated value obtained from single record; Alchemilla subcrenata;30359;actual measurement (following LEDA data standards);106.91;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;124.24;201.06;88.43;106.91;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alchemilla subcrenata;30359;actual measurement (following LEDA data standards);106.15;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;106.49;151.25;52;106.15;1;;;2005-07-06 00:00:00.0;preaggregated value obtained from single record; Alchemilla subcrenata;30359;actual measurement (following LEDA data standards);105.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;124.24;201.06;88.43;105.52;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Alchemilla subglobosa;29864;actual measurement (following LEDA data standards);120.1;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;116.68;144.74;81.78;120.1;2;;;2004-08-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alchemilla subglobosa;29864;actual measurement (following LEDA data standards);123.53;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;116.68;144.74;81.78;123.53;2;;;2004-08-25 00:00:00.0;preaggregated value obtained from single record; Alchemilla xanthochlora;30366;actual measurement;429.3953386;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;429.3953386;;;2;;;1996-06-03 00:00:00.0;; Alchemilla xanthochlora;30366;actual measurement (following LEDA data standards);260.45;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;279.65;436.73;173.72;260.45;2;;;2004-05-10 00:00:00.0;Preaggregated value obtained from single record. ; Alchemilla xanthochlora;30366;actual measurement (following LEDA data standards);258.16;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;279.65;436.73;173.72;258.16;2;;;2004-05-10 00:00:00.0;preaggregated value obtained from single record; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);62.25;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;68.42;141.2;36.87;62.25;2;;;;Preaggregated value obtained from single record. ; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);56.83;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;61.86;90.37;43.41;56.83;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);79.02;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;89.52;138.25;61.79;79.02;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);68.51;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;89.52;138.25;61.79;68.51;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);71.44;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;71.44;71.44;71.44;71.44;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);71.44;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;71.44;71.44;71.44;71.44;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);73.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;70.1;89.71;47.52;73.39;2;;;;Preaggregated value obtained from single record. ; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);44.62;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;44.62;44.62;44.62;44.62;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Alisma lanceolatum;35630;actual measurement (following LEDA data standards);51.79;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;61.86;90.37;43.41;51.79;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Alisma plantago-aquatica;35609;actual measurement (following LEDA data standards);649.1;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;684.19;1173.9;386.25;649.1;2;;;;Preaggregated value obtained from single record. ; Alisma plantago-aquatica;35609;actual measurement (following LEDA data standards);765.05;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;741.13;948.5;513.9;765.05;2;;;;Preaggregated value obtained from single record. ; Alisma plantago-aquatica;35609;actual measurement;450.5592613;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;450.5592613;;;2;;;1996-08-08 00:00:00.0;; Alisma plantago-aquatica;35609;actual measurement;200.3277478;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;200.3277478;;;2;;;1996-09-27 00:00:00.0;; Alliaria petiolata;13080;actual measurement;161.5258071;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;161.5258071;;;2;;;1996-05-23 00:00:00.0;; Alliaria petiolata;13080;actual measurement;211.6682579;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;211.6682579;;;2;;;1996-06-03 00:00:00.0;; Alliaria petiolata;13080;actual measurement;268.6169676;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;268.6169676;;;2;;;1996-05-23 00:00:00.0;; Allium carinatum;39360;actual measurement (following LEDA data standards);44;15;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;45.14;78.4;19.3;44;1;;;2005-07-06 00:00:00.0;preaggregated value obtained from single record; Allium oleraceum;38816;actual measurement;145.6422472;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;145.6422472;;;2;;;1996-07-08 00:00:00.0;; Allium paradoxum;38827;actual measurement (following LEDA data standards);75.13;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;76.06;90.51;63.47;75.13;1;;;2004-05-06 00:00:00.0;Preaggregated value obtained from single record. ; Allium paradoxum;38827;actual measurement (following LEDA data standards);74.19;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;76.06;90.51;63.47;74.19;1;;;2004-05-06 00:00:00.0;preaggregated value obtained from single record; Allium schoenoprasum;39221;actual measurement (following LEDA data standards);130.51;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;130.51;149.61;111.4;130.51;1;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Allium schoenoprasum;39221;laboratory/greenhouse/garden experiment;56.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.37;66.9;33.8;56.4;1;;;2005-06-23 00:00:00.0;preaggregated value obtained from single record; Allium scorodoprasum;39339;actual measurement (following LEDA data standards);146.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;139.01;214.08;55.38;146.09;1;;;2003-07-22 00:00:00.0;Preaggregated value obtained from single record. ; Allium senescens;39230;actual measurement (following LEDA data standards);28.44;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.44;57.91;10.41;28.44;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Allium senescens;39230;actual measurement (following LEDA data standards);29.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.44;57.91;10.41;29.34;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Allium sphaerocephalon;39232;actual measurement (following LEDA data standards);341.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;339.83;386.15;289.73;341.93;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Allium sphaerocephalon;39232;actual measurement (following LEDA data standards);342.93;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;339.83;386.15;289.73;342.93;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Allium ursinum;39243;actual measurement;106.578058;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;106.578058;;;2;;;1996-04-30 00:00:00.0;; Allium ursinum;39243;actual measurement;190.3282244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;190.3282244;;;2;;;1996-05-21 00:00:00.0;; Allium ursinum;39243;actual measurement;293.3790476;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;293.3790476;;;2;;;1996-05-10 00:00:00.0;; Allium vineale;39246;actual measurement;75.47514451;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;75.47514451;;;2;;;1996-06-18 00:00:00.0;; Allium vineale;39246;actual measurement;126.8569149;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;126.8569149;;;2;;;1996-06-03 00:00:00.0;; Alnus incana;11695;actual measurement (following LEDA data standards);91.47;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;95.6;144.95;50.1;91.47;1;;;2005-06-10 00:00:00.0;preaggregated value obtained from single record; Alnus viridis;11702;actual measurement (following LEDA data standards);100.24;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;93.56;134.07;51.72;100.24;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Alnus viridis;11702;actual measurement (following LEDA data standards);102.97;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;97.71;139;55.72;102.97;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Alnus viridis;11702;actual measurement (following LEDA data standards);100.34;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;97.71;139;55.72;100.34;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alnus viridis;11702;actual measurement (following LEDA data standards);96.9;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;93.56;134.07;51.72;96.9;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alopecurus aequalis;40867;actual measurement (following LEDA data standards);13.2;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;13.48;19.45;6.25;13.2;2;;;;Preaggregated value obtained from single record. ; Alopecurus geniculatus;41635;actual measurement;8.05170068;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.05170068;;;2;;;1996-08-08 00:00:00.0;; Alopecurus geniculatus;41635;actual measurement (following LEDA data standards);9.65;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;9.81;17.2;3.7;9.65;2;;;;Preaggregated value obtained from single record. ; Alopecurus myosuroides;41138;actual measurement;21.48647482;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.48647482;;;2;;;1996-07-16 00:00:00.0;; Alopecurus pratensis;40391;actual measurement;42.33846154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;42.33846154;;;2;;;;; Alopecurus pratensis;40391;actual measurement;84.41087203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;84.41087203;;;2;;;1996-07-08 00:00:00.0;; Alopecurus pratensis;40391;actual measurement;26.39312321;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.39312321;;;2;;;1996-06-16 00:00:00.0;; Alopecurus pratensis;40391;actual measurement (following LEDA data standards);20.58;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;20.87;29.05;14.05;20.58;2;;;;Preaggregated value obtained from single record. ; Althaea officinalis;25782;laboratory/greenhouse/garden experiment;170.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;157.92;207.16;79.53;170.85;2;;;2004-10-11 00:00:00.0;preaggregated value obtained from single record; Althaea officinalis;25782;laboratory/greenhouse/garden experiment;164.67;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;157.92;207.16;79.53;164.67;2;;;2004-10-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Althaea officinalis;25782;laboratory/greenhouse/garden experiment;182.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;171.26;226.42;87.71;182.68;2;;;2004-10-11 00:00:00.0;preaggregated value obtained from single record; Althaea officinalis;25782;laboratory/greenhouse/garden experiment;177.78;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;171.26;226.42;87.71;177.78;2;;;2004-10-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Alyssum alyssoides;13424;laboratory/greenhouse/garden experiment;1.23;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.27;2.91;.41;1.23;2;;;2004-05-18 00:00:00.0;Preaggregated value obtained from single record. ; Alyssum alyssoides;13424;laboratory/greenhouse/garden experiment;1.18;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.27;2.91;.41;1.18;2;;;2004-05-18 00:00:00.0;preaggregated value obtained from single record; Alyssum alyssoides;13424;actual measurement (following LEDA data standards);1.07;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.17;1.94;.71;1.07;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Alyssum alyssoides;13424;actual measurement (following LEDA data standards);1.02;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.17;1.94;.71;1.02;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Alyssum montanum;14366;actual measurement (following LEDA data standards);3.56;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.68;5.84;2.16;3.56;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Alyssum montanum;14366;actual measurement (following LEDA data standards);3.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.68;5.84;2.16;3.42;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Amaranthus caudatus;894;laboratory/greenhouse/garden experiment;203.77;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;206.15;300.81;131.9;203.77;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Amaranthus caudatus;894;laboratory/greenhouse/garden experiment;197.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;206.15;300.81;131.9;197.24;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Amaranthus lividus;924;actual measurement (following LEDA data standards);4.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;4.25;4.75;3.67;4.34;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ssp. emarginatus; Amaranthus lividus;924;actual measurement (following LEDA data standards);4.37;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.53;5.12;4.1;4.37;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ssp. emarginatus; Amaranthus retroflexus;931;actual measurement;401.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;401.8;;;1;;;1997-09-17 00:00:00.0;; Amaranthus retroflexus;931;actual measurement (following LEDA data standards);217.79;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;214.41;288.47;114.62;217.79;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Amaranthus retroflexus;931;actual measurement (following LEDA data standards);214.41;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;214.41;288.47;114.62;214.41;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Amaranthus retroflexus;931;actual measurement (following LEDA data standards);248.62;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;244.83;328.61;132.17;248.62;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Amaranthus retroflexus;931;actual measurement (following LEDA data standards);244.83;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;244.83;328.61;132.17;244.83;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Ambrosia artemisiifolia;4198;laboratory/greenhouse/garden experiment;128.68;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;117.43;162.36;42.9;128.68;2;;;2004-08-05 00:00:00.0;preaggregated value obtained from single record; Ambrosia artemisiifolia;4198;laboratory/greenhouse/garden experiment;123.13;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;117.43;162.36;42.9;123.13;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Ambrosia coronopifolia;5955;actual measurement (following LEDA data standards);31.35;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.08;42.44;21.7;31.35;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Ambrosia trifida;6319;laboratory/greenhouse/garden experiment;203.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;220.21;434.67;65.59;203.21;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Ambrosia trifida;6319;laboratory/greenhouse/garden experiment;186.97;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;220.21;434.67;65.59;186.97;2;;;2004-08-05 00:00:00.0;preaggregated value obtained from single record; Ambrosia trifida;6319;laboratory/greenhouse/garden experiment;225.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;246.35;490.69;69.4;225.07;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Ambrosia trifida;6319;laboratory/greenhouse/garden experiment;203.79;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;246.35;490.69;69.4;203.79;2;;;2004-08-05 00:00:00.0;preaggregated value obtained from single record; Amelanchier lamarckii;50025;actual measurement (following LEDA data standards);95.9;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;91.15;107.85;63.25;95.9;2;;;2005-05-11 00:00:00.0;preaggregated value obtained from single record; Amelanchier ovalis;29390;actual measurement (following LEDA data standards);35.07;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;38.33;45.99;33.94;35.07;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Amelanchier ovalis;29390;actual measurement (following LEDA data standards);36.79;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;40.21;48.37;35.47;36.79;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Ammi majus;1508;laboratory/greenhouse/garden experiment;2.15;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.15;2.15;2.15;2.15;1;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Ammi majus;1508;laboratory/greenhouse/garden experiment;2.04;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.04;2.04;2.04;2.04;1;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Ammi majus;1508;laboratory/greenhouse/garden experiment;2.15;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.15;2.15;2.15;2.15;1;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Ammi majus;1508;laboratory/greenhouse/garden experiment;2.04;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.04;2.04;2.04;2.04;1;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ecotonal (transient) leaves; Ammi majus;1508;laboratory/greenhouse/garden experiment;2.63;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.63;2.63;2.63;2.63;1;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. spataceous bracts; Ammi majus;1508;laboratory/greenhouse/garden experiment;2.63;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.63;2.63;2.63;2.63;1;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Ammophila arenaria;40398;actual measurement;120.2657785;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;120.2657785;;;2;;;1996-08-24 00:00:00.0;; Amsinckia menziesii;12586;actual measurement;313.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;313.7;;;1;;;1997-10-02 00:00:00.0;; Amsinckia menziesii;12586;actual measurement;21.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.4;;;1;;;1997-06-20 00:00:00.0;; Anacamptis pyramidalis;39443;actual measurement (following LEDA data standards);23.58;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.53;39.01;9.52;23.58;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Anagallis arvensis;28783;actual measurement;2.7625;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.7625;;;2;;;1996-07-08 00:00:00.0;; Anagallis foemina;29031;laboratory/greenhouse/garden experiment;9.39;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.34;13.61;4.76;9.39;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Anagallis foemina;29031;laboratory/greenhouse/garden experiment;9.45;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.34;13.61;4.76;9.45;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Anagallis minima;28953;actual measurement (following LEDA data standards);.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.18;.25;.11;.18;10;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Anagallis minima;28953;actual measurement (following LEDA data standards);.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.18;.25;.11;.18;10;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. ; Anagallis minima;28953;actual measurement (following LEDA data standards);.05;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.05;.07;.02;.05;2;;;2004-08-03 00:00:00.0;preaggregated value obtained from single record; Anagallis tenella;28935;actual measurement;.320289855;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.320289855;;;2;;;1996-07-08 00:00:00.0;; Anaphalis margaritacea;5740;actual measurement;1043.176868;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1043.176868;;;2;;;1996-09-30 00:00:00.0;; Anarrhinum bellidifolium;33247;laboratory/greenhouse/garden experiment;63.95;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;74.46;149.12;26.25;63.95;2;;;2005-06-20 00:00:00.0;preaggregated value obtained from single record; Anarrhinum bellidifolium;33247;laboratory/greenhouse/garden experiment;14.35;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.95;27.92;5.39;14.35;2;;;2005-06-20 00:00:00.0;preaggregated value obtained from single record; Anchusa arvensis;12189;actual measurement;44.32725528;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.32725528;;;2;;;1996-07-03 00:00:00.0;; Anchusa arvensis;12189;actual measurement;169.3441484;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;169.3441484;;;2;;;1996-05-23 00:00:00.0;; Anchusa azurea;12594;laboratory/greenhouse/garden experiment;189.67;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;189.67;189.67;189.67;189.67;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Anchusa officinalis;12527;actual measurement (following LEDA data standards);63.02;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.99;196.91;13.06;63.02;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Anchusa officinalis;12527;actual measurement (following LEDA data standards);64.65;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.99;196.91;13.06;64.65;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Anchusa officinalis;12527;actual measurement (following LEDA data standards);59.28;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;61.65;87.45;45.55;59.28;2;;;2005-06-12 00:00:00.0;preaggregated value obtained from single record; Andromeda polifolia;19573;actual measurement (following LEDA data standards);10.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.32;16.22;5.7;10.04;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Androsace lactea;29061;actual measurement (following LEDA data standards);4.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;4.67;6.3;2.24;4.71;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Androsace maxima;28785;laboratory/greenhouse/garden experiment;3.5;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.91;7.5;2.24;3.5;2;;;2004-07-02 00:00:00.0;Preaggregated value obtained from single record. ; Androsace maxima;28785;laboratory/greenhouse/garden experiment;3.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.91;7.5;2.24;3.5;2;;;2004-07-02 00:00:00.0;preaggregated value obtained from single record; Androsace septentrionalis;28905;laboratory/greenhouse/garden experiment;1.06;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.01;1.19;.76;1.06;3;;;2005-04-04 00:00:00.0;preaggregated value obtained from single record; Anemone nemorosa;27355;actual measurement;69.84414599;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;69.84414599;;;2;;;1996-04-30 00:00:00.0;; Anemone nemorosa;27355;actual measurement;177.8979002;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;177.8979002;;;2;;;1996-05-21 00:00:00.0;; Anemone ranunculoides;27359;laboratory/greenhouse/garden experiment;19.84;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.99;32.06;12.22;19.84;2;;;2004-04-08 00:00:00.0;Preaggregated value obtained from single record. ; Anemone ranunculoides;27359;laboratory/greenhouse/garden experiment;18.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.99;32.06;12.22;18.89;2;;;2004-04-08 00:00:00.0;preaggregated value obtained from single record; Anemone ranunculoides;27359;laboratory/greenhouse/garden experiment;20.66;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.66;32.54;12.8;20.66;2;;;2004-04-08 00:00:00.0;Preaggregated value obtained from single record. ; Anemone ranunculoides;27359;laboratory/greenhouse/garden experiment;19.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.66;32.54;12.8;19.64;2;;;2004-04-08 00:00:00.0;preaggregated value obtained from single record; Anemone sylvestris;27363;actual measurement (following LEDA data standards);114.02;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;114.02;171.91;53.67;114.02;2;;;2004-07-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Anemone sylvestris;27363;actual measurement (following LEDA data standards);113.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;114.02;171.91;53.67;113.15;2;;;2004-07-25 00:00:00.0;preaggregated value obtained from single record; Anemone sylvestris;27363;actual measurement (following LEDA data standards);152.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;155.36;252.72;64.08;152.69;2;;;2004-07-25 00:00:00.0;preaggregated value obtained from single record; Anemone sylvestris;27363;actual measurement (following LEDA data standards);155.36;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;155.36;252.72;64.08;155.36;2;;;2004-07-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Anethum graveolens;1512;laboratory/greenhouse/garden experiment;47.25;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;47.25;114.66;5.52;47.25;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. ; Anethum graveolens;1512;laboratory/greenhouse/garden experiment;46.68;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;56.23;119.53;5.89;46.68;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Anethum graveolens;1512;laboratory/greenhouse/garden experiment;55.55;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;56.23;119.53;5.89;55.55;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. ; Anethum graveolens;1512;laboratory/greenhouse/garden experiment;38.57;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;47.25;114.66;5.52;38.57;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Angelica archangelica;1514;actual measurement (following LEDA data standards);53.85;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);without petiole and rachis;52.94;65.35;38.7;53.85;1;;;2005-08-07 00:00:00.0;preaggregated value obtained from single record; Angelica archangelica;1514;actual measurement (following LEDA data standards);90.3;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);without petiole and rachis;139.82;242.75;86.4;90.3;1;;;2005-08-07 00:00:00.0;preaggregated value obtained from single record; Angelica archangelica;1514;actual measurement (following LEDA data standards);16472.5;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16472.5;27500;5445;16472.5;2;;;2005-06-12 00:00:00.0;preaggregated value obtained from single record; Angelica sylvestris;1519;actual measurement;1531.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1531.2;;;2;;;1996-09-09 00:00:00.0;; Antennaria carpatica;4017;actual measurement;1.247761194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.247761194;;;2;;;1996-09-09 00:00:00.0;; Antennaria dioica;2770;actual measurement;2.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.4;;;1;;;1997-07-03 00:00:00.0;; Anthemis arvensis;3024;actual measurement;7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7;;;1;;;1997-06-09 00:00:00.0;; Anthemis arvensis;3024;laboratory/greenhouse/garden experiment;13.01;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.01;20.34;4.82;13.01;2;;;2004-06-30 00:00:00.0;Preaggregated value obtained from single record. ; Anthemis arvensis;3024;laboratory/greenhouse/garden experiment;13.66;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.01;20.34;4.82;13.66;2;;;2004-06-30 00:00:00.0;preaggregated value obtained from single record; Anthemis cotula;2778;actual measurement;6.168481375;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.168481375;;;2;;;1996-07-16 00:00:00.0;; Anthemis ruthenica;3848;actual measurement (following LEDA data standards);10.85;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.85;18.89;3.3;10.85;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Anthemis ruthenica;3848;actual measurement (following LEDA data standards);11.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.85;18.89;3.3;11.15;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Anthemis tinctoria;2787;actual measurement;97.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;97.5;;;1;;;1997-06-06 00:00:00.0;; Anthemis tinctoria;2787;actual measurement (following LEDA data standards);10.61;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;10.91;16.51;7.14;10.61;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Anthemis tinctoria;2787;actual measurement (following LEDA data standards);13.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.51;25.62;8.91;13.2;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Anthemis tinctoria;2787;actual measurement (following LEDA data standards);13.35;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.51;25.62;8.91;13.35;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. ; Anthericum liliago;38767;actual measurement (following LEDA data standards);182.74;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;188.48;285.83;91.45;182.74;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Anthericum liliago;38767;actual measurement (following LEDA data standards);178.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;188.48;285.83;91.45;178.59;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Anthericum ramosum;38246;actual measurement (following LEDA data standards);76.94;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;70.79;109.27;36.94;76.94;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);3.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;3.8;;;;1;;;2003-08-18 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);15.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;15.7;;;;1;;;2003-08-18 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);17.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.6;;;;1;;;2003-04-09 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);12.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.7;;;;1;;;2003-04-09 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);8.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.7;;;;1;;;2003-08-21 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);17.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.6;;;;1;;;2003-08-28 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);22.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22.4;;;;1;;;2003-08-28 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);6.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.5;;;;1;;;2003-08-21 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);7.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.9;;;;1;;;2003-08-21 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);9.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.5;;;;1;;;2003-08-21 00:00:00.0;; Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);4.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;4.9;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Anthoxanthum aristatum;40551;laboratory/greenhouse/garden experiment;11.84;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.08;19.74;4.99;11.84;2;;;2004-05-24 00:00:00.0;Preaggregated value obtained from single record. ; Anthoxanthum aristatum;40551;laboratory/greenhouse/garden experiment;11.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.08;19.74;4.99;11.43;2;;;2004-05-24 00:00:00.0;preaggregated value obtained from single record; Anthoxanthum odoratum;41907;actual measurement;2.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;2.47;4.3;1.18;2.31;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Anthriscus caucalis;1975;actual measurement;68.89881495;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;68.89881495;;;2;;;1996-05-30 00:00:00.0;; Anthriscus caucalis;1975;actual measurement;285.8888889;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;285.8888889;;;2;;;1996-05-30 00:00:00.0;; Anthriscus caucalis;1975;laboratory/greenhouse/garden experiment;78.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;74.59;130.03;22.65;78.16;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Anthriscus caucalis;1975;laboratory/greenhouse/garden experiment;74.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;74.59;130.03;22.65;74.59;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Anthriscus caucalis;1975;laboratory/greenhouse/garden experiment;91.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;88.63;151.55;26.38;91.37;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Anthriscus caucalis;1975;laboratory/greenhouse/garden experiment;88.63;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;88.63;151.55;26.38;88.63;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Anthriscus caucalis;1975;actual measurement;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;111;;;2;;;1996-05-23 00:00:00.0;; Anthriscus cerefolium;1526;laboratory/greenhouse/garden experiment;11.39;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.39;16.93;7.42;11.39;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Anthriscus cerefolium;1526;laboratory/greenhouse/garden experiment;10.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.39;16.93;7.42;10.26;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Anthriscus nitida;1447;actual measurement (following LEDA data standards);393.95;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;366.56;523.68;199.35;393.95;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Anthriscus nitida;1447;actual measurement (following LEDA data standards);518.43;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;437.25;593.73;241.26;518.43;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Anthriscus nitida;1447;actual measurement (following LEDA data standards);477.84;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;437.25;593.73;241.26;477.84;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Anthriscus nitida;1447;actual measurement (following LEDA data standards);421.35;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;366.56;523.68;199.35;421.35;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Anthriscus sylvestris;1916;actual measurement;500.5358879;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;500.5358879;;;2;;;1996-05-23 00:00:00.0;; Anthriscus sylvestris;1916;actual measurement;1281.623729;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1281.623729;;;2;;;1996-05-22 00:00:00.0;; Anthyllis vulneraria;21660;actual measurement;63.29470563;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;63.29470563;;;2;;;1996-07-08 00:00:00.0;; Antirrhinum majus;33261;actual measurement;26.46061644;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.46061644;;;2;;;1996-09-02 00:00:00.0;; Apera interrupta;41910;actual measurement;2.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.7;;;1;;;1997-09-01 00:00:00.0;; Apera interrupta;41910;laboratory/greenhouse/garden experiment;.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.75;1.72;.4;.7;2;;;2004-10-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Apera interrupta;41910;laboratory/greenhouse/garden experiment;.68;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.75;1.72;.4;.68;2;;;2004-10-11 00:00:00.0;preaggregated value obtained from single record; Apera spica-venti;40884;actual measurement;69.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;69.2;;;1;;;1997-05-29 00:00:00.0;; Apera spica-venti;40884;actual measurement;18.70687237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.70687237;;;2;;;1996-06-24 00:00:00.0;; Aphanes arvensis;29391;actual measurement;2.341736695;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.341736695;;;2;;;1996-06-03 00:00:00.0;; Aphanes inexspectata;50026;actual measurement;1.890909091;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.890909091;;;2;;;1996-05-23 00:00:00.0;; Aphanes inexspectata;50026;laboratory/greenhouse/garden experiment;2.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.52;8.87;1.57;2.8;2;;;2004-05-24 00:00:00.0;preaggregated value obtained from single record; Aphanes inexspectata;50026;laboratory/greenhouse/garden experiment;3.46;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.52;8.87;1.57;3.46;2;;;2004-05-24 00:00:00.0;Preaggregated value obtained from single record. ; Apium graveolens;1456;actual measurement;403.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;403.9;;;1;;;1997-06-03 00:00:00.0;; Apium inundatum;1920;actual measurement (following LEDA data standards);.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;.86;1.12;.68;.88;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Apium inundatum;1920;actual measurement (following LEDA data standards);1.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.32;1.87;1.02;1.28;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. water form; Apium inundatum;1920;actual measurement (following LEDA data standards);.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1;1.41;.74;.98;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Apium inundatum;1920;actual measurement (following LEDA data standards);1.13;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.13;1.51;.86;1.13;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. land form; Apium inundatum;1920;actual measurement (following LEDA data standards);1.25;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.32;1.87;1.02;1.25;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Apium inundatum;1920;actual measurement (following LEDA data standards);1.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.13;1.51;.86;1.12;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Apium inundatum;1920;actual measurement (following LEDA data standards);.86;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;.86;1.12;.68;.86;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. land form; Apium inundatum;1920;actual measurement (following LEDA data standards);.98;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1;1.41;.74;.98;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. water form; Apium nodiflorum;1922;actual measurement;55.74502955;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;55.74502955;;;2;;;1996-09-02 00:00:00.0;; Apium nodiflorum;1922;actual measurement;145.2750495;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;145.2750495;;;2;;;1996-08-28 00:00:00.0;; Aquilegia vulgaris;27156;actual measurement;142.0123464;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;142.0123464;;;2;;;1996-07-15 00:00:00.0;; Arabidopsis suecica;13762;laboratory/greenhouse/garden experiment;20.84;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.94;53.31;10.14;20.84;2;;;2004-06-30 00:00:00.0;Preaggregated value obtained from single record. ; Arabidopsis suecica;13762;laboratory/greenhouse/garden experiment;20.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.94;53.31;10.14;20.51;2;;;2004-06-30 00:00:00.0;preaggregated value obtained from single record; Arabidopsis thaliana;12652;actual measurement;4.287334594;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.287334594;;;2;;;1996-04-30 00:00:00.0;; Arabidopsis thaliana;12652;actual measurement;14.99810811;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.99810811;;;2;;;1996-06-03 00:00:00.0;; Arabis glabra;13349;actual measurement (following LEDA data standards);17.1;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;19.24;35.67;9.53;17.1;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Arabis glabra;13349;laboratory/greenhouse/garden experiment;30.64;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.21;106.88;20.77;30.64;2;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Arabis hirsuta;13002;actual measurement;15.75671642;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.75671642;;;2;;;1996-06-25 00:00:00.0;; Arabis sagittata;14273;actual measurement (following LEDA data standards);12.81;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.44;26.59;7.89;12.81;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. sample consists of 5 rosette leaves and 5 stem leaves (morphologically very similar); Arabis sagittata;14273;actual measurement (following LEDA data standards);19.56;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.49;26.59;11.12;19.56;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Arabis sagittata;14273;actual measurement (following LEDA data standards);19.02;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.49;26.59;11.12;19.02;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Arabis sagittata;14273;actual measurement (following LEDA data standards);12.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.44;26.59;7.89;12.1;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Arctium lappa;6084;actual measurement (following LEDA data standards);1138.63;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1092.55;1533.12;331.05;1138.63;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Arctium lappa;6084;laboratory/greenhouse/garden experiment;2455;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2950;4530;1865;2455;2;;;2005-06-24 00:00:00.0;preaggregated value obtained from single record; Arctium lappa;6084;actual measurement (following LEDA data standards);1577.71;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1450.05;2018.73;423.38;1577.71;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Arctium lappa;6084;actual measurement (following LEDA data standards);1450.05;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1450.05;2018.73;423.38;1450.05;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Arctium lappa;6084;actual measurement (following LEDA data standards);1092.55;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1092.55;1533.12;331.05;1092.55;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Arctium minus;4154;actual measurement;3009.781191;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3009.781191;;;2;;;1996-06-11 00:00:00.0;; Arctium minus;4154;actual measurement;5200.092619;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5200.092619;;;2;;;1996-07-08 00:00:00.0;; Arctostaphylos alpinus;19579;actual measurement (following LEDA data standards);10;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;9.67;11.45;5.85;10;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Arctostaphylos uva-ursi;19582;actual measurement;12.46875;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.46875;;;2;;;1996-08-02 00:00:00.0;; Arenaria serpyllifolia;16833;actual measurement;.768292683;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.768292683;;;2;;;1996-06-03 00:00:00.0;; Arenaria serpyllifolia;16833;actual measurement;.955862069;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.955862069;;;2;;;1996-05-23 00:00:00.0;; Arenaria serpyllifolia;16833;actual measurement (following LEDA data standards);.24;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.23;.33;.15;.24;2;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Arenaria serpyllifolia s. leptoclados;44912;actual measurement (following LEDA data standards);.39;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.39;.53;.28;.39;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Arenaria serpyllifolia s. leptoclados;44912;actual measurement (following LEDA data standards);.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.39;.53;.28;.38;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Aristolochia clematitis;2411;actual measurement (following LEDA data standards);493.42;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;493.42;753.57;350.1;493.42;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Aristolochia clematitis;2411;actual measurement (following LEDA data standards);483.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;493.42;753.57;350.1;483.28;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Aristolochia clematitis;2411;actual measurement (following LEDA data standards);528.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;534.67;801.47;381.74;528.03;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Aristolochia clematitis;2411;actual measurement (following LEDA data standards);534.67;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;534.67;801.47;381.74;534.67;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Armeria maritima;28355;actual measurement (following LEDA data standards);7.68;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;8.5;16.56;3.86;7.68;2;;;2004-09-09 00:00:00.0;preaggregated value obtained from single record; Armeria maritima s. halleri;28712;actual measurement (following LEDA data standards);2.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.61;3.29;1.58;2.59;2;;;2004-08-26 00:00:00.0;preaggregated value obtained from single record; Armeria maritima s. halleri;28712;actual measurement (following LEDA data standards);2.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.61;3.29;1.58;2.61;2;;;2004-08-26 00:00:00.0;Preaggregated value obtained from single record. ; Armoracia rusticana;13400;actual measurement;2398.048576;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2398.048576;;;2;;;1996-08-08 00:00:00.0;; Armoracia rusticana;13400;actual measurement;7403.607473;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7403.607473;;;2;;;1996-09-02 00:00:00.0;; Armoracia rusticana;13400;actual measurement;2853.898235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2853.898235;;;2;;;1996-06-19 00:00:00.0;; Arnica montana;3665;actual measurement (following LEDA data standards);103.94;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;112.89;199.82;61.89;103.94;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Arnica montana;3665;actual measurement (following LEDA data standards);94.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;112.89;199.82;61.89;94.55;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Arnoseris minima;3666;actual measurement (following LEDA data standards);36.48;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.92;52.25;17.94;36.48;2;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Arnoseris minima;3666;actual measurement (following LEDA data standards);38.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.92;52.25;17.94;38.45;2;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Arrhenatherum elatius;40414;actual measurement;50.27812675;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;50.27812675;;;2;;;1996-06-11 00:00:00.0;; Arrhenatherum elatius;40414;actual measurement;11.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;11.07;16.19;6.91;11.03;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Artemisia absinthium;5486;actual measurement;94.66752246;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;94.66752246;;;2;;;1996-08-05 00:00:00.0;; Artemisia absinthium;5486;actual measurement;104.1975153;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;104.1975153;;;2;;;1996-09-02 00:00:00.0;; Artemisia annua;5487;actual measurement (following LEDA data standards);22.29;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;21.96;40.11;3.47;22.29;1;;;2003-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Artemisia annua;5487;actual measurement (following LEDA data standards);31.33;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;30.23;34.28;23.96;31.33;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Artemisia annua;5487;actual measurement (following LEDA data standards);42.56;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.6;44.66;40.62;42.56;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Artemisia annua;5487;actual measurement (following LEDA data standards);24.49;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.19;46.61;7.46;24.49;1;;;2003-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Artemisia campestris;2974;actual measurement (following LEDA data standards);8.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.27;16.47;3.4;8.26;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Artemisia campestris;2974;actual measurement (following LEDA data standards);13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.1;29.52;7.17;13;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Artemisia maritima;2981;actual measurement (following LEDA data standards);39.52;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.34;64.84;23.07;39.52;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Artemisia maritima;2981;actual measurement (following LEDA data standards);36.52;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.34;64.84;23.07;36.52;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Artemisia maritima;2981;actual measurement (following LEDA data standards);39.35;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;39.11;50.75;30.4;39.35;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Artemisia vulgaris;4158;actual measurement;230.739648;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;230.739648;;;2;;;1996-08-05 00:00:00.0;; Artemisia vulgaris;4158;actual measurement;279.8430792;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;279.8430792;;;2;;;1996-09-02 00:00:00.0;; Arum maculatum;35847;actual measurement;531.6457874;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;531.6457874;;;2;;;1996-05-30 00:00:00.0;; Arum maculatum;35847;actual measurement;244.8729315;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;244.8729315;;;2;;;1996-06-03 00:00:00.0;; Arum maculatum;35847;actual measurement;177.2012152;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;177.2012152;;;2;;;1996-06-11 00:00:00.0;; Aruncus dioicus;31209;actual measurement (following LEDA data standards);1615.36;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1665.71;2695;1200;1615.36;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Aruncus dioicus;31209;actual measurement (following LEDA data standards);1565;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1665.71;2695;1200;1565;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Aruncus dioicus;31209;actual measurement (following LEDA data standards);2510;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2791.43;4410;2080;2510;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Aruncus dioicus;31209;actual measurement (following LEDA data standards);2650.72;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2791.43;4410;2080;2650.72;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Asarum europaeum;2429;actual measurement (following LEDA data standards);93.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;101.72;146.9;87.19;93.18;1;;;2003-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Asarum europaeum;2429;actual measurement (following LEDA data standards);120.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;129.21;181.55;112.77;120.06;1;;;2003-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Asparagus officinalis;38660;actual measurement (following LEDA data standards);.24;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.27;.47;.14;.24;5;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. leaves; Asparagus officinalis;38660;actual measurement (following LEDA data standards);6.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.82;15.04;3.79;6.8;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Asparagus officinalis;38660;actual measurement (following LEDA data standards);7.1;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.82;15.04;3.79;7.1;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. twigs; Asparagus officinalis;38660;actual measurement (following LEDA data standards);.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.27;.47;.14;.24;5;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Asperugo procumbens;12544;actual measurement (following LEDA data standards);7.07;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;7.7;14.07;4.26;7.07;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Asperula cynanchica;31904;actual measurement (following LEDA data standards);.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.74;1.31;.54;.66;1;;;2003-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Asperula tinctoria;32329;actual measurement (following LEDA data standards);2.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.54;4.07;1.33;2.43;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Asperula tinctoria;32329;actual measurement (following LEDA data standards);2.54;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.54;4.07;1.33;2.54;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Asplenium ceterach;125;actual measurement;26.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.3;;;1;;;1997-09-29 00:00:00.0;; Asplenium ruta-muraria;156;actual measurement;10.77474403;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.77474403;;;2;;;1996-09-23 00:00:00.0;; Asplenium ruta-muraria;156;actual measurement;11.22680412;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.22680412;;;2;;;1996-09-02 00:00:00.0;; Asplenium ruta-muraria;156;actual measurement;13.76470588;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.76470588;;;2;;;1996-09-02 00:00:00.0;; Asplenium scolopendrium;133;actual measurement;879.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;879.9;;;2;;;1996-09-02 00:00:00.0;; Asplenium scolopendrium;133;actual measurement;1993.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1993.7;;;2;;;1996-09-27 00:00:00.0;; Asplenium septentrionale;116;actual measurement (following LEDA data standards);10.7;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.56;19.36;7;10.7;2;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Asplenium trichomanes;117;actual measurement;95.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;95.5;;;2;;;1996-09-02 00:00:00.0;; Asplenium trichomanes-ramosum;44469;actual measurement;25;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25;;;2;;;1996-08-16 00:00:00.0;; Aster amellus;3537;actual measurement (following LEDA data standards);29.55;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;31.58;45.11;19.94;29.55;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Aster amellus;3537;actual measurement (following LEDA data standards);33.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;33.5;49.15;22.26;33.1;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Aster amellus;3537;actual measurement (following LEDA data standards);33.5;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;33.5;49.15;22.26;33.5;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Aster amellus;3537;actual measurement (following LEDA data standards);29.14;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;31.58;45.11;19.94;29.14;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Aster bellidiastrum;5946;actual measurement (following LEDA data standards);43.28;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;52.13;92.19;30.78;43.28;2;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Aster lanceolatus;5496;actual measurement;44;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44;;;1;;;1997-08-10 00:00:00.0;; Aster linosyris;5330;actual measurement (following LEDA data standards);6.04;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.04;8.9;4.74;6.04;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Aster linosyris;5330;actual measurement (following LEDA data standards);6.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.04;8.9;4.74;6.11;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Aster novi-belgii;4901;actual measurement;21.95914091;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.95914091;;;2;;;1996-09-09 00:00:00.0;; Aster novi-belgii;4901;actual measurement;150.531399;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;150.531399;;;2;;;1996-09-02 00:00:00.0;; Aster novi-belgii;4901;actual measurement;88.89579832;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;88.89579832;;;2;;;1996-09-27 00:00:00.0;; Aster tripolium;3539;actual measurement;356.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;356.8;;;1;;;1997-06-21 00:00:00.0;; Aster tripolium;3539;actual measurement (following LEDA data standards);22.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.2;66.4;13.4;22.46;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. stem leaves; Aster tripolium;3539;actual measurement (following LEDA data standards);103.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;109.28;242.21;43.56;103.38;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Aster tripolium;3539;actual measurement;227.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;227.3;;;1;;;1997-09-04 00:00:00.0;; Aster tripolium;3539;actual measurement (following LEDA data standards);60;19;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;55.99;98.1;23.1;60;1;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Astragalus alpinus;21673;actual measurement (following LEDA data standards);6.4;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;9.41;23.75;4.3;6.4;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Astragalus alpinus;21673;actual measurement;1.8;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;1.8;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Astragalus cicer;21198;actual measurement (following LEDA data standards);93.03;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;93.03;141.54;56.64;93.03;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. ; Astragalus cicer;21198;actual measurement (following LEDA data standards);87.36;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;93.03;141.54;56.64;87.36;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Astragalus danicus;22416;actual measurement;11.26153846;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.26153846;;;2;;;1996-08-24 00:00:00.0;; Astragalus frigidus;21746;actual measurement (following LEDA data standards);26.1;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;27.66;49.4;11.85;26.1;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Astragalus glycyphyllos;22427;actual measurement;89.06086957;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;89.06086957;;;2;;;1996-09-02 00:00:00.0;; Astragalus glycyphyllos;22427;actual measurement;142.1021947;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;142.1021947;;;2;;;1996-09-02 00:00:00.0;; Astrantia major;1925;actual measurement (following LEDA data standards);376.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;414.88;833.3;142.77;376.6;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Astrantia major;1925;actual measurement (following LEDA data standards);510.95;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;640.58;1424.92;180.26;510.95;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Astrantia major;1925;actual measurement (following LEDA data standards);561.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;640.58;1424.92;180.26;561.65;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Astrantia major;1925;actual measurement (following LEDA data standards);352.14;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;414.88;833.3;142.77;352.14;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Athyrium distentifolium;35;actual measurement (following LEDA data standards);31.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;31.1;;;;1;;;2003-08-21 00:00:00.0;; Athyrium distentifolium;35;actual measurement (following LEDA data standards);19.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;19.6;;;;1;;;2003-08-20 00:00:00.0;; Athyrium distentifolium;35;actual measurement (following LEDA data standards);968.48;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;971.77;1128.16;818.67;968.48;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Athyrium distentifolium;35;actual measurement (following LEDA data standards);970.12;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;971.77;1128.16;818.67;970.12;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Athyrium distentifolium;35;actual measurement (following LEDA data standards);29.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;29.6;;;;1;;;2003-08-21 00:00:00.0;; Athyrium filix-femina;37;actual measurement;5603.077432;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5603.077432;;;2;;;1996-09-05 00:00:00.0;; Atriplex calotheca;17758;laboratory/greenhouse/garden experiment;121.92;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;123.12;152.19;97.7;121.92;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex calotheca;17758;laboratory/greenhouse/garden experiment;120.72;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;123.12;152.19;97.7;120.72;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Atriplex calotheca;17758;laboratory/greenhouse/garden experiment;134.45;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;135.41;166.71;107.15;134.45;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex calotheca;17758;laboratory/greenhouse/garden experiment;133.5;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;135.41;166.71;107.15;133.5;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Atriplex glabriuscula;17760;laboratory/greenhouse/garden experiment;169.54;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;181.85;258.04;137.15;169.54;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex glabriuscula;17760;laboratory/greenhouse/garden experiment;157.24;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;181.85;258.04;137.15;157.24;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Atriplex glabriuscula;17760;laboratory/greenhouse/garden experiment;159.94;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;172.15;243.76;128.97;159.94;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex glabriuscula;17760;laboratory/greenhouse/garden experiment;147.73;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;172.15;243.76;128.97;147.73;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Atriplex laciniata;17773;laboratory/greenhouse/garden experiment;113.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;110.96;129.91;76.4;113.48;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex laciniata;17773;laboratory/greenhouse/garden experiment;116;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;110.96;129.91;76.4;116;2;;;2004-08-05 00:00:00.0;preaggregated value obtained from single record; Atriplex laciniata;17773;laboratory/greenhouse/garden experiment;120.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;118.45;138.76;82.46;120.16;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex laciniata;17773;laboratory/greenhouse/garden experiment;121.86;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;118.45;138.76;82.46;121.86;2;;;2004-08-05 00:00:00.0;preaggregated value obtained from single record; Atriplex littoralis;17778;laboratory/greenhouse/garden experiment;95.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;97.16;134.15;55.09;95.85;2;;;2004-06-14 00:00:00.0;preaggregated value obtained from single record; Atriplex littoralis;17778;laboratory/greenhouse/garden experiment;97.16;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;97.16;134.15;55.09;97.16;2;;;2004-06-14 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex littoralis;17778;actual measurement;29.8172301;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.8172301;;;2;;;1996-09-02 00:00:00.0;; Atriplex littoralis;17778;laboratory/greenhouse/garden experiment;86.77;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;86.77;119.45;48.47;86.77;2;;;2004-06-14 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex littoralis;17778;actual measurement;26.10405827;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.10405827;;;2;;;1996-09-02 00:00:00.0;; Atriplex littoralis;17778;laboratory/greenhouse/garden experiment;85.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;86.77;119.45;48.47;85.73;2;;;2004-06-14 00:00:00.0;preaggregated value obtained from single record; Atriplex micrantha;44812;laboratory/greenhouse/garden experiment;168.3;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;168.3;231.5;105.1;168.3;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Atriplex micrantha;44812;laboratory/greenhouse/garden experiment;168.3;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;168.3;231.5;105.1;168.3;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex micrantha;44812;laboratory/greenhouse/garden experiment;184.6;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;184.6;254.72;114.48;184.6;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex micrantha;44812;laboratory/greenhouse/garden experiment;184.6;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;184.6;254.72;114.48;184.6;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Atriplex nitens;17671;actual measurement (following LEDA data standards);79.51;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;84.92;140.66;40.02;79.51;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex nitens;17671;actual measurement (following LEDA data standards);74.1;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;84.92;140.66;40.02;74.1;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Atriplex nitens;17671;actual measurement (following LEDA data standards);83.78;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;89.54;148.84;41.78;83.78;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Atriplex nitens;17671;actual measurement (following LEDA data standards);78.02;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;89.54;148.84;41.78;78.02;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Atriplex oblongifolia;17673;actual measurement (following LEDA data standards);19.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.08;28.18;13.08;19.44;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Atriplex oblongifolia;17673;actual measurement (following LEDA data standards);19.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.08;28.18;13.08;19.61;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex oblongifolia;17673;actual measurement (following LEDA data standards);18.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.26;27.19;12.55;18.57;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Atriplex oblongifolia;17673;actual measurement (following LEDA data standards);18.72;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.26;27.19;12.55;18.72;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex patula;17675;actual measurement;33.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;33.6;;;1;;;1997-09-19 00:00:00.0;; Atriplex patula;17675;actual measurement;90.60967222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;90.60967222;;;2;;;1996-08-08 00:00:00.0;; Atriplex patula;17675;actual measurement;54.65380461;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;54.65380461;;;2;;;1996-08-05 00:00:00.0;; Atriplex patula;17675;actual measurement;95.26894131;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;95.26894131;;;2;;;1996-07-15 00:00:00.0;; Atriplex prostrata;44815;actual measurement;92.16769942;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;92.16769942;;;2;;;1996-08-08 00:00:00.0;; Atriplex prostrata;44815;actual measurement;165.2152228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;165.2152228;;;2;;;1996-08-05 00:00:00.0;; Atriplex prostrata;44815;actual measurement;161.9553199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;161.9553199;;;2;;;1996-09-02 00:00:00.0;; Atriplex rosea;17679;laboratory/greenhouse/garden experiment;21.1;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;21.16;38.28;15.91;21.1;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex rosea;17679;laboratory/greenhouse/garden experiment;20;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;21.16;38.28;15.91;20;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Atriplex rosea;17679;laboratory/greenhouse/garden experiment;22.06;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.2;40.6;16.63;22.06;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex rosea;17679;laboratory/greenhouse/garden experiment;20.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.2;40.6;16.63;20.89;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Atriplex tatarica;17681;laboratory/greenhouse/garden experiment;20.7;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.69;65.19;8.16;20.7;2;;;2004-08-17 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex tatarica;17681;laboratory/greenhouse/garden experiment;12.71;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.69;65.19;8.16;12.71;2;;;2004-08-17 00:00:00.0;preaggregated value obtained from single record; Atriplex tatarica;17681;actual measurement (following LEDA data standards);29.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.86;41.94;12.12;29.13;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Atriplex tatarica;17681;actual measurement (following LEDA data standards);28.05;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.86;41.94;12.12;28.05;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex tatarica;17681;laboratory/greenhouse/garden experiment;19.63;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;27.08;61.25;7.82;19.63;2;;;2004-08-17 00:00:00.0;Preaggregated value obtained from single record. ; Atriplex tatarica;17681;laboratory/greenhouse/garden experiment;12.17;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;27.08;61.25;7.82;12.17;2;;;2004-08-17 00:00:00.0;preaggregated value obtained from single record; Atriplex tatarica;17681;actual measurement (following LEDA data standards);27.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;23.93;38.12;11.24;27.32;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Atriplex tatarica;17681;actual measurement (following LEDA data standards);26.35;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;23.93;38.12;11.24;26.35;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Atropa bella-donna;35087;actual measurement;192;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;192;;;1;;;1997-07-14 00:00:00.0;; Atropa bella-donna;35087;actual measurement (following LEDA data standards);338.54;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;350.36;569.14;161.69;338.54;2;;;2005-05-20 00:00:00.0;preaggregated value obtained from single record; Avena barbata;40564;field experiment;.00482;2;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00482;;;;20;;.78;1989-04-28 00:00:00.0;;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Avena fatua;40425;actual measurement;276.0669729;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;276.0669729;;;2;;;1996-07-08 00:00:00.0;; Avena fatua;40425;actual measurement;364.5379237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;364.5379237;;;2;;;1996-07-15 00:00:00.0;; Avena sativa;41151;laboratory/greenhouse/garden experiment;169.28;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;170.29;222.46;130.77;169.28;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Avena sativa;41151;laboratory/greenhouse/garden experiment;168.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;170.29;222.46;130.77;168.45;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Avena sterilis;41440;laboratory/greenhouse/garden experiment;17.32;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.32;22.39;12.25;17.32;2;;;2004-07-02 00:00:00.0;Preaggregated value obtained from single record. ; Avena sterilis;41440;laboratory/greenhouse/garden experiment;17.32;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.32;22.39;12.25;17.32;2;;;2004-07-02 00:00:00.0;preaggregated value obtained from single record; Avena strigosa;40565;laboratory/greenhouse/garden experiment;69.91;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.91;92.42;44.65;69.91;2;;;2004-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Avena strigosa;40565;laboratory/greenhouse/garden experiment;70.02;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.91;92.42;44.65;70.02;2;;;2004-08-04 00:00:00.0;preaggregated value obtained from single record; Avenula pratensis;40921;actual measurement;51.36969697;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;51.36969697;;;2;;;1996-09-02 00:00:00.0;; Avenula pratensis;40921;actual measurement;62.07688022;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;62.07688022;;;2;;;1996-08-14 00:00:00.0;; Avenula pratensis;40921;actual measurement;157.4526688;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;157.4526688;;;2;;;1996-09-23 00:00:00.0;; Avenula pubescens;40923;actual measurement;41.59623926;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;41.59623926;;;2;;;;; Avenula pubescens;40923;actual measurement;42.7;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;57.88;145.1;28.8;42.7;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Avenula pubescens;40923;actual measurement;25.13076923;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25.13076923;;;2;;;1996-09-02 00:00:00.0;; Azolla filiculoides;22;actual measurement;.52;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.52;;;2;;;1996-09-27 00:00:00.0;; Azolla filiculoides;22;actual measurement (following LEDA data standards);13.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.29;28.18;4.4;13.7;1;;;2004-05-18 00:00:00.0;preaggregated value obtained from single record; Azolla filiculoides;22;actual measurement (following LEDA data standards);13.33;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.29;28.18;4.4;13.33;1;;;2004-05-18 00:00:00.0;Preaggregated value obtained from single record. whole plant treated as one leaf; Baldellia ranunculoides;35614;actual measurement;19.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.6;;;1;;;1997-07-25 00:00:00.0;; Ballota nigra;24563;actual measurement;38.35214076;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;38.35214076;;;2;;;1996-09-02 00:00:00.0;; Barbarea intermedia;13016;actual measurement;265.684375;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;265.684375;;;2;;;1996-08-08 00:00:00.0;; Barbarea intermedia;13016;laboratory/greenhouse/garden experiment;38.93;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;38.93;38.93;38.93;38.93;2;;;2004-10-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Barbarea intermedia;13016;laboratory/greenhouse/garden experiment;45.22;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.22;45.22;45.22;45.22;2;;;2004-10-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Barbarea intermedia;13016;laboratory/greenhouse/garden experiment;45.22;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.22;45.22;45.22;45.22;2;;;2004-10-11 00:00:00.0;preaggregated value obtained from single record; Barbarea intermedia;13016;laboratory/greenhouse/garden experiment;38.93;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;38.93;38.93;38.93;38.93;2;;;2004-10-11 00:00:00.0;preaggregated value obtained from single record; Barbarea stricta;14378;laboratory/greenhouse/garden experiment;16.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.37;33.72;7.86;16.4;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ; Barbarea stricta;14378;laboratory/greenhouse/garden experiment;15.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.37;33.72;7.86;15.5;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Barbarea vulgaris;14291;actual measurement;47.81898561;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.81898561;;;2;;;1996-08-08 00:00:00.0;; Barbarea vulgaris;14291;actual measurement;252.831664;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;252.831664;;;2;;;1996-06-03 00:00:00.0;; Bartsia alpina;34451;actual measurement (following LEDA data standards);10.37;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.37;16.84;6.7;10.37;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Bartsia alpina;34451;actual measurement (following LEDA data standards);9.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.37;16.84;6.7;9.8;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Bartsia alpina;34451;actual measurement;10.4;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;10.4;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Bassia scoparia;44831;actual measurement;5.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.1;;;1;;;1997-06-24 00:00:00.0;; Bassia scoparia;44831;laboratory/greenhouse/garden experiment;3.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.36;7.53;2.58;3.75;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Bassia scoparia;44831;laboratory/greenhouse/garden experiment;3.76;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.36;7.53;2.58;3.76;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Bellis perennis;2808;actual measurement;11.49584507;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.49584507;;;2;;;1996-05-22 00:00:00.0;; Bellis perennis;2808;actual measurement;11.75862069;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.75862069;;;2;;;;; Berteroa incana;14292;actual measurement (following LEDA data standards);8.13;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.54;11.05;3.42;8.13;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Berteroa incana;14292;actual measurement (following LEDA data standards);4.9;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.42;8.76;3.84;4.9;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Berula erecta;1938;actual measurement;79.41704988;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;79.41704988;;;2;;;1996-07-11 00:00:00.0;; Berula erecta;1938;actual measurement (following LEDA data standards);241.85;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;265.47;426.4;137.1;241.85;2;;;;Preaggregated value obtained from single record. ; Beta vulgaris;17819;actual measurement;751.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;751.7;;;1;;;1997-07-14 00:00:00.0;; Betula nana;11715;actual measurement (following LEDA data standards);5.58;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;5.58;8.51;2.24;5.58;2;;;2004-08-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Betula nana;11715;actual measurement (following LEDA data standards);1.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.95;;;;6;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);6.88;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.88;;;;5;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);5.54;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.54;;;;5;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);5.18;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.18;;;;5;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);5.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.95;;;;4;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);3.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.4;;;;6;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);4.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.1;;;;4;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);6.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.95;;;;2;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);3.02;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.02;;;;5;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);3.14;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.14;;;;5;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);3.52;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.52;;;;5;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);4.07;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.07;;;;3;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);3.83;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.83;;;;4;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);5.43;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.43;;;;4;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);6.06;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.06;;;;5;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);6.45;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.45;;;;2;;;2003-08-15 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);5.81;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.06;8.8;3.83;5.81;2;;;2004-08-25 00:00:00.0;preaggregated value obtained from single record; Betula nana;11715;actual measurement (following LEDA data standards);5.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.06;8.8;3.83;5.84;2;;;2004-08-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Betula nana;11715;actual measurement (following LEDA data standards);5.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;5.58;8.51;2.24;5.62;2;;;2004-08-25 00:00:00.0;preaggregated value obtained from single record; Betula nana;11715;actual measurement (following LEDA data standards);4.22;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;4.22;;;;6;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Betula nana;11715;actual measurement (following LEDA data standards);1.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;1.9;;;;6;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Bidens cernua;3807;actual measurement (following LEDA data standards);129.43;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;116.35;165.6;51;129.43;2;;;;Preaggregated value obtained from single record. ; Bidens cernua;3807;laboratory/greenhouse/garden experiment;46.98;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.48;63.61;12.36;46.98;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Bidens cernua;3807;laboratory/greenhouse/garden experiment;46.72;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.48;63.61;12.36;46.72;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ; Bidens connata;3153;actual measurement (following LEDA data standards);20.8;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;20.08;31.15;7.3;20.8;2;;;2005-08-02 00:00:00.0;preaggregated value obtained from single record; Bidens frondosa;6191;actual measurement (following LEDA data standards);102.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;117.57;248.12;54.84;102.45;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Bidens frondosa;6191;actual measurement (following LEDA data standards);118.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;135.04;292.73;61.51;118.37;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Bidens radiata;5325;actual measurement (following LEDA data standards);274.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;261.95;381.95;147.9;274.68;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Bidens radiata;5325;actual measurement (following LEDA data standards);310.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;297.46;440.6;172.43;310.6;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Bidens tripartita;3990;actual measurement;35.99983366;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;35.99983366;;;2;;;1996-08-08 00:00:00.0;; Bidens tripartita;3990;actual measurement (following LEDA data standards);62.6;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;66.61;92.25;45.55;62.6;2;;;;Preaggregated value obtained from single record. ; Bidens tripartita;3990;actual measurement;125.5333333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;125.5333333;;;2;;;1996-08-31 00:00:00.0;; Bifora radians;1939;laboratory/greenhouse/garden experiment;30.14;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;31.43;42.63;26.57;30.14;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Bifora radians;1939;laboratory/greenhouse/garden experiment;30.01;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;31.43;42.63;26.57;30.01;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Blackstonia perfoliata;22864;actual measurement;51.48225887;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;51.48225887;;;2;;;1996-07-08 00:00:00.0;; Blackstonia perfoliata;22864;actual measurement (following LEDA data standards);2.09;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.27;4.76;1.08;2.09;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Blackstonia perfoliata;22864;actual measurement (following LEDA data standards);2.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.27;4.76;1.08;2.04;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Blechnum spicant;160;actual measurement;860.8613805;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;860.8613805;;;2;;;1996-09-09 00:00:00.0;; Blysmus compressus;37421;actual measurement (following LEDA data standards);15.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.38;25.41;12.55;15.71;2;;;2005-07-02 00:00:00.0;preaggregated value obtained from single record; Blysmus rufus;37423;actual measurement (following LEDA data standards);4.34;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.65;7.4;2.74;4.34;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Blysmus rufus;37423;actual measurement (following LEDA data standards);4.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.65;7.4;2.74;4.16;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Borago officinalis;12546;actual measurement (following LEDA data standards);163.25;2;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;163.25;200;126.5;163.25;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Borago officinalis;12546;actual measurement (following LEDA data standards);145.8;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;157.8;217.8;109.8;145.8;2;;;2005-08-03 00:00:00.0;preaggregated value obtained from single record; Botrychium lunaria;270;actual measurement;19.89920273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.89920273;;;2;;;1996-06-03 00:00:00.0;; Brachypodium pinnatum;40931;actual measurement;54.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;54.6;;;2;;;1996-07-08 00:00:00.0;; Brachypodium pinnatum;40931;actual measurement;113.3847632;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;113.3847632;;;2;;;1996-09-23 00:00:00.0;; Brachypodium pinnatum s. pinnatum;41177;actual measurement (following LEDA data standards);40.9;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.25;74.82;28.55;40.9;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Brachypodium pinnatum s. pinnatum;41177;actual measurement (following LEDA data standards);41.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.25;74.82;28.55;41.25;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Brachypodium sylvaticum;41179;actual measurement;53.79423206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;53.79423206;;;2;;;1996-08-08 00:00:00.0;; Brachypodium sylvaticum;41179;actual measurement;74.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;74.3;;;2;;;1996-06-18 00:00:00.0;; Brachypodium sylvaticum;41179;actual measurement;12.48041867;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.48041867;;;2;;;1996-08-16 00:00:00.0;; Brachypodium sylvaticum;41179;actual measurement;29.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;30.41;47.09;18.05;29.61;2;;;2004-06-25 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;23.5;10;1;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79];unknown;23.5;;;;1;;;;Unshaded leaves, non-hairy-edged, vegetative tillers;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79] Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;7.9;10;1;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79];unknown;7.9;;;;1;;;;Shaded leaves, non-hairy-edged, reproductive tillers;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79] Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;.8;10;1;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79];unknown;.8;;;;1;;;;Shaded leaves, hairy-edged, reproductive tillers;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79] Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;7.7;10;1;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79];unknown;7.7;;;;1;;;;Unshaded leaves, non-hairy-edged, reproductive tillers;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79] Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;12.7;10;1;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79];unknown;12.7;;;;1;;;;Unshaded leaves, hairy-edged, reproductive tillers;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79] Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;.23;10;1;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79];unknown;.23;;;;1;;;;Unshaded leaves, non-hairy-edged, vegetative tillers;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79] Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;12;10;1;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79];unknown;12;;;;1;;;;Shaded leaves, non-hairy-edged, vegetative tillers;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79] Brachypodium sylvaticum;41179;laboratory/greenhouse/garden experiment;10.1;10;1;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79];unknown;10.1;;;;1;;;;Shaded leaves, hairy-edged, vegetative tillers;Davies, M.S.(1991): Performance of two contrasting morphs of Brachypodium sylvaticum transplanted into shaded and unshaded sites[79] Brassica elongata;14200;laboratory/greenhouse/garden experiment;27.58;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.58;31.67;23.49;27.58;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Brassica nigra;13691;laboratory/greenhouse/garden experiment;252.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;277.26;472.92;185.16;252.94;2;;;2005-07-11 00:00:00.0;preaggregated value obtained from single record; Brassica oleracea;14208;laboratory/greenhouse/garden experiment;200.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;222.76;494.8;77.25;200.78;2;;;2005-06-22 00:00:00.0;preaggregated value obtained from single record; Brassica rapa;13695;laboratory/greenhouse/garden experiment;124.65;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;139.29;257.55;50.31;124.65;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Brassica rapa;13695;laboratory/greenhouse/garden experiment;110.01;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;139.29;257.55;50.31;110.01;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Brassica rapa;13695;actual measurement;151.7128469;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;151.7128469;;;2;;;1996-06-25 00:00:00.0;; Brassica rapa;13695;laboratory/greenhouse/garden experiment;144.65;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;144.65;239.54;49.76;144.65;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Brassica rapa;13695;laboratory/greenhouse/garden experiment;144.65;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;144.65;239.54;49.76;144.65;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Briza media;40342;actual measurement;29.42911909;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.42911909;;;2;;;1996-06-10 00:00:00.0;; Briza media;40342;actual measurement;64.90802806;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;64.90802806;;;2;;;1996-07-08 00:00:00.0;; Briza media;40342;actual measurement;8.28385214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.28385214;;;2;;;1996-09-23 00:00:00.0;; Briza media;40342;actual measurement;5.24;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;5.31;10.02;2.03;5.24;2;;;2003-06-05 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Bromus arvensis;40609;laboratory/greenhouse/garden experiment;40.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.98;90.43;23.13;40.63;2;;;2005-06-29 00:00:00.0;preaggregated value obtained from single record; Bromus benekenii;41454;actual measurement (following LEDA data standards);11.55;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.26;11.95;10.5;11.55;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Bromus carinatus;40352;actual measurement;83.21911765;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;83.21911765;;;2;;;1996-09-02 00:00:00.0;; Bromus commutatus;40941;actual measurement (following LEDA data standards);29.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.15;48.91;15.7;29.33;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Bromus commutatus;40941;laboratory/greenhouse/garden experiment;33.54;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;36.62;54.53;17.02;33.54;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Bromus commutatus;40941;laboratory/greenhouse/garden experiment;33.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;36.62;54.53;17.02;33.22;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Bromus commutatus;40941;actual measurement (following LEDA data standards);29.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.15;48.91;15.7;29.2;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Bromus erectus;40358;actual measurement;82.21001727;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;82.21001727;;;2;;;1996-09-02 00:00:00.0;; Bromus erectus;40358;actual measurement;111.0212157;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;111.0212157;;;2;;;1996-07-08 00:00:00.0;; Bromus erectus;40358;field experiment;.00986;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00986;;;;20;;.91;1989-05-09 00:00:00.0;reproductive tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Bromus erectus;40358;field experiment;.0158;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.0158;;;;20;;2.2;1989-05-12 00:00:00.0;vegetative tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Bromus erectus;40358;field experiment;.0294;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.0294;;;;20;;3;1989-05-09 00:00:00.0;vegetative tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Bromus grossus;42156;laboratory/greenhouse/garden experiment;9.91;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.68;27.39;5.05;9.91;2;;;2005-08-26 00:00:00.0;preaggregated value obtained from single record; Bromus hordeaceus;40361;actual measurement;15.22234715;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.22234715;;;2;;;1996-05-23 00:00:00.0;; Bromus hordeaceus;40361;actual measurement;21.80255517;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.80255517;;;2;;;1996-05-23 00:00:00.0;; Bromus hordeaceus;40361;actual measurement;4.06;14;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;3.93;5.65;2.1;4.06;2;;;2003-06-11 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Bromus hordeaceus;40361;field experiment;.00211;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00211;;;;20;;.22;1989-05-12 00:00:00.0;reproductive tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Bromus inermis;40620;actual measurement;115.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;115.5;;;1;;;1997-08-18 00:00:00.0;; Bromus japonicus;40365;laboratory/greenhouse/garden experiment;13.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.59;21.09;5.98;13.6;2;;;2005-05-19 00:00:00.0;preaggregated value obtained from single record; Bromus lanceolatus;42158;field experiment;.00232;2;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00232;;;;20;;.32;1989-05-09 00:00:00.0;;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Bromus madritensis;40949;field experiment;.00571;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00571;;;;20;;.47;1989-05-12 00:00:00.0;reproductive tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Bromus madritensis;40949;field experiment;.00156;2;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00156;;;;20;;.1;1989-05-09 00:00:00.0;;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Bromus madritensis;40949;laboratory/greenhouse/garden experiment;5.21;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.06;9.14;4.25;5.21;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Bromus madritensis;40949;laboratory/greenhouse/garden experiment;5;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.06;9.14;4.25;5;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Bromus racemosus;40951;laboratory/greenhouse/garden experiment;85.34;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;85.34;124.01;51.52;85.34;2;;;2004-05-24 00:00:00.0;Preaggregated value obtained from single record. ; Bromus racemosus;40951;laboratory/greenhouse/garden experiment;85.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;85.34;124.01;51.52;85.49;2;;;2004-05-24 00:00:00.0;preaggregated value obtained from single record; Bromus ramosus;40952;actual measurement;120.0191661;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;120.0191661;;;2;;;1996-08-08 00:00:00.0;; Bromus ramosus;40952;actual measurement;168.8782195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;168.8782195;;;2;;;1996-06-18 00:00:00.0;; Bromus ramosus;40952;actual measurement;306.4234379;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;306.4234379;;;2;;;1996-07-08 00:00:00.0;; Bromus secalinus;40610;laboratory/greenhouse/garden experiment;103.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;101.08;175.87;50.45;103.28;2;;;2005-06-30 00:00:00.0;preaggregated value obtained from single record; Bromus squarrosus;40372;laboratory/greenhouse/garden experiment;48.01;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.11;63.24;34.64;48.01;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Bromus squarrosus;40372;laboratory/greenhouse/garden experiment;47.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.11;63.24;34.64;47.42;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Bromus sterilis;40373;actual measurement;9.156237753;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.156237753;;;2;;;1996-05-23 00:00:00.0;; Bromus sterilis;40373;actual measurement;18.11970803;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.11970803;;;2;;;1996-05-23 00:00:00.0;; Bromus sterilis;40373;actual measurement;18.47333627;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.47333627;;;2;;;1996-05-21 00:00:00.0;; Bromus tectorum;41688;laboratory/greenhouse/garden experiment;19.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.18;30.96;15.53;19.68;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Bromus tectorum;41688;laboratory/greenhouse/garden experiment;19.94;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.18;30.96;15.53;19.94;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Bryonia alba;18474;actual measurement (following LEDA data standards);172.15;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;159.76;216.71;108.36;172.15;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Bryonia alba;18474;actual measurement (following LEDA data standards);172.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;159.76;216.71;108.36;172.71;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Bryonia alba;18474;actual measurement (following LEDA data standards);184.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;172.01;235.54;115.54;184.17;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Bryonia alba;18474;actual measurement (following LEDA data standards);182.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;172.01;235.54;115.54;182.59;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Bryonia cretica s. cretica;18476;actual measurement;125.5009542;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;125.5009542;;;2;;;1996-09-02 00:00:00.0;; Bryonia cretica s. cretica;18476;actual measurement;202.7702634;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;202.7702634;;;2;;;1996-08-08 00:00:00.0;; Bryonia cretica s. cretica;18476;actual measurement;155.0812612;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;155.0812612;;;2;;;1996-05-30 00:00:00.0;; Buddleja davidii;15414;actual measurement (following LEDA data standards);77.29;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;77.29;155.95;31.74;77.29;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Buddleja davidii;15414;actual measurement (following LEDA data standards);77.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;77.29;155.95;31.74;77.28;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Buglossoides purpurocaerulea;12486;actual measurement (following LEDA data standards);20.65;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.26;26.75;15.04;20.65;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Buglossoides purpurocaerulea;12486;actual measurement (following LEDA data standards);20.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.26;26.75;15.04;20.23;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Bunias orientalis;14415;laboratory/greenhouse/garden experiment;323.08;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;323.08;532.33;113.83;323.08;2;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Bunias orientalis;14415;laboratory/greenhouse/garden experiment;519.36;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;519.36;868.66;170.06;519.36;2;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Bunium bulbocastanum;2366;actual measurement (following LEDA data standards);37.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;40.44;76.12;10.62;37.88;2;;;2005-05-20 00:00:00.0;preaggregated value obtained from single record; Buphthalmum salicifolium;5238;actual measurement (following LEDA data standards);36.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;36.76;42.66;32.17;36.24;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Bupleurum rotundifolium;1894;actual measurement (following LEDA data standards);113.58;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.6;201.21;30.97;113.58;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Bupleurum rotundifolium;1894;actual measurement (following LEDA data standards);143.68;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;150.92;255.59;38.65;143.68;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Bupleurum rotundifolium;1894;actual measurement (following LEDA data standards);66.23;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;70.56;115.91;40.51;66.23;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. stem leaves, ground leaf see UOL-886; Bupleurum rotundifolium;1894;actual measurement (following LEDA data standards);147.3;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;150.92;255.59;38.65;147.3;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Bupleurum rotundifolium;1894;actual measurement (following LEDA data standards);60.59;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;70.56;115.91;40.51;60.59;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Bupleurum rotundifolium;1894;actual measurement (following LEDA data standards);116.59;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.6;201.21;30.97;116.59;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Bupleurum tenuissimum;1364;actual measurement (following LEDA data standards);1.55;7;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2.44;5.7;1.15;1.55;2;;;2003-09-17 00:00:00.0;preaggregated value obtained from single record; Butomus umbellatus;35620;actual measurement;641.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;641.9;;;1;;;1997-08-11 00:00:00.0;; Butomus umbellatus;35620;actual measurement (following LEDA data standards);386.31;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;416.44;552.15;336.19;386.31;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Butomus umbellatus;35620;actual measurement (following LEDA data standards);356.17;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;416.44;552.15;336.19;356.17;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Butomus umbellatus;35620;actual measurement (following LEDA data standards);735.5;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;873;1420;464;735.5;2;;;2004-07-15 00:00:00.0;preaggregated value obtained from single record; Cakile maritima;14226;actual measurement (following LEDA data standards);83.6;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;83.6;126.07;36.21;83.6;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Cakile maritima;14226;actual measurement (following LEDA data standards);80.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;83.6;126.07;36.21;80.2;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Cakile maritima;14226;actual measurement (following LEDA data standards);98.65;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;98.65;147.43;41.25;98.65;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Cakile maritima;14226;actual measurement (following LEDA data standards);95.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;98.65;147.43;41.25;95.75;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Cakile maritima;14226;actual measurement (following LEDA data standards);16.5;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;16.38;20.2;11.7;16.5;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Calamagrostis arundinacea;40633;actual measurement (following LEDA data standards);115.05;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;115.05;242.42;55.36;115.05;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Calamagrostis arundinacea;40633;actual measurement (following LEDA data standards);115.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;115.05;242.42;55.36;115.63;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Calamagrostis canescens;40960;actual measurement;30.60158192;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;30.60158192;;;2;;;1996-07-15 00:00:00.0;; Calamagrostis canescens;40960;actual measurement (following LEDA data standards);28.3;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;26.93;36.75;15.4;28.3;2;;;;Preaggregated value obtained from single record. ; Calamagrostis canescens;40960;actual measurement;65.08819334;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;65.08819334;;;2;;;1996-08-08 00:00:00.0;; Calamagrostis epigejos;41199;actual measurement;310.7994592;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;310.7994592;;;2;;;1996-09-22 00:00:00.0;; Calamagrostis epigejos;41199;actual measurement;36.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;37.73;64.83;24.19;36.21;2;;;2003-07-16 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Calamagrostis epigejos;41199;actual measurement;427.5738294;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;427.5738294;;;2;;;1996-09-02 00:00:00.0;; Calamagrostis purpurea;40263;actual measurement (following LEDA data standards);66.22;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;66.98;88.05;47.05;66.22;1;;;2005-07-03 00:00:00.0;preaggregated value obtained from single record; Calamagrostis stricta;40265;actual measurement;98.9;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;98.51;139;52.5;98.9;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Calamagrostis villosa;40268;actual measurement (following LEDA data standards);45.76;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.76;68.08;28.76;45.76;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. ; Calamagrostis villosa;40268;actual measurement (following LEDA data standards);43.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.76;68.08;28.76;43.25;2;;;2004-06-24 00:00:00.0;preaggregated value obtained from single record; Calendula arvensis;3677;actual measurement (following LEDA data standards);40.83;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;38.49;54.85;16.9;40.83;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Calla palustris;35879;actual measurement (following LEDA data standards);268.87;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;281.2;357.63;229.44;268.87;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Calla palustris;35879;actual measurement (following LEDA data standards);489.68;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;499.98;593.74;426.81;489.68;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Callitriche hamulata;15444;actual measurement;.168;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.168;;;2;;;1996-09-24 00:00:00.0;; Callitriche hamulata;15444;actual measurement (following LEDA data standards);.31;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.32;.37;.28;.31;10;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Callitriche hamulata;15444;actual measurement (following LEDA data standards);.32;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.32;.37;.28;.32;10;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. submersed leaves; Callitriche palustris;15420;actual measurement (following LEDA data standards);.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.74;1.18;.48;.72;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. swim leaves; Callitriche palustris;15420;actual measurement (following LEDA data standards);.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.49;.69;.28;.47;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. subaqueous leaves; Callitriche platycarpa;15423;actual measurement;.541538462;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.541538462;;;2;;;1996-09-27 00:00:00.0;; Callitriche stagnalis;15424;actual measurement;.289655172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.289655172;;;2;;;1996-08-08 00:00:00.0;; Callitriche stagnalis;15424;actual measurement;.31147541;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.31147541;;;2;;;1996-06-17 00:00:00.0;; Callitriche stagnalis;15424;actual measurement (following LEDA data standards);1.85;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;1.81;2.33;1.25;1.85;2;;;;Preaggregated value obtained from single record. ; Caltha palustris;27293;actual measurement;1004.54014;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1004.54014;;;2;;;1996-08-28 00:00:00.0;; Calystegia pulchra;18975;actual measurement;450.373655;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;450.373655;;;2;;;1996-08-08 00:00:00.0;; Calystegia sepium;18945;actual measurement;90.53712121;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;90.53712121;;;2;;;1996-08-16 00:00:00.0;; Calystegia sepium;18945;actual measurement;91.23257257;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;91.23257257;;;2;;;1996-08-05 00:00:00.0;; Calystegia silvatica;18953;actual measurement;133.9542354;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;133.9542354;;;2;;;1996-07-15 00:00:00.0;; Calystegia soldanella;18962;actual measurement (following LEDA data standards);57.23;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;55.66;66.4;40.4;57.23;2;;;2005-07-26 00:00:00.0;preaggregated value obtained from single record; Camelina microcarpa;13713;actual measurement (following LEDA data standards);22.25;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.27;57.42;12;22.25;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Camelina microcarpa;13713;actual measurement (following LEDA data standards);21.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.27;57.42;12;21.11;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Campanula cervicaria;15224;laboratory/greenhouse/garden experiment;15.49;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.5;62.86;12.14;15.49;2;;;2005-06-14 00:00:00.0;preaggregated value obtained from single record; Campanula glomerata;15158;actual measurement;54.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;54.9;;;1;;;1997-09-26 00:00:00.0;; Campanula glomerata;15158;actual measurement;42.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;42.1;;;1;;;1997-09-02 00:00:00.0;; Campanula glomerata;15158;actual measurement;22.78435871;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;22.78435871;;;2;;;1996-09-27 00:00:00.0;; Campanula latifolia;15145;actual measurement;257.8748575;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;257.8748575;;;2;;;1996-06-18 00:00:00.0;; Campanula latifolia;15145;actual measurement (following LEDA data standards);79.13;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;71.86;89.63;49.8;79.13;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Campanula latifolia;15145;actual measurement (following LEDA data standards);75.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;71.86;89.63;49.8;75.5;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Campanula latifolia;15145;actual measurement (following LEDA data standards);81.34;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;76.9;95.17;54.06;81.34;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Campanula latifolia;15145;actual measurement (following LEDA data standards);85.79;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;76.9;95.17;54.06;85.79;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Campanula persicifolia;15103;actual measurement (following LEDA data standards);11.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.13;22.9;6.84;11.46;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. stem leaves; Campanula persicifolia;15103;actual measurement (following LEDA data standards);19.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.83;31.61;12.9;19.4;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. rosette leaves; Campanula rapunculoides;15082;actual measurement (following LEDA data standards);22.67;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.67;33.54;8.89;22.67;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Campanula rapunculoides;15082;actual measurement (following LEDA data standards);57.18;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;60.3;87.1;36.3;57.18;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Campanula rapunculoides;15082;actual measurement (following LEDA data standards);105;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;102.94;141.5;61.5;105;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Campanula rapunculoides;15082;actual measurement (following LEDA data standards);22.95;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.67;33.54;8.89;22.95;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Campanula rapunculoides;15082;actual measurement (following LEDA data standards);23.09;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;23.28;31.87;15.53;23.09;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Campanula rapunculoides;15082;actual measurement (following LEDA data standards);22.91;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;23.28;31.87;15.53;22.91;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Campanula rapunculus;15083;actual measurement (following LEDA data standards);7.46;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.46;11.98;3.55;7.46;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Campanula rapunculus;15083;actual measurement (following LEDA data standards);22.15;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;25;33.5;19.35;22.15;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Campanula rapunculus;15083;actual measurement (following LEDA data standards);6.57;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.46;11.98;3.55;6.57;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);3.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.7;;;;1;;;2003-03-09 00:00:00.0;Rosette leaf 1 of individual 1; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9;;;;1;;;2003-04-09 00:00:00.0;Rosette leaf 2 of individual 6; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);5.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.6;;;;1;;;2003-04-09 00:00:00.0;Rosette leaf 4 of individual 6; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);4.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.1;;;;3;;;2003-04-09 00:00:00.0;Stem leaves, part 1, of individual 6 were weighed together ; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);2.53;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;2.53;;;;4;;;2003-04-09 00:00:00.0;Stem leaves of individual 5 were weighed together ; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);3.73;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.73;;;;3;;;2003-04-09 00:00:00.0;Stem leaves, part 1, of individual 3 were weighed together ; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);4.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.1;;;;1;;;2003-04-09 00:00:00.0;Rosette leaf of individual 3; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);5.87;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.87;;;;3;;;2003-04-09 00:00:00.0;Stem leaves, part 2, of individual 3 were weighed together ; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);3.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.7;;;;1;;;2003-08-31 00:00:00.0;Rosette leaf 1 of individual 7; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);3.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.7;;;;1;;;2003-08-31 00:00:00.0;Rosette leaf 2 of individual 7; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);3.83;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.83;;;;3;;;2003-08-31 00:00:00.0;Stem leaves of individual 7 were weighed together ; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);1.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.8;;;;4;;;2003-04-09 00:00:00.0;Stem leaves of individual 4 were weighed together ; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);3.45;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.45;;;;2;;;2003-04-09 00:00:00.0;Stem leaves, part 2, of individual 6 were weighed together ; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);5.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.2;;;;1;;;2003-04-09 00:00:00.0;Rosette leaf 3 of individual 6; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);6.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.7;;;;1;;;2003-04-09 00:00:00.0;Rosette leaf 1 of individual 6; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);1.27;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.27;;;;7;;;2003-03-09 00:00:00.0;Stem leaves of individual 1 were weighed together ; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);2.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.4;;;;1;;;2003-03-09 00:00:00.0;Rosette leaf 2 of individual 1; Campanula rotundifolia;15045;actual measurement (following LEDA data standards);1.53;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.53;;;;6;;;2003-03-09 00:00:00.0;Stem leaves of individual 2 were weighed together ; Campanula rotundifolia;15045;actual measurement;1.92278481;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.92278481;;;2;;;1996-07-08 00:00:00.0;; Campanula rotundifolia;15045;actual measurement;3.922758621;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.922758621;;;2;;;1996-08-14 00:00:00.0;; Campanula sibirica;15030;actual measurement (following LEDA data standards);17.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.96;21.08;2.79;17.14;2;;;2004-09-03 00:00:00.0;preaggregated value obtained from single record; Campanula sibirica;15030;actual measurement (following LEDA data standards);16.28;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.96;21.08;2.79;16.28;2;;;2004-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Campanula trachelium;15002;actual measurement;92.24660086;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;92.24660086;;;2;;;1996-06-18 00:00:00.0;; Cannabis sativa;14695;actual measurement (following LEDA data standards);181.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;175.19;290.66;72.65;181.41;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Cannabis sativa;14695;actual measurement (following LEDA data standards);205.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;196.21;328.71;78.71;205.05;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Capsella bursa-pastoris;12848;actual measurement;27.05513678;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.05513678;;;2;;;1996-07-15 00:00:00.0;; Capsella bursa-pastoris;12848;actual measurement;74.11547111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;74.11547111;;;2;;;1996-05-21 00:00:00.0;; Capsella bursa-pastoris;12848;actual measurement;1.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;1.49;2.37;.64;1.62;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Capsella bursa-pastoris;12848;actual measurement;140.7644214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;140.7644214;;;2;;;1996-06-03 00:00:00.0;; Caragana arborescens;20788;actual measurement (following LEDA data standards);45.04;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.04;45.04;45.04;45.04;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Caragana arborescens;20788;actual measurement (following LEDA data standards);45.04;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.04;45.04;45.04;45.04;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Cardamine amara;14239;actual measurement;60.72564237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;60.72564237;;;2;;;1996-05-23 00:00:00.0;; Cardamine amara;14239;actual measurement;64.2518283;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;64.2518283;;;2;;;1996-06-03 00:00:00.0;; Cardamine amara;14239;actual measurement;21.27746056;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.27746056;;;2;;;1996-06-03 00:00:00.0;; Cardamine bulbifera;14430;laboratory/greenhouse/garden experiment;50.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;50.4;88.9;17.2;50.4;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Cardamine bulbifera;14430;laboratory/greenhouse/garden experiment;56.42;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;57.15;99.58;18.6;56.42;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Cardamine bulbifera;14430;laboratory/greenhouse/garden experiment;49.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;50.4;88.9;17.2;49.13;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Cardamine bulbifera;14430;laboratory/greenhouse/garden experiment;55.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;57.15;99.58;18.6;55.62;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Cardamine flexuosa;13294;actual measurement;12.33047046;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.33047046;;;2;;;1996-05-19 00:00:00.0;; Cardamine heptaphylla;13726;actual measurement (following LEDA data standards);700;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;741;1180;585;700;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Cardamine hirsuta;14245;actual measurement;7.824447717;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.824447717;;;2;;;1996-04-30 00:00:00.0;; Cardamine hirsuta;14245;actual measurement;9.758940397;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.758940397;;;2;;;1996-05-22 00:00:00.0;; Cardamine hirsuta;14245;actual measurement;16.06848185;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;16.06848185;;;2;;;1996-06-03 00:00:00.0;; Cardamine impatiens;13298;actual measurement;7.080032733;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.080032733;;;2;;;1996-06-18 00:00:00.0;; Cardamine parviflora;14444;actual measurement (following LEDA data standards);2.36;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.36;3.77;1.08;2.36;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Cardamine parviflora;14444;actual measurement (following LEDA data standards);2.03;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.36;3.77;1.08;2.03;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Cardamine parviflora;14444;actual measurement (following LEDA data standards);2.91;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.87;4.24;1.71;2.91;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Cardamine parviflora;14444;actual measurement (following LEDA data standards);2.94;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.87;4.24;1.71;2.94;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Cardamine pratensis;14249;actual measurement;38.96752706;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;38.96752706;;;2;;;1996-06-17 00:00:00.0;; Cardamine pratensis;14249;actual measurement;80.63810233;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;80.63810233;;;2;;;1996-08-14 00:00:00.0;; Cardaminopsis arenosa;14130;actual measurement (following LEDA data standards);7.19;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.07;12.32;4.51;7.19;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Cardaminopsis arenosa;14130;actual measurement (following LEDA data standards);8.23;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.25;10.78;5.75;8.23;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Cardaminopsis arenosa;14130;actual measurement (following LEDA data standards);1.34;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.65;2.96;.58;1.34;2;;;2004-04-23 00:00:00.0;preaggregated value obtained from single record; Cardaminopsis arenosa;14130;actual measurement (following LEDA data standards);1.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.65;2.96;.58;1.5;2;;;2004-04-23 00:00:00.0;Preaggregated value obtained from single record. determinated as Cardaminopsis arenosa ssp. borbasii; Cardaminopsis halleri;14132;actual measurement (following LEDA data standards);7.09;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.33;19.25;4.9;7.09;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. ; Cardaminopsis halleri;14132;actual measurement (following LEDA data standards);6.55;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.33;19.25;4.9;6.55;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Cardaminopsis halleri;14132;actual measurement (following LEDA data standards);5.63;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;6.89;16.82;3.04;5.63;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. ; Cardaminopsis halleri;14132;actual measurement (following LEDA data standards);5.6;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;6.89;16.82;3.04;5.6;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Cardaminopsis petraea;13735;actual measurement (following LEDA data standards);1.52;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.62;2.88;.85;1.52;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. rosette leaves; Cardaminopsis petraea;13735;actual measurement (following LEDA data standards);1.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.62;2.88;.85;1.49;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Cardaria draba;13313;actual measurement;43.02934443;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;43.02934443;;;2;;;1996-08-08 00:00:00.0;; Cardaria draba;13313;actual measurement;81.36504119;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;81.36504119;;;2;;;1996-05-30 00:00:00.0;; Cardaria draba;13313;actual measurement;46.15342838;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;46.15342838;;;2;;;1996-06-25 00:00:00.0;; Carduus acanthoides;3326;actual measurement;661.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;661.5;;;1;;;1997-09-29 00:00:00.0;; Carduus acanthoides;3326;actual measurement (following LEDA data standards);157.74;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;159.92;251.02;82.79;157.74;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Carduus acanthoides;3326;actual measurement (following LEDA data standards);158.83;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;159.92;251.02;82.79;158.83;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Carduus crispus;2731;actual measurement;233.3571429;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;233.3571429;;;2;;;1996-06-18 00:00:00.0;; Carduus defloratus;3164;actual measurement (following LEDA data standards);242.32;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;227.66;329.02;104.17;242.32;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Carduus defloratus;3164;actual measurement (following LEDA data standards);256.99;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;227.66;329.02;104.17;256.99;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Carduus nutans;3493;actual measurement;222.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;222.6;;;2;;;1996-08-08 00:00:00.0;; Carduus nutans;3493;actual measurement;345.0358251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;345.0358251;;;2;;;1996-09-02 00:00:00.0;; Carduus nutans;3493;actual measurement;292.8607843;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;292.8607843;;;2;;;1996-09-09 00:00:00.0;; Carex acuta;38000;actual measurement (following LEDA data standards);132.83;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;134.94;201.7;91.71;132.83;2;;;;Preaggregated value obtained from single record. ; Carex acutiformis;37460;actual measurement;426.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;426.6;;;2;;;1996-08-16 00:00:00.0;; Carex acutiformis;37460;actual measurement (following LEDA data standards);434.8;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;428.42;502.35;316;434.8;2;;;;Preaggregated value obtained from single record. ; Carex alba;37462;actual measurement (following LEDA data standards);5.71;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.71;10.12;2.47;5.71;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Carex alba;37462;actual measurement (following LEDA data standards);5.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.71;10.12;2.47;5.16;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Carex appropinquata;37464;actual measurement (following LEDA data standards);29.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34.4;72.67;18.37;29.13;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Carex appropinquata;37464;actual measurement (following LEDA data standards);38.18;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;43.13;62.55;31;38.18;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Carex aquatilis;38015;actual measurement (following LEDA data standards);165.23;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;165.23;248.37;77.82;165.23;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Carex aquatilis;38015;actual measurement (following LEDA data standards);156.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;165.23;248.37;77.82;156.44;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Carex arenaria;38017;actual measurement;78.48370636;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;78.48370636;;;2;;;1996-08-24 00:00:00.0;; Carex arenaria;38017;actual measurement;69.7;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;70.8;96.2;52.5;69.7;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Carex arenaria;38017;actual measurement;23.58220779;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.58220779;;;2;;;1996-06-18 00:00:00.0;; Carex atrata;37469;actual measurement (following LEDA data standards);27.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;27.8;;;;1;;;2003-08-31 00:00:00.0;; Carex atrata;37469;actual measurement (following LEDA data standards);17.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;17.2;;;;1;;;2003-08-31 00:00:00.0;; Carex atrata;37469;actual measurement (following LEDA data standards);25.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;25.9;;;;1;;;2003-08-31 00:00:00.0;; Carex atrofusca;37347;actual measurement (following LEDA data standards);5.2;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;5.32;8.8;3.55;5.2;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Carex bigelowii;37350;actual measurement (following LEDA data standards);26.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;26.1;;;;1;;;2003-04-09 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);53;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;53;;;;1;;;2003-04-09 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);33.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;33.6;;;;1;;;2003-04-09 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);33.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;33.8;;;;1;;;2003-08-21 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);45.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;45.5;;;;1;;;2003-04-09 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);14.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;14.8;;;;1;;;2003-08-20 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);17.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;17.9;;;;1;;;2003-08-20 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);19.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;19.8;;;;1;;;2003-08-20 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);16.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;16.1;;;;1;;;2003-08-21 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);20;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;20;;;;1;;;2003-08-21 00:00:00.0;; Carex bigelowii;37350;actual measurement (following LEDA data standards);34.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;34.5;;;;1;;;2003-08-21 00:00:00.0;; Carex brizoides;37356;actual measurement (following LEDA data standards);48.23;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;47.35;66.69;22.32;48.23;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Carex brizoides;37356;actual measurement (following LEDA data standards);50.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;47.35;66.69;22.32;50.26;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Carex buxbaumii;37932;actual measurement (following LEDA data standards);392.25;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;402.95;665;157.5;392.25;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Carex capillaris;37936;actual measurement (following LEDA data standards);2.52;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;2.59;3.5;1.65;2.52;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Carex caryophyllea;37362;actual measurement;9.48957476;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.48957476;;;2;;;;; Carex caryophyllea;37362;actual measurement;23.69771755;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.69771755;;;2;;;;; Carex cespitosa;37943;actual measurement (following LEDA data standards);37.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;41.72;73.46;15.39;37.43;2;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Carex cespitosa;37943;actual measurement (following LEDA data standards);154.2;7;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;162.08;256.95;120.15;154.2;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Carex chordorrhiza;37947;actual measurement (following LEDA data standards);4.92;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.92;6.13;3.7;4.92;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Carex curta;37950;actual measurement;17.54731951;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.54731951;;;2;;;1996-06-10 00:00:00.0;; Carex curta;37950;actual measurement (following LEDA data standards);12.94;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;12.75;19.71;5.1;12.94;2;;;;Preaggregated value obtained from single record. ; Carex davalliana;37956;actual measurement (following LEDA data standards);7.51;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.4;12.76;1.87;7.51;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Carex demissa;37374;actual measurement;42.45675413;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;42.45675413;;;2;;;1996-09-09 00:00:00.0;; Carex demissa;37374;actual measurement (following LEDA data standards);6.41;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.15;10.81;3.98;6.41;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Carex demissa;37374;actual measurement (following LEDA data standards);6.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.15;10.81;3.98;6.32;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Carex demissa;37374;actual measurement;14.9617737;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.9617737;;;2;;;1996-06-18 00:00:00.0;; Carex digitata;37970;actual measurement;13.75582565;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.75582565;;;2;;;1996-07-15 00:00:00.0;; Carex digitata;37970;actual measurement (following LEDA data standards);17.55;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;21.65;35.16;16.56;17.55;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Carex dioica;37381;actual measurement;5.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.4;;;1;;;1997-06-13 00:00:00.0;; Carex dioica;37381;actual measurement (following LEDA data standards);.9;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.04;1.65;.5;.9;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Carex dioica;37381;actual measurement (following LEDA data standards);1.83;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2.66;5.87;1.07;1.83;2;;;2005-06-14 00:00:00.0;preaggregated value obtained from single record; Carex distans;37979;actual measurement (following LEDA data standards);12.7;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.48;37.15;8.07;12.7;1;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Carex distans;37979;actual measurement (following LEDA data standards);14.26;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.63;21.89;7.8;14.26;2;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. ; Carex distans;37979;actual measurement (following LEDA data standards);13.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.63;21.89;7.8;13.67;2;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Carex disticha;37982;actual measurement;34.65;14;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;35.41;47.09;25.53;34.65;2;;;2003-06-05 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Carex divulsa;37393;actual measurement;42.36;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;42.36;;;1;;;1997-09-13 00:00:00.0;; Carex divulsa subsp. leersii;36954;actual measurement (following LEDA data standards);30.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32;40.41;25.66;30.8;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Carex divulsa subsp. leersii;36954;actual measurement (following LEDA data standards);32;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32;40.41;25.66;32;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Carex echinata;37888;actual measurement;8.481521739;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.481521739;;;2;;;1996-08-28 00:00:00.0;; Carex echinata;37888;actual measurement;22.26666667;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;22.26666667;;;2;;;1996-09-09 00:00:00.0;; Carex elata;37396;actual measurement (following LEDA data standards);280.38;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;311.11;568.9;152.68;280.38;2;;;;Preaggregated value obtained from single record. ; Carex elongata;37397;actual measurement (following LEDA data standards);29.38;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.72;31.8;17.19;29.38;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Carex extensa;37399;actual measurement (following LEDA data standards);11.57;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.75;20.28;6.46;11.57;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Carex extensa;37399;actual measurement (following LEDA data standards);11.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.75;20.28;6.46;11.47;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Carex flacca;37912;actual measurement;30.25710605;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;30.25710605;;;2;;;1996-06-18 00:00:00.0;; Carex flacca;37912;actual measurement;52.26866883;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;52.26866883;;;2;;;1996-08-16 00:00:00.0;; Carex flacca;37912;actual measurement (following LEDA data standards);46.25;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;46.29;75.9;18.4;46.25;2;;;;Preaggregated value obtained from single record. ; Carex flacca;37912;actual measurement;10.62;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;11.69;17.95;7.27;10.62;2;;;2003-06-23 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Carex flava;37404;actual measurement (following LEDA data standards);17.68;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.68;41.81;5.37;17.68;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Carex flava;37404;actual measurement (following LEDA data standards);14.69;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.68;41.81;5.37;14.69;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Carex frigida;37406;actual measurement (following LEDA data standards);9.66;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.1;34.11;4.94;9.66;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. #1: ground leaves, rest stem leaves; Carex frigida;37406;actual measurement (following LEDA data standards);9.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.1;34.11;4.94;9.34;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Carex hirta;37296;actual measurement;46.53615541;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;46.53615541;;;2;;;1996-08-16 00:00:00.0;; Carex hirta;37296;actual measurement;11.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;12.17;17.4;7.29;11.24;2;;;2003-06-04 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Carex hirta;37296;actual measurement (following LEDA data standards);29.25;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;27.29;35.7;9.75;29.25;2;;;;Preaggregated value obtained from single record. ; Carex hirta;37296;actual measurement;149.029963;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;149.029963;;;2;;;1996-08-08 00:00:00.0;; Carex hirta;37296;actual measurement;138.0770526;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;138.0770526;;;2;;;1996-08-28 00:00:00.0;; Carex hostiana;37300;actual measurement (following LEDA data standards);7.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.23;10.21;4.56;7.15;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Carex humilis;37847;actual measurement (following LEDA data standards);6.32;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.33;10.52;3.18;6.32;2;;;2004-04-21 00:00:00.0;Preaggregated value obtained from single record. ; Carex humilis;37847;actual measurement (following LEDA data standards);6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.33;10.52;3.18;6;2;;;2004-04-21 00:00:00.0;preaggregated value obtained from single record; Carex laevigata;37865;actual measurement;157.450896;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;157.450896;;;2;;;1996-09-09 00:00:00.0;; Carex laevigata;37865;actual measurement;277.5600336;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;277.5600336;;;2;;;1996-09-24 00:00:00.0;; Carex lasiocarpa;37319;actual measurement (following LEDA data standards);59.08;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;60.81;103.28;30;59.08;2;;;;Preaggregated value obtained from single record. ; Carex lasiocarpa;37319;actual measurement (following LEDA data standards);111.47;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;120.56;168.35;85.5;111.47;1;;;2003-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Carex lasiocarpa;37319;actual measurement (following LEDA data standards);63.96;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;61.81;83.96;30.88;63.96;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Carex lepidocarpa;37871;actual measurement;42.18726994;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;42.18726994;;;2;;;1996-09-23 00:00:00.0;; Carex lepidocarpa;37871;actual measurement;45.1119403;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;45.1119403;;;2;;;1996-08-28 00:00:00.0;; Carex ligerica;37874;actual measurement (following LEDA data standards);16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.15;24.07;13.12;16;2;;;2005-06-17 00:00:00.0;preaggregated value obtained from single record; Carex limosa;37761;actual measurement (following LEDA data standards);3.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.45;6.02;1.16;3.41;1;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Carex magellanica;37333;actual measurement (following LEDA data standards);8.82;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.58;10.31;7.09;8.82;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Carex magellanica;37333;actual measurement (following LEDA data standards);8.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.58;10.31;7.09;8.83;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Carex montana;37346;actual measurement;10.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.7;;;2;;;1996-09-27 00:00:00.0;; Carex montana;37346;actual measurement (following LEDA data standards);12.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.18;18.52;9.85;12.98;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Carex muricata;37224;actual measurement;25;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25;;;1;;;1997-05-29 00:00:00.0;; Carex muricata;37224;actual measurement;21.53796889;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.53796889;;;2;;;1996-08-08 00:00:00.0;; Carex nigra;37228;actual measurement;8.57;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;9.24;13.4;5.53;8.57;2;;;2003-06-27 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Carex nigra;37228;actual measurement (following LEDA data standards);9.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;9.7;;;;1;;;2003-08-21 00:00:00.0;; Carex nigra;37228;actual measurement (following LEDA data standards);8.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;8.5;;;;1;;;2003-08-21 00:00:00.0;; Carex nigra;37228;actual measurement (following LEDA data standards);5.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;5.8;;;;2;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Carex nigra;37228;actual measurement (following LEDA data standards);50.79;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;53.38;78.9;24.5;50.79;2;;;;Preaggregated value obtained from single record. ; Carex norvegica;37233;actual measurement (following LEDA data standards);7.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;7.6;;;;2;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Carex norvegica;37233;actual measurement (following LEDA data standards);6.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.4;;;;2;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Carex norvegica;37233;actual measurement (following LEDA data standards);6.38;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;7.04;14.45;3.7;6.38;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Carex norvegica;37233;actual measurement (following LEDA data standards);6.25;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;6.25;;;;2;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Carex ornithopoda;37237;actual measurement (following LEDA data standards);18.7;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.7;23.35;13.12;18.7;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Carex ornithopoda;37237;actual measurement (following LEDA data standards);19.16;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.7;23.35;13.12;19.16;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Carex otrubae;37711;actual measurement;128.3390085;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;128.3390085;;;2;;;1996-08-31 00:00:00.0;; Carex ovalis;37242;actual measurement;21.84486572;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.84486572;;;2;;;1996-09-24 00:00:00.0;; Carex pallescens;37247;actual measurement (following LEDA data standards);14.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.48;28.82;9.74;14.01;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Carex pallescens;37247;actual measurement (following LEDA data standards);15.26;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.48;28.82;9.74;15.26;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Carex panicea;37248;actual measurement;39.85356371;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;39.85356371;;;2;;;1996-08-08 00:00:00.0;; Carex panicea;37248;actual measurement;4.27;16;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;5.48;18.64;2.32;4.27;2;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Carex paniculata;37249;actual measurement;409.815286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;409.815286;;;2;;;1996-08-08 00:00:00.0;; Carex paniculata;37249;actual measurement (following LEDA data standards);173.19;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;171.14;254;60.2;173.19;2;;;;Preaggregated value obtained from single record. ; Carex pauciflora;37251;actual measurement (following LEDA data standards);2.02;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.01;2.56;1.32;2.02;1;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Carex pauciflora;37251;actual measurement (following LEDA data standards);3.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.2;4.31;2.44;3.2;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Carex pauciflora;37251;actual measurement (following LEDA data standards);3.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.2;4.31;2.44;3.14;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Carex pendula;37253;actual measurement;1373.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1373.5;;;1;;;1997-09-01 00:00:00.0;; Carex pendula;37253;actual measurement;685.7797446;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;685.7797446;;;2;;;1996-06-18 00:00:00.0;; Carex pilosa;37256;actual measurement (following LEDA data standards);178.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;175.99;244.95;59.67;178.25;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Carex pilosa;37256;actual measurement (following LEDA data standards);179.5;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;175.99;244.95;59.67;179.5;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Carex pilulifera;37739;actual measurement;10.26045949;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.26045949;;;2;;;1996-06-10 00:00:00.0;; Carex pseudocyperus;37263;actual measurement (following LEDA data standards);157.67;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;151.3;259.25;59.65;157.67;2;;;;Preaggregated value obtained from single record. ; Carex pulicaris;37751;actual measurement;25.21052632;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25.21052632;;;2;;;1996-08-29 00:00:00.0;; Carex pulicaris;37751;actual measurement (following LEDA data standards);4.66;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.91;7.42;3.8;4.66;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Carex punctata;37752;actual measurement (following LEDA data standards);27.08;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;28.64;45;13.6;27.08;2;;;2005-07-05 00:00:00.0;preaggregated value obtained from single record; Carex remota;37756;actual measurement;7.71684492;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.71684492;;;2;;;1996-06-18 00:00:00.0;; Carex remota;37756;actual measurement;17.91185372;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.91185372;;;2;;;1996-08-16 00:00:00.0;; Carex riparia;37273;actual measurement;1839.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1839.2;;;2;;;1996-09-27 00:00:00.0;; Carex riparia;37273;actual measurement (following LEDA data standards);534.83;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;592.52;922.75;352.95;534.83;2;;;;Preaggregated value obtained from single record. ; Carex rostrata;37274;actual measurement (following LEDA data standards);100.2;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;108.65;168.9;65.06;100.2;2;;;;Preaggregated value obtained from single record. ; Carex rostrata;37274;actual measurement (following LEDA data standards);86.24;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;86.24;129.25;56.11;86.24;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Carex rostrata;37274;actual measurement (following LEDA data standards);69.05;12;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;76.68;132.2;34.8;69.05;1;;;2003-09-06 00:00:00.0;preaggregated value obtained from single record; Carex rostrata;37274;actual measurement (following LEDA data standards);63.75;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;63.9;78;48.5;63.75;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Carex rostrata;37274;actual measurement (following LEDA data standards);56.75;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;61.68;86.85;46.15;56.75;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Carex rostrata;37274;actual measurement (following LEDA data standards);84.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;86.24;129.25;56.11;84.9;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Carex rupestris;37277;actual measurement (following LEDA data standards);3.05;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;2.94;3.8;1.65;3.05;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Carex saxatilis;37653;actual measurement (following LEDA data standards);36.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;36.4;;;;1;;;2003-03-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);48.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;48.1;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);34.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;34.3;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);15.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;15.2;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);36.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;36.5;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);22.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;22.4;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);15.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;15.4;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);26.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;26.1;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);12.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;12.9;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);20.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;20.5;;;;1;;;2003-02-09 00:00:00.0;; Carex saxatilis;37653;actual measurement (following LEDA data standards);36.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;36.1;;;;1;;;2003-02-09 00:00:00.0;; Carex scandinavica;37016;actual measurement (following LEDA data standards);38.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;38.21;64;15.84;38.91;1;;;2003-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Carex spicata;37285;actual measurement;24.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.8;;;1;;;1997-07-14 00:00:00.0;; Carex spicata;37285;actual measurement (following LEDA data standards);13.34;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;13.99;19.5;9.12;13.34;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Carex spicata;37285;actual measurement (following LEDA data standards);10.73;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;10.46;14.33;6.2;10.73;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Carex strigosa;37674;actual measurement;108.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;108.5;;;1;;;1997-06-06 00:00:00.0;; Carex strigosa;37674;actual measurement (following LEDA data standards);43.51;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;41.89;53.33;28.49;43.51;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Carex sylvatica;37678;actual measurement;29.75434925;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.75434925;;;2;;;1996-07-08 00:00:00.0;; Carex tomentosa;37173;actual measurement (following LEDA data standards);25.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.97;36.01;13.78;25.63;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Carex trinervis;37174;actual measurement (following LEDA data standards);27.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.61;43.45;12.3;27.61;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Carex trinervis;37174;actual measurement (following LEDA data standards);94.33;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;103.98;143.75;82.5;94.33;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Carex trinervis;37174;actual measurement (following LEDA data standards);26.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.61;43.45;12.3;26.54;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Carex umbrosa;37688;actual measurement (following LEDA data standards);24.97;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.97;32.5;17.68;24.97;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. three samples of each tussock; Carex umbrosa;37688;actual measurement (following LEDA data standards);24.01;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.97;32.5;17.68;24.01;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Carex vaginata;37695;actual measurement (following LEDA data standards);10.1;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;19.98;117.3;4.75;10.1;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Carex vesicaria;37183;actual measurement (following LEDA data standards);99.85;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;125.62;260.5;48.85;99.85;2;;;;Preaggregated value obtained from single record. ; Carex vulpina;37185;actual measurement (following LEDA data standards);110.7;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;120.72;265.75;51.3;110.7;2;;;;Preaggregated value obtained from single record. ; Carex vulpina;37185;actual measurement (following LEDA data standards);98.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;92.71;141.49;46.17;98.38;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Carex vulpina;37185;actual measurement (following LEDA data standards);92.71;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;92.71;141.49;46.17;92.71;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Carlina acaulis;3171;actual measurement (following LEDA data standards);342.3;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;342.3;499.3;233.63;342.3;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Carlina acaulis;3171;actual measurement (following LEDA data standards);340.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;342.3;499.3;233.63;340.45;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Carlina acaulis;3171;actual measurement (following LEDA data standards);436.91;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;436.91;629.08;287.68;436.91;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Carlina acaulis;3171;actual measurement (following LEDA data standards);446.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;436.91;629.08;287.68;446.28;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Carlina vulgaris;3338;actual measurement (following LEDA data standards);20.2;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;20.85;27.75;13.25;20.2;2;;;2005-06-07 00:00:00.0;preaggregated value obtained from single record; Carlina vulgaris s. vulgaris;2945;actual measurement;17.45520581;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.45520581;;;2;;;1996-09-02 00:00:00.0;; Carlina vulgaris s. vulgaris;2945;actual measurement;26.8185766;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.8185766;;;2;;;1996-09-09 00:00:00.0;; Carpinus betulus;17990;actual measurement (following LEDA data standards);61.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;62.97;112.69;33.93;61.59;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Carpinus betulus;17990;actual measurement (following LEDA data standards);62.97;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;62.97;112.69;33.93;62.97;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Carpinus betulus;17990;actual measurement (following LEDA data standards);63.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.15;114.69;34.9;63.01;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Carpinus betulus;17990;actual measurement (following LEDA data standards);64.15;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.15;114.69;34.9;64.15;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Carthamus tinctorius;3822;laboratory/greenhouse/garden experiment;136.45;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;136.45;136.45;136.45;136.45;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Carthamus tinctorius;3822;laboratory/greenhouse/garden experiment;136.45;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;136.45;136.45;136.45;136.45;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Carum carvi;2331;actual measurement (following LEDA data standards);50.88;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.84;95.98;31.38;50.88;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Carum carvi;2331;actual measurement (following LEDA data standards);50.18;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.84;95.98;31.38;50.18;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Catabrosa aquatica;41695;actual measurement;7.31275395;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.31275395;;;2;;;1996-08-08 00:00:00.0;; Catabrosa aquatica;41695;actual measurement;15.90926966;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.90926966;;;2;;;1996-07-08 00:00:00.0;; Centaurea calcitrapa;2960;laboratory/greenhouse/garden experiment;73.14;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;73.14;73.14;73.14;73.14;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Centaurea cyanus;3132;actual measurement;8.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.5;;;1;;;1997-09-13 00:00:00.0;; Centaurea cyanus;3132;laboratory/greenhouse/garden experiment;44.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.97;109.05;7.85;44.12;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Centaurea cyanus;3132;laboratory/greenhouse/garden experiment;48.23;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.97;109.05;7.85;48.23;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Centaurea diffusa;6142;actual measurement (following LEDA data standards);1.82;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.95;2.83;1.33;1.82;3;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Centaurea diffusa;6142;actual measurement (following LEDA data standards);1.71;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.95;2.83;1.33;1.71;3;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Centaurea diffusa;6142;actual measurement (following LEDA data standards);28.68;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;31.38;52.01;18.59;28.68;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Centaurea diffusa;6142;actual measurement (following LEDA data standards);28.32;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;31.38;52.01;18.59;28.32;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Centaurea montana;2682;actual measurement;100.8953603;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;100.8953603;;;2;;;1996-06-10 00:00:00.0;; Centaurea nigra;3754;actual measurement;81.60453552;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;81.60453552;;;2;;;1996-08-08 00:00:00.0;; Centaurea nigra;3754;actual measurement;225.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;225.9;;;2;;;;; Centaurea nigra;3754;actual measurement;90.46748081;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;90.46748081;;;2;;;;; Centaurea phrygia subsp. pseudophrygia;3702;actual measurement (following LEDA data standards);162.29;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;174.61;347.13;99.62;162.29;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Centaurea phrygia subsp. pseudophrygia;3702;actual measurement (following LEDA data standards);133.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;170.82;407.06;72.84;133.86;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Centaurea phrygia subsp. pseudophrygia;3702;actual measurement (following LEDA data standards);160;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;174.61;347.13;99.62;160;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Centaurea phrygia subsp. pseudophrygia;3702;actual measurement (following LEDA data standards);137.41;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;170.82;407.06;72.84;137.41;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Centaurea scabiosa;3597;actual measurement;210.1955751;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;210.1955751;;;2;;;1996-08-08 00:00:00.0;; Centaurea solstitialis;3444;laboratory/greenhouse/garden experiment;36.11;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.6;44;21.06;36.11;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Centaurea solstitialis;3444;laboratory/greenhouse/garden experiment;36.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.6;44;21.06;36.12;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Centaurea stoebe s.lat.;60957;actual measurement (following LEDA data standards);11.86;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.16;28.1;5.52;11.86;2;;;2004-09-11 00:00:00.0;Preaggregated value obtained from single record. ; Centaurea stoebe s.lat.;60957;actual measurement (following LEDA data standards);11.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.16;28.1;5.52;11.42;2;;;2004-09-11 00:00:00.0;preaggregated value obtained from single record; Centaurea stoebe s.lat.;60957;actual measurement (following LEDA data standards);13.11;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.36;30.86;5.83;13.11;2;;;2004-09-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Centaurea stoebe s.lat.;60957;actual measurement (following LEDA data standards);57.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.4;92.3;33.09;57.14;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Centaurea stoebe s.lat.;60957;actual measurement (following LEDA data standards);59.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.4;92.3;33.09;59.2;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Centaurea stoebe s.lat.;60957;actual measurement (following LEDA data standards);12.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.36;30.86;5.83;12.5;2;;;2004-09-11 00:00:00.0;preaggregated value obtained from single record; Centaurium erythraea;22963;actual measurement;8.200772201;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.200772201;;;2;;;1996-08-08 00:00:00.0;; Centaurium erythraea;22963;actual measurement;21.83323572;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.83323572;;;2;;;1996-07-08 00:00:00.0;; Centaurium erythraea;22963;actual measurement (following LEDA data standards);5.7;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.12;7.44;2.47;5.7;1;;;;Preaggregated value obtained from single record. ; Centaurium littorale;22951;actual measurement (following LEDA data standards);1.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.07;4.19;.97;1.72;1;;;2003-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Centaurium littorale;22951;actual measurement (following LEDA data standards);.9;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.91;1.29;.56;.9;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Centaurium pulchellum;22823;actual measurement (following LEDA data standards);.25;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.35;.53;.2;.25;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Centranthus ruber;34865;actual measurement;178.1422933;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;178.1422933;;;2;;;1996-07-08 00:00:00.0;; Centranthus ruber;34865;actual measurement (following LEDA data standards);104.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;108.4;142.22;78.27;104.56;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Centranthus ruber;34865;actual measurement (following LEDA data standards);108.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;108.4;142.22;78.27;108.4;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Cephalanthera damasonium;39459;actual measurement (following LEDA data standards);59.12;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;62.18;76.6;53.89;59.12;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cephalanthera damasonium;39459;actual measurement (following LEDA data standards);50.63;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.13;50.82;36.95;50.63;1;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Cephalanthera damasonium;39459;actual measurement (following LEDA data standards);56.05;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;62.18;76.6;53.89;56.05;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Cephalanthera longifolia;39466;actual measurement (following LEDA data standards);57.41;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;57.41;57.41;57.41;57.41;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Cephalanthera longifolia;39466;actual measurement (following LEDA data standards);46.85;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;48.77;81.55;22.45;46.85;2;;;2005-06-07 00:00:00.0;preaggregated value obtained from single record; Cephalanthera longifolia;39466;actual measurement (following LEDA data standards);57.41;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;57.41;57.41;57.41;57.41;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Cephalanthera longifolia;39466;actual measurement (following LEDA data standards);41.5;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;40.84;58.3;25;41.5;1;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Cerastium alpinum;16895;actual measurement (following LEDA data standards);1.73;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.72;2.75;1.1;1.73;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Cerastium arvense;16782;actual measurement;1.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;1.1;1.5;.51;1.19;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Cerastium cerastoides;17207;actual measurement (following LEDA data standards);.24;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.24;;;;14;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Cerastium cerastoides;17207;actual measurement (following LEDA data standards);1.08;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.09;1.5;.65;1.08;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Cerastium cerastoides;17207;actual measurement (following LEDA data standards);.44;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.44;;;;8;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Cerastium cerastoides;17207;actual measurement (following LEDA data standards);.54;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.54;;;;8;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Cerastium cerastoides;17207;actual measurement (following LEDA data standards);.44;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.44;;;;9;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Cerastium diffusum;16473;actual measurement;2.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.1;;;1;;;1997-08-24 00:00:00.0;; Cerastium diffusum;16473;actual measurement;.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.7;;;1;;;1997-07-27 00:00:00.0;; Cerastium diffusum;16473;actual measurement;.732857143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.732857143;;;2;;;1996-06-03 00:00:00.0;; Cerastium fontanum;16798;actual measurement;5.874730022;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.874730022;;;2;;;;; Cerastium fontanum;16798;actual measurement;9.678125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.678125;;;2;;;1996-06-10 00:00:00.0;; Cerastium fontanum s. vulgare;44993;actual measurement (following LEDA data standards);.5;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.93;2;.3;.5;1;;;2003-07-21 00:00:00.0;Preaggregated value obtained from single record. ; Cerastium glomeratum;17356;actual measurement;6.653114754;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.653114754;;;2;;;1996-05-21 00:00:00.0;; Cerastium glomeratum;17356;actual measurement;1.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;2.3;6.19;.76;1.76;2;;;2003-06-11 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Cerastium glomeratum;17356;actual measurement;11.24114889;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.24114889;;;2;;;1996-05-21 00:00:00.0;; Cerastium glomeratum;17356;actual measurement;8.046259843;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.046259843;;;2;;;1996-05-23 00:00:00.0;; Cerastium pumilum;16863;actual measurement (following LEDA data standards);.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.8;1.63;.11;.71;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Cerastium pumilum;16863;actual measurement (following LEDA data standards);.8;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.8;1.63;.11;.8;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cerastium semidecandrum;15651;actual measurement;1.431210191;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.431210191;;;2;;;1996-05-23 00:00:00.0;; Cerastium semidecandrum;15651;actual measurement;2.062093863;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.062093863;;;2;;;1996-05-23 00:00:00.0;; Cerastium semidecandrum;15651;actual measurement;1.432044199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.432044199;;;2;;;1996-06-03 00:00:00.0;; Cerastium tomentosum;16387;actual measurement (following LEDA data standards);7.45;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;7.26;10.32;4.38;7.45;2;;;2005-06-15 00:00:00.0;preaggregated value obtained from single record; Ceratocapnos claviculata;45620;actual measurement (following LEDA data standards);341;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;350.42;450.5;266.5;341;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Ceratocapnos claviculata;45620;actual measurement (following LEDA data standards);382.28;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;382.28;472.5;284.18;382.28;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Ceratocapnos claviculata;45620;actual measurement (following LEDA data standards);381.75;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;382.28;472.5;284.18;381.75;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Ceratocapnos claviculata;45620;actual measurement (following LEDA data standards);336.75;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;350.42;450.5;266.5;336.75;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Ceratophyllum demersum;17691;actual measurement;.564935065;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.564935065;;;2;;;1996-09-09 00:00:00.0;; Ceratophyllum demersum;17691;actual measurement;.807058824;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.807058824;;;2;;;1996-09-27 00:00:00.0;; Ceratophyllum demersum;17691;actual measurement (following LEDA data standards);7.58;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;8.02;12.2;2.65;7.58;2;;;;Preaggregated value obtained from single record. ; Chaenorhinum minus;33202;actual measurement;3.484419263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.484419263;;;2;;;1996-07-08 00:00:00.0;; Chaenorhinum minus;33202;actual measurement;6.42;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.42;;;2;;;1996-08-08 00:00:00.0;; Chaenorhinum minus;33202;actual measurement;5.472327044;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.472327044;;;2;;;1996-08-08 00:00:00.0;; Chaenorhinum minus;33202;actual measurement (following LEDA data standards);.96;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.92;1.11;.66;.96;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Chaenorhinum minus;33202;actual measurement (following LEDA data standards);.96;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.92;1.11;.66;.96;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Chaerophyllum bulbosum;1394;laboratory/greenhouse/garden experiment;477.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;564.63;1102.66;325.31;477.82;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Chaerophyllum hirsutum;1398;actual measurement (following LEDA data standards);616.52;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;614.39;811.53;425.81;616.52;2;;;2004-05-15 00:00:00.0;Preaggregated value obtained from single record. ; Chaerophyllum hirsutum;1398;actual measurement (following LEDA data standards);1001.98;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;998.18;1247.95;847.89;1001.98;2;;;2004-05-15 00:00:00.0;Preaggregated value obtained from single record. ; Chaerophyllum hirsutum;1398;actual measurement (following LEDA data standards);1005.77;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;998.18;1247.95;847.89;1005.77;2;;;2004-05-15 00:00:00.0;preaggregated value obtained from single record; Chaerophyllum hirsutum;1398;actual measurement (following LEDA data standards);618.65;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;614.39;811.53;425.81;618.65;2;;;2004-05-15 00:00:00.0;preaggregated value obtained from single record; Chaerophyllum temulum;59605;actual measurement;783.1828877;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;783.1828877;;;2;;;1996-06-18 00:00:00.0;; Chamomilla recutita;5994;actual measurement;5.6875;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.6875;;;2;;;1996-07-15 00:00:00.0;; Chamomilla recutita;5994;actual measurement;12.07741935;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.07741935;;;2;;;1996-08-16 00:00:00.0;; Chamomilla recutita;5994;actual measurement;15.07556904;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.07556904;;;2;;;1996-06-19 00:00:00.0;; Chamomilla suaveolens;5904;actual measurement;12.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.5;;;2;;;1996-06-10 00:00:00.0;; Chamomilla suaveolens;5904;actual measurement;14.775;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.775;;;2;;;1996-05-22 00:00:00.0;; Chelidonium majus;25435;actual measurement;221.1578463;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;221.1578463;;;2;;;1996-06-03 00:00:00.0;; Chelidonium majus;25435;actual measurement;259.137818;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;259.137818;;;2;;;1996-05-19 00:00:00.0;; Chenopodium album;17842;actual measurement;98.49005236;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;98.49005236;;;2;;;1996-08-08 00:00:00.0;; Chenopodium album;17842;actual measurement;101.6136812;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;101.6136812;;;2;;;1996-08-16 00:00:00.0;; Chenopodium album;17842;actual measurement;245.5440415;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;245.5440415;;;2;;;1996-07-03 00:00:00.0;; Chenopodium ambrosioides;17719;laboratory/greenhouse/garden experiment;41.07;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.38;59.17;25.41;41.07;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Chenopodium ambrosioides;17719;laboratory/greenhouse/garden experiment;40.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.38;59.17;25.41;40.6;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Chenopodium bonus-henricus;17724;actual measurement (following LEDA data standards);122;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;134.47;257.03;81.2;122;1;;;2003-06-20 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium bonus-henricus;17724;actual measurement;322;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;322;;;1;;;1997-06-26 00:00:00.0;; Chenopodium bonus-henricus;17724;actual measurement (following LEDA data standards);108.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.3;210.08;72.32;108.59;1;;;2003-06-20 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium ficifolium;17866;actual measurement;64.25171171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;64.25171171;;;2;;;1996-07-03 00:00:00.0;; Chenopodium ficifolium;17866;actual measurement (following LEDA data standards);43.77;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;51.81;72.91;38.75;43.77;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium ficifolium;17866;laboratory/greenhouse/garden experiment;30.17;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.17;51.15;9.18;30.17;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium ficifolium;17866;laboratory/greenhouse/garden experiment;30.17;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.17;51.15;9.18;30.17;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Chenopodium ficifolium;17866;actual measurement (following LEDA data standards);46.26;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;55.38;78.59;41.3;46.26;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium ficifolium;17866;laboratory/greenhouse/garden experiment;25.94;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;25.94;43.68;8.21;25.94;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium ficifolium;17866;laboratory/greenhouse/garden experiment;25.94;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;25.94;43.68;8.21;25.94;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Chenopodium glaucum;17874;actual measurement (following LEDA data standards);8.73;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.54;12.73;6.47;8.73;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium glaucum;17874;actual measurement (following LEDA data standards);9.52;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.38;14.01;6.99;9.52;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium hybridum;17875;actual measurement (following LEDA data standards);59.41;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;77.49;221.57;20.49;59.41;2;;;2004-07-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Chenopodium hybridum;17875;actual measurement (following LEDA data standards);58.78;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;67.42;156.55;25.9;58.78;2;;;2005-07-06 00:00:00.0;preaggregated value obtained from single record; Chenopodium hybridum;17875;actual measurement (following LEDA data standards);65.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;86.76;244.79;23.83;65.75;2;;;2004-07-25 00:00:00.0;preaggregated value obtained from single record; Chenopodium hybridum;17875;actual measurement (following LEDA data standards);67.14;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;86.76;244.79;23.83;67.14;2;;;2004-07-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Chenopodium hybridum;17875;actual measurement (following LEDA data standards);58.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;77.49;221.57;20.49;58.86;2;;;2004-07-25 00:00:00.0;preaggregated value obtained from single record; Chenopodium polyspermum;17882;actual measurement;80.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;80.5;;;1;;;1997-05-29 00:00:00.0;; Chenopodium polyspermum;17882;actual measurement (following LEDA data standards);14.79;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;17.7;36.6;6.88;14.79;1;;;;Preaggregated value obtained from single record. ; Chenopodium polyspermum;17882;actual measurement (following LEDA data standards);15.23;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.25;37.96;7.18;15.23;1;;;;Preaggregated value obtained from single record. ; Chenopodium rubrum;17729;actual measurement;19.94695572;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.94695572;;;2;;;1996-09-24 00:00:00.0;; Chenopodium rubrum;17729;actual measurement;91.26003047;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;91.26003047;;;2;;;1996-08-31 00:00:00.0;; Chenopodium rubrum;17729;actual measurement (following LEDA data standards);51.98;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;57.57;92.22;38.05;51.98;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium rubrum;17729;actual measurement;98.1912686;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;98.1912686;;;2;;;1996-08-05 00:00:00.0;; Chenopodium rubrum;17729;actual measurement (following LEDA data standards);57.54;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;63.86;105.47;39.93;57.54;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Chenopodium urbicum;17891;laboratory/greenhouse/garden experiment;45.31;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;45.31;67.53;23.09;45.31;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Chenopodium urbicum;17891;laboratory/greenhouse/garden experiment;48.17;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.17;72.18;24.17;48.17;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Chenopodium urbicum;17891;laboratory/greenhouse/garden experiment;45.31;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;45.31;67.53;23.09;45.31;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Chenopodium urbicum;17891;laboratory/greenhouse/garden experiment;48.17;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.17;72.18;24.17;48.17;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Chondrilla juncea;5390;actual measurement (following LEDA data standards);23.41;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.82;34.11;12.23;23.41;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Chondrilla juncea;5390;actual measurement (following LEDA data standards);23.82;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.82;34.11;12.23;23.82;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Chrysanthemum segetum;3728;actual measurement;41.15591472;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;41.15591472;;;2;;;1996-07-17 00:00:00.0;; Chrysosplenium alternifolium;31308;actual measurement;15.07733333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.07733333;;;2;;;1996-05-23 00:00:00.0;; Chrysosplenium alternifolium;31308;actual measurement;21.23394024;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.23394024;;;2;;;1996-06-10 00:00:00.0;; Chrysosplenium oppositifolium;31313;actual measurement;4.975510204;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.975510204;;;2;;;1996-05-21 00:00:00.0;; Chrysosplenium oppositifolium;31313;actual measurement;7.524242424;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.524242424;;;2;;;1996-05-23 00:00:00.0;; Cicendia filiformis;22974;actual measurement (following LEDA data standards);.06;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.06;.09;.03;.06;2;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Cicendia filiformis;22974;actual measurement (following LEDA data standards);.06;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.06;.09;.03;.06;2;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. stem leaves; Cicerbita alpina;2692;actual measurement (following LEDA data standards);349.04;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;345.84;456.13;234.22;349.04;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. ; Cicerbita alpina;2692;actual measurement (following LEDA data standards);395.05;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;388.38;515.32;184.95;395.05;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Cicerbita alpina;2692;actual measurement (following LEDA data standards);352.24;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;345.84;456.13;234.22;352.24;2;;;2004-06-24 00:00:00.0;preaggregated value obtained from single record; Cicerbita alpina;2692;actual measurement (following LEDA data standards);390.59;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;388.38;515.32;184.95;390.59;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Cicerbita macrophylla;3060;actual measurement;465.5005279;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;465.5005279;;;2;;;1996-09-23 00:00:00.0;; Cichorium intybus;2694;actual measurement;556.1217391;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;556.1217391;;;2;;;1996-09-27 00:00:00.0;; Cicuta virosa;2295;actual measurement (following LEDA data standards);515;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;569.17;1080;410;515;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cicuta virosa;2295;actual measurement (following LEDA data standards);1150;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1285;2430;810;1150;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Cicuta virosa;2295;actual measurement (following LEDA data standards);1088.5;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1262.7;1602;962.5;1088.5;2;;;2005-08-20 00:00:00.0;preaggregated value obtained from single record; Cicuta virosa;2295;actual measurement (following LEDA data standards);1150;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1285;2430;810;1150;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cicuta virosa;2295;actual measurement (following LEDA data standards);470;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;569.17;1080;410;470;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Circaea alpina;26057;actual measurement (following LEDA data standards);16.18;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;16.25;23.45;11.35;16.18;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Circaea lutetiana;26061;actual measurement;44.69679338;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.69679338;;;2;;;1996-09-09 00:00:00.0;; Circaea lutetiana;26061;actual measurement;94.19998265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;94.19998265;;;2;;;1996-09-09 00:00:00.0;; Cirsium acaule;3252;actual measurement;128.226789;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;128.226789;;;2;;;1996-09-02 00:00:00.0;; Cirsium acaule;3252;actual measurement;249.4384393;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;249.4384393;;;2;;;1996-09-27 00:00:00.0;; Cirsium acaule;3252;actual measurement (following LEDA data standards);205.5;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;185.94;231.08;83;205.5;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Cirsium acaule;3252;actual measurement (following LEDA data standards);194.77;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;185.94;231.08;83;194.77;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cirsium acaule;3252;actual measurement (following LEDA data standards);174.89;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;168.7;214.67;79.49;174.89;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cirsium acaule;3252;actual measurement (following LEDA data standards);182.64;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;168.7;214.67;79.49;182.64;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Cirsium arvense;5024;actual measurement;184.2601521;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;184.2601521;;;2;;;1996-08-16 00:00:00.0;; Cirsium arvense;5024;actual measurement;76.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;73.54;150.95;19.97;76.59;2;;;2003-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Cirsium arvense;5024;actual measurement;310.7563164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;310.7563164;;;2;;;1996-08-05 00:00:00.0;; Cirsium dissectum;5048;actual measurement;165.9215335;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;165.9215335;;;2;;;1996-07-15 00:00:00.0;; Cirsium dissectum;5048;actual measurement (following LEDA data standards);78.35;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.64;93.83;35.61;78.35;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Cirsium dissectum;5048;actual measurement (following LEDA data standards);75.64;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.64;93.83;35.61;75.64;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Cirsium dissectum;5048;actual measurement;218.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;218.6;;;2;;;1996-06-20 00:00:00.0;; Cirsium eriophorum;2903;actual measurement;746.7874016;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;746.7874016;;;2;;;1996-09-23 00:00:00.0;; Cirsium helenioides;3067;actual measurement (following LEDA data standards);480.55;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;493.5;679.4;307.1;480.55;2;;;2004-03-10 00:00:00.0;preaggregated value obtained from single record; Cirsium oleraceum;6109;actual measurement (following LEDA data standards);88.05;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;153.71;742.35;47.1;88.05;2;;;;Preaggregated value obtained from single record. ; Cirsium tuberosum;3068;actual measurement (following LEDA data standards);474.92;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;511.69;970.73;364.99;474.92;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cirsium tuberosum;3068;actual measurement (following LEDA data standards);457.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;511.69;970.73;364.99;457.76;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Cirsium vulgare;3737;actual measurement;956;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;956;;;2;;;1996-08-08 00:00:00.0;; Cirsium vulgare;3737;actual measurement (following LEDA data standards);270.89;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;258.17;379.34;135.85;270.89;1;;;2003-06-20 00:00:00.0;Preaggregated value obtained from single record. ; Cirsium vulgare;3737;actual measurement (following LEDA data standards);231.27;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;224.75;320.88;128.73;231.27;1;;;2003-06-20 00:00:00.0;Preaggregated value obtained from single record. ; Cirsium vulgare;3737;actual measurement;1633.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1633.7;;;2;;;1996-08-14 00:00:00.0;; Cladium mariscus;37586;actual measurement;158.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;178.71;360.17;76.26;158.13;2;;;2004-07-29 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Claytonia perfoliata;27495;actual measurement;11.18478261;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.18478261;;;2;;;1996-05-30 00:00:00.0;; Claytonia perfoliata;27495;actual measurement (following LEDA data standards);9.02;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;11.15;18.45;6.46;9.02;1;;;2004-04-03 00:00:00.0;preaggregated value obtained from single record; Claytonia perfoliata;27495;actual measurement (following LEDA data standards);10.37;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;10.88;14.5;7.9;10.37;1;;;2004-04-03 00:00:00.0;preaggregated value obtained from single record; Claytonia perfoliata;27495;actual measurement (following LEDA data standards);25.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.07;40.43;11.36;25.5;1;;;2004-04-03 00:00:00.0;Preaggregated value obtained from single record. spathaceous bracts (ground leaves see UOL-LF-1-201); Claytonia perfoliata;27495;actual measurement (following LEDA data standards);17.52;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.55;23.24;12.92;17.52;1;;;2004-04-03 00:00:00.0;preaggregated value obtained from single record; Claytonia perfoliata;27495;actual measurement (following LEDA data standards);18.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.55;23.24;12.92;18.04;1;;;2004-04-03 00:00:00.0;Preaggregated value obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-870); Claytonia perfoliata;27495;actual measurement (following LEDA data standards);25.92;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.07;40.43;11.36;25.92;1;;;2004-04-03 00:00:00.0;preaggregated value obtained from single record; Claytonia perfoliata;27495;actual measurement (following LEDA data standards);10.09;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;11.15;18.45;6.46;10.09;1;;;2004-04-03 00:00:00.0;Preaggregated value obtained from single record. spathaceous bracts (ground leaves see UOL-LF-1-201); Claytonia perfoliata;27495;actual measurement (following LEDA data standards);10.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;10.88;14.5;7.9;10.61;1;;;2004-04-03 00:00:00.0;Preaggregated value obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-870); Claytonia perfoliata;27495;actual measurement;18.87239459;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.87239459;;;2;;;1996-05-30 00:00:00.0;; Claytonia perfoliata;27495;actual measurement;13.17498935;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.17498935;;;2;;;1996-05-05 00:00:00.0;; Clematis vitalba;27205;actual measurement;181.9306757;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;181.9306757;;;2;;;1996-08-08 00:00:00.0;; Clematis viticella;27206;actual measurement (following LEDA data standards);189;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;189;189;189;189;6;;;2005-08-03 00:00:00.0;preaggregated value obtained from single record; Clinopodium vulgare;24218;actual measurement;44.77825051;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.77825051;;;2;;;1996-09-23 00:00:00.0;; Cnicus benedictus;3260;laboratory/greenhouse/garden experiment;83.86;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;87.7;151.51;43.63;83.86;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cnicus benedictus;3260;laboratory/greenhouse/garden experiment;70.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;87.7;151.51;43.63;70.84;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Cnidium dubium;1405;actual measurement (following LEDA data standards);72.93;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;72.93;102.88;47.42;72.93;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Cnidium dubium;1405;actual measurement (following LEDA data standards);68.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;72.93;102.88;47.42;68.08;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Cnidium dubium;1405;actual measurement (following LEDA data standards);110.63;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;118.06;163.4;78.82;110.63;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Cnidium dubium;1405;actual measurement (following LEDA data standards);110.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;118.06;163.4;78.82;110.4;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Cochlearia anglica;13319;actual measurement (following LEDA data standards);10;13;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;11.38;26.7;2.4;10;1;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Cochlearia danica;12875;actual measurement;8.35009311;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.35009311;;;2;;;1996-05-30 00:00:00.0;; Cochlearia danica;12875;actual measurement;8.804154303;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.804154303;;;2;;;1996-05-23 00:00:00.0;; Cochlearia danica;12875;laboratory/greenhouse/garden experiment;2.39;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.39;4.23;1.09;2.39;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Cochlearia danica;12875;laboratory/greenhouse/garden experiment;2.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.65;4.52;1.2;2.74;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Cochlearia danica;12875;actual measurement (following LEDA data standards);2.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.35;3.71;1.4;2.19;3;;;2004-04-03 00:00:00.0;preaggregated value obtained from single record; Cochlearia danica;12875;laboratory/greenhouse/garden experiment;2.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.65;4.52;1.2;2.7;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Cochlearia danica;12875;actual measurement (following LEDA data standards);2.35;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.35;3.71;1.4;2.35;3;;;2004-04-03 00:00:00.0;Preaggregated value obtained from single record. ; Cochlearia danica;12875;laboratory/greenhouse/garden experiment;2.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.39;4.23;1.09;2.44;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Cochlearia danica;12875;actual measurement (following LEDA data standards);1.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1.67;2.86;.97;1.59;3;;;2004-04-03 00:00:00.0;preaggregated value obtained from single record; Cochlearia danica;12875;actual measurement (following LEDA data standards);1.65;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1.67;2.86;.97;1.65;3;;;2004-04-03 00:00:00.0;Preaggregated value obtained from single record. ; Cochlearia officinalis subsp. officinalis;13621;actual measurement (following LEDA data standards);7.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.87;9.61;4.24;7.16;2;;;2005-05-30 00:00:00.0;preaggregated value obtained from single record; Coeloglossum viride;39475;actual measurement;15.93888889;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.93888889;;;2;;;1996-06-03 00:00:00.0;; Coeloglossum viride;39475;actual measurement;22;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;22;;;2;;;1996-09-09 00:00:00.0;; Coincya monensis;46061;actual measurement;168.7612166;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;168.7612166;;;2;;;1996-07-08 00:00:00.0;; Colchicum autumnale;38684;actual measurement (following LEDA data standards);255.69;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;305.27;614.3;222.19;255.69;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Colchicum autumnale;38684;actual measurement (following LEDA data standards);254.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;305.27;614.3;222.19;254.07;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Colutea arborescens;21799;actual measurement;110.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;110.3;;;1;;;1997-07-03 00:00:00.0;; Colutea arborescens;21799;actual measurement (following LEDA data standards);65.79;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;65.16;88.22;40.86;65.79;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Colutea arborescens;21799;actual measurement (following LEDA data standards);65.16;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;65.16;88.22;40.86;65.16;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Conium maculatum;1410;actual measurement;3752.96157;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3752.96157;;;2;;;1996-05-30 00:00:00.0;; Conium maculatum;1410;actual measurement (following LEDA data standards);599.17;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;639.54;993.96;272.1;599.17;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Conium maculatum;1410;actual measurement (following LEDA data standards);618.61;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;639.54;993.96;272.1;618.61;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Conopodium majus;1346;actual measurement;16.40448808;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;16.40448808;;;2;;;1996-05-23 00:00:00.0;; Conopodium majus;1346;actual measurement;21.30536585;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.30536585;;;2;;;1996-06-03 00:00:00.0;; Conopodium majus;1346;actual measurement;17.99958013;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.99958013;;;2;;;1996-05-30 00:00:00.0;; Conringia orientalis;13624;laboratory/greenhouse/garden experiment;155.77;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;171.5;377.7;103.57;155.77;2;;;2004-06-30 00:00:00.0;Preaggregated value obtained from single record. ; Conringia orientalis;13624;laboratory/greenhouse/garden experiment;151.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;171.5;377.7;103.57;151.71;2;;;2004-06-30 00:00:00.0;preaggregated value obtained from single record; Consolida regalis;27229;actual measurement (following LEDA data standards);16.11;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;17.3;33.22;5.21;16.11;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Consolida regalis;27229;actual measurement (following LEDA data standards);17.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.52;35.19;5.64;17.19;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Consolida regalis;27229;actual measurement (following LEDA data standards);17.22;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.52;35.19;5.64;17.22;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Consolida regalis;27229;actual measurement (following LEDA data standards);16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;17.3;33.22;5.21;16;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Convallaria majalis;39099;actual measurement;196.2854195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;196.2854195;;;2;;;1996-06-18 00:00:00.0;; Convallaria majalis;39099;actual measurement;254.8822188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;254.8822188;;;2;;;1996-06-03 00:00:00.0;; Convolvulus arvensis;18911;actual measurement;32.25449477;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;32.25449477;;;2;;;1996-08-16 00:00:00.0;; Convolvulus arvensis;18911;actual measurement;80.30319635;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;80.30319635;;;2;;;1996-07-15 00:00:00.0;; Convolvulus arvensis;18911;actual measurement;18.20855986;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.20855986;;;2;;;1996-08-27 00:00:00.0;; Convolvulus arvensis;18911;actual measurement;32.15;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;41.11;88.3;16;32.15;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Conyza canadensis;5194;actual measurement;22.93863394;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;22.93863394;;;2;;;1996-08-05 00:00:00.0;; Conyza canadensis;5194;actual measurement;26.54028436;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.54028436;;;2;;;1996-07-15 00:00:00.0;; Coriandrum sativum;2310;laboratory/greenhouse/garden experiment;16.27;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.66;27.51;9.87;16.27;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Coriandrum sativum;2310;laboratory/greenhouse/garden experiment;31.59;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.07;35.74;19.98;31.59;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Coriandrum sativum;2310;laboratory/greenhouse/garden experiment;16.81;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.66;27.51;9.87;16.81;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. spataceous bracts; Coriandrum sativum;2310;laboratory/greenhouse/garden experiment;31.44;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.07;35.74;19.98;31.44;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Corispermum intermedium;17909;actual measurement (following LEDA data standards);10.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.71;12.77;8.52;10.22;1;;;2003-07-29 00:00:00.0;Preaggregated value obtained from single record. ; Cornus mas;18428;actual measurement (following LEDA data standards);62.38;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;62.38;87.78;40.11;62.38;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Cornus mas;18428;actual measurement (following LEDA data standards);62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;62.38;87.78;40.11;62;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Cornus mas;18428;actual measurement (following LEDA data standards);64.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.68;90.2;41.32;64.61;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Cornus mas;18428;actual measurement (following LEDA data standards);64.68;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.68;90.2;41.32;64.68;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Cornus suecica;18440;actual measurement (following LEDA data standards);5.53;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;5.87;9.65;3.05;5.53;1;;;2005-06-20 00:00:00.0;preaggregated value obtained from single record; Cornus suecica;18440;actual measurement (following LEDA data standards);8.3;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;9.6;20;5.6;8.3;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Coronilla coronata;21803;actual measurement (following LEDA data standards);119.58;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.58;185.24;48.86;119.58;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Coronilla coronata;21803;actual measurement (following LEDA data standards);134.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;133.75;204.28;52.93;134.6;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Coronilla coronata;21803;actual measurement (following LEDA data standards);119.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.58;185.24;48.86;119.91;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Coronilla coronata;21803;actual measurement (following LEDA data standards);133.75;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;133.75;204.28;52.93;133.75;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Coronilla emerus;21806;actual measurement (following LEDA data standards);26.36;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.77;28.05;25.89;26.36;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Coronilla emerus;21806;actual measurement (following LEDA data standards);26.57;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.77;28.05;25.89;26.57;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Coronilla vaginalis;21349;actual measurement (following LEDA data standards);24.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.18;42.87;19.15;24.8;2;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Coronilla varia;21810;actual measurement (following LEDA data standards);29;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.44;60.81;16.86;29;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Coronilla varia;21810;actual measurement (following LEDA data standards);29.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.44;60.81;16.86;29.44;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. ; Coronilla varia;21810;actual measurement (following LEDA data standards);33.56;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;37.58;69.37;18.66;33.56;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Coronilla varia;21810;actual measurement (following LEDA data standards);58.35;7;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;67.16;113.8;47.9;58.35;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Coronilla varia;21810;actual measurement (following LEDA data standards);33.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;37.58;69.37;18.66;33.68;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. ; Coronopus didymus;13200;actual measurement;6.237650602;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.237650602;;;2;;;1996-07-03 00:00:00.0;; Coronopus didymus;13200;actual measurement;8.011296076;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.011296076;;;2;;;1996-07-15 00:00:00.0;; Coronopus didymus;13200;actual measurement (following LEDA data standards);.58;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.55;.79;.27;.58;4;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Coronopus didymus;13200;actual measurement (following LEDA data standards);.55;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.55;.79;.27;.55;4;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Coronopus squamatus;14154;actual measurement;1.76;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.76;;;2;;;1996-08-03 00:00:00.0;; Coronopus squamatus;14154;actual measurement (following LEDA data standards);.95;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.17;3.11;.52;.95;3;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Coronopus squamatus;14154;actual measurement (following LEDA data standards);1.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.17;3.11;.52;1.06;3;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Corrigiola litoralis;15658;laboratory/greenhouse/garden experiment;.63;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.65;.98;.46;.63;2;;;2004-10-11 00:00:00.0;Preaggregated value obtained from single record. ; Corrigiola litoralis;15658;actual measurement (following LEDA data standards);1.18;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.27;2.4;.69;1.18;2;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Corrigiola litoralis;15658;actual measurement (following LEDA data standards);1.08;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.27;2.4;.69;1.08;2;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Corrigiola litoralis;15658;laboratory/greenhouse/garden experiment;.62;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.65;.98;.46;.62;2;;;2004-10-11 00:00:00.0;preaggregated value obtained from single record; Corrigiola litoralis;15658;actual measurement (following LEDA data standards);.45;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.45;.45;.45;.45;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Corydalis cava;25389;laboratory/greenhouse/garden experiment;123.27;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;123.27;207.38;32.15;123.27;2;;;2004-04-09 00:00:00.0;Preaggregated value obtained from single record. ; Corydalis cava;25389;laboratory/greenhouse/garden experiment;120.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;123.27;207.38;32.15;120.67;2;;;2004-04-09 00:00:00.0;preaggregated value obtained from single record; Corydalis cava;25389;laboratory/greenhouse/garden experiment;104.8;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;104.8;173.83;28.01;104.8;2;;;2004-04-09 00:00:00.0;Preaggregated value obtained from single record. ; Corydalis cava;25389;laboratory/greenhouse/garden experiment;104.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;104.8;173.83;28.01;104.41;2;;;2004-04-09 00:00:00.0;preaggregated value obtained from single record; Corydalis solida;25469;laboratory/greenhouse/garden experiment;38.9;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;38.5;57.65;18.17;38.9;2;;;2004-04-09 00:00:00.0;Preaggregated value obtained from single record. ; Corydalis solida;25469;laboratory/greenhouse/garden experiment;39.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;38.5;57.65;18.17;39.51;2;;;2004-04-09 00:00:00.0;preaggregated value obtained from single record; Corydalis solida;25469;laboratory/greenhouse/garden experiment;46.55;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.42;71.55;22.97;46.55;2;;;2004-04-09 00:00:00.0;Preaggregated value obtained from single record. ; Corydalis solida;25469;laboratory/greenhouse/garden experiment;46.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.42;71.55;22.97;46.8;2;;;2004-04-09 00:00:00.0;preaggregated value obtained from single record; Corynephorus canescens;41702;actual measurement (following LEDA data standards);.65;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.84;1.8;.35;.65;1;;;2003-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Corynephorus canescens;41702;actual measurement (following LEDA data standards);1.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.26;3.59;1.59;1.93;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Cotoneaster horizontalis;29735;actual measurement (following LEDA data standards);3.65;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;3.85;5;2.68;3.65;2;;;2005-06-15 00:00:00.0;preaggregated value obtained from single record; Cotoneaster integerrimus;30932;actual measurement (following LEDA data standards);29.92;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;29.92;38.08;21.55;29.92;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cotoneaster integerrimus;30932;actual measurement (following LEDA data standards);30.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;29.92;38.08;21.55;30.31;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Cotoneaster integerrimus;30932;actual measurement (following LEDA data standards);32.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;31.94;40.62;23.26;32.46;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Cotoneaster integerrimus;30932;actual measurement (following LEDA data standards);40.78;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;41.52;55.85;25.9;40.78;2;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Cotoneaster integerrimus;30932;actual measurement (following LEDA data standards);31.94;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;31.94;40.62;23.26;31.94;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. ; Cotula coronopifolia;5009;actual measurement (following LEDA data standards);4.66;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.53;8.08;3.91;4.66;2;;;2004-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Cotula coronopifolia;5009;actual measurement (following LEDA data standards);4.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.53;8.08;3.91;4.58;2;;;2004-08-18 00:00:00.0;preaggregated value obtained from single record; Crambe maritima;14463;actual measurement (following LEDA data standards);3857.1;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);without petiole and rachis;3207.43;5953.1;1028.5;3857.1;1;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Crambe maritima;14463;actual measurement (following LEDA data standards);6905;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7779.17;14225;2160;6905;2;;;2005-06-26 00:00:00.0;preaggregated value obtained from single record; Crambe maritima;14463;actual measurement (following LEDA data standards);1769;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2517;5021;1372;1769;1;;;2005-07-06 00:00:00.0;preaggregated value obtained from single record; Crassula helmsii;46103;actual measurement;.192;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.192;;;2;;;1996-09-09 00:00:00.0;; Crataegus laevigata;29749;actual measurement (following LEDA data standards);36.11;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;36.32;52.16;25.28;36.11;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Crataegus laevigata;29749;actual measurement (following LEDA data standards);35.43;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;36.32;52.16;25.28;35.43;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Crataegus laevigata;29749;actual measurement (following LEDA data standards);39.45;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;40.14;55.08;27.02;39.45;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Crataegus laevigata;29749;actual measurement (following LEDA data standards);38.76;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;40.14;55.08;27.02;38.76;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Crepis biennis;4230;actual measurement;155.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;155.3;;;1;;;1997-06-21 00:00:00.0;; Crepis biennis;4230;actual measurement;222.7299807;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;222.7299807;;;2;;;1996-07-15 00:00:00.0;; Crepis capillaris;3071;actual measurement;29.55882353;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.55882353;;;2;;;1996-07-15 00:00:00.0;; Crepis capillaris;3071;actual measurement;48.05170399;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;48.05170399;;;2;;;1996-08-08 00:00:00.0;; Crepis capillaris;3071;actual measurement;77.78641563;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;77.78641563;;;2;;;1996-06-03 00:00:00.0;; Crepis paludosa;5882;actual measurement;61.04492871;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;61.04492871;;;2;;;1996-09-24 00:00:00.0;; Crepis pyrenaica;4706;actual measurement (following LEDA data standards);80.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;83.31;136.81;41.69;80.97;2;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Crepis vesicaria;3710;actual measurement;74;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;74;;;1;;;1998-09-10 00:00:00.0;; Crepis vesicaria;3710;actual measurement (following LEDA data standards);54.37;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.37;66.94;39.66;54.37;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Crepis vesicaria;3710;actual measurement (following LEDA data standards);55.45;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.37;66.94;39.66;55.45;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Crithmum maritimum;1350;actual measurement;24.76510501;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.76510501;;;2;;;1996-08-31 00:00:00.0;; Cruciata laevipes;32133;actual measurement;2.708707124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.708707124;;;2;;;1996-05-30 00:00:00.0;; Cruciata laevipes;32133;actual measurement;3.085365854;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.085365854;;;2;;;1996-06-10 00:00:00.0;; Cruciata laevipes;32133;actual measurement;3.095652174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.095652174;;;2;;;1996-09-23 00:00:00.0;; Cucurbita pepo;18484;actual measurement (following LEDA data standards);1663;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1628.7;2069;1162;1663;2;;;2005-07-28 00:00:00.0;preaggregated value obtained from single record; Cymbalaria muralis;33224;actual measurement;32.28036999;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;32.28036999;;;2;;;1996-09-02 00:00:00.0;; Cymbalaria muralis;33224;actual measurement;26.23342014;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.23342014;;;2;;;1996-09-23 00:00:00.0;; Cynodon dactylon;41221;actual measurement (following LEDA data standards);6.1;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.63;15.3;3.31;6.1;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Cynodon dactylon;41221;actual measurement (following LEDA data standards);2.89;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2.82;3.93;1.52;2.89;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Cynodon dactylon;41221;actual measurement (following LEDA data standards);5.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.63;15.3;3.31;5.7;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Cynoglossum officinale;12519;actual measurement;376.320545;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;376.320545;;;2;;;1996-05-30 00:00:00.0;; Cynoglossum officinale;12519;actual measurement (following LEDA data standards);47.35;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;50.11;92.09;18.68;47.35;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Cynoglossum officinale;12519;actual measurement (following LEDA data standards);58.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;62.91;122.55;21.13;58.12;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Cynoglossum officinale;12519;actual measurement (following LEDA data standards);53.33;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;62.91;122.55;21.13;53.33;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Cynoglossum officinale;12519;actual measurement (following LEDA data standards);44.58;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;50.11;92.09;18.68;44.58;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Cynosurus cristatus;40659;actual measurement;7.303846154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.303846154;;;2;;;;; Cynosurus cristatus;40659;actual measurement;15.35;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;16.19;32.1;8.8;15.35;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Cynosurus cristatus;40659;actual measurement;20.22304348;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.22304348;;;2;;;1996-07-08 00:00:00.0;; Cynosurus cristatus;40659;actual measurement;3.51;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;4.32;11.04;2.61;3.51;2;;;2003-06-11 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Cyperus flavescens;37602;laboratory/greenhouse/garden experiment;4.34;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.34;5.38;3.16;4.34;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Cyperus flavescens;37602;laboratory/greenhouse/garden experiment;4.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.34;5.38;3.16;4.37;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Cyperus fuscus;37606;actual measurement (following LEDA data standards);4.35;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.96;5.44;2.43;4.35;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Cyperus longus;37214;laboratory/greenhouse/garden experiment;56.18;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;53.74;88.57;26.47;56.18;2;;;2004-08-17 00:00:00.0;preaggregated value obtained from single record; Cyperus longus;37214;laboratory/greenhouse/garden experiment;54.96;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;53.74;88.57;26.47;54.96;2;;;2004-08-17 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Cystopteris fragilis;43;actual measurement;91.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;91.9;;;2;;;1996-09-23 00:00:00.0;; Dactylis glomerata;40290;actual measurement;71.71276685;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;71.71276685;;;2;;;1996-08-08 00:00:00.0;; Dactylis glomerata;40290;actual measurement;78.89628205;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;78.89628205;;;2;;;1996-06-16 00:00:00.0;; Dactylis glomerata;40290;actual measurement;98.88627384;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;98.88627384;;;2;;;;; Dactylis glomerata;40290;field experiment;.00464;2;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00464;;;;20;;.47;1989-05-09 00:00:00.0;reproductive tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Dactylis glomerata;40290;field experiment;.0115;2;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.0115;;;;20;;.6;1989-05-09 00:00:00.0;vegetative tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Dactylorhiza fuchsii;39508;actual measurement;112.6235389;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;112.6235389;;;2;;;1996-06-10 00:00:00.0;; Dactylorhiza fuchsii;39508;actual measurement;156.2019778;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;156.2019778;;;2;;;1996-07-08 00:00:00.0;; Dactylorhiza incarnata;39515;actual measurement (following LEDA data standards);73.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.52;119.8;32.38;73.6;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Dactylorhiza incarnata subsp. ochroleuca;39839;actual measurement (following LEDA data standards);182.15;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;182.68;189.04;176.84;182.15;1;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Dactylorhiza maculata;39506;actual measurement (following LEDA data standards);51.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.97;123.58;21.15;51.23;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Dactylorhiza maculata;39506;actual measurement (following LEDA data standards);57.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.97;123.58;21.15;57.18;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Dactylorhiza majalis s. praetermissa;39843;actual measurement;70.36699729;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;70.36699729;;;2;;;1996-06-17 00:00:00.0;; Dactylorhiza majalis s. praetermissa;39843;actual measurement;123.709322;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;123.709322;;;2;;;1996-09-27 00:00:00.0;; Dactylorhiza sambucina;39567;actual measurement (following LEDA data standards);46.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.65;77.57;23.37;46.27;2;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Dactylorhiza sphagnicola;50029;actual measurement (following LEDA data standards);83.73;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;100.31;211.04;18.26;83.73;2;;;2004-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Dactylorhiza sphagnicola;50029;actual measurement (following LEDA data standards);78.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;100.31;211.04;18.26;78.1;2;;;2004-06-25 00:00:00.0;preaggregated value obtained from single record; Dactylorhiza traunsteineri s. lapponica;39600;actual measurement (following LEDA data standards);21.5;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;21.84;29.55;15.2;21.5;1;;;2005-07-18 00:00:00.0;preaggregated value obtained from single record; Dactylorhiza traunsteineri subsp. traunsteineri;39923;actual measurement (following LEDA data standards);33.21;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.98;35.91;29.83;33.21;1;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Danthonia decumbens;42203;actual measurement;18.39033708;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.39033708;;;2;;;1996-07-15 00:00:00.0;; Danthonia decumbens;42203;actual measurement;10.83;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;11.94;18.79;6.8;10.83;2;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Daphne laureola;34606;actual measurement (following LEDA data standards);161.84;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;172.92;235.1;125.87;161.84;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Daphne mezereum;34610;actual measurement;24.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.1;;;1;;;1997-06-06 00:00:00.0;; Datura stramonium;34907;actual measurement (following LEDA data standards);654.9;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;654.9;1121.26;385.49;654.9;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Datura stramonium;34907;actual measurement (following LEDA data standards);585.32;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;654.9;1121.26;385.49;585.32;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Datura stramonium;34907;actual measurement (following LEDA data standards);672.06;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;756.47;1293.49;436.78;672.06;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Datura stramonium;34907;actual measurement (following LEDA data standards);756.47;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;756.47;1293.49;436.78;756.47;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Daucus carota;1358;actual measurement;12.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;14.76;32.71;7.77;12.84;2;;;2004-07-29 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Deschampsia cespitosa;40299;actual measurement;65.36962025;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;65.36962025;;;2;;;;; Deschampsia cespitosa;40299;actual measurement;145.5289539;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;145.5289539;;;2;;;1996-08-14 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement;12.42;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;15.79;30.47;7.66;12.42;2;;;2003-07-08 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);43.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;43.3;;;;1;;;2003-03-09 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);11.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;11.8;;;;1;;;2003-08-29 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);9.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;9.9;;;;1;;;2003-04-09 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);13.35;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;13.35;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);13.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;13.1;;;;1;;;2003-08-30 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);11.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;11.7;;;;1;;;2003-02-09 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);15.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;15.1;;;;1;;;2003-08-28 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);20.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;20.8;;;;1;;;2003-08-28 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);10;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;10;;;;1;;;2003-08-30 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);17.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;17.1;;;;1;;;2003-08-30 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);27.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;27.2;;;;1;;;2003-04-09 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);14.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;14.5;;;;1;;;2003-04-09 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);13.45;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;13.45;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);22;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22;;;;1;;;2003-08-28 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);7.35;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.35;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);54.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;54.1;;;;1;;;2003-03-09 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);91;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;91;;;;1;;;2003-03-09 00:00:00.0;; Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);63.33;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;92.19;257.3;40.6;63.33;2;;;;Preaggregated value obtained from single record. ; Deschampsia cespitosa subsp. paludosa;41235;actual measurement (following LEDA data standards);109.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;109.61;161.81;67.56;109.61;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. ; Deschampsia cespitosa subsp. paludosa;41235;actual measurement (following LEDA data standards);108.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;109.61;161.81;67.56;108.8;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Deschampsia flexuosa;41982;actual measurement;8.32;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.32;;;2;;;1996-09-09 00:00:00.0;; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);4.28;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;4.28;;;;5;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.82;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.82;;;;5;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.27;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.27;;;;6;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);1.47;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;1.47;;;;6;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.98;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.98;;;;5;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);4.05;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;4.05;;;;4;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2;;;;4;;;2003-08-30 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.33;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.33;;;;4;;;2003-08-30 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);1.27;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;1.27;;;;7;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.02;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.02;;;;5;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.5;;;;6;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);3.13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;3.13;;;;4;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);1.68;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.68;;;;5;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.06;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.06;;;;5;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.48;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.48;;;;5;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);4.38;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;4.38;;;;4;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.17;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;2.17;;;;7;;;2003-08-29 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);2.06;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;2.06;;;;7;;;2003-08-29 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);4.04;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;4.04;;;;5;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Deschampsia setacea;40982;actual measurement (following LEDA data standards);1.31;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.31;1.62;.83;1.31;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Descurainia sophia;13207;actual measurement (following LEDA data standards);22.47;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;21.89;30.87;12.34;22.47;1;;;2003-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Descurainia sophia;13207;actual measurement (following LEDA data standards);30.14;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.33;36.76;15.09;30.14;1;;;2003-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Desmazeria rigida;40985;actual measurement;3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3;;;1;;;1997-09-03 00:00:00.0;; Desmazeria rigida;40985;actual measurement;.559440559;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.559440559;;;2;;;1996-05-23 00:00:00.0;; Dianthus armeria;16115;actual measurement (following LEDA data standards);13.6;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;14.07;24.6;8.6;13.6;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Dianthus barbatus;16451;actual measurement (following LEDA data standards);68.55;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;73.62;111.8;29;68.55;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Dianthus deltoides;16129;actual measurement;1.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.5;;;1;;;1997-08-12 00:00:00.0;; Dianthus deltoides;16129;actual measurement;1.492105263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.492105263;;;2;;;1996-09-23 00:00:00.0;; Dianthus gratianopolitanus;16472;actual measurement (following LEDA data standards);4.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.07;7.42;3.2;4.77;2;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Dianthus superbus;16439;laboratory/greenhouse/garden experiment;9.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.78;21.67;4.92;9.77;2;;;2005-06-24 00:00:00.0;preaggregated value obtained from single record; Dianthus superbus;16439;actual measurement (following LEDA data standards);13.35;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;17.82;47.5;6.35;13.35;2;;;2005-08-03 00:00:00.0;preaggregated value obtained from single record; Diapensia lapponica;19591;actual measurement (following LEDA data standards);1.77;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.77;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Diapensia lapponica;19591;actual measurement (following LEDA data standards);1.75;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.75;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Diapensia lapponica;19591;actual measurement (following LEDA data standards);1.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.6;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Diapensia lapponica;19591;actual measurement (following LEDA data standards);2.17;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.17;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Diapensia lapponica;19591;actual measurement (following LEDA data standards);2.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.3;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Diapensia lapponica;19591;actual measurement (following LEDA data standards);1.66;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.66;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Diapensia lapponica;19591;actual measurement (following LEDA data standards);1.76;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.76;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Diapensia lapponica;19591;actual measurement (following LEDA data standards);1.53;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.53;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Diapensia lapponica;19591;actual measurement (following LEDA data standards);1.84;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.84;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Dictamnus albus;31688;actual measurement (following LEDA data standards);381.13;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;406.17;677.18;301.39;381.13;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Dictamnus albus;31688;actual measurement (following LEDA data standards);468.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;516.92;823.73;377.59;468.09;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Dictamnus albus;31688;actual measurement (following LEDA data standards);469.9;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;516.92;823.73;377.59;469.9;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Dictamnus albus;31688;actual measurement (following LEDA data standards);371.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;406.17;677.18;301.39;371.14;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Digitalis grandiflora;33169;actual measurement (following LEDA data standards);283.83;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;283.51;423.33;130.28;283.83;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Digitalis grandiflora;33169;actual measurement (following LEDA data standards);284.14;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;283.51;423.33;130.28;284.14;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Digitalis lutea;33173;actual measurement (following LEDA data standards);168.29;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;174.96;399.17;80.95;168.29;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Digitalis lutea;33173;actual measurement (following LEDA data standards);156.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;174.96;399.17;80.95;156.69;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Digitalis purpurea;33178;actual measurement;2026.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2026.6;;;2;;;1996-09-09 00:00:00.0;; Digitalis purpurea;33178;actual measurement;2855.532506;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2855.532506;;;2;;;1996-09-05 00:00:00.0;; Digitaria ischaemum;40681;actual measurement (following LEDA data standards);.64;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.72;1.35;.32;.64;2;;;2004-09-11 00:00:00.0;preaggregated value obtained from single record; Digitaria ischaemum;40681;actual measurement (following LEDA data standards);.65;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.72;1.35;.32;.65;2;;;2004-09-11 00:00:00.0;Preaggregated value obtained from single record. ; Digitaria ischaemum;40681;actual measurement (following LEDA data standards);20.84;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.05;35.2;15.31;20.84;1;;;2003-08-27 00:00:00.0;Preaggregated value obtained from single record. ; Digitaria sanguinalis;40683;actual measurement (following LEDA data standards);8.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.61;11.87;6.26;8.61;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Digitaria sanguinalis;40683;actual measurement (following LEDA data standards);8.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.61;11.87;6.26;8.64;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Diphasiastrum alpinum;44384;actual measurement;.275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.275;;;2;;;1996-08-02 00:00:00.0;; Diphasiastrum alpinum;44384;actual measurement (following LEDA data standards);19.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;19.2;27.71;11.21;19.26;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. two samples of upper 2 cm of stem measured per plant; Diphasiastrum alpinum;44384;actual measurement (following LEDA data standards);19.33;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;19.2;27.71;11.21;19.33;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Diphasiastrum complanatum;44372;actual measurement (following LEDA data standards);14.58;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.06;22.24;10.99;14.58;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Diphasiastrum complanatum;44372;actual measurement (following LEDA data standards);15.32;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.06;22.24;10.99;15.32;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Diphasiastrum complanatum s. issleri;44374;actual measurement (following LEDA data standards);24.42;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.86;37.55;20.76;24.42;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. two samples of upper 2 cm of stem measured per plant; Diphasiastrum complanatum s. issleri;44374;actual measurement (following LEDA data standards);23.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.86;37.55;20.76;23.69;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Diplotaxis muralis;13634;laboratory/greenhouse/garden experiment;30.59;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.59;51.59;9.97;30.59;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Diplotaxis muralis;13634;laboratory/greenhouse/garden experiment;30.2;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.59;51.59;9.97;30.2;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Diplotaxis muralis;13634;laboratory/greenhouse/garden experiment;37.59;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;39.81;60.43;12.9;37.59;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Diplotaxis muralis;13634;laboratory/greenhouse/garden experiment;37.34;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;39.81;60.43;12.9;37.34;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Diplotaxis tenuifolia;14468;actual measurement;43.16556876;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;43.16556876;;;2;;;1996-09-02 00:00:00.0;; Diplotaxis tenuifolia;14468;actual measurement;183.7919852;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;183.7919852;;;2;;;1996-08-03 00:00:00.0;; Dipsacus fullonum;19359;actual measurement;1118.242889;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1118.242889;;;2;;;1996-05-30 00:00:00.0;; Dipsacus pilosus;19256;actual measurement;192.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;192.9;;;2;;;1996-07-15 00:00:00.0;; Dipsacus pilosus;19256;actual measurement (following LEDA data standards);136.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;153.99;327.34;55.03;136.81;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Dipsacus pilosus;19256;actual measurement (following LEDA data standards);146.22;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;183.43;380.23;61.79;146.22;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Dipsacus pilosus;19256;actual measurement (following LEDA data standards);164.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;183.43;380.23;61.79;164.82;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Dipsacus pilosus;19256;actual measurement (following LEDA data standards);122.08;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;153.99;327.34;55.03;122.08;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Dipsacus strigosus;19104;laboratory/greenhouse/garden experiment;950;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;896;1135;490;950;2;;;2005-06-29 00:00:00.0;preaggregated value obtained from single record; Doronicum pardalianches;3685;actual measurement;238.5456342;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;238.5456342;;;2;;;1996-06-11 00:00:00.0;; Draba aizoides;14170;actual measurement (following LEDA data standards);.64;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.69;.91;.52;.64;6;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Draba aizoides;14170;actual measurement (following LEDA data standards);.59;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.7;1.08;.42;.59;2;;;2004-04-20 00:00:00.0;preaggregated value obtained from single record; Draba aizoides;14170;actual measurement (following LEDA data standards);.65;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.7;1.08;.42;.65;2;;;2004-04-20 00:00:00.0;Preaggregated value obtained from single record. ; Draba muralis;14065;actual measurement;5.263636364;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.263636364;;;2;;;1996-06-18 00:00:00.0;; Draba muralis;14065;actual measurement;15.6398977;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.6398977;;;2;;;1996-06-10 00:00:00.0;; Drosera anglica;18994;actual measurement;6.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.4;;;1;;;1999-06-07 00:00:00.0;; Drosera anglica;18994;actual measurement (following LEDA data standards);2.13;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;2.17;4.05;.95;2.13;1;;;2005-08-26 00:00:00.0;preaggregated value obtained from single record; Drosera intermedia;18996;actual measurement (following LEDA data standards);1.11;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.28;2.34;.57;1.11;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Drosera intermedia;18996;actual measurement (following LEDA data standards);.57;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;.66;1.13;.36;.57;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Drosera rotundifolia;18999;actual measurement (following LEDA data standards);1.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1.76;2.76;1.3;1.67;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Drosera rotundifolia;18999;actual measurement (following LEDA data standards);2.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.89;4.44;2.08;2.67;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Dryas octopetala;31232;actual measurement;17.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.9;;;1;;;1997-05-30 00:00:00.0;; Dryopteris affinis;44528;actual measurement (following LEDA data standards);1745.58;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1697.15;2217.37;1268.04;1745.58;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Dryopteris affinis;44528;actual measurement (following LEDA data standards);1794;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1697.15;2217.37;1268.04;1794;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Dryopteris affinis;44528;actual measurement (following LEDA data standards);2578.36;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2561.88;3390.66;1884.26;2578.36;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Dryopteris affinis;44528;actual measurement (following LEDA data standards);2570.12;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2561.88;3390.66;1884.26;2570.12;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Dryopteris carthusiana;377;actual measurement;745.3050243;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;745.3050243;;;2;;;1996-08-08 00:00:00.0;; Dryopteris carthusiana;377;actual measurement;62.07;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;58.6;73.64;30.39;62.07;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Dryopteris dilatata;387;actual measurement;1949.97279;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1949.97279;;;2;;;1996-09-05 00:00:00.0;; Dryopteris expansa;44546;actual measurement (following LEDA data standards);2520;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2520;2520;2520;2520;1;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Dryopteris expansa;44546;actual measurement (following LEDA data standards);3440;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3440;3440;3440;3440;1;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Dryopteris expansa;44546;actual measurement (following LEDA data standards);3440;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3440;3440;3440;3440;1;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Dryopteris expansa;44546;actual measurement (following LEDA data standards);2520;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2520;2520;2520;2520;1;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Dryopteris filix-mas;393;actual measurement;3953.16974;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3953.16974;;;2;;;1996-08-29 00:00:00.0;; Dryopteris remota;44547;actual measurement (following LEDA data standards);308.45;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;450.4;946.71;128.2;308.45;1;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Dryopteris remota;44547;actual measurement (following LEDA data standards);286.77;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;450.4;946.71;128.2;286.77;1;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Echinochloa crus-galli;42222;actual measurement;92.26173898;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;92.26173898;;;2;;;1996-08-27 00:00:00.0;; Echinochloa crus-galli;42222;actual measurement (following LEDA data standards);61.54;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;61.54;65.3;57.78;61.54;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Echinops exaltatus;3278;actual measurement (following LEDA data standards);654.75;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;677.5;1028.5;372;654.75;2;;;2005-07-20 00:00:00.0;preaggregated value obtained from single record; Echium vulgare;12105;actual measurement;282.5035784;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;282.5035784;;;2;;;1996-08-08 00:00:00.0;; Elatine hexandra;19033;actual measurement (following LEDA data standards);.03;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.04;.08;.02;.03;3;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Elatine hexandra;19033;actual measurement (following LEDA data standards);.03;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.04;.08;.02;.03;3;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. ; Elatine hydropiper;19010;actual measurement (following LEDA data standards);.07;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.08;.13;.05;.07;3;;;2004-09-20 00:00:00.0;preaggregated value obtained from single record; Elatine hydropiper;19010;actual measurement (following LEDA data standards);.07;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.08;.13;.05;.07;3;;;2004-09-20 00:00:00.0;Preaggregated value obtained from single record. ; Eleocharis acicularis;37636;actual measurement (following LEDA data standards);.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.19;.29;.12;.2;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Eleocharis multicaulis;37116;actual measurement (following LEDA data standards);22.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.03;32.74;12.04;22.58;2;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Eleocharis multicaulis;37116;actual measurement (following LEDA data standards);22.86;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.03;32.74;12.04;22.86;2;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. ; Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);6.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.63;9.98;4.99;6.46;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);6.29;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.63;9.98;4.99;6.29;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Eleocharis quinqueflora;37539;actual measurement (following LEDA data standards);5.31;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;4.75;7.38;2.03;5.31;2;;;2003-08-14 00:00:00.0;preaggregated value obtained from single record; Eleocharis uniglumis;37127;actual measurement;4.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;4.65;6.79;3.27;4.66;1;;;2004-05-27 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Eleusine indica;40688;laboratory/greenhouse/garden experiment;11.93;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.81;19.98;8.83;11.93;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Eleusine indica;40688;laboratory/greenhouse/garden experiment;11.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.81;19.98;8.83;11.73;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Elodea canadensis;36340;actual measurement;.465306122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.465306122;;;2;;;1996-09-23 00:00:00.0;; Elodea canadensis;36340;actual measurement (following LEDA data standards);.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;.65;1.1;.15;.68;2;;;;Preaggregated value obtained from single record. ; Elodea nuttallii;36344;actual measurement;.36;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.36;;;2;;;1996-09-09 00:00:00.0;; Elodea nuttallii;36344;actual measurement;.994736842;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.994736842;;;2;;;1996-09-02 00:00:00.0;; Elymus caninus;42231;actual measurement;31.16347096;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.16347096;;;2;;;1996-08-08 00:00:00.0;; Elymus caninus;42231;actual measurement;54.56057337;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;54.56057337;;;2;;;1996-06-18 00:00:00.0;; Elymus farctus;40994;actual measurement (following LEDA data standards);36.9;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;37.57;48.05;26.3;36.9;2;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Elymus repens;40238;actual measurement;71.74368484;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;71.74368484;;;2;;;1996-06-24 00:00:00.0;; Elymus repens;40238;actual measurement (following LEDA data standards);128.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;123.03;139.62;83.53;128.53;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Elymus repens;40238;actual measurement (following LEDA data standards);127.95;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;123.03;139.62;83.53;127.95;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. big form of species ; Elymus repens;40238;actual measurement;14.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;15.61;34.55;4.73;14.59;2;;;2004-07-29 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Elymus repens;40238;actual measurement;85.37142857;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;85.37142857;;;2;;;1996-06-17 00:00:00.0;; Empetrum nigrum;19449;actual measurement (following LEDA data standards);4.53;12;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;4.55;6.92;2.52;4.53;1;;;2003-08-23 00:00:00.0;preaggregated value obtained from single record; Empetrum nigrum;19449;actual measurement (following LEDA data standards);.48;11;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.55;.82;.36;.48;1;;;2003-08-22 00:00:00.0;preaggregated value obtained from single record; Empetrum nigrum;19449;actual measurement (following LEDA data standards);.48;11;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.55;.82;.36;.48;1;;;2003-08-22 00:00:00.0;preaggregated value obtained from single record; Empetrum nigrum;19449;actual measurement (following LEDA data standards);.61;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.6;.73;.43;.61;1;;;2003-08-23 00:00:00.0;preaggregated value obtained from single record; Epilobium alpestre;26069;actual measurement (following LEDA data standards);15.24;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.88;24.86;10.49;15.24;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Epilobium alpestre;26069;actual measurement (following LEDA data standards);14.59;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.88;24.86;10.49;14.59;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);1.2;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.25;2;.65;1.2;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);1.13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;1.13;;;;6;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);.83;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;.83;;;;3;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Epilobium angustifolium;26075;actual measurement;201.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;201.6;;;2;;;;; Epilobium ciliatum;26518;actual measurement;42.36201044;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;42.36201044;;;2;;;1996-06-17 00:00:00.0;; Epilobium ciliatum;26518;actual measurement;50.68711656;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;50.68711656;;;2;;;1996-06-18 00:00:00.0;; Epilobium ciliatum;26518;actual measurement (following LEDA data standards);5.53;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;6.47;14.5;2.95;5.53;2;;;;Preaggregated value obtained from single record. ; Epilobium ciliatum;26518;actual measurement;14.36722689;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.36722689;;;2;;;1996-09-27 00:00:00.0;; Epilobium dodonaei;26526;actual measurement (following LEDA data standards);10.22;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.22;15.35;6.58;10.22;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Epilobium dodonaei;26526;actual measurement (following LEDA data standards);10.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.22;15.35;6.58;10.52;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Epilobium hirsutum;26536;actual measurement;47.77054104;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.77054104;;;2;;;1996-09-27 00:00:00.0;; Epilobium hirsutum;26536;actual measurement;212.5110789;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;212.5110789;;;2;;;1996-08-28 00:00:00.0;; Epilobium montanum;26496;actual measurement;77.33863;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;77.33863;;;2;;;1996-09-02 00:00:00.0;; Epilobium montanum;26496;actual measurement;81.70525771;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;81.70525771;;;2;;;1996-08-29 00:00:00.0;; Epilobium montanum;26496;actual measurement;116.2246259;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;116.2246259;;;2;;;1996-06-17 00:00:00.0;; Epilobium nutans;26501;actual measurement (following LEDA data standards);5.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.72;7.95;3.62;5.65;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Epilobium nutans;26501;actual measurement (following LEDA data standards);5.72;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.72;7.95;3.62;5.72;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Epilobium obscurum;26502;actual measurement;36.50211581;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;36.50211581;;;2;;;1996-09-27 00:00:00.0;; Epilobium palustre;26504;actual measurement;3.218819188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.218819188;;;2;;;1996-09-02 00:00:00.0;; Epilobium palustre;26504;actual measurement (following LEDA data standards);25.75;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;28.42;49.35;8.8;25.75;2;;;;Preaggregated value obtained from single record. ; Epilobium palustre;26504;actual measurement;5.499022005;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.499022005;;;2;;;1996-09-09 00:00:00.0;; Epilobium parviflorum;26505;actual measurement;33.19659555;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;33.19659555;;;2;;;1996-08-28 00:00:00.0;; Epilobium parviflorum;26505;actual measurement;18.86605364;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.86605364;;;2;;;1996-08-31 00:00:00.0;; Epilobium parviflorum;26505;actual measurement;22.69584871;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;22.69584871;;;2;;;1996-08-08 00:00:00.0;; Epilobium roseum;26508;actual measurement;13.54926731;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.54926731;;;2;;;1996-08-29 00:00:00.0;; Epipactis atrorubens;39603;actual measurement;25;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25;;;1;;;1998-09-10 00:00:00.0;; Epipactis atrorubens;39603;actual measurement (following LEDA data standards);87.58;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;87.58;135.8;53.76;87.58;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Epipactis atrorubens;39603;actual measurement (following LEDA data standards);89.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;87.58;135.8;53.76;89.04;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Epipactis helleborine;39609;actual measurement (following LEDA data standards);80.37;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;78.47;106.41;45.57;80.37;2;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Epipactis helleborine;39609;actual measurement (following LEDA data standards);52.3;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;48.89;57.1;34.1;52.3;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Epipactis helleborine;39609;actual measurement (following LEDA data standards);169;7;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;167.93;192.5;131.5;169;2;;;2005-06-30 00:00:00.0;preaggregated value obtained from single record; Epipactis helleborine;39609;actual measurement (following LEDA data standards);78.47;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;78.47;106.41;45.57;78.47;2;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. ; Epipactis palustris;39624;actual measurement;104.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;104.1;;;1;;;1997-09-02 00:00:00.0;; Epipactis palustris;39624;actual measurement (following LEDA data standards);22.23;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.12;34.19;14.05;22.23;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Epipactis palustris;39624;actual measurement (following LEDA data standards);22.68;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.12;34.19;14.05;22.68;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Equisetum arvense;166;actual measurement (following LEDA data standards);343.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;492.29;1536;91.4;343.65;1;;;2003-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Equisetum arvense;166;actual measurement (following LEDA data standards);13.64;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.84;19.12;6.47;13.64;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Equisetum fluviatile;167;actual measurement (following LEDA data standards);20.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.05;45.8;11.56;20.56;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Equisetum fluviatile;167;actual measurement (following LEDA data standards);19.54;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.05;45.8;11.56;19.54;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Equisetum hyemale;170;actual measurement (following LEDA data standards);458.67;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;463.05;603.32;406.65;458.67;1;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. stem was measured; Equisetum hyemale;170;actual measurement (following LEDA data standards);454.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;463.05;603.32;406.65;454.16;1;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Equisetum palustre;174;actual measurement;14.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;13.68;23.14;6.79;14.55;2;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Equisetum sylvaticum;179;actual measurement (following LEDA data standards);12.22;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.26;20.81;6.81;12.22;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Equisetum sylvaticum;179;actual measurement (following LEDA data standards);12.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.26;20.81;6.81;12.15;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Equisetum telmateia;180;actual measurement (following LEDA data standards);3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.09;4.1;2.1;3;3;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Eragrostis minor;41786;actual measurement (following LEDA data standards);2.88;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.74;3.88;1.29;2.88;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Eragrostis minor;41786;actual measurement (following LEDA data standards);3.15;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.74;3.88;1.29;3.15;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Erica tetralix;19489;actual measurement (following LEDA data standards);.29;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.31;.49;.21;.29;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Erica tetralix;19489;actual measurement (following LEDA data standards);.4;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.43;.59;.32;.4;10;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Erigeron acer;3429;actual measurement;15.43856502;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.43856502;;;2;;;1996-09-02 00:00:00.0;; Erigeron acer;3429;actual measurement;17.04385965;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.04385965;;;2;;;1996-09-23 00:00:00.0;; Erigeron acer;3429;actual measurement;24.00190045;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.00190045;;;2;;;1996-08-08 00:00:00.0;; Erigeron annuus;5070;laboratory/greenhouse/garden experiment;41.91;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.62;82.38;29.15;41.91;2;;;2005-06-14 00:00:00.0;preaggregated value obtained from single record; Erigeron borealis;4210;actual measurement (following LEDA data standards);3.73;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;4.13;6.7;1.5;3.73;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Erigeron borealis;4210;actual measurement;5.1;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;5.1;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Eriophorum angustifolium;37550;actual measurement;216.2062099;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;216.2062099;;;2;;;1996-09-09 00:00:00.0;; Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);12.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;12.4;;;;1;;;2003-02-09 00:00:00.0;; Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);28.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;28.8;;;;1;;;2003-02-09 00:00:00.0;; Eriophorum latifolium;37555;actual measurement (following LEDA data standards);18.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;19.57;30.17;7.05;18.73;2;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Eriophorum latifolium;37555;actual measurement (following LEDA data standards);26.78;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;28.94;48.2;12.75;26.78;2;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Eriophorum latifolium;37555;actual measurement (following LEDA data standards);24.8;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;24.55;35.75;15.7;24.8;1;;;2005-07-03 00:00:00.0;preaggregated value obtained from single record; Eriophorum vaginatum;37560;actual measurement;48.36548673;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;48.36548673;;;2;;;1996-09-09 00:00:00.0;; Erodium cicutarium;22675;actual measurement;84.91047619;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;84.91047619;;;2;;;1996-05-30 00:00:00.0;; Erodium cicutarium;22675;actual measurement;82;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;82;;;2;;;1996-08-28 00:00:00.0;; Erodium cicutarium;22675;actual measurement;20.5;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;19;27;8.1;20.5;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Erodium cicutarium;22675;actual measurement;106.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;106.8;;;2;;;1996-06-18 00:00:00.0;; Erodium cicutarium;22675;actual measurement;6.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;7.53;15.1;3.05;6.78;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Erodium lebelii;50011;actual measurement (following LEDA data standards);20.49;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.49;34.06;7.69;20.49;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Erodium lebelii;50011;actual measurement (following LEDA data standards);20.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.49;34.06;7.69;20.87;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Erodium moschatum;22680;laboratory/greenhouse/garden experiment;228.8;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;228.8;308.64;155.64;228.8;2;;;2004-06-01 00:00:00.0;Preaggregated value obtained from single record. ; Erodium moschatum;22680;laboratory/greenhouse/garden experiment;228.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;228.8;308.64;155.64;228.95;2;;;2004-06-01 00:00:00.0;preaggregated value obtained from single record; Erodium moschatum;22680;laboratory/greenhouse/garden experiment;397.81;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;397.81;525.2;244.03;397.81;2;;;2004-06-01 00:00:00.0;Preaggregated value obtained from single record. ; Erodium moschatum;22680;laboratory/greenhouse/garden experiment;405.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;397.81;525.2;244.03;405.89;2;;;2004-06-01 00:00:00.0;preaggregated value obtained from single record; Erophila verna;14075;actual measurement (following LEDA data standards);.16;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.16;.29;.03;.16;4;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Erophila verna;14075;actual measurement (following LEDA data standards);.46;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.51;.84;.26;.46;2;;;2005-04-21 00:00:00.0;preaggregated value obtained from single record; Erophila verna;14075;actual measurement (following LEDA data standards);.16;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.16;.29;.03;.16;4;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Erophila verna s. verna;12790;actual measurement;2.564516129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.564516129;;;2;;;1996-04-30 00:00:00.0;; Erophila verna s. verna;12790;actual measurement;6.424615385;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.424615385;;;2;;;1996-06-03 00:00:00.0;; Erucastrum nasturtiifolium;12804;actual measurement (following LEDA data standards);92.65;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;113;203.43;63.29;92.65;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Erucastrum nasturtiifolium;12804;actual measurement (following LEDA data standards);101.05;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;150.31;266.61;83.27;101.05;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Erucastrum nasturtiifolium;12804;actual measurement (following LEDA data standards);125.68;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;150.31;266.61;83.27;125.68;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Erucastrum nasturtiifolium;12804;actual measurement (following LEDA data standards);72.29;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;113;203.43;63.29;72.29;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Eryngium campestre;1324;actual measurement (following LEDA data standards);3064.46;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;3004.31;3205.08;2683.25;3064.46;1;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Eryngium campestre;1324;actual measurement (following LEDA data standards);3802.73;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3774.81;4275.46;3246.24;3802.73;1;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Eryngium campestre;1324;actual measurement (following LEDA data standards);3788.77;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3774.81;4275.46;3246.24;3788.77;1;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Eryngium campestre;1324;actual measurement (following LEDA data standards);3124.61;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;3004.31;3205.08;2683.25;3124.61;1;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Eryngium maritimum;1328;actual measurement (following LEDA data standards);604.68;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;531.8;746.06;83.08;604.68;1;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Eryngium maritimum;1328;actual measurement (following LEDA data standards);775.35;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;772.39;950.53;469.41;775.35;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Eryngium maritimum;1328;actual measurement (following LEDA data standards);773.87;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;772.39;950.53;469.41;773.87;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Eryngium maritimum;1328;actual measurement (following LEDA data standards);677.55;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;531.8;746.06;83.08;677.55;1;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Erysimum cheiranthoides;14097;actual measurement;51.88602384;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;51.88602384;;;2;;;1996-08-03 00:00:00.0;; Erysimum cheiranthoides;14097;actual measurement;85.31294219;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;85.31294219;;;2;;;1996-09-09 00:00:00.0;; Erysimum cheiranthoides;14097;actual measurement (following LEDA data standards);9.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.49;23.78;6.03;9.24;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Erysimum cheiri;12871;actual measurement;35.44505396;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;35.44505396;;;2;;;1996-09-23 00:00:00.0;; Erysimum hieracifolium;12817;actual measurement (following LEDA data standards);5.29;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.29;11.11;1.12;5.29;2;;;2004-09-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Erysimum hieracifolium;12817;actual measurement (following LEDA data standards);5.46;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.29;11.11;1.12;5.46;2;;;2004-09-12 00:00:00.0;preaggregated value obtained from single record; Erysimum hieracifolium;12817;actual measurement (following LEDA data standards);18.36;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.86;27.35;10.53;18.36;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Erysimum hieracifolium;12817;actual measurement (following LEDA data standards);17.85;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.86;27.35;10.53;17.85;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Erysimum odoratum;13255;actual measurement (following LEDA data standards);10.32;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.78;13.58;5.14;10.32;2;;;2004-04-21 00:00:00.0;Preaggregated value obtained from single record. ; Erysimum odoratum;13255;actual measurement (following LEDA data standards);10.86;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.78;13.58;5.14;10.86;2;;;2004-04-21 00:00:00.0;preaggregated value obtained from single record; Eupatorium cannabinum;3585;actual measurement;158.5558686;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;158.5558686;;;2;;;1996-08-08 00:00:00.0;; Eupatorium cannabinum;3585;actual measurement;409.7935371;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;409.7935371;;;2;;;1996-08-28 00:00:00.0;; Euphorbia amygdaloides;20294;laboratory/greenhouse/garden experiment;14.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.37;40.03;2.59;14.2;2;;;2004-04-09 00:00:00.0;Preaggregated value obtained from single record. ; Euphorbia amygdaloides;20294;laboratory/greenhouse/garden experiment;12.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.37;40.03;2.59;12.49;2;;;2004-04-09 00:00:00.0;preaggregated value obtained from single record; Euphorbia brittingeri;20281;actual measurement (following LEDA data standards);5.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.63;12.78;3.57;5.31;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Euphorbia brittingeri;20281;actual measurement (following LEDA data standards);11.7;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.19;21.73;5.19;11.7;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Euphorbia brittingeri;20281;actual measurement (following LEDA data standards);11.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.19;21.73;5.19;11.78;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Euphorbia dulcis;20247;actual measurement (following LEDA data standards);12.33;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.9;14.88;11.34;12.33;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Euphorbia dulcis;20247;actual measurement (following LEDA data standards);12.19;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.9;14.88;11.34;12.19;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Euphorbia esula;20227;actual measurement (following LEDA data standards);1.74;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2.22;6;1.02;1.74;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Euphorbia esula;20227;actual measurement (following LEDA data standards);4.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.97;10.51;2.92;4.13;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Euphorbia esula;20227;actual measurement (following LEDA data standards);4.14;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.97;10.51;2.92;4.14;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Euphorbia exigua;20206;actual measurement;1.073333333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.073333333;;;2;;;1996-07-15 00:00:00.0;; Euphorbia helioscopia;20189;actual measurement;27.77896138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.77896138;;;2;;;1996-08-08 00:00:00.0;; Euphorbia helioscopia;20189;actual measurement;6.29375;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.29375;;;2;;;1996-06-03 00:00:00.0;; Euphorbia helioscopia;20189;actual measurement;4.552465753;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.552465753;;;2;;;1996-07-08 00:00:00.0;; Euphorbia lathyris;20168;actual measurement;196.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;196.6;;;1;;;1997-07-27 00:00:00.0;; Euphorbia lathyris;20168;actual measurement (following LEDA data standards);39.5;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;59.73;147.3;11.15;39.5;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Euphorbia lathyris;20168;actual measurement (following LEDA data standards);51.18;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;61.69;131.75;12.64;51.18;2;;;2004-07-24 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Euphorbia lathyris;20168;actual measurement (following LEDA data standards);40.68;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;61.69;131.75;12.64;40.68;2;;;2004-07-24 00:00:00.0;preaggregated value obtained from single record; Euphorbia palustris;20139;actual measurement (following LEDA data standards);29.88;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.87;53.3;13.38;29.88;1;;;2003-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Euphorbia peplus;20109;actual measurement;1.765363128;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.765363128;;;2;;;1996-07-15 00:00:00.0;; Euphorbia segetalis;20079;laboratory/greenhouse/garden experiment;1.71;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.68;2.87;.44;1.71;2;;;2004-10-11 00:00:00.0;preaggregated value obtained from single record; Euphorbia segetalis;20079;laboratory/greenhouse/garden experiment;1.68;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.68;2.87;.44;1.68;2;;;2004-10-11 00:00:00.0;Preaggregated value obtained from single record. ; Euphorbia seguierana;20085;actual measurement (following LEDA data standards);3.83;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.4;7.9;1.87;3.83;2;;;2004-05-18 00:00:00.0;Preaggregated value obtained from single record. ; Euphorbia seguierana;20085;actual measurement (following LEDA data standards);3.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.4;7.9;1.87;3.82;2;;;2004-05-18 00:00:00.0;preaggregated value obtained from single record; Euphorbia serrulata;20055;actual measurement (following LEDA data standards);4.27;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.27;6.91;1.16;4.27;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Euphorbia serrulata;20055;actual measurement (following LEDA data standards);3.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.27;6.91;1.16;3.99;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Euphrasia frigida;34486;actual measurement;1.2;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;1.2;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Euphrasia frigida;34486;actual measurement (following LEDA data standards);.97;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;.95;1.3;.3;.97;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Euphrasia nemorosa;33614;actual measurement (following LEDA data standards);1.53;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.63;3.31;.95;1.53;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Euphrasia nemorosa;33614;actual measurement (following LEDA data standards);1.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.63;3.31;.95;1.5;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Euphrasia officinalis;33149;actual measurement;3.108108108;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.108108108;;;2;;;1996-08-16 00:00:00.0;; Euphrasia stricta;33166;actual measurement (following LEDA data standards);1.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.41;2.2;.6;1.31;1;;;2003-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Euphrasia stricta;33166;actual measurement (following LEDA data standards);1.28;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.34;2.08;.82;1.28;2;;;2003-08-11 00:00:00.0;preaggregated value obtained from single record; Falcaria vulgaris;2255;actual measurement (following LEDA data standards);456.58;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;579.09;1005.38;275.3;456.58;1;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Falcaria vulgaris;2255;actual measurement (following LEDA data standards);517.84;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;579.09;1005.38;275.3;517.84;1;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. spathaceous bracts (ground leaves see UOL-LF-1-273); Falcaria vulgaris;2255;actual measurement (following LEDA data standards);330.72;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;329.69;367.43;290.92;330.72;1;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Falcaria vulgaris;2255;actual measurement (following LEDA data standards);793.33;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;893.26;1482.49;503.91;793.33;1;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. spathaceous bracts (ground leaves see UOL-LF-1-273); Falcaria vulgaris;2255;actual measurement (following LEDA data standards);636.29;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;636.29;689.03;583.55;636.29;1;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Falcaria vulgaris;2255;actual measurement (following LEDA data standards);636.29;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;636.29;689.03;583.55;636.29;1;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-871); Falcaria vulgaris;2255;actual measurement (following LEDA data standards);693.39;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;893.26;1482.49;503.91;693.39;1;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Falcaria vulgaris;2255;actual measurement (following LEDA data standards);330.21;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;329.69;367.43;290.92;330.21;1;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-871); Fallopia convolvulus;44736;actual measurement;96.64991757;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;96.64991757;;;2;;;1996-07-03 00:00:00.0;; Fallopia convolvulus;44736;actual measurement;12.15234375;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.15234375;;;2;;;1996-05-23 00:00:00.0;; Fallopia convolvulus;44736;actual measurement;23.98610039;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.98610039;;;2;;;1996-05-22 00:00:00.0;; Fallopia dumetorum;44738;actual measurement (following LEDA data standards);83.65;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;77.79;84.24;65.47;83.65;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Fallopia dumetorum;44738;actual measurement (following LEDA data standards);87.55;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;81.97;88.06;70.3;87.55;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Festuca altissima;41544;actual measurement (following LEDA data standards);65.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;72.82;123.97;30.45;65.92;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Festuca altissima;41544;actual measurement (following LEDA data standards);59.48;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;72.82;123.97;30.45;59.48;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Festuca arundinacea;40254;actual measurement;121.9676674;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;121.9676674;;;2;;;1996-06-11 00:00:00.0;; Festuca arundinacea;40254;actual measurement;312.5654309;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;312.5654309;;;2;;;1996-09-02 00:00:00.0;; Festuca brevipila;41305;actual measurement (following LEDA data standards);23.35;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.35;46.6;8.85;23.35;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Festuca brevipila;41305;actual measurement (following LEDA data standards);22.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.35;46.6;8.85;22.83;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Festuca gigantea;40761;actual measurement;123.0660057;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;123.0660057;;;2;;;1996-08-08 00:00:00.0;; Festuca ovina;40171;actual measurement;5.787919463;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.787919463;;;2;;;1996-09-02 00:00:00.0;; Festuca ovina;40171;actual measurement (following LEDA data standards);2.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.3;;;;10;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Festuca ovina;40171;actual measurement (following LEDA data standards);2.74;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.74;;;;5;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Festuca ovina;40171;actual measurement;1.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;2.12;6.13;.82;1.47;2;;;2004-05-27 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Festuca ovina;40171;actual measurement (following LEDA data standards);.43;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.44;.67;.24;.43;2;;;2005-05-29 00:00:00.0;preaggregated value obtained from single record; Festuca pallens;40789;actual measurement (following LEDA data standards);21.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.33;42.38;13.06;21.61;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Festuca pallens;40789;actual measurement (following LEDA data standards);20.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.33;42.38;13.06;20.69;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Festuca pratensis;41343;actual measurement;32.11311329;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;32.11311329;;;2;;;;; Festuca pratensis;41343;actual measurement;17.74590417;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.74590417;;;2;;;;; Festuca psammophila;42306;actual measurement (following LEDA data standards);44.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;43.29;65.34;26.4;44.84;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Festuca psammophila;42306;actual measurement (following LEDA data standards);44.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;43.29;65.34;26.4;44.7;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Festuca rubra;40103;actual measurement;37.81278962;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.81278962;;;2;;;1996-06-16 00:00:00.0;; Festuca rubra;40103;actual measurement;11.35;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;11.61;20.96;3.44;11.35;2;;;2004-05-27 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Festuca vivipara;42318;actual measurement (following LEDA data standards);4.43;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.43;;;;4;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Festuca vivipara;42318;actual measurement (following LEDA data standards);3.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.9;;;;5;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Festuca vivipara;42318;actual measurement (following LEDA data standards);3.67;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.67;;;;4;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Festuca vivipara;42318;actual measurement (following LEDA data standards);3.43;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.43;;;;3;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Festuca vivipara;42318;actual measurement (following LEDA data standards);4.03;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.03;;;;6;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Filaginella uliginosa;3719;actual measurement;1.283333333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.283333333;;;2;;;1996-08-08 00:00:00.0;; Filaginella uliginosa;3719;actual measurement (following LEDA data standards);1.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;1.97;2.62;1.4;1.83;2;;;;Preaggregated value obtained from single record. ; Filaginella uliginosa;3719;actual measurement;2.325;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.325;;;2;;;1996-09-02 00:00:00.0;; Filaginella uliginosa;3719;actual measurement;1.820689655;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.820689655;;;2;;;1996-09-24 00:00:00.0;; Filago lutescens;2658;actual measurement;8.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;8.59;12.89;6.62;8.07;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Filago pyramidata;3396;actual measurement (following LEDA data standards);.74;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.74;.74;.74;.74;4;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Filago pyramidata;3396;actual measurement (following LEDA data standards);.74;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.74;.74;.74;.74;4;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Filago pyramidata;3396;actual measurement (following LEDA data standards);1.06;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.02;1.4;.56;1.06;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Filago pyramidata;3396;actual measurement (following LEDA data standards);1.1;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.02;1.4;.56;1.1;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Filago vulgaris;5888;actual measurement;.444444444;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.444444444;;;2;;;1996-06-18 00:00:00.0;; Filago vulgaris;5888;actual measurement;1.110344828;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.110344828;;;2;;;1996-05-30 00:00:00.0;; Filipendula ulmaria;29764;actual measurement;790;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;790;;;2;;;1996-07-08 00:00:00.0;; Filipendula ulmaria;29764;actual measurement;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;151;;;2;;;;; Filipendula vulgaris;29429;actual measurement;141.8009479;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;141.8009479;;;2;;;1996-06-18 00:00:00.0;; Foeniculum vulgare;1281;actual measurement;1349.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1349.2;;;1;;;1997-05-29 00:00:00.0;; Foeniculum vulgare;1281;actual measurement;775.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;775.6;;;1;;;1997-07-14 00:00:00.0;; Fragaria vesca;30633;actual measurement;101.4418658;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;101.4418658;;;2;;;1996-09-23 00:00:00.0;; Fragaria vesca;30633;actual measurement;164.2804581;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;164.2804581;;;2;;;1996-09-05 00:00:00.0;; Fragaria viridis;29358;actual measurement (following LEDA data standards);66.97;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;64.25;77.11;49.28;66.97;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Fragaria viridis;29358;actual measurement (following LEDA data standards);68.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;64.25;77.11;49.28;68.26;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Fragaria viridis;29358;actual measurement (following LEDA data standards);75.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;74.56;92.36;55.23;75.85;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Fragaria viridis;29358;actual measurement (following LEDA data standards);77.15;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;74.56;92.36;55.23;77.15;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Fragaria viridis;29358;actual measurement (following LEDA data standards);43.92;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;44.73;76.45;19.35;43.92;1;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Frangula alnus;28032;actual measurement;78.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;78.8;;;1;;;1998-05-20 00:00:00.0;; Fritillaria meleagris;39121;actual measurement;93.57696221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;93.57696221;;;2;;;1996-06-17 00:00:00.0;; Fritillaria meleagris;39121;actual measurement (following LEDA data standards);20.65;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.65;30.92;11.24;20.65;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. ; Fritillaria meleagris;39121;actual measurement (following LEDA data standards);21.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.65;30.92;11.24;21.5;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Fumana procumbens;18723;actual measurement (following LEDA data standards);1.33;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.37;2.25;.95;1.33;3;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Fumana procumbens;18723;actual measurement (following LEDA data standards);1.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.37;2.25;.95;1.33;3;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Fumaria muralis;25544;actual measurement;27.12560976;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.12560976;;;2;;;1996-06-14 00:00:00.0;; Fumaria officinalis;25549;actual measurement;7.147196262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.147196262;;;2;;;1996-05-22 00:00:00.0;; Fumaria parviflora;25553;laboratory/greenhouse/garden experiment;22.46;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;22.46;22.46;22.46;22.46;2;;;2004-06-14 00:00:00.0;Preaggregated value obtained from single record. ; Fumaria parviflora;25553;laboratory/greenhouse/garden experiment;22.46;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;22.46;22.46;22.46;22.46;2;;;2004-06-14 00:00:00.0;preaggregated value obtained from single record; Fumaria parviflora;25553;laboratory/greenhouse/garden experiment;34;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34;34;34;34;2;;;2004-06-14 00:00:00.0;Preaggregated value obtained from single record. ; Fumaria parviflora;25553;laboratory/greenhouse/garden experiment;34;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34;34;34;34;2;;;2004-06-14 00:00:00.0;preaggregated value obtained from single record; Fumaria vaillantii;25522;actual measurement (following LEDA data standards);3.69;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.87;5.76;2.17;3.69;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Fumaria vaillantii;25522;actual measurement (following LEDA data standards);3.78;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.87;5.76;2.17;3.78;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Gagea lutea;39025;actual measurement;26.393523;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.393523;;;2;;;1996-04-30 00:00:00.0;; Gagea spathacea;38650;actual measurement (following LEDA data standards);10.66;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.66;16.31;5.93;10.66;2;;;2004-04-12 00:00:00.0;Preaggregated value obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-848); Gagea spathacea;38650;actual measurement (following LEDA data standards);10.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.66;16.31;5.93;10.47;2;;;2004-04-12 00:00:00.0;preaggregated value obtained from single record; Gagea spathacea;38650;actual measurement (following LEDA data standards);6.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.93;7.07;4.44;6.24;2;;;2004-04-12 00:00:00.0;preaggregated value obtained from single record; Gagea spathacea;38650;actual measurement (following LEDA data standards);6.08;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.93;7.07;4.44;6.08;2;;;2004-04-12 00:00:00.0;Preaggregated value obtained from single record. spathaceous bract (ground leaf see UOL-LF-1-204); Galanthus nivalis;35672;actual measurement (following LEDA data standards);46.75;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;57.45;96.5;39;46.75;2;;;2005-04-21 00:00:00.0;preaggregated value obtained from single record; Galega officinalis;21307;actual measurement (following LEDA data standards);160.75;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;168.58;250.11;112.72;160.75;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Galega officinalis;21307;actual measurement (following LEDA data standards);280.45;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;284.26;385.27;180.29;280.45;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Galega officinalis;21307;actual measurement (following LEDA data standards);274.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;284.26;385.27;180.29;274.18;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Galega officinalis;21307;actual measurement (following LEDA data standards);155.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;168.58;250.11;112.72;155.69;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Galeopsis angustifolia;23489;actual measurement;13.00186916;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.00186916;;;2;;;1996-07-11 00:00:00.0;; Galeopsis angustifolia;23489;actual measurement (following LEDA data standards);3.66;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.66;3.66;3.66;3.66;3;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Galeopsis angustifolia;23489;actual measurement (following LEDA data standards);3.66;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.66;3.66;3.66;3.66;3;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. ; Galeopsis ladanum;24587;actual measurement (following LEDA data standards);21.81;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;24.97;51.78;6.59;21.81;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Galeopsis ladanum;24587;actual measurement (following LEDA data standards);22.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.31;55.42;6.86;22.47;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Galeopsis ladanum;24587;actual measurement (following LEDA data standards);23.25;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.31;55.42;6.86;23.25;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Galeopsis ladanum;24587;actual measurement (following LEDA data standards);21.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;24.97;51.78;6.59;21.12;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Galeopsis pubescens;24228;actual measurement;8.34;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;9.15;17.6;4.68;8.34;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Galeopsis segetum;24230;actual measurement (following LEDA data standards);28.6;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;28.6;39.83;20.93;28.6;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Galeopsis segetum;24230;actual measurement (following LEDA data standards);27.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;28.6;39.83;20.93;27.56;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Galeopsis segetum;24230;actual measurement (following LEDA data standards);30.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.4;42.23;22.06;30.4;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Galeopsis segetum;24230;actual measurement (following LEDA data standards);29.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.4;42.23;22.06;29.06;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Galeopsis speciosa;23861;actual measurement;87.4560631;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;87.4560631;;;2;;;1996-08-08 00:00:00.0;; Galeopsis tetrahit;24648;actual measurement;82.27985687;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;82.27985687;;;2;;;1996-07-15 00:00:00.0;; Galinsoga ciliata;6801;actual measurement;44.22425;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.22425;;;2;;;1996-09-22 00:00:00.0;; Galinsoga ciliata;6801;laboratory/greenhouse/garden experiment;19.08;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;21.22;30.58;16.14;19.08;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Galinsoga ciliata;6801;laboratory/greenhouse/garden experiment;17.7;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.01;31.51;16.82;17.7;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Galinsoga ciliata;6801;laboratory/greenhouse/garden experiment;19.85;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.01;31.51;16.82;19.85;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Galinsoga ciliata;6801;laboratory/greenhouse/garden experiment;16.94;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;21.22;30.58;16.14;16.94;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Galinsoga parviflora;7147;laboratory/greenhouse/garden experiment;13.64;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.64;25.82;6.07;13.64;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Galinsoga parviflora;7147;laboratory/greenhouse/garden experiment;13.62;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.15;18.38;6.26;13.62;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Galinsoga parviflora;7147;laboratory/greenhouse/garden experiment;13.15;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.15;18.38;6.26;13.15;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Galinsoga parviflora;7147;laboratory/greenhouse/garden experiment;13.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.64;25.82;6.07;13.07;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Galium album subsp. pycnotrichum;32314;actual measurement (following LEDA data standards);2.9;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.89;3.35;2.42;2.9;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Galium album subsp. pycnotrichum;32314;actual measurement (following LEDA data standards);2.9;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.89;3.35;2.42;2.9;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Galium aparine;31956;actual measurement;4.508474576;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.508474576;;;2;;;1996-05-21 00:00:00.0;; Galium aparine;31956;actual measurement;7.148448687;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.148448687;;;2;;;1996-05-23 00:00:00.0;; Galium aparine;31956;actual measurement;5.430508475;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.430508475;;;2;;;1996-08-16 00:00:00.0;; Galium boreale;31917;actual measurement (following LEDA data standards);3.27;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;3.15;4.8;1.84;3.27;1;;;2005-06-20 00:00:00.0;preaggregated value obtained from single record; Galium boreale;31917;actual measurement (following LEDA data standards);1.52;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.79;3.6;.72;1.52;2;;;2005-06-07 00:00:00.0;preaggregated value obtained from single record; Galium glaucum;31858;actual measurement (following LEDA data standards);2.83;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.83;3.65;2.17;2.83;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Galium glaucum;31858;actual measurement (following LEDA data standards);2.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.83;3.65;2.17;2.82;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Galium mollugo;31782;actual measurement;2.32137931;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.32137931;;;2;;;1996-06-19 00:00:00.0;; Galium mollugo;31782;actual measurement;3.477391304;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.477391304;;;2;;;1996-06-23 00:00:00.0;; Galium mollugo;31782;actual measurement;1.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;1.38;1.75;.93;1.31;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Galium odoratum;31805;actual measurement;13.6360262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.6360262;;;2;;;1996-09-23 00:00:00.0;; Galium palustre;31813;actual measurement;.569620253;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.569620253;;;2;;;1996-08-08 00:00:00.0;; Galium palustre;31813;actual measurement;.912121212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.912121212;;;2;;;1996-08-16 00:00:00.0;; Galium parisiense;31817;laboratory/greenhouse/garden experiment;1.08;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.15;1.68;.56;1.08;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Galium parisiense;31817;laboratory/greenhouse/garden experiment;1.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.15;1.68;.56;1.06;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Galium parisiense;31817;actual measurement (following LEDA data standards);.09;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.1;.21;.07;.09;3;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Galium parisiense;31817;actual measurement (following LEDA data standards);.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.1;.21;.07;.09;3;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Galium rotundifolium;32103;actual measurement (following LEDA data standards);2.02;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.15;2.67;1.89;2.02;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Galium rotundifolium;32103;actual measurement (following LEDA data standards);1.89;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.15;2.67;1.89;1.89;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Galium saxatile;31769;actual measurement;.189655172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.189655172;;;2;;;1996-09-09 00:00:00.0;; Galium saxatile;31769;actual measurement;.202380952;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.202380952;;;2;;;1996-08-16 00:00:00.0;; Galium sterneri;31777;actual measurement;.223255814;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.223255814;;;2;;;1996-09-23 00:00:00.0;; Galium sterneri;31777;actual measurement;.409090909;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.409090909;;;2;;;1996-08-11 00:00:00.0;; Galium sylvaticum;31699;laboratory/greenhouse/garden experiment;2.95;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.21;5.04;2.13;2.95;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Galium sylvaticum;31699;laboratory/greenhouse/garden experiment;2.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.21;5.04;2.13;2.89;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Galium tricornutum;31719;laboratory/greenhouse/garden experiment;4.5;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.5;6.75;3.08;4.5;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Galium tricornutum;31719;laboratory/greenhouse/garden experiment;4.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.5;6.75;3.08;4.47;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Galium uliginosum;31724;actual measurement;.471428571;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.471428571;;;2;;;1996-09-09 00:00:00.0;; Galium uliginosum;31724;actual measurement;.27;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;.31;.7;.2;.27;2;;;2003-06-17 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Galium uliginosum;31724;actual measurement;.530769231;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.530769231;;;2;;;1996-07-08 00:00:00.0;; Galium verrucosum;32204;laboratory/greenhouse/garden experiment;2.79;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.34;3.4;.36;2.79;2;;;2004-05-24 00:00:00.0;Preaggregated value obtained from single record. ; Galium verrucosum;32204;laboratory/greenhouse/garden experiment;2.88;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.34;3.4;.36;2.88;2;;;2004-05-24 00:00:00.0;preaggregated value obtained from single record; Galium verum;31730;actual measurement;.441509434;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.441509434;;;2;;;1996-08-08 00:00:00.0;; Galium verum;31730;actual measurement;1.26693712;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.26693712;;;2;;;;; Galium verum;31730;actual measurement;.702625298;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.702625298;;;2;;;;; Genista anglica;19775;actual measurement;1.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.2;;;1;;;1997-06-24 00:00:00.0;; Genista anglica;19775;actual measurement;1.642857143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.642857143;;;2;;;1996-08-02 00:00:00.0;; Genista anglica;19775;actual measurement (following LEDA data standards);.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.95;1.48;.72;.9;5;;;2005-07-14 00:00:00.0;preaggregated value obtained from single record; Genista pilosa;20915;actual measurement (following LEDA data standards);1.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.57;1.95;.99;1.61;3;;;2004-08-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Genista pilosa;20915;actual measurement (following LEDA data standards);1.77;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.87;2.43;1.42;1.77;5;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Genista pilosa;20915;actual measurement (following LEDA data standards);1.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.57;1.95;.99;1.62;3;;;2004-08-25 00:00:00.0;preaggregated value obtained from single record; Genista tinctoria;21390;actual measurement;10.0488408;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.0488408;;;2;;;1996-07-08 00:00:00.0;; Genista tinctoria;21390;actual measurement;5.1;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;5.5;9.45;3.78;5.1;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Gentiana asclepiadea;23062;actual measurement (following LEDA data standards);19.78;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;19.13;24.27;13.33;19.78;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Gentiana lutea;22882;actual measurement (following LEDA data standards);1327.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1327.2;1837.65;782.97;1327.2;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Gentiana lutea;22882;actual measurement (following LEDA data standards);1530.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1525.16;2102.1;905.5;1530.48;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Gentiana lutea;22882;actual measurement (following LEDA data standards);1525.16;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1525.16;2102.1;905.5;1525.16;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Gentiana lutea;22882;actual measurement (following LEDA data standards);1306.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1327.2;1837.65;782.97;1306.04;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Gentiana nivalis;22851;actual measurement (following LEDA data standards);.28;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;.3;.5;.1;.28;1;;;2005-08-04 00:00:00.0;preaggregated value obtained from single record; Gentiana pneumonanthe;22875;actual measurement (following LEDA data standards);8.76;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.15;18.88;5.81;8.76;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Gentiana pneumonanthe;22875;actual measurement (following LEDA data standards);8.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.15;18.88;5.81;8.04;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Gentianella amarella;23102;actual measurement;93.22404523;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;93.22404523;;;2;;;1996-07-15 00:00:00.0;; Gentianella campestris;23049;actual measurement;9.2;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;9.2;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Gentianella germanica;22958;field experiment;10;90;1;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];unknown;10;;;;1;;12.7;;kept in a chamber, elevated CO2;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85] Gentianella germanica;22958;field experiment;7.36;90;1;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];unknown;7.36;;;;1;;16.6;;kept in a chamber;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85] Gentianella germanica;22958;field experiment;6.69;90;1;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85];unknown;6.69;;;;1;;11;;;Fischer, Markus(1997): Responses of rare calcereous grassland plants to elevated CO2: a field experiment with Gentianella germanica and Gentianella cruciata[85] Gentianella uliginosa;22746;actual measurement;3.85;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;4.93;13.5;1.8;3.85;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Geranium columbinum;22581;actual measurement;31.01761787;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.01761787;;;2;;;1996-06-18 00:00:00.0;; Geranium columbinum;22581;actual measurement;9.736760125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.736760125;;;2;;;1996-07-08 00:00:00.0;; Geranium dissectum;22583;actual measurement;41.20607211;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;41.20607211;;;2;;;1996-06-20 00:00:00.0;; Geranium dissectum;22583;actual measurement;46.49538462;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;46.49538462;;;2;;;1996-06-18 00:00:00.0;; Geranium dissectum;22583;actual measurement;51.72565329;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;51.72565329;;;2;;;1996-05-23 00:00:00.0;; Geranium lucidum;22584;actual measurement;51.21075866;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;51.21075866;;;2;;;1996-06-10 00:00:00.0;; Geranium lucidum;22584;actual measurement;20.46436404;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.46436404;;;2;;;1996-06-03 00:00:00.0;; Geranium molle;22585;actual measurement;27.5775266;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.5775266;;;2;;;1996-05-23 00:00:00.0;; Geranium molle;22585;actual measurement;33.20197072;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;33.20197072;;;2;;;1996-05-22 00:00:00.0;; Geranium molle;22585;actual measurement;19.33546326;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.33546326;;;2;;;1996-06-10 00:00:00.0;; Geranium palustre;22587;actual measurement (following LEDA data standards);223.44;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;223.15;317.57;129.96;223.44;2;;;2005-08-02 00:00:00.0;preaggregated value obtained from single record; Geranium phaeum;22588;actual measurement (following LEDA data standards);214;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;217.94;273;173.5;214;2;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Geranium phaeum;22588;actual measurement (following LEDA data standards);398;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;452;837;165;398;1;;;2004-08-03 00:00:00.0;preaggregated value obtained from single record; Geranium pratense;22589;actual measurement;688.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;688.4;;;1;;;1997-08-18 00:00:00.0;; Geranium pratense;22589;actual measurement;629.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;629.2;;;2;;;1996-09-23 00:00:00.0;; Geranium pusillum;22590;actual measurement;60.23564767;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;60.23564767;;;2;;;1996-05-23 00:00:00.0;; Geranium pusillum;22590;actual measurement;11.43921247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.43921247;;;2;;;1996-06-03 00:00:00.0;; Geranium pusillum;22590;actual measurement;151.3540849;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;151.3540849;;;2;;;1996-05-23 00:00:00.0;; Geranium pyrenaicum;22631;actual measurement;188.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;188.9;;;1;;;1997-08-22 00:00:00.0;; Geranium robertianum;22592;actual measurement;47.06654676;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.06654676;;;2;;;1996-06-24 00:00:00.0;; Geranium robertianum;22592;actual measurement;49.69214381;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;49.69214381;;;2;;;1996-07-15 00:00:00.0;; Geranium robertianum;22592;actual measurement;26.78871702;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.78871702;;;2;;;1996-06-18 00:00:00.0;; Geranium sanguineum;22557;actual measurement;44.02042503;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.02042503;;;2;;;1996-07-11 00:00:00.0;; Geranium sanguineum;22557;actual measurement;70.52346425;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;70.52346425;;;2;;;1996-06-18 00:00:00.0;; Geranium sylvaticum;22559;actual measurement;158.6842876;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;158.6842876;;;2;;;;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);42.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;42.4;;;;1;;;2003-08-28 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);51;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;51;;;;1;;;2003-08-28 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);53.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;53.3;;;;1;;;2003-08-30 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);53.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;53.3;;;;1;;;2003-02-09 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);68.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;68.2;;;;1;;;2003-02-09 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);125.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;125.4;;;;1;;;2003-02-09 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);20.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20.7;;;;1;;;2003-08-29 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);61.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;61.3;;;;1;;;2003-08-29 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);63.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;63.9;;;;1;;;2003-04-09 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);106.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;106.7;;;;1;;;2003-04-09 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);129.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;129.3;;;;1;;;2003-04-09 00:00:00.0;; Geranium sylvaticum;22559;actual measurement (following LEDA data standards);166.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;166.3;;;;1;;;2003-04-09 00:00:00.0;; Geranium sylvaticum;22559;actual measurement;203.2865924;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;203.2865924;;;2;;;1996-06-17 00:00:00.0;; Geum rivale;29366;actual measurement;288.0873672;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;288.0873672;;;2;;;1996-06-10 00:00:00.0;; Geum urbanum;30638;actual measurement;151.9693888;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;151.9693888;;;2;;;1996-06-11 00:00:00.0;; Glaucium flavum;25533;laboratory/greenhouse/garden experiment;287.17;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;287.17;404.48;189.01;287.17;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ; Glaucium flavum;25533;laboratory/greenhouse/garden experiment;274.64;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;287.17;404.48;189.01;274.64;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Glaux maritima;28861;actual measurement (following LEDA data standards);1.28;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.42;2.13;.84;1.28;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Glaux maritima;28861;actual measurement (following LEDA data standards);1.8;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2;3.16;1.11;1.8;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Glaux maritima;28861;field experiment;.12;7;1;Pyankov, Vladimir I.(1999): Leaf structure and specific leaf mass: the alpine desert plants of the Eastern Pamirs, Tadjikistan;unknown;.12;;;;10;;;;;Pyankov, Vladimir I.(1999): Leaf structure and specific leaf mass: the alpine desert plants of the Eastern Pamirs, Tadjikistan Glechoma hederacea;24650;actual measurement;34.09196286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;34.09196286;;;2;;;1996-09-02 00:00:00.0;; Glechoma hederacea;24650;actual measurement;7.821440129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.821440129;;;2;;;1996-06-11 00:00:00.0;; Globularia punctata;25198;actual measurement (following LEDA data standards);52.59;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;50.53;64.59;32.81;52.59;2;;;2004-04-24 00:00:00.0;Preaggregated value obtained from single record. ; Globularia punctata;25198;actual measurement (following LEDA data standards);54.65;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;50.53;64.59;32.81;54.65;2;;;2004-04-24 00:00:00.0;preaggregated value obtained from single record; Globularia punctata;25198;actual measurement (following LEDA data standards);60.59;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;58.59;74.21;38.8;60.59;2;;;2004-04-24 00:00:00.0;Preaggregated value obtained from single record. ; Globularia punctata;25198;actual measurement (following LEDA data standards);62.58;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;58.59;74.21;38.8;62.58;2;;;2004-04-24 00:00:00.0;preaggregated value obtained from single record; Glyceria declinata;42323;actual measurement;6.63825;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.63825;;;2;;;1996-08-31 00:00:00.0;; Glyceria declinata;42323;actual measurement;12.94948932;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.94948932;;;2;;;1996-08-16 00:00:00.0;; Glyceria declinata;42323;actual measurement;15.37266332;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.37266332;;;2;;;1996-08-08 00:00:00.0;; Glyceria fluitans;40814;actual measurement;34.10645649;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;34.10645649;;;2;;;1996-08-08 00:00:00.0;; Glyceria fluitans;40814;actual measurement;24.156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.156;;;2;;;1996-09-23 00:00:00.0;; Glyceria fluitans;40814;actual measurement (following LEDA data standards);27.83;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;28.86;55.1;9.3;27.83;2;;;;Preaggregated value obtained from single record. ; Glyceria maxima;40135;actual measurement;427.0973767;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;427.0973767;;;2;;;1996-08-08 00:00:00.0;; Glyceria maxima;40135;actual measurement (following LEDA data standards);27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;31.12;58.1;16.9;27;2;;;;Preaggregated value obtained from single record. ; Glyceria maxima;40135;actual measurement;467.8725443;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;467.8725443;;;2;;;1996-09-09 00:00:00.0;; Glyceria plicata;40816;actual measurement;19.04492363;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.04492363;;;2;;;1996-08-28 00:00:00.0;; Glyceria plicata;40816;actual measurement (following LEDA data standards);28.85;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;28.85;40.35;20.2;28.85;2;;;;Preaggregated value obtained from single record. ; Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);4.3;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.92;6.03;1.17;4.3;2;;;2004-09-20 00:00:00.0;preaggregated value obtained from single record; Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);2.57;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2.65;3.6;1.31;2.57;2;;;2004-07-21 00:00:00.0;preaggregated value obtained from single record; Gnaphalium luteo-album;7695;actual measurement (following LEDA data standards);3.92;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.92;6.03;1.17;3.92;2;;;2004-09-20 00:00:00.0;Preaggregated value obtained from single record. ; Gratiola officinalis;33117;actual measurement (following LEDA data standards);5.82;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.81;8.78;3.2;5.82;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Gratiola officinalis;33117;actual measurement (following LEDA data standards);6.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.81;8.78;3.2;6.12;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Groenlandia densa;43982;actual measurement (following LEDA data standards);.67;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.78;1.5;.59;.67;2;;;2004-07-15 00:00:00.0;preaggregated value obtained from single record; Gymnadenia conopsea;39638;actual measurement;31.26950067;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.26950067;;;2;;;1996-06-03 00:00:00.0;; Gymnadenia conopsea;39638;actual measurement;62;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;62;;;2;;;1996-07-11 00:00:00.0;; Gymnadenia conopsea;39638;actual measurement;126.1663308;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;126.1663308;;;2;;;1996-08-29 00:00:00.0;; Gymnadenia conopsea;39638;actual measurement (following LEDA data standards);124.47;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;136.67;232.15;26.58;124.47;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Gymnadenia odoratissima;39639;actual measurement (following LEDA data standards);22.39;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.81;32.2;4.39;22.39;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Gymnadenia odoratissima;39639;actual measurement (following LEDA data standards);22.98;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.81;32.2;4.39;22.98;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Gymnocarpium dryopteris;355;actual measurement (following LEDA data standards);102.8;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;122.45;229.07;42.83;102.8;1;;;2003-07-23 00:00:00.0;Preaggregated value obtained from single record. ; Gymnocarpium dryopteris;355;actual measurement (following LEDA data standards);128.57;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;154.14;283.6;45.27;128.57;1;;;2003-07-23 00:00:00.0;Preaggregated value obtained from single record. ; Gymnocarpium robertianum;359;actual measurement;66.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;66.3;;;2;;;1996-09-23 00:00:00.0;; Gypsophila perfoliata;16510;actual measurement (following LEDA data standards);75.8;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;113.52;427.8;40.49;75.8;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Gypsophila perfoliata;16510;actual measurement (following LEDA data standards);74.9;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;113.52;427.8;40.49;74.9;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Gypsophila repens;17131;actual measurement (following LEDA data standards);3.85;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.85;5.02;2.94;3.85;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Gypsophila repens;17131;actual measurement (following LEDA data standards);3.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.85;5.02;2.94;3.99;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Gypsophila scorzonerifolia Ser.;17132;actual measurement (following LEDA data standards);205.91;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;221.9;357.56;112.63;205.91;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Gypsophila scorzonerifolia Ser.;17132;actual measurement (following LEDA data standards);189.92;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;221.9;357.56;112.63;189.92;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Halimione pedunculata;17799;actual measurement (following LEDA data standards);6.75;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.75;9.65;3.2;6.75;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Halimione pedunculata;17799;actual measurement (following LEDA data standards);6.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.75;9.65;3.2;6.77;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Halimione portulacoides;17931;actual measurement;37.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.8;;;1;;;1998-09-10 00:00:00.0;; Helianthemum canum;18656;actual measurement;6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6;;;1;;;1997-09-26 00:00:00.0;; Helianthemum nummularium;18594;actual measurement;5.539920949;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.539920949;;;2;;;1996-09-02 00:00:00.0;; Helianthus annuus;7986;actual measurement (following LEDA data standards);534;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;573;866.5;319;534;2;;;2005-08-08 00:00:00.0;preaggregated value obtained from single record; Helianthus tuberosus;7788;actual measurement (following LEDA data standards);628.25;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;633.92;941.5;268.5;628.25;2;;;2004-07-15 00:00:00.0;preaggregated value obtained from single record; Helichrysum arenarium;7066;actual measurement (following LEDA data standards);20.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.18;37.59;16.72;20.45;1;;;2003-08-10 00:00:00.0;Preaggregated value obtained from single record. ; Helleborus foetidus;27081;actual measurement;668.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;668.5;;;1;;;1997-09-29 00:00:00.0;; Helleborus foetidus;27081;actual measurement (following LEDA data standards);319.05;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;313.36;465;150.34;319.05;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Helleborus foetidus;27081;actual measurement (following LEDA data standards);415.1;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;409.33;612.09;195.02;415.1;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Helleborus viridis;27076;actual measurement;2428.443626;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2428.443626;;;2;;;1996-06-18 00:00:00.0;; Hepatica nobilis;26984;laboratory/greenhouse/garden experiment;84.58;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;84.52;105.97;66.12;84.58;2;;;2004-04-15 00:00:00.0;Preaggregated value obtained from single record. ; Hepatica nobilis;26984;laboratory/greenhouse/garden experiment;87.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;84.52;105.97;66.12;87.03;2;;;2004-04-15 00:00:00.0;preaggregated value obtained from single record; Hepatica nobilis;26984;laboratory/greenhouse/garden experiment;130.35;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;130.35;159.93;94.26;130.35;2;;;2004-04-15 00:00:00.0;Preaggregated value obtained from single record. ; Hepatica nobilis;26984;laboratory/greenhouse/garden experiment;130.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;130.35;159.93;94.26;130.74;2;;;2004-04-15 00:00:00.0;preaggregated value obtained from single record; Heracleum mantegazzianum;1295;actual measurement;24402.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24402.9;;;1;;;1997-06-06 00:00:00.0;; Heracleum mantegazzianum;1295;actual measurement (following LEDA data standards);1125.2;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1395.11;2600;720.5;1125.2;1;;;2005-08-10 00:00:00.0;preaggregated value obtained from single record; Heracleum mantegazzianum;1295;actual measurement (following LEDA data standards);16419.3;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;22243.35;39994.8;10609.9;16419.3;1;;;2005-08-10 00:00:00.0;preaggregated value obtained from single record; Heracleum mantegazzianum;1295;actual measurement (following LEDA data standards);10811.35;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;without petiole and rachis;11902.08;20155.8;7080.6;10811.35;1;;;2005-08-10 00:00:00.0;preaggregated value obtained from single record; Heracleum sphondylium;1232;actual measurement;2314.498521;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2314.498521;;;2;;;;; Heracleum sphondylium;1232;actual measurement;4912.250276;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4912.250276;;;2;;;1996-06-16 00:00:00.0;; Heracleum sphondylium;1232;actual measurement;4624.630774;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4624.630774;;;2;;;;; Herniaria glabra;16521;actual measurement (following LEDA data standards);.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.24;.28;.19;.25;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Herniaria hirsuta;17001;laboratory/greenhouse/garden experiment;.45;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.45;.6;.3;.45;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Herniaria hirsuta;17001;actual measurement (following LEDA data standards);.64;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.64;.64;.64;.64;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Herniaria hirsuta;17001;laboratory/greenhouse/garden experiment;.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.45;.6;.3;.45;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Hesperis matronalis;14004;actual measurement;75.56742608;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;75.56742608;;;2;;;1996-06-25 00:00:00.0;; Hesperis matronalis;14004;actual measurement;251.0786916;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;251.0786916;;;2;;;1996-06-03 00:00:00.0;; Hesperis matronalis;14004;laboratory/greenhouse/garden experiment;9.17;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.17;9.17;9.17;9.17;2;;;2004-10-08 00:00:00.0;Preaggregated value obtained from single record. ; Hesperis matronalis;14004;laboratory/greenhouse/garden experiment;9.17;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.17;9.17;9.17;9.17;2;;;2004-10-08 00:00:00.0;preaggregated value obtained from single record; Hesperis matronalis;14004;laboratory/greenhouse/garden experiment;9.89;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.89;9.89;9.89;9.89;2;;;2004-10-08 00:00:00.0;preaggregated value obtained from single record; Hesperis matronalis;14004;laboratory/greenhouse/garden experiment;9.89;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.89;9.89;9.89;9.89;2;;;2004-10-08 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium acuminatum;7467;actual measurement;8.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;9.2;22.71;2.82;8.47;2;;;2004-05-26 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Hieracium acuminatum;7467;actual measurement (following LEDA data standards);53.54;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.82;95.84;43.47;53.54;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hieracium acuminatum;7467;actual measurement (following LEDA data standards);53.01;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.82;95.84;43.47;53.01;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);20.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;20.8;;;;1;;;2003-04-09 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);10.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.4;;;;1;;;2003-08-20 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);22.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22.9;;;;1;;;2003-08-18 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);20.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20.2;;;;1;;;2003-04-09 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);21.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;21.2;;;;1;;;2003-04-09 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);13.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;13.4;;;;1;;;2003-08-31 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);18.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.3;;;;1;;;2003-08-31 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);16.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;16.9;;;;1;;;2003-08-18 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);17.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.7;;;;1;;;2003-08-18 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);18;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18;;;;1;;;2003-08-18 00:00:00.0;; Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);10.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.2;;;;1;;;2003-08-20 00:00:00.0;; Hieracium amplexicaule;33881;actual measurement (following LEDA data standards);254.25;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;255.3;453;133.5;254.25;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Hieracium aurantiacum;7024;actual measurement;37.3102986;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.3102986;;;2;;;1996-06-18 00:00:00.0;; Hieracium aurantiacum;7024;actual measurement (following LEDA data standards);42.05;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;42.57;61.85;16;42.05;2;;;2004-08-15 00:00:00.0;preaggregated value obtained from single record; Hieracium bifidum;14677;actual measurement (following LEDA data standards);147.01;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;144.48;151.74;132.18;147.01;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hieracium bifidum;14677;actual measurement (following LEDA data standards);23.69;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;24.18;42.11;6.9;23.69;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium bifidum;14677;actual measurement (following LEDA data standards);149.53;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;144.48;151.74;132.18;149.53;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Hieracium bifidum;14677;actual measurement (following LEDA data standards);23.2;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;24.18;42.11;6.9;23.2;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Hieracium bifidum;14677;actual measurement (following LEDA data standards);166.71;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;165.17;172.69;154.56;166.71;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hieracium bifidum;14677;actual measurement (following LEDA data standards);37.7;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.09;51.31;8.4;37.7;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Hieracium bifidum;14677;actual measurement (following LEDA data standards);168.26;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;165.17;172.69;154.56;168.26;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Hieracium bifidum;14677;actual measurement (following LEDA data standards);34.9;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.09;51.31;8.4;34.9;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium cymosum;6921;actual measurement (following LEDA data standards);66.67;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;79.22;130.38;49.01;66.67;2;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Hieracium echioides;6543;actual measurement (following LEDA data standards);26.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34.08;71.69;16.81;26.92;2;;;2004-09-03 00:00:00.0;preaggregated value obtained from single record; Hieracium echioides;6543;actual measurement (following LEDA data standards);27.52;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34.08;71.69;16.81;27.52;2;;;2004-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium flagellare;7042;actual measurement;73.69356522;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;73.69356522;;;2;;;1996-05-23 00:00:00.0;; Hieracium glaucinum;14515;actual measurement (following LEDA data standards);117.21;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.19;184.44;63.43;117.21;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hieracium glaucinum;14515;actual measurement (following LEDA data standards);113.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.19;184.44;63.43;113.99;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Hieracium glaucinum;14515;actual measurement (following LEDA data standards);123.28;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;129.83;205.3;76.42;123.28;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hieracium glaucinum;14515;actual measurement (following LEDA data standards);117.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;129.83;205.3;76.42;117.75;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Hieracium humile;34141;actual measurement (following LEDA data standards);34.43;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.49;38.43;33.6;34.43;2;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Hieracium lactucella;7271;actual measurement (following LEDA data standards);14.35;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;15.8;30;10.7;14.35;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Hieracium lactucella;7271;actual measurement;6.1;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;6.1;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Hieracium maculatum;16770;actual measurement (following LEDA data standards);82.79;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;85.4;128.29;42.13;82.79;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hieracium maculatum;16770;actual measurement (following LEDA data standards);98.95;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;100.59;150.35;51.21;98.95;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Hieracium maculatum;16770;actual measurement (following LEDA data standards);99.77;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;100.59;150.35;51.21;99.77;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hieracium maculatum;16770;actual measurement (following LEDA data standards);80.18;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;85.4;128.29;42.13;80.18;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Hieracium murorum;14443;actual measurement (following LEDA data standards);89.96;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;91.92;132.61;68.23;89.96;2;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium murorum;14443;actual measurement (following LEDA data standards);85.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;91.92;132.61;68.23;85.99;2;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Hieracium murorum;14443;actual measurement (following LEDA data standards);118.04;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;122.1;174.74;82.34;118.04;2;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium murorum;14443;actual measurement (following LEDA data standards);114.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;122.1;174.74;82.34;114.24;2;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Hieracium pilosella;6658;actual measurement;4.222522523;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.222522523;;;2;;;1996-09-02 00:00:00.0;; Hieracium piloselloides;6837;actual measurement (following LEDA data standards);1.97;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.19;3.18;1.41;1.97;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium piloselloides;6837;actual measurement (following LEDA data standards);.22;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.25;.34;.2;.22;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium sabaudum;44218;actual measurement (following LEDA data standards);36.91;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;36.91;47.58;24.27;36.91;2;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium sabaudum;44218;actual measurement (following LEDA data standards);37.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;36.91;47.58;24.27;37.28;2;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Hieracium umbellatum;7093;actual measurement (following LEDA data standards);51.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;51.63;61.32;41.77;51.9;1;;;2003-07-22 00:00:00.0;Preaggregated value obtained from single record. ; Hieracium vulgatum;17779;actual measurement (following LEDA data standards);70.75;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;72.4;119;40;70.75;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Hieracium x floribundum;8859;actual measurement (following LEDA data standards);19.89;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.24;34.79;11.03;19.89;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Hieracium x floribundum;8859;actual measurement (following LEDA data standards);21.24;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.24;34.79;11.03;21.24;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hierochloe odorata;42519;actual measurement (following LEDA data standards);.77;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.77;1.09;.43;.77;1;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. ; Hierochloe odorata;42519;actual measurement (following LEDA data standards);.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.77;1.09;.43;.76;1;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Himantoglossum hircinum;39644;actual measurement (following LEDA data standards);171.06;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;177.78;212.87;149.41;171.06;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Himantoglossum hircinum;39644;actual measurement (following LEDA data standards);174.42;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;177.78;212.87;149.41;174.42;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Hippocrepis comosa;21868;actual measurement;2.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.4;;;1;;;1997-09-13 00:00:00.0;; Hippocrepis comosa;21868;actual measurement (following LEDA data standards);22.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.31;30.79;15.9;22.84;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Hippocrepis comosa;21868;actual measurement (following LEDA data standards);23.31;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.31;30.79;15.9;23.31;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Hippocrepis comosa;21868;actual measurement (following LEDA data standards);18.47;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;18.47;25.66;11.37;18.47;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Hippocrepis comosa;21868;actual measurement (following LEDA data standards);18.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;18.47;25.66;11.37;18.1;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Hippuris vulgaris;24425;actual measurement;1.057142857;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.057142857;;;2;;;1996-09-27 00:00:00.0;; Hippuris vulgaris;24425;actual measurement;1.844290657;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.844290657;;;2;;;1996-08-08 00:00:00.0;; Hippuris vulgaris;24425;actual measurement (following LEDA data standards);1.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.33;2.17;1.07;1.27;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Hippuris vulgaris;24425;actual measurement (following LEDA data standards);1.28;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.33;2.17;1.07;1.28;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Hirschfeldia incana;14011;actual measurement;73.68644732;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;73.68644732;;;2;;;1996-09-02 00:00:00.0;; Hirschfeldia incana;14011;laboratory/greenhouse/garden experiment;359.45;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;421.58;741.32;216.54;359.45;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Hirschfeldia incana;14011;laboratory/greenhouse/garden experiment;353.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;421.58;741.32;216.54;353.45;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Holcus lanatus;42613;actual measurement;37.63384045;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.63384045;;;2;;;;; Holcus lanatus;42613;actual measurement (following LEDA data standards);18.5;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;17.88;31.7;8.15;18.5;2;;;;Preaggregated value obtained from single record. ; Holcus lanatus;42613;actual measurement;6.25;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;8.12;19.79;2.47;6.25;2;;;2003-06-15 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Holcus lanatus;42613;actual measurement;24.83059361;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.83059361;;;2;;;;; Holcus mollis;42614;actual measurement;49.8278844;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;49.8278844;;;2;;;1996-07-08 00:00:00.0;; Holcus mollis;42614;actual measurement;10.40214106;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.40214106;;;2;;;1996-06-19 00:00:00.0;; Holosteum umbellatum;17010;actual measurement (following LEDA data standards);.96;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.04;1.75;.4;.96;2;;;2005-05-05 00:00:00.0;preaggregated value obtained from single record; Homogyne alpina;9177;actual measurement (following LEDA data standards);41.69;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;41.69;75.15;23.92;41.69;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Homogyne alpina;9177;actual measurement (following LEDA data standards);39.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;41.69;75.15;23.92;39.8;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Honkenya peploides;16523;actual measurement (following LEDA data standards);4.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.65;6.88;2.26;4.58;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Honkenya peploides;16523;actual measurement (following LEDA data standards);1.01;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.21;1.93;.78;1.01;2;;;2004-09-09 00:00:00.0;preaggregated value obtained from single record; Hordelymus europaeus;42617;actual measurement;113.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;113.3;;;1;;;1997-06-03 00:00:00.0;; Hordelymus europaeus;42617;actual measurement (following LEDA data standards);48.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.09;92.55;31.7;48.25;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Hordeum distichon;43701;laboratory/greenhouse/garden experiment;77.56;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;77.56;99.23;55.06;77.56;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Hordeum distichon;43701;laboratory/greenhouse/garden experiment;77.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;77.56;99.23;55.06;77.24;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Hordeum jubatum;43702;actual measurement;6.666200466;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.666200466;;;2;;;1996-09-09 00:00:00.0;; Hordeum marinum;43180;laboratory/greenhouse/garden experiment;.67;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.78;1.22;.52;.67;2;;;2005-08-09 00:00:00.0;preaggregated value obtained from single record; Hordeum murinum;42447;actual measurement;31.4894382;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.4894382;;;2;;;1996-06-20 00:00:00.0;; Hordeum murinum;42447;laboratory/greenhouse/garden experiment;5.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.78;9.76;4.13;5.14;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Hordeum murinum;42447;laboratory/greenhouse/garden experiment;5.28;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.78;9.76;4.13;5.28;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Hordeum murinum;42447;actual measurement;18.26289216;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.26289216;;;2;;;1996-09-02 00:00:00.0;; Hordeum murinum;42447;field experiment;.00492;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00492;;;;20;;.63;1989-05-12 00:00:00.0;reproductive tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Hordeum secalinum;43182;actual measurement;11.38489209;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.38489209;;;2;;;1996-06-20 00:00:00.0;; Hordeum secalinum;43182;actual measurement;17.14470046;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.14470046;;;2;;;1996-06-24 00:00:00.0;; Hordeum vulgare;42448;laboratory/greenhouse/garden experiment;157.14;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;158.61;171.6;148.55;157.14;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Hordeum vulgare;42448;laboratory/greenhouse/garden experiment;155.67;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;158.61;171.6;148.55;155.67;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Hornungia petraea;14530;actual measurement;.736842105;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.736842105;;;2;;;1996-04-30 00:00:00.0;; Hottonia palustris;28918;actual measurement (following LEDA data standards);1.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;1.55;1.98;.78;1.68;2;;;;Preaggregated value obtained from single record. ; Humulus lupulus;14697;actual measurement;482.4196784;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;482.4196784;;;2;;;1996-09-02 00:00:00.0;; Humulus lupulus;14697;actual measurement;390.3574427;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;390.3574427;;;2;;;1996-09-27 00:00:00.0;; Huperzia selago;464;actual measurement (following LEDA data standards);.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.48;.61;.32;.5;10;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. leaves were measured; Huperzia selago;464;actual measurement (following LEDA data standards);.51;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.48;.61;.32;.51;10;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Hyacinthoides hispanica;38119;actual measurement;130.1544645;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;130.1544645;;;2;;;1996-06-03 00:00:00.0;; Hyacinthoides hispanica;38119;actual measurement;182.925404;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;182.925404;;;2;;;1996-05-30 00:00:00.0;; Hyacinthoides non-scripta;38541;actual measurement;81.40627284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;81.40627284;;;2;;;1996-05-23 00:00:00.0;; Hyacinthoides non-scripta;38541;actual measurement;244.502212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;244.502212;;;2;;;1996-05-21 00:00:00.0;; Hydrocharis morsus-ranae;36302;actual measurement (following LEDA data standards);19.03;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;18.21;29.05;9.85;19.03;2;;;;Preaggregated value obtained from single record. ; Hydrocharis morsus-ranae;36302;actual measurement (following LEDA data standards);50.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;50.59;65.18;39.06;50.72;1;;;2003-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Hydrocharis morsus-ranae;36302;actual measurement (following LEDA data standards);39.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;39.22;51.4;27.35;39.76;1;;;2003-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Hydrocotyle vulgaris;2206;actual measurement;29.43278689;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.43278689;;;2;;;1996-09-24 00:00:00.0;; Hydrocotyle vulgaris;2206;actual measurement;23.15;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;21.79;32.28;7.97;23.15;2;;;2003-06-29 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Hydrocotyle vulgaris;2206;actual measurement;17.15662651;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.15662651;;;2;;;1996-09-09 00:00:00.0;; Hydrocotyle vulgaris;2206;actual measurement (following LEDA data standards);15.63;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;15.71;24.05;9.6;15.63;2;;;;Preaggregated value obtained from single record. ; Hydrocotyle vulgaris;2206;actual measurement;15.94;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;15.66;24.83;5.6;15.94;2;;;2003-06-29 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Hyoscyamus niger;34956;laboratory/greenhouse/garden experiment;78.94;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;84.34;171.59;7.9;78.94;2;;;2004-07-14 00:00:00.0;Preaggregated value obtained from single record. ; Hyoscyamus niger;34956;laboratory/greenhouse/garden experiment;73.53;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;84.34;171.59;7.9;73.53;2;;;2004-07-14 00:00:00.0;preaggregated value obtained from single record; Hyoscyamus niger;34956;laboratory/greenhouse/garden experiment;78.63;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;92.03;189.01;8.45;78.63;2;;;2004-07-14 00:00:00.0;preaggregated value obtained from single record; Hyoscyamus niger;34956;laboratory/greenhouse/garden experiment;85.33;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;92.03;189.01;8.45;85.33;2;;;2004-07-14 00:00:00.0;Preaggregated value obtained from single record. ; Hypericum calycinum;23310;actual measurement;142.9710726;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;142.9710726;;;2;;;1996-08-27 00:00:00.0;; Hypericum elodes;23279;actual measurement (following LEDA data standards);5;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5;6.66;2.36;5;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Hypericum elodes;23279;actual measurement (following LEDA data standards);5.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5;6.66;2.36;5.32;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Hypericum elodes;23279;actual measurement (following LEDA data standards);1.56;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.5;2.09;.78;1.56;2;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Hypericum hirsutum;23250;actual measurement;12.43333333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.43333333;;;2;;;1996-09-27 00:00:00.0;; Hypericum hirsutum;23250;actual measurement;15.05290069;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.05290069;;;2;;;1996-08-29 00:00:00.0;; Hypericum humifusum;23252;actual measurement (following LEDA data standards);.9;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1;1.65;.37;.9;2;;;2004-08-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hypericum humifusum;23252;actual measurement (following LEDA data standards);.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1;1.65;.37;.89;2;;;2004-08-26 00:00:00.0;preaggregated value obtained from single record; Hypericum humifusum;23252;laboratory/greenhouse/garden experiment;2.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.2;3.71;1.51;2.03;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Hypericum humifusum;23252;laboratory/greenhouse/garden experiment;2.11;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.2;3.71;1.51;2.11;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Hypericum maculatum;23226;actual measurement;25.3996215;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25.3996215;;;2;;;1996-09-27 00:00:00.0;; Hypericum maculatum;23226;actual measurement;11.6;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;11.6;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Hypericum montanum;23241;actual measurement;18.03420428;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.03420428;;;2;;;1996-07-15 00:00:00.0;; Hypericum perforatum;23212;actual measurement;6.329157667;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.329157667;;;2;;;1996-08-08 00:00:00.0;; Hypericum perforatum;23212;actual measurement;6.686111111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.686111111;;;2;;;1996-09-05 00:00:00.0;; Hypericum perforatum;23212;actual measurement;13.15919118;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.15919118;;;2;;;1996-07-15 00:00:00.0;; Hypericum pulchrum;23219;actual measurement;4.708045977;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.708045977;;;2;;;1996-08-14 00:00:00.0;; Hypericum tetrapterum;23203;actual measurement;5.575838926;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.575838926;;;2;;;1996-08-28 00:00:00.0;; Hypericum tetrapterum;23203;actual measurement;7.143209877;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.143209877;;;2;;;1996-08-16 00:00:00.0;; Hypochaeris glabra;7007;actual measurement;44.02683047;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.02683047;;;2;;;1996-05-23 00:00:00.0;; Hypochaeris glabra;7007;laboratory/greenhouse/garden experiment;4.91;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.91;4.91;4.91;4.91;2;;;2004-10-08 00:00:00.0;Preaggregated value obtained from single record. ; Hypochaeris glabra;7007;laboratory/greenhouse/garden experiment;4.91;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.91;4.91;4.91;4.91;2;;;2004-10-08 00:00:00.0;preaggregated value obtained from single record; Hypochaeris glabra;7007;laboratory/greenhouse/garden experiment;4.52;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;4.52;4.52;4.52;4.52;2;;;2004-10-08 00:00:00.0;preaggregated value obtained from single record; Hypochaeris glabra;7007;laboratory/greenhouse/garden experiment;4.52;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;4.52;4.52;4.52;4.52;2;;;2004-10-08 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Hypochaeris maculata;8386;actual measurement (following LEDA data standards);81.3;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;85.75;140.45;62.55;81.3;1;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Hypochaeris maculata;8386;actual measurement (following LEDA data standards);154.35;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;164.14;246.6;116.5;154.35;2;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Hypochoeris radicata;6499;actual measurement;57.81359703;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;57.81359703;;;2;;;;; Hypochoeris radicata;6499;actual measurement;92.78677075;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;92.78677075;;;2;;;1996-07-08 00:00:00.0;; Hypochoeris radicata;6499;actual measurement;176.4333423;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;176.4333423;;;2;;;;; Hyssopus officinalis;24658;actual measurement (following LEDA data standards);7.9;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;7.98;10.9;6;7.9;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Iberis umbellata;14042;laboratory/greenhouse/garden experiment;16.04;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.75;20.48;5.54;16.04;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Iberis umbellata;14042;laboratory/greenhouse/garden experiment;17.29;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.75;20.48;5.54;17.29;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Illecebrum verticillatum;17139;actual measurement (following LEDA data standards);.07;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.07;.09;.04;.07;9;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Illecebrum verticillatum;17139;actual measurement (following LEDA data standards);.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.07;.09;.04;.07;9;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Impatiens glandulifera;11749;actual measurement;280.0239458;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;280.0239458;;;2;;;1996-09-05 00:00:00.0;; Impatiens glandulifera;11749;actual measurement;344.2288229;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;344.2288229;;;2;;;1996-09-02 00:00:00.0;; Impatiens noli-tangere;11751;actual measurement;47.60202285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.60202285;;;2;;;1996-07-15 00:00:00.0;; Impatiens parviflora;11752;actual measurement (following LEDA data standards);32.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;36.47;61.46;21.71;32.74;2;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. ; Impatiens parviflora;11752;actual measurement (following LEDA data standards);32.3;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;36.47;61.46;21.71;32.3;2;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Impatiens parviflora;11752;actual measurement (following LEDA data standards);33.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;37.33;65.53;23.51;33.26;2;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Impatiens parviflora;11752;actual measurement (following LEDA data standards);33.8;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;37.33;65.53;23.51;33.8;2;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. ; Inula britannica;8741;actual measurement (following LEDA data standards);51.52;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;63;106.42;35.21;51.52;1;;;2003-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Inula conyza;8404;actual measurement;766.5991244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;766.5991244;;;2;;;1996-09-02 00:00:00.0;; Inula conyza;8404;actual measurement;296.7342093;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;296.7342093;;;2;;;1996-07-11 00:00:00.0;; Inula helenium;7875;actual measurement (following LEDA data standards);5914.5;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;5898.13;8749.5;3014;5914.5;2;;;2005-08-03 00:00:00.0;preaggregated value obtained from single record; Inula salicina;6502;actual measurement (following LEDA data standards);41.1;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;44.15;60.22;26.65;41.1;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Inula salicina;6502;actual measurement (following LEDA data standards);41.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;44.15;60.22;26.65;41.08;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Inula salicina;6502;actual measurement (following LEDA data standards);16.15;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;16.71;22.35;13.7;16.15;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Iris foetidissima;36612;actual measurement;864.2635127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;864.2635127;;;2;;;1996-07-15 00:00:00.0;; Iris foetidissima;36612;actual measurement (following LEDA data standards);807.9;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;807.9;807.9;807.9;807.9;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Iris germanica;36614;actual measurement (following LEDA data standards);1052.08;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1012.47;1286.19;708.1;1052.08;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Iris germanica;36614;actual measurement (following LEDA data standards);1091.69;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1012.47;1286.19;708.1;1091.69;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Iris pseudacorus;36664;actual measurement;1084.117309;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1084.117309;;;2;;;1996-08-08 00:00:00.0;; Iris pseudacorus;36664;actual measurement;1507.138188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1507.138188;;;2;;;1996-06-17 00:00:00.0;; Iris pseudacorus;36664;actual measurement (following LEDA data standards);1522.5;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;1695.89;3012.7;818.7;1522.5;2;;;;Preaggregated value obtained from single record. ; Iris sibirica;36687;actual measurement (following LEDA data standards);77.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;81.14;109;57.78;77.46;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Iris x lurida;36640;actual measurement (following LEDA data standards);842.86;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;815.89;1120.65;514.69;842.86;2;;;2005-05-19 00:00:00.0;preaggregated value obtained from single record; Isatis tinctoria;14558;actual measurement (following LEDA data standards);159.02;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;175.58;256.41;106.48;159.02;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Isatis tinctoria;14558;actual measurement (following LEDA data standards);45.08;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;53.07;130.86;18.76;45.08;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Isatis tinctoria;14558;actual measurement (following LEDA data standards);46.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;53.07;130.86;18.76;46.32;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. stem leaves; Isatis tinctoria;14558;actual measurement (following LEDA data standards);142.45;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;175.58;256.41;106.48;142.45;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Iva xanthifolia;8135;laboratory/greenhouse/garden experiment;404.46;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;404.46;795.71;180.42;404.46;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Iva xanthifolia;8135;laboratory/greenhouse/garden experiment;573.82;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;573.82;1292.69;232.83;573.82;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Iva xanthifolia;8135;laboratory/greenhouse/garden experiment;536.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;573.82;1292.69;232.83;536.03;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Iva xanthifolia;8135;laboratory/greenhouse/garden experiment;394.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;404.46;795.71;180.42;394.1;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Jasione montana;14880;actual measurement (following LEDA data standards);.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.99;1.48;.55;.95;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Juncus acutiflorus;35974;actual measurement;174.6666667;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;174.6666667;;;2;;;1996-09-09 00:00:00.0;; Juncus alpinus s. alpinus;35907;actual measurement (following LEDA data standards);4.28;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;4.38;6.95;2.3;4.28;1;;;2005-08-04 00:00:00.0;preaggregated value obtained from single record; Juncus articulatus;35965;actual measurement;10.96212766;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.96212766;;;2;;;1996-08-28 00:00:00.0;; Juncus articulatus;35965;actual measurement (following LEDA data standards);163.95;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;172.65;296.65;98.95;163.95;2;;;;Preaggregated value obtained from single record. ; Juncus articulatus;35965;actual measurement;18.31281534;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.31281534;;;2;;;1996-08-08 00:00:00.0;; Juncus articulatus;35965;actual measurement;15.93191489;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.93191489;;;2;;;1996-08-16 00:00:00.0;; Juncus atratus;35939;actual measurement (following LEDA data standards);54.05;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;52.22;64.47;24.44;54.05;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Juncus atratus;35939;actual measurement (following LEDA data standards);54.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;52.22;64.47;24.44;54.81;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Juncus biglumis;35947;actual measurement (following LEDA data standards);.95;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.13;2.1;.4;.95;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Juncus bufonius;36128;actual measurement;3.836697248;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.836697248;;;2;;;1996-08-16 00:00:00.0;; Juncus bufonius;36128;actual measurement;5.265957447;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.265957447;;;2;;;1996-08-08 00:00:00.0;; Juncus bulbosus;36026;actual measurement (following LEDA data standards);3.77;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.77;3.77;3.77;3.77;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ssp. kochii; Juncus bulbosus;36026;actual measurement (following LEDA data standards);.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.77;1.16;.41;.74;1;;;2003-08-27 00:00:00.0;Preaggregated value obtained from single record. ; Juncus bulbosus;36026;actual measurement (following LEDA data standards);.92;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.93;1.14;.79;.92;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Juncus bulbosus;36026;actual measurement (following LEDA data standards);.89;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.89;.89;.89;.89;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Juncus castaneus;35925;actual measurement (following LEDA data standards);8.4;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;8.7;13.7;5.18;8.4;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Juncus compressus;36003;actual measurement;27.89433962;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.89433962;;;2;;;1996-07-08 00:00:00.0;; Juncus conglomeratus;36007;actual measurement (following LEDA data standards);490.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;483.77;606.92;389.58;490.1;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Juncus effusus;36014;actual measurement (following LEDA data standards);575;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;588;730;435;575;2;;;;Preaggregated value obtained from single record. ; Juncus filiformis;36023;actual measurement (following LEDA data standards);58.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;63.41;105.02;48.82;58.87;1;;;2003-07-22 00:00:00.0;Preaggregated value obtained from single record. ; Juncus gerardi;36081;actual measurement (following LEDA data standards);10;13;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;10.68;15.66;5.01;10;1;;;2003-09-09 00:00:00.0;preaggregated value obtained from single record; Juncus inflexus;36061;actual measurement (following LEDA data standards);441.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;469.58;599.39;338.72;441.49;2;;;;Preaggregated value obtained from single record. ; Juncus inflexus;36061;actual measurement (following LEDA data standards);936.04;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;847.3;968.65;637.21;936.04;1;;;2003-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Juncus maritimus;36160;actual measurement (following LEDA data standards);433.8;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;434.28;545.05;324.4;433.8;2;;;2005-09-01 00:00:00.0;preaggregated value obtained from single record; Juncus minutulus;36164;actual measurement (following LEDA data standards);.59;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.57;.84;.24;.59;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Juncus ranarius;36052;actual measurement (following LEDA data standards);.58;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.52;.66;.33;.58;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Juncus sphaerocarpus;36141;laboratory/greenhouse/garden experiment;.9;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.9;.9;.9;.9;1;;;2005-10-01 00:00:00.0;preaggregated value obtained from single record; Juncus squarrosus;36142;actual measurement (following LEDA data standards);10.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.58;16.53;6.7;10.98;1;;;2003-08-27 00:00:00.0;Preaggregated value obtained from single record. ; Juncus subnodulosus;36148;actual measurement;888.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;888.7;;;2;;;1996-07-08 00:00:00.0;; Juncus subnodulosus;36148;actual measurement;125.4569444;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;125.4569444;;;2;;;1996-07-08 00:00:00.0;; Juncus tenageia;36111;actual measurement (following LEDA data standards);.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.19;3.09;.49;.93;2;;;2005-07-14 00:00:00.0;preaggregated value obtained from single record; Juncus tenuis;36112;actual measurement (following LEDA data standards);14.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.51;18.25;9.75;14.45;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Juncus trifidus;36209;actual measurement (following LEDA data standards);8.47;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;8.47;;;;3;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Juncus trifidus;36209;actual measurement (following LEDA data standards);5.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;5.9;;;;3;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Juncus trifidus;36209;actual measurement (following LEDA data standards);11.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;11.8;;;;2;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Juncus trifidus;36209;actual measurement (following LEDA data standards);28.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;28.5;;;;1;;;2003-08-20 00:00:00.0;; Juncus trifidus;36209;actual measurement (following LEDA data standards);5.02;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;5.02;;;;5;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Jurinea cyanoides;6414;actual measurement (following LEDA data standards);147.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;160.93;366.18;80.26;147.32;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Jurinea cyanoides;6414;actual measurement (following LEDA data standards);145.34;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;160.93;366.18;80.26;145.34;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Kernera saxatilis;14059;actual measurement (following LEDA data standards);1.62;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.62;1.62;1.62;1.62;2;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Knautia arvensis;19058;actual measurement;119.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;119.5;;;2;;;;; Knautia arvensis;19058;actual measurement;164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;164;;;2;;;;; Knautia arvensis;19058;actual measurement;138.8554701;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;138.8554701;;;2;;;1996-08-08 00:00:00.0;; Koeleria glauca;43022;actual measurement (following LEDA data standards);11.5;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.64;19.6;7.37;11.5;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Koeleria glauca;43022;actual measurement (following LEDA data standards);11.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.64;19.6;7.37;11.23;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Koeleria macrantha;42831;actual measurement;46.87751479;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;46.87751479;;;2;;;1996-08-16 00:00:00.0;; Lactuca perennis;6626;actual measurement (following LEDA data standards);109.56;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;123.72;262.56;60.23;109.56;3;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Lactuca serriola;6360;actual measurement;397.1180185;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;397.1180185;;;2;;;1996-08-08 00:00:00.0;; Lactuca tatarica;7416;actual measurement (following LEDA data standards);72.19;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;71.93;79.91;59.86;72.19;2;;;2005-09-10 00:00:00.0;preaggregated value obtained from single record; Lactuca virosa;7940;actual measurement;290.7068784;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;290.7068784;;;2;;;1996-07-08 00:00:00.0;; Lactuca virosa;7940;actual measurement;314.5566303;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;314.5566303;;;2;;;1996-08-08 00:00:00.0;; Lactuca virosa;7940;actual measurement (following LEDA data standards);255.1;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;297.44;570.96;153.16;255.1;2;;;2004-08-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Lactuca virosa;7940;actual measurement (following LEDA data standards);245.32;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;297.44;570.96;153.16;245.32;2;;;2004-08-26 00:00:00.0;preaggregated value obtained from single record; Lactuca virosa;7940;laboratory/greenhouse/garden experiment;278.38;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;280.25;469.07;174.83;278.38;2;;;2005-06-14 00:00:00.0;preaggregated value obtained from single record; Lactuca virosa;7940;actual measurement;440.859748;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;440.859748;;;2;;;1996-07-16 00:00:00.0;; Lamiastrum galeobdolon;24666;actual measurement;68.18693031;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;68.18693031;;;2;;;1996-05-30 00:00:00.0;; Lamium album;24182;actual measurement;39.14266958;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;39.14266958;;;2;;;1996-05-23 00:00:00.0;; Lamium album;24182;actual measurement;46.1625;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;46.1625;;;2;;;1996-05-21 00:00:00.0;; Lamium amplexicaule;23573;actual measurement;8.462668666;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.462668666;;;2;;;1996-05-23 00:00:00.0;; Lamium hybridum;24187;actual measurement;23.36294996;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.36294996;;;2;;;1996-04-30 00:00:00.0;; Lamium maculatum;24189;actual measurement;47.04573503;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.04573503;;;2;;;1996-09-26 00:00:00.0;; Lamium purpureum;25103;actual measurement;9.835;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.835;;;2;;;1996-06-03 00:00:00.0;; Lamium purpureum;25103;actual measurement;10.22223191;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.22223191;;;2;;;1996-05-21 00:00:00.0;; Lamium purpureum;25103;actual measurement;13.89917219;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.89917219;;;2;;;1996-05-23 00:00:00.0;; Lappula deflexa;12048;laboratory/greenhouse/garden experiment;83.78;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;86.4;165.87;34.65;83.78;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. one ground leaf and one spataceous bract measured per plant; Lappula deflexa;12048;laboratory/greenhouse/garden experiment;94.52;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;101.37;199.13;42.14;94.52;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. one ground leaf and one spataceous bract measured per plant; Lappula deflexa;12048;laboratory/greenhouse/garden experiment;91.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;101.37;199.13;42.14;91.11;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Lappula deflexa;12048;laboratory/greenhouse/garden experiment;77.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;86.4;165.87;34.65;77.06;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Lappula squarrosa;12063;laboratory/greenhouse/garden experiment;20.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.2;27.36;9.19;20.2;2;;;2004-06-30 00:00:00.0;Preaggregated value obtained from single record. ; Lappula squarrosa;12063;laboratory/greenhouse/garden experiment;21.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.2;27.36;9.19;21.09;2;;;2004-06-30 00:00:00.0;preaggregated value obtained from single record; Lapsana communis;6629;actual measurement;66.83739487;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;66.83739487;;;2;;;1996-05-30 00:00:00.0;; Lapsana communis;6629;actual measurement;131.1210622;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;131.1210622;;;2;;;1996-08-16 00:00:00.0;; Laserpitium latifolium;1705;actual measurement (following LEDA data standards);1434.71;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1885.89;3485.11;1167.68;1434.71;1;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Laserpitium latifolium;1705;actual measurement (following LEDA data standards);1432.32;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1885.89;3485.11;1167.68;1432.32;1;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Laserpitium prutenicum;1215;laboratory/greenhouse/garden experiment;481.01;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;479.27;511.82;444.97;481.01;2;;;2005-06-20 00:00:00.0;preaggregated value obtained from single record; Lathyrus heterophyllus;19830;actual measurement (following LEDA data standards);245.9;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;245.9;405.91;83.55;245.9;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus heterophyllus;19830;actual measurement (following LEDA data standards);226.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;245.9;405.91;83.55;226.16;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Lathyrus heterophyllus;19830;actual measurement (following LEDA data standards);326.21;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;326.21;506.27;144.55;326.21;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus heterophyllus;19830;actual measurement (following LEDA data standards);295.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;326.21;506.27;144.55;295.93;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Lathyrus latifolius;21002;actual measurement;435.7653916;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;435.7653916;;;2;;;1996-07-08 00:00:00.0;; Lathyrus montanus;20503;actual measurement;37.83910307;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.83910307;;;2;;;1996-06-23 00:00:00.0;; Lathyrus montanus;20503;actual measurement;80.47436787;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;80.47436787;;;2;;;1996-08-14 00:00:00.0;; Lathyrus nissolia;21360;actual measurement;31.94598765;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.94598765;;;2;;;1996-06-20 00:00:00.0;; Lathyrus nissolia;21360;laboratory/greenhouse/garden experiment;51.27;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;51.27;51.27;51.27;51.27;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Lathyrus nissolia;21360;laboratory/greenhouse/garden experiment;51.27;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;51.27;51.27;51.27;51.27;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus nissolia;21360;laboratory/greenhouse/garden experiment;68.89;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;68.89;68.89;68.89;68.89;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Lathyrus nissolia;21360;laboratory/greenhouse/garden experiment;68.89;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;68.89;68.89;68.89;68.89;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus odoratus;20506;laboratory/greenhouse/garden experiment;68.77;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;69.55;104.4;31.7;68.77;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus odoratus;20506;laboratory/greenhouse/garden experiment;68;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;69.55;104.4;31.7;68;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Lathyrus odoratus;20506;laboratory/greenhouse/garden experiment;105.12;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;106.25;161.8;48.53;105.12;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus odoratus;20506;laboratory/greenhouse/garden experiment;104;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;106.25;161.8;48.53;104;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Lathyrus palustris;21816;actual measurement (following LEDA data standards);82.85;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;73.42;98.66;42.96;82.85;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus palustris;21816;actual measurement (following LEDA data standards);84.01;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;73.42;98.66;42.96;84.01;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Lathyrus pratensis;21355;actual measurement;5.139534884;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.139534884;;;2;;;;; Lathyrus pratensis;21355;actual measurement;9.540372671;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.540372671;;;2;;;1996-07-15 00:00:00.0;; Lathyrus pratensis;21355;actual measurement;6.196082474;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.196082474;;;2;;;;; Lathyrus tuberosus;19845;actual measurement;25.64214064;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25.64214064;;;2;;;1996-07-08 00:00:00.0;; Lathyrus tuberosus;19845;actual measurement (following LEDA data standards);9.52;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.52;9.52;9.52;9.52;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Lathyrus tuberosus;19845;actual measurement (following LEDA data standards);9.52;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.52;9.52;9.52;9.52;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Lathyrus vernus;19847;actual measurement (following LEDA data standards);105.72;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;105.13;163.14;64.08;105.72;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus vernus;19847;laboratory/greenhouse/garden experiment;156.87;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;156.87;225.93;108.22;156.87;2;;;2004-04-24 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus vernus;19847;laboratory/greenhouse/garden experiment;151.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;156.87;225.93;108.22;151.61;2;;;2004-04-24 00:00:00.0;preaggregated value obtained from single record; Lathyrus vernus;19847;actual measurement (following LEDA data standards);94.73;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;95.4;150.63;54.23;94.73;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus vernus;19847;laboratory/greenhouse/garden experiment;144.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;144.4;210.29;97.9;144.4;2;;;2004-04-24 00:00:00.0;Preaggregated value obtained from single record. ; Lathyrus vernus;19847;laboratory/greenhouse/garden experiment;139.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;144.4;210.29;97.9;139.22;2;;;2004-04-24 00:00:00.0;preaggregated value obtained from single record; Legousia hybrida;14896;actual measurement;4.313239437;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.313239437;;;2;;;1996-07-15 00:00:00.0;; Legousia hybrida;14896;laboratory/greenhouse/garden experiment;.22;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.26;.55;.12;.22;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Legousia hybrida;14896;laboratory/greenhouse/garden experiment;.19;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.26;.55;.12;.19;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Legousia speculum-veneris;14838;laboratory/greenhouse/garden experiment;1.89;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.89;4.33;.51;1.89;2;;;2004-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Legousia speculum-veneris;14838;laboratory/greenhouse/garden experiment;1.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.89;4.33;.51;1.94;2;;;2004-08-04 00:00:00.0;preaggregated value obtained from single record; Lembotropis nigricans;21830;actual measurement (following LEDA data standards);10.67;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.91;13.23;3.49;10.67;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Lembotropis nigricans;21830;actual measurement (following LEDA data standards);11.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.41;13.66;3.74;11.38;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Lembotropis nigricans;21830;actual measurement (following LEDA data standards);11.35;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.41;13.66;3.74;11.35;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Lembotropis nigricans;21830;actual measurement (following LEDA data standards);10.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.91;13.23;3.49;10.7;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Lemna gibba;36873;actual measurement (following LEDA data standards);.18;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;.18;.18;.18;.18;40;;;;Preaggregated value obtained from single record. ; Lemna gibba;36873;actual measurement (following LEDA data standards);.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.13;.19;.07;.13;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Lemna minor;36875;actual measurement;.481395349;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.481395349;;;2;;;1996-07-15 00:00:00.0;; Lemna trisulca;36878;actual measurement;.368421053;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.368421053;;;2;;;1996-09-27 00:00:00.0;; Lemna trisulca;36878;actual measurement (following LEDA data standards);.01;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;.01;.01;.01;.01;40;;;;Preaggregated value obtained from single record. ; Leontodon autumnalis;7298;actual measurement;72.78016997;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;72.78016997;;;2;;;1996-08-08 00:00:00.0;; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);2.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.95;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);3.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.2;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);3.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.5;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);3.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.95;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);7.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.1;;;;1;;;2003-04-09 00:00:00.0;; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);8.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.9;;;;1;;;2003-04-09 00:00:00.0;; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);9.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.4;;;;1;;;2003-04-09 00:00:00.0;; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);9.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.8;;;;1;;;2003-04-09 00:00:00.0;; Leontodon autumnalis;7298;actual measurement;13.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;15.35;33.1;6.73;13.41;2;;;2003-07-14 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER), rosette leaves; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);5.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.4;;;;1;;;2003-08-28 00:00:00.0;; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6;;;;1;;;2003-08-28 00:00:00.0;; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);3.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.1;;;;1;;;2003-08-30 00:00:00.0;; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);7.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.6;;;;1;;;2003-08-30 00:00:00.0;; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);3.55;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.55;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);2.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.6;;;;2;;;2003-08-29 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Leontodon autumnalis;7298;actual measurement (following LEDA data standards);2.65;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.65;;;;2;;;2003-08-29 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Leontodon autumnalis;7298;actual measurement;18.79807229;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.79807229;;;2;;;1996-08-16 00:00:00.0;; Leontodon autumnalis;7298;actual measurement;189.1993103;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;189.1993103;;;2;;;1996-08-05 00:00:00.0;; Leontodon hispidus;6638;actual measurement;81.84190371;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;81.84190371;;;2;;;1996-06-16 00:00:00.0;; Leontodon hispidus;6638;actual measurement (following LEDA data standards);51.39;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;63.01;91.54;46.66;51.39;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Leontodon hispidus;6638;actual measurement (following LEDA data standards);53.12;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;63.01;91.54;46.66;53.12;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Leontodon hispidus;6638;actual measurement;191.6077612;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;191.6077612;;;2;;;;; Leontodon hispidus;6638;actual measurement;28.15;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;33.34;94.3;11.7;28.15;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Leontodon hispidus;6638;actual measurement (following LEDA data standards);45.97;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;43.03;46.99;33.18;45.97;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Leontodon hispidus;6638;actual measurement (following LEDA data standards);66.32;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.8;110.34;59.37;66.32;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Leontodon hispidus;6638;actual measurement (following LEDA data standards);63.69;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.8;110.34;59.37;63.69;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Leontodon hispidus;6638;actual measurement (following LEDA data standards);45.76;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;43.03;46.99;33.18;45.76;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Leontodon incanus;6757;actual measurement (following LEDA data standards);36.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34.41;49.25;21.67;36.61;2;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Leontodon pyrenaicus;6519;actual measurement (following LEDA data standards);25.81;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.54;58.55;8.73;25.81;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Leontodon pyrenaicus;6519;actual measurement (following LEDA data standards);22.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.54;58.55;8.73;22.42;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);24.04;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.04;41.38;4.61;24.04;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Leontodon taraxacoides subsp. taraxacoides;7423;actual measurement (following LEDA data standards);24.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.04;41.38;4.61;24.5;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Leonurus marrubiastrum;24198;actual measurement (following LEDA data standards);98.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;97.31;117.13;63.22;98.6;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Leonurus marrubiastrum;24198;actual measurement (following LEDA data standards);99.88;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;97.31;117.13;63.22;99.88;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Leonurus marrubiastrum;24198;actual measurement (following LEDA data standards);114.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;113.86;138.09;74.01;114.86;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Leonurus marrubiastrum;24198;actual measurement (following LEDA data standards);115.86;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;113.86;138.09;74.01;115.86;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Lepidium campestre;13495;actual measurement;6.50873494;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.50873494;;;2;;;1996-05-30 00:00:00.0;; Lepidium campestre;13495;laboratory/greenhouse/garden experiment;22.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.04;33.1;19.09;22.34;2;;;2004-05-24 00:00:00.0;preaggregated value obtained from single record; Lepidium campestre;13495;laboratory/greenhouse/garden experiment;22.43;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.04;33.1;19.09;22.43;2;;;2004-05-24 00:00:00.0;Preaggregated value obtained from single record. ; Lepidium densiflorum;14562;laboratory/greenhouse/garden experiment;2.39;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.39;2.39;2.39;2.39;2;;;2004-09-25 00:00:00.0;preaggregated value obtained from single record; Lepidium densiflorum;14562;laboratory/greenhouse/garden experiment;2.39;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.39;2.39;2.39;2.39;2;;;2004-09-25 00:00:00.0;Preaggregated value obtained from single record. plants of seed bank analysis experiment; Lepidium densiflorum;14562;laboratory/greenhouse/garden experiment;2.83;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.83;2.83;2.83;2.83;2;;;2004-09-25 00:00:00.0;preaggregated value obtained from single record; Lepidium densiflorum;14562;laboratory/greenhouse/garden experiment;2.83;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.83;2.83;2.83;2.83;2;;;2004-09-25 00:00:00.0;Preaggregated value obtained from single record. plants of seed bank analysis experiment; Lepidium latifolium;13501;actual measurement;308.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;308.4;;;1;;;1997-10-03 00:00:00.0;; Lepidium latifolium;13501;actual measurement (following LEDA data standards);151.97;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;147.66;269.49;78.8;151.97;2;;;2005-07-26 00:00:00.0;preaggregated value obtained from single record; Lepidium ruderale;13947;actual measurement;1.049180328;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.049180328;;;2;;;1996-08-03 00:00:00.0;; Lepidium ruderale;13947;actual measurement;8.560240964;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.560240964;;;2;;;1996-05-23 00:00:00.0;; Lepidium sativum;13505;laboratory/greenhouse/garden experiment;22.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.97;42.66;9.04;22.47;2;;;2005-06-29 00:00:00.0;preaggregated value obtained from single record; Lepidium virginicum;13952;laboratory/greenhouse/garden experiment;27.82;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.82;43.67;10.79;27.82;2;;;2004-05-24 00:00:00.0;Preaggregated value obtained from single record. ; Lepidium virginicum;13952;laboratory/greenhouse/garden experiment;29.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.82;43.67;10.79;29.8;2;;;2004-05-24 00:00:00.0;preaggregated value obtained from single record; Leucanthemum ircutianum;61197;actual measurement (following LEDA data standards);14.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.63;22.09;10.06;14.22;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Leucanthemum ircutianum;61197;actual measurement (following LEDA data standards);14.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.63;22.09;10.06;14.4;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Leucanthemum vulgare;9651;actual measurement;36.09306198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;36.09306198;;;2;;;1996-06-11 00:00:00.0;; Leucanthemum vulgare;9651;actual measurement;44.77606595;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.77606595;;;2;;;;; Leucanthemum vulgare;9651;actual measurement;14.71668416;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.71668416;;;2;;;;; Leucanthemum vulgare;9651;actual measurement;12.9;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;12.9;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Leucojum aestivum;35586;actual measurement (following LEDA data standards);300;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;315.7;433.5;231.5;300;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Leucojum vernum;35768;actual measurement (following LEDA data standards);97.85;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;97.85;126.16;69.23;97.85;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Leucojum vernum;35768;actual measurement (following LEDA data standards);94.07;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;97.85;126.16;69.23;94.07;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Levisticum officinale;2151;actual measurement;2507.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2507.6;;;1;;;1998-04-16 00:00:00.0;; Leymus arenarius;43033;actual measurement;1053.253804;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1053.253804;;;2;;;1996-08-24 00:00:00.0;; Ligusticum mutellina;1224;actual measurement (following LEDA data standards);80.59;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;80.59;105.11;60.75;80.59;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Ligusticum mutellina;1224;actual measurement (following LEDA data standards);81.47;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;80.59;105.11;60.75;81.47;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Lilium bulbiferum;39057;actual measurement (following LEDA data standards);26.93;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.23;44.53;19.25;26.93;2;;;2004-08-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Lilium bulbiferum;39057;actual measurement (following LEDA data standards);26.66;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.23;44.53;19.25;26.66;2;;;2004-08-25 00:00:00.0;preaggregated value obtained from single record; Lilium martagon;39063;actual measurement;162.3860308;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;162.3860308;;;2;;;1996-08-08 00:00:00.0;; Limonium binervosum;28471;actual measurement;7.75257732;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.75257732;;;2;;;1996-08-31 00:00:00.0;; Limonium vulgare;28293;actual measurement (following LEDA data standards);268.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;284.99;503.89;172.02;268.4;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Limonium vulgare;28293;actual measurement (following LEDA data standards);314.09;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;321.11;571.12;194.72;314.09;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Limonium vulgare;28293;actual measurement (following LEDA data standards);284.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;321.11;571.12;194.72;284.32;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Limonium vulgare;28293;actual measurement (following LEDA data standards);246.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;284.99;503.89;172.02;246.28;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Limonium vulgare;28293;actual measurement (following LEDA data standards);246.1;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;277.15;460.4;173.4;246.1;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Limosella aquatica;33604;actual measurement;.66;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.66;;;2;;;1996-09-24 00:00:00.0;; Linaria purpurea;33748;actual measurement;5.285365854;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.285365854;;;2;;;1996-08-05 00:00:00.0;; Linaria repens;33754;actual measurement (following LEDA data standards);7.53;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;8.58;17.15;3.5;7.53;2;;;2005-05-15 00:00:00.0;preaggregated value obtained from single record; Linaria vulgaris;33091;actual measurement;2.381987578;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.381987578;;;2;;;1996-09-05 00:00:00.0;; Linaria vulgaris;33091;actual measurement;9.412590799;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.412590799;;;2;;;1996-08-08 00:00:00.0;; Linaria vulgaris;33091;actual measurement;5.240268456;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.240268456;;;2;;;1996-08-27 00:00:00.0;; Linnaea borealis;15394;actual measurement (following LEDA data standards);3.1;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;3.13;4.08;2.24;3.1;5;;;2005-06-19 00:00:00.0;preaggregated value obtained from single record; Linum austriacum;25949;actual measurement (following LEDA data standards);1.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.71;2.26;1.16;1.63;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Linum austriacum;25949;actual measurement (following LEDA data standards);1.55;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.71;2.26;1.16;1.55;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Linum catharticum;25925;actual measurement;.523719165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.523719165;;;2;;;;; Linum catharticum;25925;actual measurement;1.186792453;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.186792453;;;2;;;1996-07-08 00:00:00.0;; Linum perenne;25878;actual measurement (following LEDA data standards);.85;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.26;2.67;.62;.85;2;;;2005-05-20 00:00:00.0;preaggregated value obtained from single record; Linum usitatissimum;25866;actual measurement (following LEDA data standards);.84;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.85;.98;.73;.84;2;;;2005-07-19 00:00:00.0;preaggregated value obtained from single record; Linum usitatissimum;25866;actual measurement (following LEDA data standards);.97;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.97;1.32;.58;.97;2;;;2005-08-03 00:00:00.0;preaggregated value obtained from single record; Liparis loeselii;39943;actual measurement (following LEDA data standards);26.45;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;32.83;61.6;18.1;26.45;1;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Liparis loeselii;39943;actual measurement (following LEDA data standards);16.28;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;16.46;22.05;8.65;16.28;2;;;2005-07-05 00:00:00.0;preaggregated value obtained from single record; Listera cordata;39947;actual measurement (following LEDA data standards);5.75;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;5.96;8.2;4.8;5.75;1;;;2005-07-03 00:00:00.0;preaggregated value obtained from single record; Listera cordata;39947;actual measurement (following LEDA data standards);4.98;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;5.22;7.2;3.05;4.98;2;;;2005-05-29 00:00:00.0;preaggregated value obtained from single record; Listera ovata;39948;actual measurement;110.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;110.7;;;2;;;1996-07-15 00:00:00.0;; Listera ovata;39948;actual measurement;246.7571936;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;246.7571936;;;2;;;1996-06-03 00:00:00.0;; Listera ovata;39948;actual measurement (following LEDA data standards);87.83;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;84.82;147.87;26.39;87.83;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Lithospermum arvense;12012;actual measurement (following LEDA data standards);7.54;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.83;12.06;4.4;7.54;2;;;2005-05-05 00:00:00.0;preaggregated value obtained from single record; Lithospermum officinale;12411;actual measurement;28.41906212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.41906212;;;2;;;1996-09-02 00:00:00.0;; Lithospermum officinale;12411;actual measurement;56.88395336;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;56.88395336;;;2;;;1996-05-30 00:00:00.0;; Littorella uniflora;27852;actual measurement;6.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.6;;;1;;;1997-06-26 00:00:00.0;; Littorella uniflora;27852;actual measurement;10.27391304;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.27391304;;;2;;;1996-09-24 00:00:00.0;; Littorella uniflora;27852;actual measurement (following LEDA data standards);6.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.26;6.85;5.31;6.26;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Littorella uniflora;27852;actual measurement (following LEDA data standards);6.26;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.26;6.85;5.31;6.26;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Lobelia dortmanna;14841;actual measurement (following LEDA data standards);8.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.59;12.96;5.57;8.26;1;;;2003-07-22 00:00:00.0;Preaggregated value obtained from single record. ; Logfia arvensis;11506;actual measurement (following LEDA data standards);1.97;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.97;2.94;1.22;1.97;2;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Logfia arvensis;11506;actual measurement (following LEDA data standards);1.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.97;2.94;1.22;1.92;2;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Logfia minima;11400;actual measurement (following LEDA data standards);.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.13;.23;.02;.14;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Logfia minima;11400;actual measurement (following LEDA data standards);.26;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.32;.44;.25;.26;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);2.23;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.23;;;;12;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);3.07;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.07;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);2.38;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.38;;;;11;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);1.33;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.33;;;;15;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);1.61;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.61;;;;15;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);1.56;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.56;;;;10;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);2.83;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.83;;;;10;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);2.16;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.16;;;;11;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);2.03;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;2.03;;;;20;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);2.05;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;2.05;;;;18;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);1.62;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;1.62;;;;11;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);1.73;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;1.73;;;;11;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);2.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;2.2;;;;11;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Lolium multiflorum;43196;actual measurement;26.82177515;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.82177515;;;2;;;;; Lolium perenne;43540;actual measurement;11.29438776;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.29438776;;;2;;;;; Lolium perenne;43540;actual measurement;12.77;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;13.05;21;6.96;12.77;2;;;2003-06-08 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Lolium perenne;43540;actual measurement;19.52519084;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.52519084;;;2;;;;; Lolium remotum;42844;laboratory/greenhouse/garden experiment;69.93;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.93;100.49;17.69;69.93;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Lolium remotum;42844;laboratory/greenhouse/garden experiment;69.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.93;100.49;17.69;69.59;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Lolium rigidum;42473;field experiment;.00805;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00805;;;;20;;.74;1989-05-12 00:00:00.0;reproductive tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Lolium temulentum;43200;laboratory/greenhouse/garden experiment;63.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;63.2;97.83;41.44;63.2;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Lolium temulentum;43200;laboratory/greenhouse/garden experiment;60.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;63.2;97.83;41.44;60.14;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Lonicera alpigena;15395;actual measurement (following LEDA data standards);103.41;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;108.72;129.71;98.34;103.41;2;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Lonicera caprifolium;15368;actual measurement (following LEDA data standards);75.71;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.71;112.22;31.77;75.71;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Lonicera caprifolium;15368;actual measurement (following LEDA data standards);75.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.71;112.22;31.77;75.5;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Lonicera caprifolium;15368;actual measurement (following LEDA data standards);73.86;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;73.86;109.91;30.08;73.86;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Lonicera caprifolium;15368;actual measurement (following LEDA data standards);73.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;73.86;109.91;30.08;73.54;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Lotus corniculatus;21886;actual measurement;3.614757282;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.614757282;;;2;;;1996-05-30 00:00:00.0;; Lotus corniculatus;21886;actual measurement;4.920491803;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.920491803;;;2;;;1996-07-08 00:00:00.0;; Lotus corniculatus;21886;actual measurement;4.962450067;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.962450067;;;2;;;;; Lotus pedunculatus;21444;actual measurement;20.86892655;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.86892655;;;2;;;1996-07-15 00:00:00.0;; Lotus pedunculatus;21444;actual measurement;21.20647431;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.20647431;;;2;;;1996-08-14 00:00:00.0;; Lotus pedunculatus;21444;actual measurement;6.38;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;7.78;14.19;3.04;6.38;2;;;2003-06-17 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Lotus tenuis;20976;actual measurement (following LEDA data standards);3.89;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.9;4.6;3.35;3.89;2;;;2005-07-26 00:00:00.0;preaggregated value obtained from single record; Ludwigia palustris;26480;laboratory/greenhouse/garden experiment;.01;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;.01;.01;.01;.01;2;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. ; Ludwigia palustris;26480;actual measurement (following LEDA data standards);14.08;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;14.45;23.54;9.89;14.08;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Ludwigia palustris;26480;actual measurement (following LEDA data standards);13.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;14.45;23.54;9.89;13.68;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Ludwigia palustris;26480;laboratory/greenhouse/garden experiment;.02;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.02;.02;.01;.02;2;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Ludwigia palustris;26480;actual measurement (following LEDA data standards);14.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.73;25.4;10.67;14.99;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Ludwigia palustris;26480;actual measurement (following LEDA data standards);15.43;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.73;25.4;10.67;15.43;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Ludwigia palustris;26480;laboratory/greenhouse/garden experiment;.02;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.02;.02;.01;.02;2;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. ; Ludwigia palustris;26480;laboratory/greenhouse/garden experiment;.01;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;.01;.01;.01;.01;2;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Lunaria annua;13513;actual measurement (following LEDA data standards);222.5;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;330.89;560;97.5;222.5;2;;;2005-06-19 00:00:00.0;preaggregated value obtained from single record; Lunaria annua;13513;actual measurement (following LEDA data standards);230.63;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;224.8;375.5;135.7;230.63;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Lunaria rediviva;13960;actual measurement (following LEDA data standards);216.25;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;225.66;392.72;164.13;216.25;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Lunaria rediviva;13960;actual measurement (following LEDA data standards);199.34;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;225.66;392.72;164.13;199.34;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Lunaria rediviva;13960;actual measurement (following LEDA data standards);251.96;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;275.59;506.74;208.52;251.96;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Lunaria rediviva;13960;actual measurement (following LEDA data standards);238.16;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;275.59;506.74;208.52;238.16;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Lunaria rediviva;13960;actual measurement (following LEDA data standards);403.7;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;385.7;441.1;312.3;403.7;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Lupinus albus;21901;laboratory/greenhouse/garden experiment;344.96;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;359.46;504.01;241.52;344.96;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Lupinus albus;21901;laboratory/greenhouse/garden experiment;340.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;359.46;504.01;241.52;340.78;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Lupinus albus;21901;laboratory/greenhouse/garden experiment;435.55;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;470.11;664.47;315.6;435.55;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Lupinus albus;21901;laboratory/greenhouse/garden experiment;429.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;470.11;664.47;315.6;429.71;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Lupinus luteus;22239;laboratory/greenhouse/garden experiment;138.92;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;141.59;193.68;110.61;138.92;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Lupinus luteus;22239;laboratory/greenhouse/garden experiment;136.26;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;141.59;193.68;110.61;136.26;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Lupinus luteus;22239;laboratory/greenhouse/garden experiment;190.07;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;192.91;274.29;153.76;190.07;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Lupinus luteus;22239;laboratory/greenhouse/garden experiment;187.22;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;192.91;274.29;153.76;187.22;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Lupinus polyphyllus;22241;actual measurement (following LEDA data standards);819;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;820.5;1052;592;819;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Lupinus polyphyllus;22241;actual measurement (following LEDA data standards);1553.5;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1401.6;1972;813;1553.5;2;;;2005-06-17 00:00:00.0;preaggregated value obtained from single record; Lupinus polyphyllus;22241;actual measurement;1542.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1542.5;;;1;;;1997-06-06 00:00:00.0;; Lupinus polyphyllus;22241;actual measurement (following LEDA data standards);45.75;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);without petiole and rachis;45.24;58.45;32.75;45.75;1;;;2005-06-19 00:00:00.0;preaggregated value obtained from single record; Luronium natans;35649;actual measurement (following LEDA data standards);2.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.4;3.71;1.07;2.33;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Luronium natans;35649;actual measurement (following LEDA data standards);9.56;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;8.55;9.81;6.29;9.56;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Luronium natans;35649;actual measurement (following LEDA data standards);3.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.24;6.86;2.28;3.88;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. dyleaves; Luronium natans;35649;actual measurement (following LEDA data standards);13.5;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.08;13.68;9.07;13.5;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. swimleaves; Luronium natans;35649;actual measurement (following LEDA data standards);5.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.62;15.55;2.17;5.77;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. land form; Luronium natans;35649;actual measurement (following LEDA data standards);4.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.17;9.14;2.67;4.98;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. swimleaves; Luronium natans;35649;actual measurement (following LEDA data standards);3.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;4.49;11.46;1.65;3.77;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. land form; Luzula campestris;36280;actual measurement;6.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.7;;;1;;;1997-06-26 00:00:00.0;; Luzula campestris;36280;actual measurement;1.93;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;2.29;3.84;1.17;1.93;2;;;2004-04-08 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Luzula multiflora;36245;actual measurement;24.19486726;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.19486726;;;2;;;1996-06-10 00:00:00.0;; Luzula pilosa;36230;actual measurement;26.46637744;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.46637744;;;2;;;1996-06-10 00:00:00.0;; Luzula spicata;36240;actual measurement (following LEDA data standards);6.13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.13;;;;3;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Luzula spicata;36240;actual measurement (following LEDA data standards);2.35;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;2.97;7.2;1.05;2.35;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Luzula spicata;36240;actual measurement (following LEDA data standards);1.76;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;1.76;;;;5;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Luzula sudetica;36244;actual measurement (following LEDA data standards);7.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.05;9.22;4.34;7.26;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Luzula sudetica;36244;actual measurement (following LEDA data standards);7.05;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.05;9.22;4.34;7.05;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Luzula sudetica;36244;actual measurement (following LEDA data standards);7.57;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;7.3;10.3;4.2;7.57;1;;;2005-07-23 00:00:00.0;preaggregated value obtained from single record; Luzula sylvatica;36284;actual measurement;334.5186358;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;334.5186358;;;2;;;1996-06-19 00:00:00.0;; Lychnis flos-cuculi;16589;actual measurement;27.44252669;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.44252669;;;2;;;1996-08-28 00:00:00.0;; Lychnis flos-cuculi;16589;actual measurement;45.26830601;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;45.26830601;;;2;;;1996-08-16 00:00:00.0;; Lycium barbarum;35086;actual measurement;163.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;163.2;;;1;;;1997-09-18 00:00:00.0;; Lycium barbarum;35086;actual measurement (following LEDA data standards);46.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.23;69.33;29.14;46.08;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Lycium barbarum;35086;actual measurement (following LEDA data standards);45.23;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.23;69.33;29.14;45.23;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Lycopodiella inundata;44369;actual measurement (following LEDA data standards);.05;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.05;.06;.04;.05;1;;;2003-08-27 00:00:00.0;Preaggregated value obtained from single record. ; Lycopodium annotinum;476;actual measurement (following LEDA data standards);.23;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.23;.23;.22;.23;1;;;2003-07-23 00:00:00.0;Preaggregated value obtained from single record. ; Lycopodium clavatum;479;actual measurement (following LEDA data standards);.12;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.13;.18;.1;.12;10;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. leaves were measured; Lycopodium clavatum;479;actual measurement (following LEDA data standards);.12;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.13;.18;.1;.12;10;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Lycopus europaeus;24606;actual measurement (following LEDA data standards);29.4;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;36.03;74.75;20.15;29.4;2;;;;Preaggregated value obtained from single record. ; Lysimachia nemorum;28927;actual measurement;7.412877264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.412877264;;;2;;;1996-09-24 00:00:00.0;; Lysimachia nemorum;28927;actual measurement;8.944864865;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.944864865;;;2;;;1996-09-09 00:00:00.0;; Lysimachia nummularia;28922;actual measurement;10.89022082;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.89022082;;;2;;;1996-09-09 00:00:00.0;; Lysimachia nummularia;28922;actual measurement;11.09690722;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.09690722;;;2;;;1996-09-24 00:00:00.0;; Lysimachia nummularia;28922;actual measurement (following LEDA data standards);8.25;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;8.26;9.49;6.64;8.25;2;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Lysimachia punctata;28929;actual measurement;129.304382;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;129.304382;;;2;;;1996-07-15 00:00:00.0;; Lysimachia thyrsiflora;28789;actual measurement (following LEDA data standards);31.65;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;37.4;71.65;25.65;31.65;2;;;;Preaggregated value obtained from single record. ; Lysimachia vulgaris;28980;actual measurement;94.76660762;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;94.76660762;;;2;;;1996-08-08 00:00:00.0;; Lysimachia vulgaris;28980;actual measurement;109.7356529;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;109.7356529;;;2;;;1996-09-09 00:00:00.0;; Lysimachia vulgaris;28980;actual measurement (following LEDA data standards);80.75;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;96.16;189.9;50.35;80.75;2;;;;Preaggregated value obtained from single record. ; Lythrum hyssopifolia;26029;actual measurement (following LEDA data standards);.49;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.53;.65;.46;.49;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Lythrum portula;26036;actual measurement;1.289932886;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.289932886;;;2;;;1996-09-24 00:00:00.0;; Lythrum salicaria;26038;actual measurement;52.80118104;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;52.80118104;;;2;;;1996-08-08 00:00:00.0;; Lythrum salicaria;26038;actual measurement (following LEDA data standards);49.35;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;50.17;79;33.3;49.35;2;;;;Preaggregated value obtained from single record. ; Mahonia aquifolium;11687;actual measurement;1314.839972;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1314.839972;;;2;;;1996-09-02 00:00:00.0;; Maianthemum bifolium;39069;actual measurement (following LEDA data standards);1581;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1656.8;2505;1255;1581;1;;;2004-04-23 00:00:00.0;Preaggregated value obtained from single record. ; Maianthemum bifolium;39069;actual measurement (following LEDA data standards);1611;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1733.4;2605;1314;1611;1;;;2004-04-23 00:00:00.0;preaggregated value obtained from single record; Maianthemum bifolium;39069;actual measurement (following LEDA data standards);1648;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1733.4;2605;1314;1648;1;;;2004-04-23 00:00:00.0;Preaggregated value obtained from single record. ; Maianthemum bifolium;39069;actual measurement (following LEDA data standards);1537.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1656.8;2505;1255;1537.5;1;;;2004-04-23 00:00:00.0;preaggregated value obtained from single record; Malus sylvestris;29369;actual measurement;160.3288671;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;160.3288671;;;2;;;1996-08-05 00:00:00.0;; Malus sylvestris;29369;actual measurement;240.1796254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;240.1796254;;;2;;;1996-08-08 00:00:00.0;; Malva alcea;25705;actual measurement (following LEDA data standards);49.95;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;49.16;57.4;37.3;49.95;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Malva moschata;25717;actual measurement;79.3208042;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;79.3208042;;;2;;;1996-09-05 00:00:00.0;; Malva moschata;25717;actual measurement;95.21766144;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;95.21766144;;;2;;;1996-07-15 00:00:00.0;; Malva moschata;25717;actual measurement;353.6560327;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;353.6560327;;;2;;;1996-08-08 00:00:00.0;; Malva neglecta;25718;actual measurement;6.84;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.84;;;2;;;1996-08-03 00:00:00.0;; Malva pusilla;25668;laboratory/greenhouse/garden experiment;46.46;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.46;58.71;37.94;46.46;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Malva pusilla;25668;laboratory/greenhouse/garden experiment;45.4;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.46;58.71;37.94;45.4;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Malva sylvestris;25674;actual measurement (following LEDA data standards);341.6;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;335.01;463.6;160.4;341.6;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Malva verticillata;25681;laboratory/greenhouse/garden experiment;593.16;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;646.47;943.27;483.61;593.16;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Malva verticillata;25681;laboratory/greenhouse/garden experiment;579.44;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;646.47;943.27;483.61;579.44;2;;;2004-08-05 00:00:00.0;preaggregated value obtained from single record; Marrubium vulgare;24614;actual measurement;51.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;51.4;;;1;;;1997-07-27 00:00:00.0;; Matricaria maritima;9565;actual measurement;48.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;48.4;;;1;;;1997-07-14 00:00:00.0;; Matricaria maritima;9565;actual measurement (following LEDA data standards);8.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.49;22.5;4.25;8.63;1;;;2003-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Matricaria perforata;10535;actual measurement;8.435251799;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.435251799;;;2;;;1996-05-21 00:00:00.0;; Matricaria perforata;10535;actual measurement;17.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.2;;;2;;;1996-09-27 00:00:00.0;; Matteuccia struthiopteris;57;actual measurement (following LEDA data standards);2920.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2836.11;4070;1420;2920.56;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Matteuccia struthiopteris;57;actual measurement (following LEDA data standards);4452.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4509.44;7310;2150;4452.22;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Matteuccia struthiopteris;57;actual measurement (following LEDA data standards);3005;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2836.11;4070;1420;3005;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Matteuccia struthiopteris;57;actual measurement (following LEDA data standards);4395;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4509.44;7310;2150;4395;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Matthiola incana;13527;laboratory/greenhouse/garden experiment;26.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.18;47.15;12.28;26.18;2;;;2004-08-02 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Matthiola incana;13527;laboratory/greenhouse/garden experiment;26.79;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.18;47.15;12.28;26.79;2;;;2004-08-02 00:00:00.0;preaggregated value obtained from single record; Meconopsis cambrica;25542;actual measurement;62.36305815;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;62.36305815;;;2;;;1996-06-03 00:00:00.0;; Meconopsis cambrica;25542;actual measurement;62.39611465;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;62.39611465;;;2;;;1996-06-11 00:00:00.0;; Medicago arabica;19824;laboratory/greenhouse/garden experiment;18.31;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;18.31;30.83;7.78;18.31;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Medicago arabica;19824;laboratory/greenhouse/garden experiment;17.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;18.31;30.83;7.78;17.85;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Medicago arabica;19824;laboratory/greenhouse/garden experiment;20.19;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.45;34.34;8.28;20.19;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Medicago arabica;19824;laboratory/greenhouse/garden experiment;19.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.45;34.34;8.28;19.84;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Medicago lupulina;20595;actual measurement;14.35;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;15.73;39.1;2.5;14.35;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Medicago lupulina;20595;actual measurement;27.01781946;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.01781946;;;2;;;1996-05-22 00:00:00.0;; Medicago lupulina;20595;actual measurement;10.4673224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.4673224;;;2;;;1996-08-29 00:00:00.0;; Medicago polymorpha;20650;laboratory/greenhouse/garden experiment;31.69;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;31.69;31.69;31.69;31.69;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ; Medicago polymorpha;20650;laboratory/greenhouse/garden experiment;31.69;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;31.69;31.69;31.69;31.69;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Medicago polymorpha;20650;laboratory/greenhouse/garden experiment;34.72;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34.72;34.72;34.72;34.72;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ; Medicago polymorpha;20650;laboratory/greenhouse/garden experiment;34.72;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34.72;34.72;34.72;34.72;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Medicago sativa;21975;actual measurement;11.66;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.66;;;1;;;1997-06-24 00:00:00.0;; Medicago sativa;21975;actual measurement;29.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.7;;;1;;;1997-09-04 00:00:00.0;; Medicago sativa;21975;actual measurement;46.20337695;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;46.20337695;;;2;;;1996-07-08 00:00:00.0;; Melampyrum arvense;34460;actual measurement (following LEDA data standards);14.73;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.37;45.01;6.33;14.73;1;;;2003-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Melampyrum cristatum;33028;actual measurement (following LEDA data standards);15.31;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15;19.63;8.55;15.31;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Melampyrum cristatum;33028;actual measurement (following LEDA data standards);15.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15;19.63;8.55;15.32;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Melampyrum nemorosum;33034;actual measurement (following LEDA data standards);12.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.84;22.01;6.73;12.77;1;;;2003-07-22 00:00:00.0;Preaggregated value obtained from single record. ; Melampyrum nemorosum;33034;actual measurement (following LEDA data standards);13.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.31;22.82;6.94;13.15;1;;;2003-07-22 00:00:00.0;Preaggregated value obtained from single record. ; Melampyrum pratense;33526;actual measurement;7.49044586;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.49044586;;;2;;;1996-09-05 00:00:00.0;; Melampyrum sylvaticum;33044;actual measurement (following LEDA data standards);8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.65;13.52;6.24;8;1;;;2003-07-23 00:00:00.0;Preaggregated value obtained from single record. ; Melica ciliata;42479;actual measurement (following LEDA data standards);11.05;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.05;16.39;5.28;11.05;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Melica ciliata;42479;actual measurement (following LEDA data standards);11.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.05;16.39;5.28;11.3;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Melica nutans;43206;actual measurement;10.89095745;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.89095745;;;2;;;1996-07-11 00:00:00.0;; Melica nutans;43206;actual measurement;14.93511236;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.93511236;;;2;;;1996-06-18 00:00:00.0;; Melilotus alba;21420;actual measurement (following LEDA data standards);23.33;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;23.48;37.05;6.95;23.33;2;;;2004-08-03 00:00:00.0;preaggregated value obtained from single record; Melilotus altissima;22213;actual measurement;15.7699115;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.7699115;;;2;;;1996-09-04 00:00:00.0;; Melilotus indica;20556;actual measurement;18.52530973;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.52530973;;;2;;;1996-07-03 00:00:00.0;; Melilotus officinalis;22218;actual measurement;59.17987805;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;59.17987805;;;2;;;1996-06-24 00:00:00.0;; Melilotus officinalis;22218;actual measurement;7.760614525;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.760614525;;;2;;;1996-09-04 00:00:00.0;; Melilotus officinalis;22218;actual measurement;73.73189401;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;73.73189401;;;2;;;1996-07-15 00:00:00.0;; Melittis melissophyllum;24619;actual measurement (following LEDA data standards);44.25;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;47.11;64.12;34.53;44.25;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Melittis melissophyllum;24619;actual measurement (following LEDA data standards);46.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;49.83;69.03;36.51;46.04;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Melittis melissophyllum;24619;actual measurement (following LEDA data standards);46.74;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;49.83;69.03;36.51;46.74;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Melittis melissophyllum;24619;actual measurement (following LEDA data standards);43.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;47.11;64.12;34.53;43.85;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Mentha aquatica;24622;actual measurement;43.76071324;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;43.76071324;;;2;;;1996-08-28 00:00:00.0;; Mentha aquatica;24622;actual measurement;15.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;15.72;26.95;9.85;15.21;2;;;2003-07-10 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Mentha aquatica;24622;actual measurement (following LEDA data standards);21.55;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;22.67;38.41;12.21;21.55;2;;;;Preaggregated value obtained from single record. ; Mentha aquatica;24622;actual measurement;16.64;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;17.78;27.78;10.57;16.64;2;;;2003-07-10 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Mentha aquatica;24622;actual measurement;83.70960122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;83.70960122;;;2;;;1996-09-09 00:00:00.0;; Mentha aquatica;24622;actual measurement;62.82306699;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;62.82306699;;;2;;;1996-08-08 00:00:00.0;; Mentha arvensis;23905;actual measurement;13.64;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.64;;;2;;;1996-09-02 00:00:00.0;; Mentha arvensis;23905;actual measurement (following LEDA data standards);8.53;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;7.74;9.38;5.32;8.53;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Mentha arvensis;23905;actual measurement (following LEDA data standards);16.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;16.85;24.76;8.38;16.93;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Mentha arvensis;23905;actual measurement (following LEDA data standards);16.85;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;16.85;24.76;8.38;16.85;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Mentha arvensis;23905;actual measurement (following LEDA data standards);8.64;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.01;9.73;5.66;8.64;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Mentha arvensis;23905;actual measurement (following LEDA data standards);17.51;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.51;25.88;8.87;17.51;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Mentha arvensis;23905;actual measurement (following LEDA data standards);17.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.51;25.88;8.87;17.39;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Mentha longifolia;24632;actual measurement (following LEDA data standards);58.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;61.91;87.52;41.86;58.78;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Mentha longifolia;24632;actual measurement (following LEDA data standards);64.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;67.48;92.67;42.99;64.99;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Mentha pulegium;24284;actual measurement;12.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.3;;;1;;;1997-08-14 00:00:00.0;; Mentha pulegium;24284;actual measurement (following LEDA data standards);3.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.06;8.24;2.5;3.15;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Mentha pulegium;24284;actual measurement (following LEDA data standards);3.51;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.06;8.24;2.5;3.51;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Mentha spicata;24289;actual measurement;31;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31;;;1;;;1998-09-10 00:00:00.0;; Mentha spicata;24289;actual measurement;59.6339881;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;59.6339881;;;2;;;1996-09-26 00:00:00.0;; Mentha spicata;24289;actual measurement;27.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.3;;;1;;;1997-06-03 00:00:00.0;; Mentha spicata;24289;actual measurement;70.78208835;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;70.78208835;;;2;;;1996-09-05 00:00:00.0;; Mentha spicata;24289;actual measurement;84.41671865;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;84.41671865;;;2;;;1996-09-02 00:00:00.0;; Mentha suaveolens;23642;actual measurement (following LEDA data standards);64.84;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;61.32;91.4;24.96;64.84;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Mentha suaveolens;23642;actual measurement (following LEDA data standards);39.85;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;39.13;50.95;22.8;39.85;2;;;2004-08-03 00:00:00.0;preaggregated value obtained from single record; Mentha suaveolens;23642;actual measurement (following LEDA data standards);65.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;61.32;91.4;24.96;65.9;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Menyanthes trifoliata;26352;actual measurement;175.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;175.9;;;1;;;1997-08-12 00:00:00.0;; Menyanthes trifoliata;26352;actual measurement (following LEDA data standards);251.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;250.46;337.71;132.01;251.68;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Menyanthes trifoliata;26352;actual measurement (following LEDA data standards);250.46;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;250.46;337.71;132.01;250.46;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Menyanthes trifoliata;26352;actual measurement (following LEDA data standards);188.46;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;188.46;265.77;92.78;188.46;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Menyanthes trifoliata;26352;actual measurement (following LEDA data standards);189.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;188.46;265.77;92.78;189.93;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Mercurialis annua;20019;actual measurement (following LEDA data standards);16.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;16.11;29.44;7.02;16.16;2;;;2004-07-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Mercurialis annua;20019;actual measurement (following LEDA data standards);16.2;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;16.11;29.44;7.02;16.2;2;;;2004-07-25 00:00:00.0;preaggregated value obtained from single record; Mercurialis annua;20019;actual measurement (following LEDA data standards);17.37;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.37;30.83;7.26;17.37;2;;;2004-07-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Mercurialis annua;20019;actual measurement (following LEDA data standards);18.57;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.37;30.83;7.26;18.57;2;;;2004-07-25 00:00:00.0;preaggregated value obtained from single record; Mercurialis perennis;19987;actual measurement;57.62972063;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;57.62972063;;;2;;;1996-05-30 00:00:00.0;; Mercurialis perennis;19987;actual measurement;110.111501;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;110.111501;;;2;;;1996-08-16 00:00:00.0;; Mespilus germanica;30357;actual measurement (following LEDA data standards);52.67;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;52.67;52.67;52.67;52.67;3;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Mespilus germanica;30357;actual measurement (following LEDA data standards);308.1;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;308.1;308.1;308.1;308.1;14;;;2005-08-03 00:00:00.0;preaggregated value obtained from single record; Milium effusum;43212;actual measurement;44.52377469;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.52377469;;;2;;;1996-08-08 00:00:00.0;; Milium effusum;43212;actual measurement;53.35910498;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;53.35910498;;;2;;;1996-06-03 00:00:00.0;; Mimulus guttatus;34136;actual measurement;7.930140845;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.930140845;;;2;;;1996-09-24 00:00:00.0;; Mimulus guttatus;34136;actual measurement;188.2034595;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;188.2034595;;;2;;;1996-06-23 00:00:00.0;; Mimulus guttatus;34136;actual measurement (following LEDA data standards);29.26;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;27.32;35.63;14.4;29.26;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Mimulus guttatus;34136;actual measurement (following LEDA data standards);31.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.02;39.68;15.95;31.71;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Mimulus guttatus;34136;actual measurement (following LEDA data standards);31.16;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.02;39.68;15.95;31.16;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Mimulus guttatus;34136;actual measurement (following LEDA data standards);29.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;27.32;35.63;14.4;29.4;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Mimulus moschatus;34076;actual measurement;3.783369803;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.783369803;;;2;;;1996-09-24 00:00:00.0;; Mimulus moschatus;34076;actual measurement;10.52004069;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.52004069;;;2;;;1996-07-15 00:00:00.0;; Minuartia hybrida;16496;actual measurement (following LEDA data standards);.17;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.17;.21;.13;.17;10;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Minuartia hybrida;16496;actual measurement (following LEDA data standards);.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.17;.21;.13;.17;10;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Minuartia verna;17060;actual measurement;.364;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.364;;;2;;;1996-09-23 00:00:00.0;; Minuartia verna;17060;actual measurement (following LEDA data standards);.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.1;.13;.09;.1;10;;;2004-08-26 00:00:00.0;preaggregated value obtained from single record; Minuartia verna;17060;actual measurement (following LEDA data standards);.1;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.1;.13;.09;.1;10;;;2004-08-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Misopates orontium;34219;actual measurement (following LEDA data standards);1.76;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.76;2.97;.77;1.76;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Misopates orontium;34219;laboratory/greenhouse/garden experiment;18;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18;18;18;18;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Misopates orontium;34219;actual measurement (following LEDA data standards);1.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.76;2.97;.77;1.68;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Misopates orontium;34219;laboratory/greenhouse/garden experiment;18;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18;18;18;18;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Moehringia trinervia;16247;actual measurement;1.160199005;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.160199005;;;2;;;1996-06-03 00:00:00.0;; Moehringia trinervia;16247;actual measurement;2.68502994;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.68502994;;;2;;;1996-09-27 00:00:00.0;; Moehringia trinervia;16247;actual measurement;3.348448687;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.348448687;;;2;;;1996-07-08 00:00:00.0;; Molinia caerulea;42495;actual measurement;80.72019465;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;80.72019465;;;2;;;1996-09-09 00:00:00.0;; Molinia caerulea;42495;actual measurement;50.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;63.57;148.95;34.56;50.82;2;;;2003-07-08 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Molinia caerulea;42495;actual measurement (following LEDA data standards);39.03;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;34.57;49.75;16.75;39.03;2;;;;Preaggregated value obtained from single record. ; Moneses uniflora;28798;actual measurement (following LEDA data standards);14.95;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;15.64;29;5.65;14.95;2;;;2005-06-14 00:00:00.0;preaggregated value obtained from single record; Montia fontana;27478;actual measurement;.633333333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.633333333;;;2;;;1996-06-10 00:00:00.0;; Montia fontana;27478;actual measurement (following LEDA data standards);.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.2;.22;.15;.21;5;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Montia fontana subsp. chondrosperma;27489;actual measurement (following LEDA data standards);.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.2;.28;.13;.2;2;;;2004-04-20 00:00:00.0;preaggregated value obtained from single record; Montia fontana subsp. chondrosperma;27489;actual measurement (following LEDA data standards);.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.2;.28;.13;.2;2;;;2004-04-20 00:00:00.0;Preaggregated value obtained from single record. ; Muscari botryoides;38961;actual measurement (following LEDA data standards);51.91;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;51.98;75.47;30.84;51.91;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Muscari botryoides;38961;actual measurement (following LEDA data standards);51.79;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;51.98;75.47;30.84;51.79;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Myagrum perfoliatum;14601;laboratory/greenhouse/garden experiment;42.24;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;43.18;72.8;15.45;42.24;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Myagrum perfoliatum;14601;laboratory/greenhouse/garden experiment;41.3;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;43.18;72.8;15.45;41.3;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Myosotis arvensis;12027;actual measurement;31.06290672;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.06290672;;;2;;;1996-06-03 00:00:00.0;; Myosotis arvensis;12027;actual measurement;25.3825;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25.3825;;;2;;;1996-07-15 00:00:00.0;; Myosotis discolor;11975;actual measurement;2.840682415;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.840682415;;;2;;;1996-05-05 00:00:00.0;; Myosotis discolor;11975;actual measurement;4.031390135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.031390135;;;2;;;1996-06-03 00:00:00.0;; Myosotis discolor;11975;actual measurement;8.478795181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.478795181;;;2;;;1996-05-23 00:00:00.0;; Myosotis discolor;11975;actual measurement (following LEDA data standards);1.38;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.33;1.74;.84;1.38;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Myosotis discolor;11975;actual measurement (following LEDA data standards);1.42;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.33;1.74;.84;1.42;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Myosotis laxa;11988;actual measurement;8.761278195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.761278195;;;2;;;1996-08-08 00:00:00.0;; Myosotis laxa;11988;actual measurement;15.39534884;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.39534884;;;2;;;1996-09-24 00:00:00.0;; Myosotis laxa;11988;laboratory/greenhouse/garden experiment;5.21;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.21;7.87;2.56;5.21;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Myosotis laxa;11988;actual measurement (following LEDA data standards);3.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.08;9.3;2.3;3.27;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Myosotis laxa;11988;laboratory/greenhouse/garden experiment;5.2;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.21;7.87;2.56;5.2;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Myosotis laxa;11988;actual measurement (following LEDA data standards);3.38;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.08;9.3;2.3;3.38;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Myosotis ramosissima;11938;actual measurement;4.133333333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.133333333;;;2;;;1996-05-23 00:00:00.0;; Myosotis ramosissima;11938;actual measurement;4.933333333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.933333333;;;2;;;1996-05-05 00:00:00.0;; Myosotis ramosissima;11938;actual measurement;18.12631579;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.12631579;;;2;;;1996-04-30 00:00:00.0;; Myosotis rehsteineri;11945;actual measurement (following LEDA data standards);4.01;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.49;4.96;1.73;4.01;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Myosotis scorpioides;11951;actual measurement;37.98475904;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.98475904;;;2;;;1996-06-19 00:00:00.0;; Myosotis scorpioides;11951;actual measurement;9.433380084;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.433380084;;;2;;;1996-09-09 00:00:00.0;; Myosotis scorpioides;11951;actual measurement (following LEDA data standards);5.75;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;7.01;21.35;4.5;5.75;2;;;;Preaggregated value obtained from single record. ; Myosotis scorpioides;11951;actual measurement;17.41281374;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.41281374;;;2;;;1996-08-08 00:00:00.0;; Myosotis stricta;11964;actual measurement (following LEDA data standards);1.34;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.5;3.74;.66;1.34;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Myosotis stricta;11964;actual measurement (following LEDA data standards);1.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.5;3.74;.66;1.32;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Myosotis sylvatica;11966;actual measurement;11.0006435;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.0006435;;;2;;;1996-06-03 00:00:00.0;; Myosotis sylvatica;11966;actual measurement;23.43491172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.43491172;;;2;;;1996-05-23 00:00:00.0;; Myosotis sylvatica;11966;actual measurement;24.74291062;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.74291062;;;2;;;1996-05-23 00:00:00.0;; Myosoton aquaticum;15865;actual measurement;22.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;22.8;;;1;;;1999-06-18 00:00:00.0;; Myosoton aquaticum;15865;actual measurement (following LEDA data standards);18.44;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.58;40.57;7.93;18.44;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Myosoton aquaticum;15865;actual measurement (following LEDA data standards);18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.58;40.57;7.93;18;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Myosurus minimus;27104;laboratory/greenhouse/garden experiment;4.78;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.67;7.87;.94;4.78;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Myosurus minimus;27104;laboratory/greenhouse/garden experiment;4.9;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.67;7.87;.94;4.9;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Myrica gale;25316;actual measurement;13.09305263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.09305263;;;2;;;1996-08-02 00:00:00.0;; Myriophyllum alterniflorum;25228;actual measurement (following LEDA data standards);.11;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.11;.18;.05;.11;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Myriophyllum spicatum;25232;actual measurement;2.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.4;;;2;;;1996-08-31 00:00:00.0;; Myriophyllum spicatum;25232;actual measurement;3.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.5;;;2;;;1996-09-09 00:00:00.0;; Myriophyllum spicatum;25232;actual measurement (following LEDA data standards);5.5;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;6.61;17.27;4.4;5.5;2;;;;Preaggregated value obtained from single record. ; Myrrhis odorata;1152;actual measurement;4218.247456;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4218.247456;;;2;;;1996-06-11 00:00:00.0;; Najas marina;39411;actual measurement (following LEDA data standards);1.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.26;2.47;.69;1.18;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Najas marina;39411;actual measurement (following LEDA data standards);1.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.26;2.47;.69;1.14;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Najas minor;39413;actual measurement (following LEDA data standards);.15;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.15;.21;.1;.15;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Najas minor;39413;actual measurement (following LEDA data standards);.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.15;.21;.1;.15;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Narcissus poeticus;35706;actual measurement;238.984636;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;238.984636;;;2;;;1996-06-03 00:00:00.0;; Narcissus pseudonarcissus;35717;actual measurement;70.31722164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;70.31722164;;;2;;;1996-05-12 00:00:00.0;; Narcissus pseudonarcissus;35717;actual measurement;114.5082547;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;114.5082547;;;2;;;1996-04-30 00:00:00.0;; Nardus stricta;43217;actual measurement;28.02113208;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.02113208;;;2;;;1996-08-16 00:00:00.0;; Nardus stricta;43217;actual measurement;23.475;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.475;;;2;;;1996-07-15 00:00:00.0;; Nardus stricta;43217;actual measurement (following LEDA data standards);14.25;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.25;;;;2;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Nardus stricta;43217;actual measurement (following LEDA data standards);10.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;10.2;;;;3;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Nardus stricta;43217;actual measurement (following LEDA data standards);5.13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;5.13;;;;6;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Nardus stricta;43217;actual measurement (following LEDA data standards);13.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;13.6;;;;2;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Nardus stricta;43217;actual measurement (following LEDA data standards);9.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;9.7;;;;3;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Nardus stricta;43217;actual measurement (following LEDA data standards);4.57;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;unknown;4.57;;;;4;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Narthecium ossifragum;38170;actual measurement;40.3321267;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;40.3321267;;;2;;;1996-09-09 00:00:00.0;; Nasturtium microphyllum;12669;actual measurement;51.89291693;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;51.89291693;;;2;;;1996-09-27 00:00:00.0;; Nasturtium microphyllum;12669;actual measurement;17.0968543;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.0968543;;;2;;;1996-09-27 00:00:00.0;; Nasturtium officinale;14602;actual measurement;42.50332456;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;42.50332456;;;2;;;1996-09-23 00:00:00.0;; Nasturtium officinale;14602;actual measurement;15.6879668;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.6879668;;;2;;;1996-07-08 00:00:00.0;; Nepeta cataria;24784;actual measurement (following LEDA data standards);13.13;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;13.11;20.35;5.35;13.13;2;;;2005-06-19 00:00:00.0;preaggregated value obtained from single record; Nicandra physalodes;34982;laboratory/greenhouse/garden experiment;368.43;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;412.37;911.68;178.94;368.43;2;;;2004-07-14 00:00:00.0;Preaggregated value obtained from single record. ; Nicandra physalodes;34982;laboratory/greenhouse/garden experiment;363.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;412.37;911.68;178.94;363.52;2;;;2004-07-14 00:00:00.0;preaggregated value obtained from single record; Nicandra physalodes;34982;laboratory/greenhouse/garden experiment;394.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;457.16;1017.72;196.68;394.73;2;;;2004-07-14 00:00:00.0;preaggregated value obtained from single record; Nicandra physalodes;34982;laboratory/greenhouse/garden experiment;402.44;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;457.16;1017.72;196.68;402.44;2;;;2004-07-14 00:00:00.0;Preaggregated value obtained from single record. ; Nicotiana rustica;34935;laboratory/greenhouse/garden experiment;430.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;525.89;1038.83;287.84;430.42;2;;;2005-08-09 00:00:00.0;preaggregated value obtained from single record; Nigella arvensis;27106;laboratory/greenhouse/garden experiment;8.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.4;13.31;5.29;8.18;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Nigella arvensis;27106;laboratory/greenhouse/garden experiment;8.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.4;13.31;5.29;8.09;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Nigella damascena;27114;laboratory/greenhouse/garden experiment;79.65;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;79.65;108.71;46.48;79.65;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Nigella damascena;27114;laboratory/greenhouse/garden experiment;82.19;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;79.65;108.71;46.48;82.19;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Nonea pulla;11903;actual measurement (following LEDA data standards);144.45;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;185.77;459.87;50.04;144.45;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. ; Nonea pulla;11903;actual measurement (following LEDA data standards);126.59;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;185.77;459.87;50.04;126.59;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Nuphar lutea;25253;actual measurement;1900.208927;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1900.208927;;;2;;;1996-07-15 00:00:00.0;; Nuphar lutea;25253;actual measurement (following LEDA data standards);1354.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;1564.44;2410.75;1046.15;1354.05;2;;;;Preaggregated value obtained from single record. ; Nymphaea alba;25260;actual measurement;2682.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2682.7;;;1;;;1997-09-02 00:00:00.0;; Nymphoides peltata;26354;actual measurement;409.279836;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;409.279836;;;2;;;1996-08-08 00:00:00.0;; Odontites lutea;33000;actual measurement (following LEDA data standards);1.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.42;2.57;.77;1.18;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Odontites lutea;33000;actual measurement (following LEDA data standards);1.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.42;2.57;.77;1.18;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Odontites verna;33007;actual measurement;5.503846154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.503846154;;;2;;;1996-09-23 00:00:00.0;; Odontites verna;33007;actual measurement;13.02694611;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.02694611;;;2;;;1996-08-08 00:00:00.0;; Odontites verna subsp. litoralis;33008;actual measurement (following LEDA data standards);5.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.15;8.8;2.33;5.37;2;;;2005-07-28 00:00:00.0;preaggregated value obtained from single record; Oenanthe aquatica;1156;actual measurement;59.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;59.6;;;1;;;1997-05-30 00:00:00.0;; Oenanthe aquatica;1156;actual measurement (following LEDA data standards);212.01;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;211.07;443.01;25.88;212.01;2;;;;Preaggregated value obtained from single record. ; Oenanthe aquatica;1156;actual measurement (following LEDA data standards);358.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;344.74;642.56;173.43;358.25;2;;;;Preaggregated value obtained from single record. ; Oenanthe crocata;1659;actual measurement;367.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;367.8;;;2;;;1996-08-24 00:00:00.0;; Oenanthe fistulosa;1660;actual measurement;5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5;;;2;;;1996-09-02 00:00:00.0;; Oenanthe fistulosa;1660;actual measurement (following LEDA data standards);18.86;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.72;34.37;12.52;18.86;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Oenanthe fistulosa;1660;actual measurement (following LEDA data standards);20.29;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.72;34.37;12.52;20.29;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Oenanthe lachenalii;2104;actual measurement;85.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;85.6;;;2;;;1996-07-08 00:00:00.0;; Oenanthe lachenalii;2104;actual measurement (following LEDA data standards);72.83;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;78.78;113.9;49.81;72.83;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Oenanthe lachenalii;2104;actual measurement (following LEDA data standards);72.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;78.78;113.9;49.81;72.75;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Oenothera ammophila;26491;laboratory/greenhouse/garden experiment;74.7;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;93.31;140.46;65.47;74.7;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Oenothera ammophila;26491;laboratory/greenhouse/garden experiment;109.7;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;117.69;147.7;86.33;109.7;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Oenothera ammophila;26491;laboratory/greenhouse/garden experiment;113.7;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;117.69;147.7;86.33;113.7;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Oenothera ammophila;26491;laboratory/greenhouse/garden experiment;84;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;93.31;140.46;65.47;84;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Oenothera erythrosepala;26448;laboratory/greenhouse/garden experiment;210.49;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;222.76;324.99;152.05;210.49;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Oenothera erythrosepala;26448;laboratory/greenhouse/garden experiment;205.07;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;237.12;341.6;158.66;205.07;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Oenothera erythrosepala;26448;laboratory/greenhouse/garden experiment;221.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;237.12;341.6;158.66;221.09;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Oenothera erythrosepala;26448;laboratory/greenhouse/garden experiment;198.22;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;222.76;324.99;152.05;198.22;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Oenothera parviflora;26459;laboratory/greenhouse/garden experiment;31.96;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.9;59.11;11.96;31.96;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Oenothera parviflora;26459;laboratory/greenhouse/garden experiment;31.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.9;59.11;11.96;31.21;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Oenothera parviflora;26459;actual measurement (following LEDA data standards);16.65;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;16.31;21.2;9.25;16.65;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Oenothera rosea;26462;laboratory/greenhouse/garden experiment;8.58;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;8.22;14.67;3.13;8.58;2;;;2004-10-13 00:00:00.0;preaggregated value obtained from single record; Oenothera rosea;26462;laboratory/greenhouse/garden experiment;11.68;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.68;18.74;5.13;11.68;2;;;2004-10-13 00:00:00.0;Preaggregated value obtained from single record. collection date #1-3: 2005-06-14; Oenothera rosea;26462;laboratory/greenhouse/garden experiment;8.4;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;8.22;14.67;3.13;8.4;2;;;2004-10-13 00:00:00.0;Preaggregated value obtained from single record. ; Oenothera rosea;26462;laboratory/greenhouse/garden experiment;11.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.68;18.74;5.13;11.24;2;;;2004-10-13 00:00:00.0;preaggregated value obtained from single record; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);18.42;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.28;23.25;11.25;18.42;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);40;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;40;;;;1;;;2003-02-09 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);12.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.7;;;;1;;;2003-02-09 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);5.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.4;;;;1;;;2003-02-09 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);12;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12;;;;1;;;2003-08-30 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);16.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;16.2;;;;1;;;2003-08-28 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);25.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;25.4;;;;1;;;2003-08-28 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);22.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22.7;;;;1;;;2003-08-30 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);11;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11;;;;1;;;2003-02-09 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);16.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;16.2;;;;1;;;2003-02-09 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);11.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11.5;;;;1;;;2003-08-30 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);19.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.28;23.25;11.25;19.01;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);12;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12;;;;1;;;2003-08-30 00:00:00.0;; Omalotheca norvegica;11511;actual measurement (following LEDA data standards);19;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;19;;;;1;;;2003-08-30 00:00:00.0;; Omalotheca supina;10537;actual measurement (following LEDA data standards);.86;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.86;;;;8;;;2003-08-29 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.61;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.61;;;;7;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.88;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.88;;;;8;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.89;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.89;;;;7;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);1.22;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.22;;;;6;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);1.26;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.26;;;;8;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.45;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.45;;;;11;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.95;;;;11;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.66;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.66;;;;8;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.65;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.65;;;;6;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.6;;;;7;;;2003-08-19 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.75;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.75;;;;6;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.57;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.57;;;;9;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.64;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.64;;;;8;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omalotheca supina;10537;actual measurement (following LEDA data standards);.54;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.54;;;;10;;;2003-08-29 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Omphalodes verna;11923;actual measurement (following LEDA data standards);87.28;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;92.38;165.75;37.6;87.28;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Onobrychis viciifolia;21874;actual measurement;238.3619194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;238.3619194;;;2;;;1996-06-19 00:00:00.0;; Onobrychis viciifolia;21874;actual measurement;287.1267071;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;287.1267071;;;2;;;1996-07-08 00:00:00.0;; Onobrychis viciifolia;21874;actual measurement (following LEDA data standards);58.18;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;54.9;70.37;33.81;58.18;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Onobrychis viciifolia;21874;actual measurement (following LEDA data standards);72.53;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;68.06;83.54;44.78;72.53;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Ononis repens;20645;actual measurement;2.175539568;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.175539568;;;2;;;1996-09-02 00:00:00.0;; Ononis repens;20645;actual measurement;3.229226361;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.229226361;;;2;;;1996-07-08 00:00:00.0;; Ononis repens;20645;actual measurement;11.83425414;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.83425414;;;2;;;1996-07-11 00:00:00.0;; Ononis repens;20645;actual measurement (following LEDA data standards);1.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.29;1.74;1.1;1.22;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Onopordum acanthium;9350;laboratory/greenhouse/garden experiment;345.87;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;345.87;345.87;345.87;345.87;2;;;2005-07-11 00:00:00.0;preaggregated value obtained from single record; Ophioglossum vulgatum;283;actual measurement;56.93142427;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;56.93142427;;;2;;;1996-06-03 00:00:00.0;; Ophioglossum vulgatum;283;actual measurement;63.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;63.1;;;2;;;1996-05-30 00:00:00.0;; Ophrys apifera;39669;actual measurement;40.32544379;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;40.32544379;;;2;;;1996-05-23 00:00:00.0;; Ophrys apifera;39669;actual measurement;19;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19;;;2;;;1996-06-03 00:00:00.0;; Ophrys fuciflora;39685;actual measurement (following LEDA data standards);39.97;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.74;58.56;30.57;39.97;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Ophrys insectifera;39703;actual measurement;11.54538341;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.54538341;;;2;;;1996-06-03 00:00:00.0;; Ophrys sphegodes;39719;actual measurement (following LEDA data standards);23.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.89;42.56;8.91;23.97;2;;;2004-05-18 00:00:00.0;preaggregated value obtained from single record; Ophrys sphegodes;39719;actual measurement (following LEDA data standards);24.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.89;42.56;8.91;24.7;2;;;2004-05-18 00:00:00.0;Preaggregated value obtained from single record. ; Orchis mascula;39755;actual measurement;95.08791453;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;95.08791453;;;2;;;1996-06-18 00:00:00.0;; Orchis mascula;39755;actual measurement;150.9341479;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;150.9341479;;;2;;;1996-06-03 00:00:00.0;; Orchis mascula;39755;actual measurement (following LEDA data standards);180.76;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;171.24;243.22;97.18;180.76;2;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Orchis militaris;40042;actual measurement (following LEDA data standards);302.21;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;320.99;514.12;165.42;302.21;2;;;2004-05-18 00:00:00.0;Preaggregated value obtained from single record. ; Orchis militaris;40042;actual measurement (following LEDA data standards);283.43;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;320.99;514.12;165.42;283.43;2;;;2004-05-18 00:00:00.0;preaggregated value obtained from single record; Orchis morio;39762;actual measurement (following LEDA data standards);18.05;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.64;25.88;9.49;18.05;2;;;2004-05-16 00:00:00.0;Preaggregated value obtained from single record. ; Orchis morio;39762;actual measurement (following LEDA data standards);18.46;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.64;25.88;9.49;18.46;2;;;2004-05-16 00:00:00.0;preaggregated value obtained from single record; Orchis purpurea;40052;actual measurement (following LEDA data standards);297.25;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;297.25;489.46;179.45;297.25;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Orchis purpurea;40052;actual measurement (following LEDA data standards);290.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;297.25;489.46;179.45;290.34;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Orchis simia;40058;actual measurement (following LEDA data standards);130.69;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;133.4;204.87;87.78;130.69;2;;;2005-05-20 00:00:00.0;preaggregated value obtained from single record; Orchis ustulata;39783;actual measurement;22.39473684;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;22.39473684;;;2;;;1996-06-03 00:00:00.0;; Orchis ustulata;39783;actual measurement (following LEDA data standards);42.08;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;52.1;94.85;31.73;42.08;2;;;2004-05-18 00:00:00.0;preaggregated value obtained from single record; Orchis ustulata;39783;actual measurement (following LEDA data standards);47.09;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;52.1;94.85;31.73;47.09;2;;;2004-05-18 00:00:00.0;Preaggregated value obtained from single record. ; Oreopteris limbosperma;315;actual measurement;2093.994833;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2093.994833;;;2;;;1996-09-09 00:00:00.0;; Origanum vulgare;23973;actual measurement;23.36623932;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.36623932;;;2;;;1996-08-29 00:00:00.0;; Orlaya grandiflora;2113;laboratory/greenhouse/garden experiment;75.04;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;72.86;119.83;37.44;75.04;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Orlaya grandiflora;2113;laboratory/greenhouse/garden experiment;77.22;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;72.86;119.83;37.44;77.22;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Ornithogalum umbellatum;39006;actual measurement;116.99877;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;116.99877;;;2;;;1996-05-30 00:00:00.0;; Ornithopus perpusillus;19964;actual measurement;6.155351682;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.155351682;;;2;;;1996-05-23 00:00:00.0;; Ornithopus perpusillus;19964;actual measurement;8.94482091;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.94482091;;;2;;;1996-05-30 00:00:00.0;; Orthilia secunda;28809;actual measurement (following LEDA data standards);16.35;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;22.65;44.91;15.3;16.35;1;;;2003-07-23 00:00:00.0;Preaggregated value obtained from single record. ; Orthilia secunda;28809;actual measurement (following LEDA data standards);17.61;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.9;48.65;17.3;17.61;1;;;2003-07-23 00:00:00.0;Preaggregated value obtained from single record. ; Osmunda regalis;295;actual measurement (following LEDA data standards);9877.5;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9877.5;14060;6400;9877.5;2;;;2004-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Osmunda regalis;295;actual measurement (following LEDA data standards);9525;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9877.5;14060;6400;9525;2;;;2004-08-18 00:00:00.0;preaggregated value obtained from single record; Osmunda regalis;295;actual measurement (following LEDA data standards);15923.75;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15923.75;24480;10940;15923.75;2;;;2004-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Osmunda regalis;295;actual measurement (following LEDA data standards);14137.5;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15923.75;24480;10940;14137.5;2;;;2004-08-18 00:00:00.0;preaggregated value obtained from single record; Oxalis acetosella;25842;actual measurement;12.98811429;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.98811429;;;2;;;1996-06-10 00:00:00.0;; Oxalis acetosella;25842;actual measurement;2.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;2.42;4.58;.69;2.39;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Oxalis corniculata;25840;actual measurement (following LEDA data standards);2.62;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.81;4.03;1.86;2.62;2;;;2005-10-08 00:00:00.0;preaggregated value obtained from single record; Oxyria digyna;27715;actual measurement (following LEDA data standards);8.65;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;11.34;22.4;5.2;8.65;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Papaver argemone;25500;actual measurement;33.84762887;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;33.84762887;;;2;;;1996-06-24 00:00:00.0;; Papaver dubium;25513;actual measurement;93.18787879;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;93.18787879;;;2;;;1996-06-18 00:00:00.0;; Papaver dubium;25513;actual measurement;180.0736525;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;180.0736525;;;2;;;1996-06-18 00:00:00.0;; Papaver dubium;25513;actual measurement;438.8152866;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;438.8152866;;;2;;;1996-07-03 00:00:00.0;; Papaver dubium;25513;actual measurement;186.4920275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;186.4920275;;;2;;;1996-05-30 00:00:00.0;; Papaver rhoeas;25577;actual measurement;147.5002658;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;147.5002658;;;2;;;1996-05-30 00:00:00.0;; Papaver rhoeas;25577;actual measurement;186.1276363;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;186.1276363;;;2;;;1996-05-21 00:00:00.0;; Papaver somniferum;25589;actual measurement (following LEDA data standards);272;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;272;272;272;272;6;;;2005-07-20 00:00:00.0;preaggregated value obtained from single record; Parapholis strigosa;42872;actual measurement (following LEDA data standards);.82;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.82;.92;.7;.82;3;;;2005-07-08 00:00:00.0;preaggregated value obtained from single record; Parapholis strigosa;42872;actual measurement (following LEDA data standards);1.12;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.18;2.57;.5;1.12;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Parietaria judaica;44662;actual measurement;31.86779272;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.86779272;;;2;;;1996-09-27 00:00:00.0;; Parietaria judaica;44662;actual measurement;16.63330986;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;16.63330986;;;2;;;1996-09-02 00:00:00.0;; Parietaria officinalis;35137;actual measurement (following LEDA data standards);45.31;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;46.63;60.69;31.79;45.31;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Parietaria officinalis;35137;actual measurement (following LEDA data standards);44.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;46.63;60.69;31.79;44.8;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Parietaria officinalis;35137;actual measurement (following LEDA data standards);48.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;50.12;66.13;33.98;48.05;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Parietaria officinalis;35137;actual measurement (following LEDA data standards);48.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;50.12;66.13;33.98;48.59;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Paris quadrifolia;38073;actual measurement;37.85083333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.85083333;;;2;;;1996-06-03 00:00:00.0;; Parnassia palustris;25636;actual measurement;10.68607595;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.68607595;;;2;;;1996-09-23 00:00:00.0;; Parnassia palustris;25636;actual measurement (following LEDA data standards);23.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;23.79;31.57;12.47;23.48;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Parnassia palustris;25636;actual measurement (following LEDA data standards);23.79;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;23.79;31.57;12.47;23.79;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Parnassia palustris;25636;actual measurement;16.46461039;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;16.46461039;;;2;;;1996-08-29 00:00:00.0;; Parnassia palustris;25636;actual measurement;24.87407407;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.87407407;;;2;;;1996-09-09 00:00:00.0;; Parnassia palustris;25636;actual measurement;7.8;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;8.59;17.9;4.3;7.8;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Parnassia palustris;25636;actual measurement (following LEDA data standards);29.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.72;40.36;14.99;29.7;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Parnassia palustris;25636;actual measurement (following LEDA data standards);29.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.72;40.36;14.99;29.45;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Parthenocissus inserta;34510;actual measurement (following LEDA data standards);621.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;685.14;1112.04;410.39;621.61;1;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. ; Parthenocissus inserta;34510;actual measurement (following LEDA data standards);612.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;685.14;1112.04;410.39;612.08;1;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Parthenocissus inserta;34510;actual measurement (following LEDA data standards);761.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;844.25;1328.62;454.3;761.55;1;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Parthenocissus inserta;34510;actual measurement (following LEDA data standards);838.92;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;844.25;1328.62;454.3;838.92;1;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. ; Pastinaca sativa;1183;actual measurement;363;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;363;;;2;;;1996-07-08 00:00:00.0;; Pastinaca sativa;1183;actual measurement;402.9505771;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;402.9505771;;;2;;;1996-08-08 00:00:00.0;; Pedicularis lapponica;33481;actual measurement (following LEDA data standards);4.13;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;4.74;8.5;2.95;4.13;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Pedicularis oederi;33763;actual measurement (following LEDA data standards);36.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;36.9;;;;1;;;2003-04-09 00:00:00.0;; Pedicularis oederi;33763;actual measurement (following LEDA data standards);14.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.8;;;;1;;;2003-08-31 00:00:00.0;; Pedicularis oederi;33763;actual measurement (following LEDA data standards);12.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.6;;;;1;;;2003-08-31 00:00:00.0;; Pedicularis oederi;33763;actual measurement (following LEDA data standards);3.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.3;;;;1;;;2003-08-31 00:00:00.0;; Pedicularis oederi;33763;actual measurement (following LEDA data standards);3.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.5;;;;1;;;2003-08-31 00:00:00.0;; Pedicularis palustris;33771;actual measurement;70.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;70.2;;;1;;;1997-06-26 00:00:00.0;; Pedicularis palustris;33771;actual measurement (following LEDA data standards);23.38;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;28.82;57.65;14.05;23.38;2;;;2005-05-29 00:00:00.0;preaggregated value obtained from single record; Pedicularis palustris;33771;actual measurement (following LEDA data standards);20.41;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.79;38.86;15.51;20.41;2;;;2005-07-08 00:00:00.0;preaggregated value obtained from single record; Pedicularis palustris;33771;actual measurement (following LEDA data standards);9.1;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;12.1;25.95;6.55;9.1;1;;;2005-07-03 00:00:00.0;preaggregated value obtained from single record; Pedicularis palustris;33771;actual measurement (following LEDA data standards);1.91;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.93;3.23;.73;1.91;2;;;2004-08-03 00:00:00.0;preaggregated value obtained from single record; Pedicularis sylvatica;32992;actual measurement;1.028571429;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.028571429;;;2;;;1996-05-23 00:00:00.0;; Pentaglottis sempervirens;11832;actual measurement (following LEDA data standards);787.5;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;960.9;1655.5;621.5;787.5;2;;;2005-08-03 00:00:00.0;preaggregated value obtained from single record; Petasites albus;11005;actual measurement (following LEDA data standards);573.5;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;573.5;820;340;573.5;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Petasites albus;11005;actual measurement (following LEDA data standards);560;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;573.5;820;340;560;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Petasites albus;11005;actual measurement (following LEDA data standards);820;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;846.5;1370;470;820;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Petasites albus;11005;actual measurement (following LEDA data standards);1869;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2030.8;2701;1710;1869;1;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Petasites albus;11005;actual measurement (following LEDA data standards);775;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;846.5;1370;470;775;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Petasites fragrans;11574;actual measurement;146.4182078;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;146.4182078;;;2;;;1996-06-16 00:00:00.0;; Petasites hybridus;10476;actual measurement;6692.030437;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6692.030437;;;2;;;1996-09-02 00:00:00.0;; Petasites hybridus;10476;actual measurement;8501.54703;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8501.54703;;;2;;;1996-06-23 00:00:00.0;; Petasites spurius;9658;actual measurement (following LEDA data standards);4720;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;5346.5;7665;3845;4720;2;;;2004-05-21 00:00:00.0;Preaggregated value obtained from single record. ; Petasites spurius;9658;actual measurement (following LEDA data standards);6140;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6636;9675;5080;6140;2;;;2004-05-21 00:00:00.0;preaggregated value obtained from single record; Petasites spurius;9658;actual measurement (following LEDA data standards);6390;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6636;9675;5080;6390;2;;;2004-05-21 00:00:00.0;Preaggregated value obtained from single record. ; Petasites spurius;9658;actual measurement (following LEDA data standards);4645;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;5346.5;7665;3845;4645;2;;;2004-05-21 00:00:00.0;preaggregated value obtained from single record; Petrorhagia prolifera;16636;actual measurement (following LEDA data standards);3.34;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.19;5.9;1.6;3.34;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Petrorhagia prolifera;16636;actual measurement (following LEDA data standards);3.35;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.19;5.9;1.6;3.35;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Peucedanum cervaria;1621;actual measurement (following LEDA data standards);2692.01;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2692.01;3524.2;1733.21;2692.01;1;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Peucedanum cervaria;1621;actual measurement (following LEDA data standards);2780.16;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2692.01;3524.2;1733.21;2780.16;1;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Peucedanum officinale;1112;actual measurement (following LEDA data standards);540;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;591;960;295;540;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Peucedanum officinale;1112;actual measurement (following LEDA data standards);532.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;591;960;295;532.5;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Peucedanum officinale;1112;actual measurement (following LEDA data standards);940;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1056;1760;640;940;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Peucedanum officinale;1112;actual measurement (following LEDA data standards);937.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1056;1760;640;937.5;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Peucedanum oreoselinum;2070;actual measurement (following LEDA data standards);207.62;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;220.92;332.73;163.33;207.62;1;;;2003-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Peucedanum oreoselinum;2070;actual measurement (following LEDA data standards);360.21;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;380.2;541.68;271.92;360.21;1;;;2003-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Peucedanum palustre;2071;actual measurement (following LEDA data standards);115.05;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;115.08;283.75;23.07;115.05;2;;;;Preaggregated value obtained from single record. ; Peucedanum palustre;2071;actual measurement (following LEDA data standards);591.41;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;543.89;751.8;242.1;591.41;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. rosette leaves; Peucedanum palustre;2071;actual measurement (following LEDA data standards);242.41;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;229.94;389.51;81.51;242.41;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. floral bracts; Peucedanum palustre;2071;actual measurement (following LEDA data standards);510.69;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;544.2;1015.81;115.1;510.69;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. stem leaves; Peucedanum palustre;2071;actual measurement (following LEDA data standards);392.86;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;403.2;911.18;101.85;392.86;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. floral bracts; Peucedanum palustre;2071;actual measurement (following LEDA data standards);1126.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1140.9;2008.38;233.69;1126.5;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. stem leaves; Peucedanum palustre;2071;actual measurement (following LEDA data standards);1132.59;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1316.55;2316.42;565.62;1132.59;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. rosette leaves; Phacelia tanacetifolia;25220;laboratory/greenhouse/garden experiment;129.42;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;130.19;270.76;46.19;129.42;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Phacelia tanacetifolia;25220;laboratory/greenhouse/garden experiment;111.3;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;130.19;270.76;46.19;111.3;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Phalaris arundinacea;42396;actual measurement;128.7016232;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;128.7016232;;;2;;;1996-08-08 00:00:00.0;; Phalaris canariensis;42881;laboratory/greenhouse/garden experiment;134.86;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;129.4;168.07;76.01;134.86;2;;;2004-08-02 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Phalaris canariensis;42881;laboratory/greenhouse/garden experiment;135.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;129.4;168.07;76.01;135.03;2;;;2004-08-02 00:00:00.0;preaggregated value obtained from single record; Phaseolus vulgaris;22039;laboratory/greenhouse/garden experiment;466.94;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;466.94;745.38;209.75;466.94;2;;;2004-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Phaseolus vulgaris;22039;laboratory/greenhouse/garden experiment;538.85;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;538.85;838.68;250.49;538.85;2;;;2004-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Phaseolus vulgaris;22039;laboratory/greenhouse/garden experiment;545.98;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;538.85;838.68;250.49;545.98;2;;;2004-08-04 00:00:00.0;preaggregated value obtained from single record; Phaseolus vulgaris;22039;laboratory/greenhouse/garden experiment;472.51;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;466.94;745.38;209.75;472.51;2;;;2004-08-04 00:00:00.0;preaggregated value obtained from single record; Phegopteris connectilis;44452;actual measurement (following LEDA data standards);165.37;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;163.1;206.68;68.67;165.37;1;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Phegopteris connectilis;44452;actual measurement (following LEDA data standards);166.87;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;163.1;206.68;68.67;166.87;1;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Phegopteris connectilis;44452;actual measurement (following LEDA data standards);214.58;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;211.73;278.51;86.85;214.58;1;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Phegopteris connectilis;44452;actual measurement (following LEDA data standards);217.42;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;211.73;278.51;86.85;217.42;1;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Phleum alpinum;42401;actual measurement (following LEDA data standards);14.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;14.1;;;;1;;;2003-08-21 00:00:00.0;; Phleum alpinum;42401;actual measurement (following LEDA data standards);8.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.2;;;;1;;;2003-04-09 00:00:00.0;; Phleum alpinum;42401;actual measurement (following LEDA data standards);17.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.1;;;;1;;;2003-08-21 00:00:00.0;; Phleum alpinum;42401;actual measurement (following LEDA data standards);12.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.9;;;;1;;;2003-08-30 00:00:00.0;; Phleum alpinum;42401;actual measurement (following LEDA data standards);20.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20.7;;;;1;;;2003-08-30 00:00:00.0;; Phleum alpinum;42401;actual measurement (following LEDA data standards);15.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;15.1;;;;1;;;2003-08-21 00:00:00.0;; Phleum alpinum;42401;actual measurement (following LEDA data standards);34;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;34;;;;1;;;2003-08-21 00:00:00.0;; Phleum alpinum;42401;actual measurement (following LEDA data standards);37.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;37.2;;;;1;;;2003-04-09 00:00:00.0;; Phleum phleoides;43239;actual measurement (following LEDA data standards);17.87;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.87;32.2;7.83;17.87;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Phleum phleoides;43239;actual measurement (following LEDA data standards);17.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.87;32.2;7.83;17.61;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Phleum pratense;42408;actual measurement;8.781632653;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.781632653;;;2;;;1996-07-08 00:00:00.0;; Phleum pratense;42408;actual measurement;15.7201087;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.7201087;;;2;;;1996-06-18 00:00:00.0;; Phleum pratense;42408;actual measurement;20.24284116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.24284116;;;2;;;1996-06-16 00:00:00.0;; Phleum pratense;42408;actual measurement;14.68101029;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.68101029;;;2;;;;; Phleum pratense;42408;field experiment;.0119;2;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.0119;;;;20;;1.1;1989-05-19 00:00:00.0;reproductive tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Phleum pratense;42408;field experiment;.00617;2;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00617;;;;20;;.43;1989-04-28 00:00:00.0;vegetative tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Phragmites australis;42412;actual measurement;486.6831566;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;486.6831566;;;2;;;1996-08-08 00:00:00.0;; Phragmites australis;42412;actual measurement (following LEDA data standards);409.65;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;403.58;533.4;301;409.65;2;;;;Preaggregated value obtained from single record. ; Phragmites australis;42412;actual measurement;148.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;152.51;236.08;101.08;148.85;2;;;2003-07-28 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.82;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.82;;;;15;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.81;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.81;;;;16;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.81;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.81;;;;20;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.57;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.57;;;;18;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.48;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.48;;;;35;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.95;;;;17;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.89;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.89;;;;15;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.91;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.91;;;;14;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.83;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.83;;;;21;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.84;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.84;;;;22;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.73;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.73;;;;26;;;2003-08-15 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1;;;;20;;;2003-08-15 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.67;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.67;;;;20;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.73;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.73;;;;15;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.77;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.77;;;;20;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.98;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.98;;;;23;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);1.39;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;1.39;;;;18;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Phyteuma nigrum;14815;actual measurement (following LEDA data standards);37.5;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;40.53;58.67;26.66;37.5;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Phyteuma nigrum;14815;actual measurement (following LEDA data standards);39.02;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;40.53;58.67;26.66;39.02;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ground and stem leaves; Phyteuma nigrum;14815;actual measurement (following LEDA data standards);32.1;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;33.77;49;20.26;32.1;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Phyteuma nigrum;14815;actual measurement (following LEDA data standards);32.94;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;33.77;49;20.26;32.94;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ground and stem leaves; Phyteuma spicatum;14784;actual measurement (following LEDA data standards);26.94;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.45;40.13;10.36;26.94;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Phytolacca esculenta;27873;actual measurement (following LEDA data standards);881.96;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;881.96;881.96;881.96;881.96;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Phytolacca esculenta;27873;actual measurement (following LEDA data standards);1085.98;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1085.98;1085.98;1085.98;1085.98;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Picris echioides;10896;actual measurement;53.96477823;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;53.96477823;;;2;;;1996-08-31 00:00:00.0;; Picris echioides;10896;actual measurement (following LEDA data standards);49.11;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;49.11;49.11;49.11;49.11;1;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Picris echioides;10896;actual measurement (following LEDA data standards);49.11;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;49.11;49.11;49.11;49.11;1;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Picris hieracioides;9660;actual measurement;33.49158394;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;33.49158394;;;2;;;1996-07-08 00:00:00.0;; Picris hieracioides;9660;actual measurement (following LEDA data standards);33.25;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32;44.48;13.78;33.25;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Picris hieracioides;9660;actual measurement (following LEDA data standards);56.12;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;56.12;71.82;42.03;56.12;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Picris hieracioides;9660;laboratory/greenhouse/garden experiment;176.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;164.9;241.54;85.57;176.93;2;;;2005-07-05 00:00:00.0;preaggregated value obtained from single record; Picris hieracioides;9660;actual measurement (following LEDA data standards);56.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;56.12;71.82;42.03;56.53;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Picris hieracioides;9660;actual measurement;152.2440091;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;152.2440091;;;2;;;1996-08-08 00:00:00.0;; Picris hieracioides;9660;actual measurement (following LEDA data standards);33.41;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32;44.48;13.78;33.41;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Pilularia globulifera;12;actual measurement (following LEDA data standards);.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.63;1.92;.27;.49;2;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Pilularia globulifera;12;actual measurement (following LEDA data standards);.49;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.63;1.92;.27;.49;2;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. ; Pimpinella major;1134;actual measurement;475.8335652;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;475.8335652;;;2;;;1996-08-29 00:00:00.0;; Pimpinella major;1134;actual measurement;175.0683429;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;175.0683429;;;2;;;1996-08-08 00:00:00.0;; Pimpinella saxifraga;1643;actual measurement;66.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;66.4;;;2;;;;; Pimpinella saxifraga;1643;actual measurement;312.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;312.8;;;2;;;1996-08-29 00:00:00.0;; Pinguicula alpina;26120;actual measurement (following LEDA data standards);1.75;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.71;2.85;1.05;1.75;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Pinguicula vulgaris;26085;actual measurement;11.77464789;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.77464789;;;2;;;1996-08-28 00:00:00.0;; Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);3.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;3.1;;;;1;;;2003-03-09 00:00:00.0;; Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);2.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.8;;;;1;;;2003-03-09 00:00:00.0;; Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);4.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;4.1;;;;1;;;2003-02-09 00:00:00.0;; Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);1.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;1.1;;;;1;;;2003-02-09 00:00:00.0;; Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);1.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;1.1;;;;1;;;2003-02-09 00:00:00.0;; Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);2.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.6;;;;1;;;2003-02-09 00:00:00.0;; Pinguicula vulgaris;26085;actual measurement;8.45;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;8.82;17.5;2.9;8.45;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Pinus sylvestris;624;actual measurement (following LEDA data standards);10.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.1;15.09;7.95;10.81;2;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Plantago arenaria;27863;actual measurement (following LEDA data standards);3.45;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.11;7.47;2.12;3.45;2;;;2004-09-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Plantago arenaria;27863;laboratory/greenhouse/garden experiment;7.59;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.77;9.59;6.35;7.59;2;;;2004-10-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Plantago arenaria;27863;actual measurement (following LEDA data standards);3.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.11;7.47;2.12;3.43;2;;;2004-09-12 00:00:00.0;preaggregated value obtained from single record; Plantago arenaria;27863;laboratory/greenhouse/garden experiment;7.41;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.77;9.59;6.35;7.41;2;;;2004-10-11 00:00:00.0;preaggregated value obtained from single record; Plantago coronopus;27899;actual measurement;6.507042254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.507042254;;;2;;;1996-09-02 00:00:00.0;; Plantago coronopus;27899;laboratory/greenhouse/garden experiment;12.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.35;37.8;7.62;12.72;2;;;2004-06-14 00:00:00.0;preaggregated value obtained from single record; Plantago coronopus;27899;laboratory/greenhouse/garden experiment;9.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.1;30.85;5.47;9.94;2;;;2004-06-14 00:00:00.0;preaggregated value obtained from single record; Plantago coronopus;27899;laboratory/greenhouse/garden experiment;10.25;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.1;30.85;5.47;10.25;2;;;2004-06-14 00:00:00.0;Preaggregated value obtained from single record. ; Plantago coronopus;27899;actual measurement (following LEDA data standards);7.84;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.84;7.84;7.84;7.84;1;;;2003-09-27 00:00:00.0;Preaggregated value obtained from single record. ; Plantago coronopus;27899;laboratory/greenhouse/garden experiment;13.06;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.35;37.8;7.62;13.06;2;;;2004-06-14 00:00:00.0;Preaggregated value obtained from single record. ; Plantago lanceolata;27860;actual measurement;95.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;95.7;;;2;;;;; Plantago lanceolata;27860;actual measurement;123.9598253;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;123.9598253;;;2;;;1996-05-22 00:00:00.0;; Plantago lanceolata;27860;actual measurement;50.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;68.94;171.4;27.51;50.52;2;;;2003-06-05 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Plantago lanceolata;27860;actual measurement;60.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;80.58;190.9;29.93;60.97;2;;;2003-06-05 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Plantago major;27829;actual measurement;1016.91327;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1016.91327;;;2;;;1996-06-17 00:00:00.0;; Plantago major subsp. intermedia;27835;actual measurement (following LEDA data standards);20.46;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;20.46;21.96;18.95;20.46;2;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Plantago major subsp. intermedia;27835;actual measurement (following LEDA data standards);20.46;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;20.46;21.96;18.95;20.46;2;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Plantago major subsp. intermedia;27835;actual measurement (following LEDA data standards);23.83;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.83;25.26;22.4;23.83;2;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Plantago major subsp. intermedia;27835;actual measurement (following LEDA data standards);23.83;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.83;25.26;22.4;23.83;2;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Plantago maritima;27843;actual measurement;87.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;87.3;;;1;;;1997-06-20 00:00:00.0;; Plantago maritima;27843;actual measurement;54.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;54.1;;;1;;;1997-06-09 00:00:00.0;; Plantago maritima;27843;actual measurement (following LEDA data standards);75.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;72.41;159.01;23.18;75.76;1;;;2003-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Plantago maritima;27843;actual measurement (following LEDA data standards);46.78;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;48.62;61.85;35.65;46.78;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Plantago media;27756;actual measurement;208.8080763;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;208.8080763;;;2;;;1996-09-02 00:00:00.0;; Plantago media;27756;actual measurement;244.8821971;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;244.8821971;;;2;;;1996-07-15 00:00:00.0;; Plantago media;27756;actual measurement;439.5146193;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;439.5146193;;;2;;;1996-09-09 00:00:00.0;; Platanthera bifolia;39786;actual measurement (following LEDA data standards);113.84;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;113.84;132.6;95.08;113.84;1;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Platanthera bifolia;39786;actual measurement (following LEDA data standards);77.2;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;72.24;124.55;29.55;77.2;2;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Platanthera chlorantha;39789;actual measurement;78.20370759;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;78.20370759;;;2;;;1996-06-10 00:00:00.0;; Poa alpina;42327;actual measurement (following LEDA data standards);7.05;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;7.42;13.25;4.5;7.05;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Poa angustifolia;42678;actual measurement;47.31642857;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.31642857;;;2;;;1996-09-02 00:00:00.0;; Poa angustifolia;42678;actual measurement;67.51492537;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;67.51492537;;;2;;;1996-07-08 00:00:00.0;; Poa annua;43060;actual measurement;2.574169742;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.574169742;;;2;;;1996-06-23 00:00:00.0;; Poa annua;43060;actual measurement;3.663865546;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.663865546;;;2;;;1996-08-08 00:00:00.0;; Poa annua;43060;actual measurement;5.825035162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.825035162;;;2;;;1996-06-17 00:00:00.0;; Poa annua;43060;actual measurement;.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;.91;1.56;.43;.78;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Poa bulbosa;42340;actual measurement (following LEDA data standards);.8;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.8;1.1;.34;.8;3;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Poa bulbosa;42340;actual measurement (following LEDA data standards);.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.8;1.1;.34;.8;3;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Poa compressa;42683;actual measurement;3.803773585;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.803773585;;;2;;;1996-07-08 00:00:00.0;; Poa compressa;42683;actual measurement;8.217769376;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.217769376;;;2;;;1996-09-04 00:00:00.0;; Poa compressa;42683;actual measurement;10.06710963;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.06710963;;;2;;;1996-07-15 00:00:00.0;; Poa glauca;43601;actual measurement (following LEDA data standards);4.15;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;4.43;6.3;2.95;4.15;1;;;2005-07-06 00:00:00.0;preaggregated value obtained from single record; Poa nemoralis;42334;actual measurement;5.337037037;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.337037037;;;2;;;1996-06-19 00:00:00.0;; Poa nemoralis;42334;actual measurement;12.34025035;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.34025035;;;2;;;1996-06-03 00:00:00.0;; Poa palustris;43610;actual measurement (following LEDA data standards);1.3;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.85;3;1.25;1.3;1;;;2003-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Poa pratensis;42677;actual measurement;39.4646789;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;39.4646789;;;2;;;1996-07-08 00:00:00.0;; Poa pratensis;42677;actual measurement;4.33;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;4.31;6.97;2.27;4.33;2;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Poa pratensis;42677;actual measurement;54.39185737;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;54.39185737;;;2;;;1996-06-16 00:00:00.0;; Poa pratensis;42677;actual measurement;45.01325593;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;45.01325593;;;2;;;;; Poa trivialis;43077;actual measurement;1.975925926;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.975925926;;;2;;;1996-09-09 00:00:00.0;; Poa trivialis;43077;actual measurement;18.09807309;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.09807309;;;2;;;;; Poa trivialis;43077;actual measurement (following LEDA data standards);1.15;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.15;1.15;1.15;1.15;1;;;2003-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Polemonium caeruleum;28181;actual measurement;59.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;59.5;;;2;;;1996-09-23 00:00:00.0;; Polygala amarella;28146;actual measurement (following LEDA data standards);4.82;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.82;9.05;1.25;4.82;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Polygala amarella;28146;actual measurement (following LEDA data standards);2.99;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;3.07;4.5;2.12;2.99;1;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Polygala amarella;28146;actual measurement (following LEDA data standards);4.5;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.82;9.05;1.25;4.5;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Polygala amarella;28146;actual measurement (following LEDA data standards);1.66;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;1.7;2.6;.96;1.66;1;;;2005-06-11 00:00:00.0;preaggregated value obtained from single record; Polygala serpyllifolia;28082;actual measurement;1.36123348;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.36123348;;;2;;;1996-06-10 00:00:00.0;; Polygala serpyllifolia;28082;actual measurement (following LEDA data standards);.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.86;1.52;.41;.8;2;;;2004-06-02 00:00:00.0;preaggregated value obtained from single record; Polygala serpyllifolia;28082;actual measurement (following LEDA data standards);.9;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.87;1.06;.6;.9;5;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Polygala serpyllifolia;28082;actual measurement (following LEDA data standards);.8;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.86;1.52;.41;.8;2;;;2004-06-02 00:00:00.0;Preaggregated value obtained from single record. ; Polygala vulgaris;28062;actual measurement;4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4;;;1;;;1997-07-17 00:00:00.0;; Polygala vulgaris;28062;actual measurement (following LEDA data standards);1.71;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.77;3.85;.78;1.71;2;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. determinated as Polygala vulgaris ssp. collina; Polygala vulgaris;28062;actual measurement (following LEDA data standards);1.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.77;3.85;.78;1.46;2;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Polygala vulgaris;28062;actual measurement;2.595918367;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.595918367;;;2;;;1996-07-11 00:00:00.0;; Polygonatum multiflorum;38075;laboratory/greenhouse/garden experiment;48.55;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.81;70.94;31.17;48.55;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Polygonatum multiflorum;38075;laboratory/greenhouse/garden experiment;48.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.81;70.94;31.17;48.16;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Polygonatum odoratum;38076;actual measurement (following LEDA data standards);85.81;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;83.76;122.23;43.75;85.81;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Polygonatum odoratum;38076;actual measurement (following LEDA data standards);87.86;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;83.76;122.23;43.75;87.86;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Polygonatum verticillatum;38518;laboratory/greenhouse/garden experiment;24.32;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.39;30.23;19.32;24.32;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Polygonatum verticillatum;38518;laboratory/greenhouse/garden experiment;24.24;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.39;30.23;19.32;24.24;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Polygonum amphibium;27725;actual measurement;140.1320577;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;140.1320577;;;2;;;1996-09-02 00:00:00.0;; Polygonum amphibium;27725;actual measurement (following LEDA data standards);176.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;180.11;264.8;93.35;176.23;2;;;;Preaggregated value obtained from single record. ; Polygonum amphibium;27725;actual measurement;191.9771455;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;191.9771455;;;2;;;1996-09-23 00:00:00.0;; Polygonum amphibium;27725;actual measurement;204.7771746;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;204.7771746;;;2;;;1996-08-08 00:00:00.0;; Polygonum amphibium;27725;actual measurement (following LEDA data standards);122.83;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;124.09;227;36.75;122.83;2;;;;Preaggregated value obtained from single record. ; Polygonum aviculare;27740;actual measurement;9.642754663;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.642754663;;;2;;;1996-06-24 00:00:00.0;; Polygonum aviculare;27740;actual measurement;16.37407862;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;16.37407862;;;2;;;1996-08-16 00:00:00.0;; Polygonum bistorta;27743;actual measurement;556.2365039;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;556.2365039;;;2;;;1996-06-18 00:00:00.0;; Polygonum hydropiper;27636;actual measurement;32.60933126;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;32.60933126;;;2;;;1996-08-08 00:00:00.0;; Polygonum hydropiper;27636;actual measurement;39.81415503;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;39.81415503;;;2;;;1996-09-09 00:00:00.0;; Polygonum lapathifolium;27747;actual measurement;129.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;129.5;;;1;;;1997-07-25 00:00:00.0;; Polygonum lapathifolium;27747;actual measurement;241.511417;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;241.511417;;;2;;;1996-08-08 00:00:00.0;; Polygonum minus;27653;actual measurement (following LEDA data standards);17.83;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;19.47;36.4;10.53;17.83;2;;;;Preaggregated value obtained from single record. ; Polygonum minus;27653;actual measurement (following LEDA data standards);9.75;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.07;11.81;3.71;9.75;2;;;2004-09-20 00:00:00.0;Preaggregated value obtained from single record. ; Polygonum minus;27653;actual measurement (following LEDA data standards);4.13;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;4.27;5.55;3.15;4.13;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Polygonum minus;27653;actual measurement (following LEDA data standards);9.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.07;11.81;3.71;9.78;2;;;2004-09-20 00:00:00.0;preaggregated value obtained from single record; Polygonum mite;27654;actual measurement (following LEDA data standards);11.3;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;11.23;16.15;7.35;11.3;2;;;2005-08-27 00:00:00.0;preaggregated value obtained from single record; Polygonum persicaria;27673;actual measurement;63.87065767;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;63.87065767;;;2;;;1996-08-08 00:00:00.0;; Polygonum persicaria;27673;actual measurement;156.8119023;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;156.8119023;;;2;;;1996-09-05 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);14.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.8;;;;1;;;2003-08-20 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);9.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.4;;;;1;;;2003-08-29 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);10.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.1;;;;1;;;2003-04-09 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);15.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;15.2;;;;1;;;2003-04-09 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);6.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.8;;;;1;;;2003-04-09 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);19;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;19;;;;1;;;2003-08-20 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Polygonum viviparum;27573;actual measurement (following LEDA data standards);6.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.3;;;;1;;;2003-08-28 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);16.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;16.5;;;;1;;;2003-08-28 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);14.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.5;;;;1;;;2003-08-30 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);17.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.2;;;;1;;;2003-08-30 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);11.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11.4;;;;1;;;2003-08-20 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);4.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.4;;;;1;;;2003-04-09 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9;;;;1;;;2003-04-09 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);43.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;43.3;;;;1;;;2003-04-09 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);12.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.3;;;;1;;;2003-04-09 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;13;;;;1;;;2003-08-20 00:00:00.0;; Polygonum viviparum;27573;actual measurement (following LEDA data standards);11.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11.6;;;;1;;;2003-08-29 00:00:00.0;; Polygonum viviparum;27573;field experiment;2.24;7;1;Pyankov, Vladimir I.(1999): Leaf structure and specific leaf mass: the alpine desert plants of the Eastern Pamirs, Tadjikistan;unknown;2.24;;;;10;;;2004-02-25 00:00:00.0;;Pyankov, Vladimir I.(1999): Leaf structure and specific leaf mass: the alpine desert plants of the Eastern Pamirs, Tadjikistan Polypodium interjectum;86;actual measurement (following LEDA data standards);343.93;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;343.93;472.96;171.91;343.93;1;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. one frond per plant; Polypodium interjectum;86;actual measurement (following LEDA data standards);406.66;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;401.27;564.5;189.38;406.66;1;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Polypodium interjectum;86;actual measurement (following LEDA data standards);401.27;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;401.27;564.5;189.38;401.27;1;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. one frond per plant; Polypodium interjectum;86;actual measurement (following LEDA data standards);344.43;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;343.93;472.96;171.91;344.43;1;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Polypodium vulgare;71;actual measurement;666.490053;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;666.490053;;;2;;;1996-08-29 00:00:00.0;; Polypodium vulgare;71;actual measurement;384.1722795;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;384.1722795;;;2;;;1996-09-23 00:00:00.0;; Polystichum aculeatum;337;actual measurement;5891.707463;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5891.707463;;;2;;;1996-08-29 00:00:00.0;; Polystichum aculeatum;337;actual measurement (following LEDA data standards);1257.5;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1943.75;4175;1085;1257.5;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Polystichum aculeatum;337;actual measurement (following LEDA data standards);1767.5;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2763.75;6190;1330;1767.5;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Polystichum aculeatum;337;actual measurement (following LEDA data standards);1920;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2763.75;6190;1330;1920;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Polystichum aculeatum;337;actual measurement (following LEDA data standards);1360;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1943.75;4175;1085;1360;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Polystichum lonchitis;326;actual measurement (following LEDA data standards);1092.98;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;1070.02;1882.65;465.7;1092.98;1;;;2005-08-04 00:00:00.0;preaggregated value obtained from single record; Pontederia cordata;44064;actual measurement (following LEDA data standards);684;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;634.9;742.5;479;684;2;;;2005-07-08 00:00:00.0;preaggregated value obtained from single record; Populus nigra;32673;actual measurement (following LEDA data standards);222.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;242.47;330.01;143.77;222.42;2;;;2004-09-10 00:00:00.0;preaggregated value obtained from single record; Populus nigra;32673;actual measurement (following LEDA data standards);230.89;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;242.47;330.01;143.77;230.89;2;;;2004-09-10 00:00:00.0;Preaggregated value obtained from single record. ; Populus nigra;32673;actual measurement (following LEDA data standards);258.66;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;271.22;371.75;158.63;258.66;2;;;2004-09-10 00:00:00.0;Preaggregated value obtained from single record. ; Populus nigra;32673;actual measurement (following LEDA data standards);249.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;271.22;371.75;158.63;249.88;2;;;2004-09-10 00:00:00.0;preaggregated value obtained from single record; Populus tremula;32680;actual measurement (following LEDA data standards);169.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;166.28;197.45;101.09;169.43;2;;;2004-09-08 00:00:00.0;preaggregated value obtained from single record; Populus tremula;32680;actual measurement (following LEDA data standards);137.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;121.51;156.74;47.86;137.84;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Populus tremula;32680;actual measurement (following LEDA data standards);199.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;192.79;226.26;128.21;199.71;2;;;2004-09-08 00:00:00.0;preaggregated value obtained from single record; Populus tremula;32680;actual measurement (following LEDA data standards);158.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;138.19;176.91;54.55;158.1;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Populus tremula;32680;actual measurement (following LEDA data standards);198.84;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;192.79;226.26;128.21;198.84;2;;;2004-09-08 00:00:00.0;Preaggregated value obtained from single record. ; Populus tremula;32680;actual measurement (following LEDA data standards);155.34;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;138.19;176.91;54.55;155.34;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. ; Populus tremula;32680;actual measurement (following LEDA data standards);167.64;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;166.28;197.45;101.09;167.64;2;;;2004-09-08 00:00:00.0;Preaggregated value obtained from single record. ; Populus tremula;32680;actual measurement (following LEDA data standards);133.27;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;121.51;156.74;47.86;133.27;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. ; Portulaca oleracea;27501;actual measurement (following LEDA data standards);1.36;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1.46;2.46;.56;1.36;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Portulaca oleracea;27501;actual measurement (following LEDA data standards);1.43;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.56;2.65;.61;1.43;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton acutifolius;43950;actual measurement (following LEDA data standards);1.4;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;1.3;3.5;.18;1.4;2;;;;Preaggregated value obtained from single record. ; Potamogeton acutifolius;43950;actual measurement (following LEDA data standards);1.52;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.52;1.52;1.52;1.52;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton alpinus;43951;actual measurement (following LEDA data standards);7.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.64;14.78;4.76;7.94;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton alpinus;43951;actual measurement (following LEDA data standards);7.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.65;27.36;3.15;7.9;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton berchtoldii;43955;actual measurement;.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.9;;;1;;;1997-08-11 00:00:00.0;; Potamogeton berchtoldii;43955;actual measurement;.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.2;;;2;;;1996-08-31 00:00:00.0;; Potamogeton compressus;43962;actual measurement (following LEDA data standards);2.24;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.24;2.85;1.71;2.24;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton compressus;43962;actual measurement (following LEDA data standards);2.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.24;2.85;1.71;2.26;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Potamogeton crispus;43966;actual measurement;1.763139932;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.763139932;;;2;;;1996-09-27 00:00:00.0;; Potamogeton crispus;43966;actual measurement;6.32591716;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.32591716;;;2;;;1996-08-08 00:00:00.0;; Potamogeton crispus;43966;actual measurement;2.368115942;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.368115942;;;2;;;1996-09-26 00:00:00.0;; Potamogeton gramineus;43975;actual measurement (following LEDA data standards);27.13;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.33;35.72;11.86;27.13;2;;;2005-07-14 00:00:00.0;preaggregated value obtained from single record; Potamogeton gramineus;43975;actual measurement (following LEDA data standards);6.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.17;7.25;4.58;6.38;4;;;2005-07-14 00:00:00.0;preaggregated value obtained from single record; Potamogeton gramineus;43975;actual measurement (following LEDA data standards);9.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.61;11.16;7.52;9.77;4;;;2005-07-14 00:00:00.0;preaggregated value obtained from single record; Potamogeton lucens;43923;actual measurement (following LEDA data standards);35.88;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.88;47.66;24.84;35.88;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton lucens;43923;actual measurement (following LEDA data standards);37.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.88;47.66;24.84;37.16;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Potamogeton natans;43926;actual measurement;95.09864295;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;95.09864295;;;2;;;1996-09-27 00:00:00.0;; Potamogeton natans;43926;actual measurement;170.8593643;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;170.8593643;;;2;;;1996-09-23 00:00:00.0;; Potamogeton natans;43926;actual measurement (following LEDA data standards);104.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;103.71;159.3;55.25;104.05;2;;;;Preaggregated value obtained from single record. ; Potamogeton natans;43926;actual measurement (following LEDA data standards);94.15;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;93.91;145.3;26.3;94.15;2;;;;Preaggregated value obtained from single record. ; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);115.13;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.39;237.93;41.95;115.13;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);63.11;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;58.56;81.4;36.95;63.11;2;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);133.92;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;147.74;307.77;52.09;133.92;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);67.67;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;58.56;81.4;36.95;67.67;2;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);140.48;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;147.74;307.77;52.09;140.48;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);49.84;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;45.41;60.26;27.74;49.84;2;;;2004-09-07 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);110.87;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;119.39;237.93;41.95;110.87;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Potamogeton nodosus;43933;actual measurement (following LEDA data standards);54.26;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;45.41;60.26;27.74;54.26;2;;;2004-09-07 00:00:00.0;preaggregated value obtained from single record; Potamogeton obtusifolius;43936;actual measurement (following LEDA data standards);2.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.6;3.47;2.17;2.46;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton pectinatus;43938;actual measurement;.842465753;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.842465753;;;2;;;1996-09-02 00:00:00.0;; Potamogeton pectinatus;43938;actual measurement (following LEDA data standards);.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.33;.38;.27;.34;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton perfoliatus;43943;actual measurement (following LEDA data standards);7.79;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.97;10.3;3.66;7.79;1;;;2003-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton polygonifolius;43944;actual measurement;36.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;36.4;;;1;;;1997-06-16 00:00:00.0;; Potamogeton polygonifolius;43944;actual measurement (following LEDA data standards);20.17;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.9;22.69;16.59;20.17;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton polygonifolius;43944;actual measurement (following LEDA data standards);27.92;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.7;31.2;19.75;27.92;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton pusillus;43890;actual measurement (following LEDA data standards);.39;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.37;.41;.31;.39;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton pusillus;43890;actual measurement (following LEDA data standards);.54;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.54;.54;.54;.54;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Potamogeton pusillus;43890;actual measurement (following LEDA data standards);.26;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.27;.34;.17;.26;2;;;2004-07-18 00:00:00.0;preaggregated value obtained from single record; Potamogeton trichoides;43903;actual measurement (following LEDA data standards);.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.07;.11;.04;.08;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla alba;30128;actual measurement (following LEDA data standards);91.17;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;92.38;145.66;66.64;91.17;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla alba;30128;actual measurement (following LEDA data standards);88.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;92.38;145.66;66.64;88.03;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Potentilla alba;30128;actual measurement (following LEDA data standards);130.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;135.32;190.96;97.63;130.2;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Potentilla alba;30128;actual measurement (following LEDA data standards);134.95;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;135.32;190.96;97.63;134.95;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla anglica;31198;actual measurement (following LEDA data standards);20.56;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.17;42.02;15.76;20.56;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Potentilla anserina;29712;actual measurement;218.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;218.7;;;2;;;1996-09-23 00:00:00.0;; Potentilla anserina;29712;actual measurement;73.5;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;88.35;159.25;46.33;73.5;2;;;2003-06-11 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Potentilla anserina;29712;actual measurement;340.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;340.2;;;2;;;1996-08-08 00:00:00.0;; Potentilla anserina;29712;actual measurement;81.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;95.26;166.96;50.35;81.7;2;;;2003-06-11 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Potentilla anserina;29712;field experiment;3.867;7;1;Pyankov, Vladimir I.(1999): Leaf structure and specific leaf mass: the alpine desert plants of the Eastern Pamirs, Tadjikistan;unknown;3.867;;;;10;;;;;Pyankov, Vladimir I.(1999): Leaf structure and specific leaf mass: the alpine desert plants of the Eastern Pamirs, Tadjikistan Potentilla argentea;30642;actual measurement;31.58222222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.58222222;;;2;;;1996-07-15 00:00:00.0;; Potentilla aurea;29716;actual measurement (following LEDA data standards);58.32;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.08;91.04;29.23;58.32;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla aurea;29716;actual measurement (following LEDA data standards);57.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.08;91.04;29.23;57.78;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Potentilla cinerea;30603;actual measurement (following LEDA data standards);23.41;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;23.41;32.77;15.34;23.41;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla cinerea;30603;actual measurement (following LEDA data standards);23.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;23.41;32.77;15.34;23.3;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Potentilla cinerea;30603;actual measurement (following LEDA data standards);26.26;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.26;37.9;16.83;26.26;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla cinerea;30603;actual measurement (following LEDA data standards);26.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.26;37.9;16.83;26.23;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Potentilla crantzii;29387;actual measurement (following LEDA data standards);15.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;15.6;;;;1;;;2003-08-31 00:00:00.0;; Potentilla crantzii;29387;actual measurement (following LEDA data standards);12.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.8;;;;1;;;2003-08-31 00:00:00.0;; Potentilla crantzii;29387;actual measurement (following LEDA data standards);25.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;25.8;;;;1;;;2003-08-30 00:00:00.0;; Potentilla crantzii;29387;actual measurement (following LEDA data standards);22.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22.2;;;;1;;;2003-08-30 00:00:00.0;; Potentilla crantzii;29387;actual measurement (following LEDA data standards);29.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;29.6;;;;1;;;2003-08-30 00:00:00.0;; Potentilla crantzii;29387;actual measurement (following LEDA data standards);10.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.2;;;;1;;;2003-08-31 00:00:00.0;; Potentilla crantzii;29387;actual measurement (following LEDA data standards);11.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11.9;;;;1;;;2003-08-31 00:00:00.0;; Potentilla erecta;30927;actual measurement;6.643274854;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.643274854;;;2;;;1996-08-08 00:00:00.0;; Potentilla erecta;30927;actual measurement;3.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;3.49;4.69;1.8;3.52;2;;;2003-06-13 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Potentilla erecta;30927;actual measurement;7.039201183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.039201183;;;2;;;1996-08-14 00:00:00.0;; Potentilla heptaphylla;29728;actual measurement (following LEDA data standards);47.93;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;74.45;128.29;47.12;47.93;2;;;2005-05-20 00:00:00.0;preaggregated value obtained from single record; Potentilla intermedia;30887;actual measurement (following LEDA data standards);41.68;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;46.09;70.4;30.62;41.68;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla intermedia;30887;actual measurement (following LEDA data standards);44.07;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;42.62;54.83;28.3;44.07;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla intermedia;30887;actual measurement (following LEDA data standards);46.76;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;48.38;65.5;30.6;46.76;1;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla intermedia;30887;actual measurement (following LEDA data standards);44.45;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;51.14;80.52;35.12;44.45;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla norvegica;29685;laboratory/greenhouse/garden experiment;88.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;103.58;285.36;48.71;88.14;2;;;2004-10-14 00:00:00.0;preaggregated value obtained from single record; Potentilla norvegica;29685;laboratory/greenhouse/garden experiment;90.54;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;103.58;285.36;48.71;90.54;2;;;2004-10-14 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Potentilla norvegica;29685;laboratory/greenhouse/garden experiment;104.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;126.66;323.65;54.14;104.6;2;;;2004-10-14 00:00:00.0;preaggregated value obtained from single record; Potentilla norvegica;29685;laboratory/greenhouse/garden experiment;106.1;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;126.66;323.65;54.14;106.1;2;;;2004-10-14 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Potentilla palustris;30328;actual measurement (following LEDA data standards);111.63;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;115.6;196.15;31.96;111.63;2;;;;Preaggregated value obtained from single record. ; Potentilla palustris;30328;actual measurement (following LEDA data standards);120.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;129.67;180.85;92.25;120.08;2;;;;Preaggregated value obtained from single record. ; Potentilla recta;29349;actual measurement;94.59087406;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;94.59087406;;;2;;;1996-09-02 00:00:00.0;; Potentilla recta;29349;actual measurement (following LEDA data standards);93.03;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;88.6;115.47;51.5;93.03;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla recta;29349;actual measurement (following LEDA data standards);109.11;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;110.87;152.68;86.92;109.11;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla recta;29349;actual measurement;363.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;363.1;;;2;;;1996-07-15 00:00:00.0;; Potentilla recta;29349;actual measurement (following LEDA data standards);115.4;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;105.65;134.02;61.88;115.4;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla recta;29349;actual measurement (following LEDA data standards);128.08;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;127.29;173.35;96.41;128.08;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla reptans;30622;actual measurement;57.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;57.3;;;2;;;;; Potentilla reptans;30622;actual measurement;38.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;38.74;55.21;19.08;38.11;2;;;2003-06-11 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Potentilla reptans;30622;actual measurement;33.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;33.6;48.87;16.96;33.16;2;;;2003-06-11 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Potentilla reptans;30622;actual measurement;86.32905954;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;86.32905954;;;2;;;;; Potentilla rupestris;29693;actual measurement (following LEDA data standards);24.16;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.47;34.49;13.01;24.16;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla rupestris;29693;actual measurement (following LEDA data standards);24.85;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.47;34.49;13.01;24.85;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Potentilla rupestris;29693;actual measurement (following LEDA data standards);28.39;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.53;41.25;16;28.39;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Potentilla rupestris;29693;actual measurement (following LEDA data standards);28.25;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.53;41.25;16;28.25;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Potentilla sterilis;30583;actual measurement;21.04487805;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.04487805;;;2;;;1996-06-10 00:00:00.0;; Potentilla tabernaemontani;30295;actual measurement;27.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;27.2;;;1;;;1997-06-23 00:00:00.0;; Potentilla tabernaemontani;30295;actual measurement;38.93772563;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;38.93772563;;;2;;;1996-09-23 00:00:00.0;; Potentilla tabernaemontani;30295;actual measurement;11.55638298;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;11.55638298;;;2;;;1996-07-11 00:00:00.0;; Prenanthes purpurea;9532;actual measurement (following LEDA data standards);43.44;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.2;62.31;34.68;43.44;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Prenanthes purpurea;9532;actual measurement (following LEDA data standards);42.96;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;45.2;62.31;34.68;42.96;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Primula auricula;28913;actual measurement (following LEDA data standards);90.85;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;92.67;133.24;55.73;90.85;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Primula auricula;28913;actual measurement (following LEDA data standards);89.03;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;92.67;133.24;55.73;89.03;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Primula elatior;29086;actual measurement (following LEDA data standards);130.47;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;137.98;236.61;93.74;130.47;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Primula elatior;29086;actual measurement (following LEDA data standards);127.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;137.98;236.61;93.74;127.75;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Primula elatior;29086;actual measurement (following LEDA data standards);109.99;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;115.13;208.05;73.73;109.99;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Primula elatior;29086;actual measurement (following LEDA data standards);105.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;115.13;208.05;73.73;105.06;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Primula farinosa;28915;actual measurement (following LEDA data standards);8.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.57;12.82;4.05;8.82;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Primula veris;28858;actual measurement;82.94887039;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;82.94887039;;;2;;;1996-09-02 00:00:00.0;; Primula veris;28858;actual measurement;329.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;329.2;;;2;;;;; Primula veris;28858;actual measurement;323.274614;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;323.274614;;;2;;;1996-09-23 00:00:00.0;; Primula vulgaris;28981;actual measurement;224.4014594;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;224.4014594;;;2;;;1996-06-11 00:00:00.0;; Prunella grandiflora;23985;laboratory/greenhouse/garden experiment;24.55;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;25.87;34.65;17.57;24.55;2;;;2005-07-05 00:00:00.0;preaggregated value obtained from single record; Prunella vulgaris;24350;actual measurement;28.16597077;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.16597077;;;2;;;1996-08-08 00:00:00.0;; Prunella vulgaris;24350;actual measurement;13.37347956;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.37347956;;;2;;;;; Prunella vulgaris;24350;actual measurement;6.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;6.65;9.88;3.41;6.42;2;;;2003-06-28 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Prunella vulgaris;24350;actual measurement;25.55230596;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25.55230596;;;2;;;;; Prunella vulgaris;24350;actual measurement;7.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;7.1;10.4;3.6;7.03;2;;;2003-06-28 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Prunus cerasus;29305;actual measurement (following LEDA data standards);164.09;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;167.4;226.48;123.97;164.09;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Prunus cerasus;29305;actual measurement (following LEDA data standards);158.7;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;167.4;226.48;123.97;158.7;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Prunus cerasus;29305;actual measurement (following LEDA data standards);185.47;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;193.08;261.3;143.39;185.47;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Prunus cerasus;29305;actual measurement (following LEDA data standards);180.84;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;193.08;261.3;143.39;180.84;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Prunus mahaleb;29650;actual measurement (following LEDA data standards);34.98;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;31.76;37.05;20.09;34.98;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Prunus mahaleb;29650;actual measurement (following LEDA data standards);35.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;31.76;37.05;20.09;35.34;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Prunus mahaleb;29650;actual measurement (following LEDA data standards);33.24;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;30.05;34.79;19.03;33.24;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Prunus mahaleb;29650;actual measurement (following LEDA data standards);33.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;30.05;34.79;19.03;33.3;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Prunus padus;30306;actual measurement (following LEDA data standards);209;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;205.1;239.52;141.64;209;2;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. ; Prunus padus;30306;actual measurement (following LEDA data standards);212.91;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;205.1;239.52;141.64;212.91;2;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Prunus padus;30306;actual measurement (following LEDA data standards);149;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;144;189;84;149;1;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Prunus padus;30306;actual measurement (following LEDA data standards);89.55;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;92.43;121.2;68.45;89.55;1;;;2005-06-20 00:00:00.0;preaggregated value obtained from single record; Prunus padus;30306;actual measurement (following LEDA data standards);221.64;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;211.86;246.68;146.04;221.64;2;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Prunus padus;30306;actual measurement (following LEDA data standards);216.75;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;211.86;246.68;146.04;216.75;2;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. ; Prunus serotina;29315;actual measurement (following LEDA data standards);158.1;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;182.27;362.53;111.48;158.1;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. ; Prunus serotina;29315;actual measurement (following LEDA data standards);157.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;182.27;362.53;111.48;157.42;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Prunus serotina;29315;actual measurement (following LEDA data standards);178.86;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;205.78;407.14;125.29;178.86;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. ; Prunus serotina;29315;actual measurement (following LEDA data standards);177.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;205.78;407.14;125.29;177.65;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Prunus serotina;29315;actual measurement (following LEDA data standards);123.5;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;122.5;171.5;58;123.5;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Pseudofumaria lutea;45589;actual measurement;46.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;46.7;;;2;;;1996-09-02 00:00:00.0;; Pseudorchis albida;39803;actual measurement (following LEDA data standards);30.43;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.43;49.05;16.53;30.43;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Pseudorchis albida;39803;actual measurement (following LEDA data standards);30.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.43;49.05;16.53;30.45;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Puccinellia distans;42706;actual measurement;3.844074074;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.844074074;;;2;;;1996-09-02 00:00:00.0;; Puccinellia distans;42706;actual measurement;12.9253911;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.9253911;;;2;;;1996-09-09 00:00:00.0;; Puccinellia distans s. borealis;43427;actual measurement (following LEDA data standards);2.04;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2.14;4.02;1.22;2.04;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Puccinellia maritima;43436;actual measurement;4.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.8;;;1;;;1997-06-06 00:00:00.0;; Puccinellia maritima;43436;actual measurement (following LEDA data standards);1.03;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.16;1.9;.75;1.03;2;;;2003-09-09 00:00:00.0;preaggregated value obtained from single record; Puccinellia rupestris;42933;actual measurement;6.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.4;;;1;;;1997-09-01 00:00:00.0;; Pulicaria dysenterica;9613;actual measurement;38.43796701;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;38.43796701;;;2;;;1996-09-02 00:00:00.0;; Pulicaria dysenterica;9613;actual measurement;40.214756;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;40.214756;;;2;;;1996-08-08 00:00:00.0;; Pulicaria vulgaris;10384;laboratory/greenhouse/garden experiment;6.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.21;13.93;3.63;6.09;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Pulicaria vulgaris;10384;laboratory/greenhouse/garden experiment;6.98;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.21;13.93;3.63;6.98;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Pulmonaria obscura;11795;actual measurement (following LEDA data standards);164.36;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;175.79;318.95;100.05;164.36;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Pulmonaria obscura;11795;actual measurement (following LEDA data standards);214.64;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;228.32;407.21;136.47;214.64;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Pulmonaria obscura;11795;actual measurement (following LEDA data standards);213.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;228.32;407.21;136.47;213.28;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Pulmonaria obscura;11795;actual measurement (following LEDA data standards);174.38;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;175.79;318.95;100.05;174.38;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Pulmonaria officinalis;11796;actual measurement (following LEDA data standards);285;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;279.75;333.5;181;285;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Pulsatilla pratensis;27054;actual measurement (following LEDA data standards);259.51;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;280.69;519.6;158.75;259.51;2;;;2004-08-31 00:00:00.0;preaggregated value obtained from single record; Pulsatilla pratensis;27054;actual measurement (following LEDA data standards);280.69;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;280.69;519.6;158.75;280.69;2;;;2004-08-31 00:00:00.0;Preaggregated value obtained from single record. ; Pulsatilla vernalis;27063;actual measurement (following LEDA data standards);58.05;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;60.39;81.35;41.75;58.05;1;;;2005-06-26 00:00:00.0;preaggregated value obtained from single record; Pulsatilla vulgaris;27065;actual measurement (following LEDA data standards);170.05;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;177.58;268.97;93.09;170.05;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Pulsatilla vulgaris;27065;actual measurement (following LEDA data standards);193.53;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;209.13;290.15;143.3;193.53;2;;;2005-06-12 00:00:00.0;preaggregated value obtained from single record; Pulsatilla vulgaris;27065;actual measurement (following LEDA data standards);167.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;177.58;268.97;93.09;167.99;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Pulsatilla vulgaris;27065;actual measurement (following LEDA data standards);219.5;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;240.6;368;155;219.5;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Pulsatilla vulgaris;27065;actual measurement;107.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;107.8;;;1;;;1997-09-03 00:00:00.0;; Pyrola minor;28775;actual measurement;39.25288889;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;39.25288889;;;2;;;1996-09-23 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);63.35;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;63.48;101.15;36.13;63.35;2;;;2004-05-10 00:00:00.0;Preaggregated value obtained from single record. ; Pyrola minor;28775;actual measurement (following LEDA data standards);57.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;63.48;101.15;36.13;57.64;2;;;2004-05-10 00:00:00.0;preaggregated value obtained from single record; Pyrola minor;28775;actual measurement (following LEDA data standards);24.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;24.9;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);25.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;25.1;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);14.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.3;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);18.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.6;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);8.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.5;;;;1;;;2003-08-29 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);10.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.8;;;;1;;;2003-08-29 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);14.25;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.25;;;;2;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Pyrola minor;28775;actual measurement (following LEDA data standards);16.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;16.9;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);19.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;19.2;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);8.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.9;;;;1;;;2003-08-30 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);10.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.9;;;;1;;;2003-08-30 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);12.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.2;;;;1;;;2003-08-30 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);13.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;13.4;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Pyrola minor;28775;actual measurement (following LEDA data standards);12.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.4;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);17.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.5;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);20.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20.2;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);20.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20.3;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);20.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20.8;;;;1;;;2003-04-09 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);6.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.7;;;;1;;;2003-08-28 00:00:00.0;; Pyrola minor;28775;actual measurement (following LEDA data standards);14.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.7;;;;1;;;2003-08-28 00:00:00.0;; Pyrola rotundifolia;28777;actual measurement (following LEDA data standards);68.4;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;68.99;88.1;51.2;68.4;2;;;2003-08-13 00:00:00.0;preaggregated value obtained from single record; Quercus pubescens;22449;actual measurement (following LEDA data standards);318.84;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;371.15;588.11;162.35;318.84;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Quercus pubescens;22449;actual measurement (following LEDA data standards);345;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;371.15;588.11;162.35;345;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Quercus pubescens;22449;actual measurement (following LEDA data standards);328.43;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;382.33;609.23;167.6;328.43;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Quercus pubescens;22449;actual measurement (following LEDA data standards);355.38;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;382.33;609.23;167.6;355.38;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Radiola linoides;25873;actual measurement (following LEDA data standards);.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.08;.11;.05;.08;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Radiola linoides;25873;laboratory/greenhouse/garden experiment;.16;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.15;.22;.07;.16;4;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Radiola linoides;25873;laboratory/greenhouse/garden experiment;.16;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.15;.22;.07;.16;4;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Ranunculus aconitifolius;26864;actual measurement (following LEDA data standards);1064.4;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;920.96;1132.89;565.61;1064.4;2;;;2004-07-17 00:00:00.0;preaggregated value obtained from single record; Ranunculus aconitifolius;26864;actual measurement (following LEDA data standards);992.68;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;920.96;1132.89;565.61;992.68;2;;;2004-07-17 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus aconitifolius;26864;actual measurement (following LEDA data standards);617.9;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;538.77;652.71;345.71;617.9;2;;;2004-07-17 00:00:00.0;preaggregated value obtained from single record; Ranunculus aconitifolius;26864;actual measurement (following LEDA data standards);578.33;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;538.77;652.71;345.71;578.33;2;;;2004-07-17 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus acris;26865;actual measurement;108.5996918;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;108.5996918;;;2;;;;; Ranunculus acris;26865;actual measurement;27.63;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;38.37;83.99;13.36;27.63;2;;;2003-06-05 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Ranunculus acris;26865;actual measurement;173.9625486;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;173.9625486;;;2;;;1996-06-11 00:00:00.0;; Ranunculus acris;26865;actual measurement;126.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;126.6;;;2;;;;; Ranunculus acris;26865;actual measurement;33.98;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;48.78;110.39;15.21;33.98;2;;;2003-06-05 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Ranunculus acris;26865;actual measurement (following LEDA data standards);12.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.1;;;;1;;;2003-04-09 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);6.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.9;;;;1;;;2003-08-29 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);18.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.1;;;;1;;;2003-04-09 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);6.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.5;;;;1;;;2003-08-28 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);17.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.1;;;;1;;;2003-08-28 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);7.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.4;;;;1;;;2003-08-30 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);8.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.6;;;;1;;;2003-08-30 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);26.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;26.4;;;;1;;;2003-04-09 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);40.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;40.7;;;;1;;;2003-04-09 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);21.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;21.7;;;;1;;;2003-04-09 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);7.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.7;;;;1;;;2003-08-29 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);14.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.5;;;;1;;;2003-04-09 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);23.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;23.3;;;;1;;;2003-04-09 00:00:00.0;; Ranunculus acris;26865;actual measurement (following LEDA data standards);19.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;19.1;;;;1;;;2003-04-09 00:00:00.0;; Ranunculus aquatilis;27005;actual measurement (following LEDA data standards);7.38;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.55;8.81;6.63;7.38;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus aquatilis;27005;actual measurement (following LEDA data standards);7.2;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.55;8.81;6.63;7.2;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Ranunculus aquatilis;27005;actual measurement;8.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.8;;;1;;;1997-08-10 00:00:00.0;; Ranunculus aquatilis;27005;actual measurement;.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.8;;;2;;;1996-09-23 00:00:00.0;; Ranunculus aquatilis;27005;actual measurement (following LEDA data standards);5.36;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;5.66;6.99;4.92;5.36;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus aquatilis;27005;actual measurement (following LEDA data standards);5.06;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;5.66;6.99;4.92;5.06;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Ranunculus aquatilis;27005;actual measurement (following LEDA data standards);3.4;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;3.49;4;3.3;3.4;2;;;;Preaggregated value obtained from single record. ; Ranunculus arvensis;27014;actual measurement;21.02608696;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.02608696;;;2;;;1996-05-30 00:00:00.0;; Ranunculus auricomus;27000;actual measurement;28.83331938;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.83331938;;;2;;;1996-04-30 00:00:00.0;; Ranunculus auricomus;27000;actual measurement;48.77334625;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;48.77334625;;;2;;;1996-06-03 00:00:00.0;; Ranunculus bulbosus;26809;actual measurement;37.78928877;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.78928877;;;2;;;1996-05-23 00:00:00.0;; Ranunculus bulbosus;26809;actual measurement;48.49541727;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;48.49541727;;;2;;;1996-06-03 00:00:00.0;; Ranunculus bulbosus;26809;actual measurement;81.19021171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;81.19021171;;;2;;;1996-06-11 00:00:00.0;; Ranunculus circinatus;26945;actual measurement (following LEDA data standards);3.38;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;5.6;39.7;1.1;3.38;2;;;;Preaggregated value obtained from single record. ; Ranunculus circinatus;26945;actual measurement (following LEDA data standards);.51;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;.56;.88;.35;.51;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus circinatus;26945;actual measurement (following LEDA data standards);6.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;6.5;9.2;4.55;6.15;2;;;;Preaggregated value obtained from single record. ; Ranunculus circinatus;26945;actual measurement (following LEDA data standards);.54;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.6;.95;.4;.54;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus ficaria;26860;actual measurement;13.4380363;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.4380363;;;2;;;1996-06-03 00:00:00.0;; Ranunculus ficaria;26860;actual measurement;21.3588785;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.3588785;;;2;;;1996-04-30 00:00:00.0;; Ranunculus flammula;26624;actual measurement;37.1943101;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;37.1943101;;;2;;;1996-06-10 00:00:00.0;; Ranunculus flammula;26624;actual measurement (following LEDA data standards);18.95;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;21.11;36.85;8.3;18.95;2;;;;Preaggregated value obtained from single record. ; Ranunculus flammula;26624;actual measurement;44.06020574;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.06020574;;;2;;;1996-07-08 00:00:00.0;; Ranunculus fluitans;26881;actual measurement (following LEDA data standards);30.61;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.61;47.41;16.15;30.61;2;;;2004-05-18 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus fluitans;26881;actual measurement (following LEDA data standards);30.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.61;47.41;16.15;30.97;2;;;2004-05-18 00:00:00.0;preaggregated value obtained from single record; Ranunculus hederaceus;26758;actual measurement;3.040877598;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.040877598;;;2;;;1996-06-10 00:00:00.0;; Ranunculus lanuginosus;26737;actual measurement (following LEDA data standards);194.53;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;194.53;388.68;71.38;194.53;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Ranunculus lanuginosus;26737;actual measurement (following LEDA data standards);175.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;194.53;388.68;71.38;175.69;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Ranunculus lanuginosus;26737;actual measurement (following LEDA data standards);296.33;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;335.48;669.46;127.25;296.33;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Ranunculus lanuginosus;26737;actual measurement (following LEDA data standards);278.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;335.48;669.46;127.25;278.01;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Ranunculus lingua;26743;laboratory/greenhouse/garden experiment;173.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;171.5;253.71;110.05;173.53;2;;;2005-07-05 00:00:00.0;preaggregated value obtained from single record; Ranunculus peltatus;26695;actual measurement (following LEDA data standards);12.57;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.57;22.94;5.42;12.57;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus peltatus;26695;actual measurement (following LEDA data standards);12.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.57;22.94;5.42;12.86;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Ranunculus peltatus;26695;actual measurement;1.2325;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.2325;;;2;;;1996-09-02 00:00:00.0;; Ranunculus peltatus;26695;actual measurement (following LEDA data standards);10.02;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;10.02;19.04;4.23;10.02;2;;;2004-06-09 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus peltatus;26695;actual measurement (following LEDA data standards);10.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;10.02;19.04;4.23;10.41;2;;;2004-06-09 00:00:00.0;preaggregated value obtained from single record; Ranunculus peltatus s. baudotii;45465;actual measurement (following LEDA data standards);7.51;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.51;8.13;6.88;7.51;2;;;2005-08-06 00:00:00.0;preaggregated value obtained from single record; Ranunculus peltatus s. baudotii;45465;actual measurement (following LEDA data standards);3.37;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.37;3.37;3.37;3.37;2;;;2005-08-06 00:00:00.0;preaggregated value obtained from single record; Ranunculus penicillatus;45469;actual measurement;1.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.7;;;2;;;1996-06-10 00:00:00.0;; Ranunculus platanifolius;26778;actual measurement (following LEDA data standards);495.72;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;498.23;916.72;157.5;495.72;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus platanifolius;26778;actual measurement (following LEDA data standards);483.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;498.23;916.72;157.5;483.51;2;;;2004-06-24 00:00:00.0;preaggregated value obtained from single record; Ranunculus platanifolius;26778;actual measurement (following LEDA data standards);434.85;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;457.83;986.9;85.3;434.85;1;;;2005-07-23 00:00:00.0;preaggregated value obtained from single record; Ranunculus polyanthemos;26780;actual measurement (following LEDA data standards);250.56;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;250.56;250.56;250.56;250.56;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Ranunculus polyanthemos;26780;actual measurement (following LEDA data standards);250.56;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;250.56;250.56;250.56;250.56;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Ranunculus polyanthemos;26780;actual measurement (following LEDA data standards);142.36;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;142.36;142.36;142.36;142.36;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Ranunculus polyanthemos;26780;actual measurement (following LEDA data standards);142.36;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;142.36;142.36;142.36;142.36;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Ranunculus repens;26770;actual measurement;54.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;54.3;;;2;;;;; Ranunculus repens;26770;actual measurement;418.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;418.1;;;2;;;;; Ranunculus repens;26770;actual measurement;13.2;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;17.14;55.65;4.14;13.2;1;;;2003-06-04 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Ranunculus repens;26770;actual measurement;467.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;467.4;;;2;;;;; Ranunculus repens;26770;actual measurement;16.7;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;20.1;71.47;5.16;16.7;1;;;2003-06-04 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Ranunculus reptans;26623;actual measurement (following LEDA data standards);3.95;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.13;5.52;3.17;3.95;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Ranunculus sardous;26637;actual measurement (following LEDA data standards);21.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.43;70.63;13.98;21.01;2;;;2004-09-03 00:00:00.0;preaggregated value obtained from single record; Ranunculus sardous;26637;actual measurement (following LEDA data standards);21.46;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.43;70.63;13.98;21.46;2;;;2004-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus sceleratus;26717;actual measurement (following LEDA data standards);22.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;21.8;43.95;3.85;22.45;2;;;;Preaggregated value obtained from single record. ; Ranunculus sceleratus;26717;actual measurement;68.46939466;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;68.46939466;;;2;;;1996-07-08 00:00:00.0;; Ranunculus sceleratus;26717;actual measurement (following LEDA data standards);26.3;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;28.76;56.27;3.8;26.3;2;;;;Preaggregated value obtained from single record. ; Ranunculus serpens;26706;actual measurement (following LEDA data standards);97.63;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;101.16;149.05;64.39;97.63;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus serpens;26706;actual measurement (following LEDA data standards);97.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;101.16;149.05;64.39;97.12;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Ranunculus serpens;26706;actual measurement (following LEDA data standards);131.54;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;133.12;192.61;83.79;131.54;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus serpens;26706;actual measurement (following LEDA data standards);130.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;133.12;192.61;83.79;130.45;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Ranunculus trichophyllus;26588;actual measurement;.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.5;;;2;;;1996-09-23 00:00:00.0;; Ranunculus trichophyllus;26588;actual measurement (following LEDA data standards);9.52;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.82;15.24;4.7;9.52;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Ranunculus trichophyllus;26588;actual measurement (following LEDA data standards);7.33;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;8.19;13.74;3.5;7.33;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Raphanus raphanistrum;13549;actual measurement;71.26300604;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;71.26300604;;;2;;;1996-06-19 00:00:00.0;; Raphanus raphanistrum;13549;actual measurement;418.8063792;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;418.8063792;;;2;;;1996-07-15 00:00:00.0;; Raphanus raphanistrum;13549;actual measurement;369.8007089;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;369.8007089;;;2;;;1996-08-08 00:00:00.0;; Raphanus sativus;13125;laboratory/greenhouse/garden experiment;464.24;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;533.98;812.16;395.28;464.24;2;;;2005-07-11 00:00:00.0;preaggregated value obtained from single record; Rapistrum rugosum;13886;actual measurement;28.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.3;;;2;;;1996-08-03 00:00:00.0;; Reseda alba;27957;actual measurement;105.2787104;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;105.2787104;;;2;;;1996-08-31 00:00:00.0;; Reseda alba;27957;laboratory/greenhouse/garden experiment;32.65;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.76;51.04;23.51;32.65;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Reseda alba;27957;laboratory/greenhouse/garden experiment;32.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.76;51.04;23.51;32.62;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Reseda lutea;27974;actual measurement;28.7174321;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.7174321;;;2;;;1996-06-18 00:00:00.0;; Reseda lutea;27974;actual measurement;76.1533517;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;76.1533517;;;2;;;1996-08-08 00:00:00.0;; Reseda lutea;27974;actual measurement;73.30382427;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;73.30382427;;;2;;;1996-06-24 00:00:00.0;; Reseda luteola;27977;actual measurement;35.56964349;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;35.56964349;;;2;;;1996-05-30 00:00:00.0;; Reseda luteola;27977;actual measurement;44.95753715;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.95753715;;;2;;;1996-06-18 00:00:00.0;; Reseda luteola;27977;laboratory/greenhouse/garden experiment;73.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;77.69;135.73;50.52;73.22;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Reseda luteola;27977;laboratory/greenhouse/garden experiment;77.69;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;77.69;135.73;50.52;77.69;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Reseda luteola;27977;actual measurement;63.4741784;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;63.4741784;;;2;;;1996-06-20 00:00:00.0;; Reynoutria japonica;27574;actual measurement;1323;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1323;;;1;;;1997-07-03 00:00:00.0;; Reynoutria japonica;27574;actual measurement;772.3787546;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;772.3787546;;;2;;;1996-09-27 00:00:00.0;; Reynoutria japonica;27574;actual measurement;781.3161974;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;781.3161974;;;2;;;1996-08-16 00:00:00.0;; Reynoutria sachalinensis;27578;actual measurement;5420;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5420;;;1;;;1997-06-24 00:00:00.0;; Rhinanthus angustifolius;33452;actual measurement;12.4;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;15.2;37.1;5.45;12.4;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Rhinanthus minor;32892;actual measurement;19.16606061;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.16606061;;;2;;;1996-06-11 00:00:00.0;; Rhinanthus minor;32892;actual measurement;20.63059163;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.63059163;;;2;;;1996-07-15 00:00:00.0;; Rhinanthus minor;32892;actual measurement;21.4119403;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.4119403;;;2;;;1996-07-08 00:00:00.0;; Rhodiola rosea;18168;actual measurement (following LEDA data standards);6.2;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;6.14;7.1;5.2;6.2;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Rhynchospora alba;37156;actual measurement (following LEDA data standards);16.09;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;17.15;19.43;15.13;16.09;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Rhynchospora fusca;37574;actual measurement (following LEDA data standards);27.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;27.98;40.37;15.01;27.81;2;;;2005-07-14 00:00:00.0;preaggregated value obtained from single record; Rhynchospora fusca;37574;actual measurement (following LEDA data standards);7.48;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;7.32;10.7;4.55;7.48;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Ribes rubrum;23126;actual measurement (following LEDA data standards);175.97;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;175.97;222.48;105.91;175.97;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Ribes rubrum;23126;actual measurement (following LEDA data standards);196.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;194.14;244.93;118.28;196.08;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Ribes rubrum;23126;actual measurement (following LEDA data standards);179.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;175.97;222.48;105.91;179.67;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Ribes rubrum;23126;actual measurement (following LEDA data standards);194.14;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;194.14;244.93;118.28;194.14;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Ribes uva-crispa;23138;actual measurement (following LEDA data standards);9.04;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;8.84;9.32;8.16;9.04;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Ribes uva-crispa;23138;actual measurement (following LEDA data standards);10.35;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.2;11.01;9.25;10.35;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Rorippa amphibia;13138;actual measurement;320.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;320.3;;;1;;;1997-08-10 00:00:00.0;; Rorippa palustris;14626;actual measurement (following LEDA data standards);38.6;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;39.64;84.75;12.84;38.6;2;;;;Preaggregated value obtained from single record. ; Rorippa palustris;14626;actual measurement (following LEDA data standards);106.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;103.5;131.93;65.05;106.7;1;;;2003-08-05 00:00:00.0;Preaggregated value obtained from single record. stem leaves; Rorippa palustris;14626;actual measurement (following LEDA data standards);86.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;91.23;195.91;20.52;86.56;1;;;2003-08-05 00:00:00.0;Preaggregated value obtained from single record. rosette leaves; Rorippa palustris;14626;actual measurement (following LEDA data standards);27.05;18;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;30.82;63.5;8.5;27.05;1;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Rorippa sylvestris;13910;actual measurement;65.44350759;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;65.44350759;;;2;;;1996-07-17 00:00:00.0;; Rorippa sylvestris;13910;actual measurement;13.4853971;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.4853971;;;2;;;1996-09-24 00:00:00.0;; Rosa agrestis;29667;actual measurement (following LEDA data standards);34.83;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;34.83;34.83;34.83;34.83;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. first determination as Rosa micrantha; Rosa agrestis;29667;actual measurement (following LEDA data standards);30.39;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;30.39;34.42;26.35;30.39;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Rosa agrestis;29667;actual measurement (following LEDA data standards);35.35;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.35;35.35;35.35;35.35;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. first determination as Rosa micrantha; Rosa agrestis;29667;actual measurement (following LEDA data standards);30.57;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;30.57;34.64;26.5;30.57;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Rosa dumalis;60797;actual measurement (following LEDA data standards);158.92;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;175.18;250.78;132.1;158.92;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Rosa dumalis;60797;actual measurement (following LEDA data standards);142.65;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;175.18;250.78;132.1;142.65;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Rosa elliptica;30050;actual measurement (following LEDA data standards);88.77;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;90.53;131.33;67.09;88.77;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Rosa elliptica;30050;actual measurement (following LEDA data standards);87.02;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;90.53;131.33;67.09;87.02;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Rosa jundzillii;31124;actual measurement (following LEDA data standards);87.58;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;89.43;133.75;48.83;87.58;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Rosa jundzillii;31124;actual measurement (following LEDA data standards);89.43;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;89.43;133.75;48.83;89.43;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Rosa multiflora;29985;actual measurement (following LEDA data standards);291.25;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;283.88;338;215;291.25;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Rosa pendulina;30578;actual measurement (following LEDA data standards);99.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;106.8;180.83;39.3;99.57;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Rosa pendulina;30578;actual measurement (following LEDA data standards);92.34;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;106.8;180.83;39.3;92.34;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Rosa pimpinellifolia;29288;actual measurement;84.55331742;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;84.55331742;;;2;;;1996-07-11 00:00:00.0;; Rosa rubiginosa;29291;actual measurement (following LEDA data standards);86.24;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;100.79;165.78;64.92;86.24;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Rosa rubiginosa;29291;actual measurement (following LEDA data standards);92.41;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;100.79;165.78;64.92;92.41;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Rosa rubiginosa;29291;actual measurement (following LEDA data standards);94.57;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;110.8;183.52;70.54;94.57;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Rosa rubiginosa;29291;actual measurement (following LEDA data standards);102.55;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;110.8;183.52;70.54;102.55;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Rosa rugosa;30857;actual measurement (following LEDA data standards);362.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;392.18;650.17;247.16;362.14;2;;;2004-09-11 00:00:00.0;preaggregated value obtained from single record; Rosa rugosa;30857;actual measurement (following LEDA data standards);365.28;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;392.18;650.17;247.16;365.28;2;;;2004-09-11 00:00:00.0;Preaggregated value obtained from single record. ; Rosa rugosa;30857;actual measurement (following LEDA data standards);416.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;448.67;735.35;285.18;416.23;2;;;2004-09-11 00:00:00.0;preaggregated value obtained from single record; Rosa rugosa;30857;actual measurement (following LEDA data standards);371.5;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;370.9;494;285;371.5;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Rosa rugosa;30857;actual measurement (following LEDA data standards);421.94;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;448.67;735.35;285.18;421.94;2;;;2004-09-11 00:00:00.0;Preaggregated value obtained from single record. ; Rubia peregrina;31737;actual measurement;26.85598549;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;26.85598549;;;2;;;1996-08-31 00:00:00.0;; Rubia tinctorium;32061;actual measurement (following LEDA data standards);33.9;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;35.06;47.95;23.15;33.9;2;;;2005-07-19 00:00:00.0;preaggregated value obtained from single record; Rubus caesius;30108;actual measurement;867.9130897;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;867.9130897;;;2;;;1996-09-02 00:00:00.0;; Rubus caesius;30108;actual measurement;418.7391717;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;418.7391717;;;2;;;1996-08-29 00:00:00.0;; Rubus caesius;30108;actual measurement;374.0906812;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;374.0906812;;;2;;;1996-09-23 00:00:00.0;; Rubus chamaemorus;30071;actual measurement;570.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;570.9;;;1;;;1997-06-06 00:00:00.0;; Rubus chamaemorus;30071;actual measurement (following LEDA data standards);49.2;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;52.11;75.5;37.7;49.2;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Rubus chamaemorus;30071;actual measurement;107;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;107;;;1;;;1997-08-08 00:00:00.0;; Rubus idaeus;29604;actual measurement;103.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;121.02;220.59;66.67;103.83;2;;;2003-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Rubus idaeus;29604;actual measurement;118.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;136.85;253.34;71.24;118.07;2;;;2003-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Rubus saxatilis;29888;actual measurement;289.9793781;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;289.9793781;;;2;;;1996-07-11 00:00:00.0;; Rumex acetosa;27593;actual measurement;64.95044986;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;64.95044986;;;2;;;1996-08-08 00:00:00.0;; Rumex acetosa;27593;actual measurement (following LEDA data standards);11.2;15;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.58;18.1;3.4;11.2;1;;;2003-09-19 00:00:00.0;preaggregated value obtained from single record; Rumex acetosa;27593;actual measurement (following LEDA data standards);333.18;15;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;310.58;591.9;95.29;333.18;1;;;2003-09-19 00:00:00.0;preaggregated value obtained from single record; Rumex acetosa;27593;actual measurement;118.4417837;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;118.4417837;;;2;;;1996-06-16 00:00:00.0;; Rumex acetosa;27593;actual measurement;114.8882913;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;114.8882913;;;2;;;;; Rumex acetosella;27601;actual measurement;4.33875969;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.33875969;;;2;;;1996-05-22 00:00:00.0;; Rumex acetosella;27601;actual measurement;6.194666667;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.194666667;;;2;;;1996-05-23 00:00:00.0;; Rumex acetosella;27601;actual measurement;18.60578592;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.60578592;;;2;;;1996-06-10 00:00:00.0;; Rumex alpestris;44762;actual measurement (following LEDA data standards);180.68;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;180.68;228.19;148.62;180.68;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. four leaf pairs without any petioles, others with only one leaf bearing a petiole; Rumex alpestris;44762;actual measurement (following LEDA data standards);170.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;178.31;232.48;141.05;170.05;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Rumex alpestris;44762;actual measurement (following LEDA data standards);173.48;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;178.31;232.48;141.05;173.48;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. four leaf pairs without any petioles, others with only one leaf bearing a petiole; Rumex alpestris;44762;actual measurement (following LEDA data standards);176.27;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;180.68;228.19;148.62;176.27;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Rumex alpinus;27602;actual measurement (following LEDA data standards);2060;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2377;4560;945;2060;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Rumex alpinus;27602;actual measurement (following LEDA data standards);2105;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2377;4560;945;2105;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Rumex alpinus;27602;actual measurement (following LEDA data standards);3222.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3639.5;6660;1350;3222.5;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Rumex alpinus;27602;actual measurement (following LEDA data standards);3415;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3639.5;6660;1350;3415;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Rumex aquaticus;27607;actual measurement (following LEDA data standards);822;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;949;1695;420;822;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. ; Rumex aquaticus;27607;actual measurement (following LEDA data standards);1785.5;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1966;3430;705;1785.5;2;;;2004-08-24 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Rumex aquaticus;27607;actual measurement (following LEDA data standards);1605;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1966;3430;705;1605;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Rumex aquaticus;27607;actual measurement (following LEDA data standards);695;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;949;1695;420;695;2;;;2004-08-24 00:00:00.0;preaggregated value obtained from single record; Rumex conglomeratus;27623;actual measurement;190.2946116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;190.2946116;;;2;;;1996-08-08 00:00:00.0;; Rumex crispus;27506;actual measurement;148.2466529;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;148.2466529;;;2;;;1996-09-02 00:00:00.0;; Rumex crispus;27506;actual measurement;331.1451739;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;331.1451739;;;2;;;1996-08-29 00:00:00.0;; Rumex hydrolapathum;27528;actual measurement;1832.121259;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1832.121259;;;2;;;1996-09-27 00:00:00.0;; Rumex hydrolapathum;27528;actual measurement (following LEDA data standards);2667.5;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2638.33;4005;1630;2667.5;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Rumex maritimus;27537;actual measurement;416.1932477;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;416.1932477;;;2;;;1996-07-15 00:00:00.0;; Rumex maritimus;27537;actual measurement (following LEDA data standards);14.9;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;15.92;37.45;7.9;14.9;2;;;;Preaggregated value obtained from single record. ; Rumex obtusifolius;27542;actual measurement;1579.18433;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1579.18433;;;2;;;1996-06-17 00:00:00.0;; Rumex obtusifolius;27542;actual measurement (following LEDA data standards);328.35;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;324.63;586.9;90.6;328.35;2;;;;Preaggregated value obtained from single record. ; Rumex obtusifolius;27542;actual measurement;2442.139033;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2442.139033;;;2;;;1996-06-11 00:00:00.0;; Rumex palustris;27549;laboratory/greenhouse/garden experiment;60.51;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;60.51;104.79;21.99;60.51;2;;;2004-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Rumex palustris;27549;laboratory/greenhouse/garden experiment;76.56;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.71;130.16;26.48;76.56;2;;;2004-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Rumex palustris;27549;laboratory/greenhouse/garden experiment;78.55;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.71;130.16;26.48;78.55;2;;;2004-08-04 00:00:00.0;preaggregated value obtained from single record; Rumex palustris;27549;laboratory/greenhouse/garden experiment;61.72;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;60.51;104.79;21.99;61.72;2;;;2004-08-04 00:00:00.0;preaggregated value obtained from single record; Rumex sanguineus;27450;actual measurement;188.9898072;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;188.9898072;;;2;;;1996-09-23 00:00:00.0;; Rumex stenophyllus;27453;actual measurement (following LEDA data standards);223.77;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;255.08;381.6;159.87;223.77;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Rumex stenophyllus;27453;actual measurement (following LEDA data standards);205.35;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;205.35;313.2;97.5;205.35;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Rumex stenophyllus;27453;actual measurement (following LEDA data standards);219.19;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;219.19;337.89;100.48;219.19;1;;;2003-08-19 00:00:00.0;Preaggregated value obtained from single record. ; Rumex stenophyllus;27453;actual measurement (following LEDA data standards);250.36;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;270.76;396.04;165.87;250.36;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Rumex thyrsiflorus;27457;actual measurement (following LEDA data standards);111.87;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;118.9;249.24;64.89;111.87;1;;;2003-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Rumex thyrsiflorus;27457;actual measurement (following LEDA data standards);168.09;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;166.5;306.8;80.59;168.09;1;;;2003-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Ruppia cirrhosa;43915;actual measurement (following LEDA data standards);1.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.2;1.53;1.02;1.16;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Ruppia maritima;43869;actual measurement (following LEDA data standards);.73;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;.81;1.15;.53;.73;2;;;2005-09-01 00:00:00.0;preaggregated value obtained from single record; Sagina apetala;17028;actual measurement;.15;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.15;;;2;;;1996-06-18 00:00:00.0;; Sagina apetala;17028;actual measurement;.364864865;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.364864865;;;2;;;1996-06-20 00:00:00.0;; Sagina apetala;17028;actual measurement;.45;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.45;;;2;;;1996-05-30 00:00:00.0;; Sagina maritima;17033;actual measurement;.28;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.28;;;2;;;1996-07-08 00:00:00.0;; Sagina nodosa;16644;actual measurement;.32;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.32;;;2;;;1996-08-16 00:00:00.0;; Sagina nodosa;16644;actual measurement (following LEDA data standards);1.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.26;1.64;.81;1.27;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Sagina nodosa;16644;actual measurement (following LEDA data standards);1.26;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.26;1.64;.81;1.26;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Sagina procumbens;16230;actual measurement;.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.2;;;2;;;1996-06-18 00:00:00.0;; Sagina procumbens;16230;actual measurement;.65;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.65;;;2;;;1996-05-22 00:00:00.0;; Sagittaria sagittifolia;35605;actual measurement (following LEDA data standards);318.25;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;311.03;592.4;166.44;318.25;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. airborne leaves without petiole; Sagittaria sagittifolia;35605;actual measurement (following LEDA data standards);124.66;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;136.82;296.6;33.19;124.66;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. swim leaves without petiole; Sagittaria sagittifolia;35605;actual measurement (following LEDA data standards);353.39;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;312.28;510.42;99.73;353.39;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. swim leaves with; Sagittaria sagittifolia;35605;actual measurement (following LEDA data standards);3.11;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.85;12.3;1.23;3.11;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. f. vallisneriifolia, submerged leaves /rosette leaves; Sagittaria sagittifolia;35605;actual measurement (following LEDA data standards);973.84;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;945.14;1271.85;515.52;973.84;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. airborne leaves with; Salicornia europaea;18012;actual measurement (following LEDA data standards);32.62;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;30.55;32.92;26.12;32.62;1;;;2003-09-27 00:00:00.0;Preaggregated value obtained from single record. ssp. brachystachya; Salicornia europaea;18012;actual measurement (following LEDA data standards);36.47;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;34.4;38.49;28.25;36.47;1;;;2003-09-27 00:00:00.0;Preaggregated value obtained from single record. ssp. brachystachya; Salicornia stricta;18033;actual measurement (following LEDA data standards);30.98;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;30.98;30.98;30.98;30.98;1;;;2003-09-27 00:00:00.0;Preaggregated value obtained from single record. ; Salicornia stricta;18033;actual measurement (following LEDA data standards);32.74;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.74;32.74;32.74;32.74;1;;;2003-09-27 00:00:00.0;Preaggregated value obtained from single record. ; Salix alba;32638;actual measurement (following LEDA data standards);65.15;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;67.91;81.33;57.25;65.15;2;;;2004-09-11 00:00:00.0;preaggregated value obtained from single record; Salix alba;32638;actual measurement (following LEDA data standards);66.53;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;67.91;81.33;57.25;66.53;2;;;2004-09-11 00:00:00.0;Preaggregated value obtained from single record. ; Salix alba;32638;actual measurement (following LEDA data standards);59.27;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;57.8;68.63;37.61;59.27;2;;;2004-09-11 00:00:00.0;Preaggregated value obtained from single record. ; Salix alba;32638;actual measurement (following LEDA data standards);62.48;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;57.8;68.63;37.61;62.48;2;;;2004-09-11 00:00:00.0;preaggregated value obtained from single record; Salix appendiculata;32649;actual measurement (following LEDA data standards);67.55;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;75.47;120.62;50.93;67.55;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Salix appendiculata;32649;actual measurement (following LEDA data standards);66.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;75.47;120.62;50.93;66.94;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Salix appendiculata;32649;actual measurement (following LEDA data standards);75.62;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;85.4;139.05;56.7;75.62;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Salix appendiculata;32649;actual measurement (following LEDA data standards);75.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;85.4;139.05;56.7;75.18;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Salix cinerea;32565;actual measurement (following LEDA data standards);146.23;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;139.22;155.87;115.55;146.23;1;;;2003-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Salix cinerea;32565;actual measurement (following LEDA data standards);159.18;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;150.16;167.63;123.67;159.18;1;;;2003-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Salix glauca;32573;actual measurement (following LEDA data standards);71.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;71.1;;;;1;;;2003-04-09 00:00:00.0;; Salix glauca;32573;actual measurement (following LEDA data standards);54;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;54;;;;1;;;2003-04-09 00:00:00.0;; Salix glauca;32573;actual measurement (following LEDA data standards);51.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;51.4;;;;1;;;2003-04-09 00:00:00.0;; Salix glauca;32573;actual measurement (following LEDA data standards);29;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;29;;;;1;;;2003-04-09 00:00:00.0;; Salix glauca;32573;actual measurement (following LEDA data standards);24.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;24.2;;;;1;;;2003-04-09 00:00:00.0;; Salix glauca;32573;actual measurement (following LEDA data standards);48.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;48.3;;;;1;;;2003-04-09 00:00:00.0;; Salix glauca;32573;actual measurement (following LEDA data standards);57.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;57.2;;;;1;;;2003-04-09 00:00:00.0;; Salix glauca;32573;actual measurement (following LEDA data standards);56;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;56;;;;1;;;2003-04-09 00:00:00.0;; Salix herbacea;32589;actual measurement (following LEDA data standards);6.57;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.57;;;;4;;;2003-08-29 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);9.55;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.55;;;;2;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5;;;;5;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);2.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.95;;;;4;;;2003-08-30 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);6.13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.13;;;;3;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);14.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.8;;;;1;;;2003-08-20 00:00:00.0;; Salix herbacea;32589;actual measurement (following LEDA data standards);7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7;;;;4;;;2003-08-29 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);13.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;13.2;;;;1;;;2003-08-20 00:00:00.0;; Salix herbacea;32589;actual measurement (following LEDA data standards);5.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.4;;;;3;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);3.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.5;;;;4;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);3.17;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.17;;;;4;;;2003-08-30 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Salix herbacea;32589;actual measurement (following LEDA data standards);23;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;23;;;;1;;;2003-04-09 00:00:00.0;; Salix herbacea;32589;actual measurement (following LEDA data standards);11.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11.6;;;;1;;;2003-04-09 00:00:00.0;; Salix lanata;32548;actual measurement (following LEDA data standards);201;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;201;;;;1;;;2003-04-09 00:00:00.0;; Salix lanata;32548;actual measurement (following LEDA data standards);61.15;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;60.5;82.15;40.6;61.15;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Salix lanata;32548;actual measurement (following LEDA data standards);121.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;121.3;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);40.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;40.8;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);28.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;28.3;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);26.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;26.2;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);20;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;20;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);17.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;17.2;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);24.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;24.8;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);27.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;27.4;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);28.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;28.4;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);37.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;37.5;;;;1;;;2003-04-09 00:00:00.0;; Salix lapponum;32550;actual measurement (following LEDA data standards);36.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;36.3;;;;1;;;2003-04-09 00:00:00.0;; Salix myrsinites;32555;actual measurement (following LEDA data standards);63;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;63;;;;1;;;2003-04-09 00:00:00.0;; Salix myrsinites;32555;actual measurement (following LEDA data standards);14.3;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;14.28;21.6;8.95;14.3;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Salix pentandra;32567;actual measurement (following LEDA data standards);48.18;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;47.83;61.05;34.8;48.18;2;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Salix repens;32533;actual measurement;17.84512947;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.84512947;;;2;;;1996-08-16 00:00:00.0;; Salix repens;32533;actual measurement;19.90856102;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.90856102;;;2;;;1996-09-09 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);30.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;30.5;;;;1;;;2003-03-09 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);21.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;21.7;;;;1;;;2003-04-09 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);15.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;15.9;;;;1;;;2003-03-09 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);9.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.7;;;;1;;;2003-04-09 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);41.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;41.4;;;;1;;;2003-08-31 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);23.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;23.2;;;;1;;;2003-08-31 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);14.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.7;;;;1;;;2003-08-31 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);11.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11.5;;;;1;;;2003-08-31 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);12.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.9;;;;1;;;2003-08-31 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);19.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;19.3;;;;1;;;2003-08-31 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);23.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;23.6;;;;1;;;2003-08-31 00:00:00.0;; Salix reticulata;32535;actual measurement (following LEDA data standards);42;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;42;;;;1;;;2003-08-31 00:00:00.0;; Salix starkeana;32511;actual measurement (following LEDA data standards);31.21;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;29.01;41.69;14.8;31.21;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Salix starkeana;32511;actual measurement (following LEDA data standards);34.91;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.4;46.6;16.44;34.91;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Salix starkeana;32511;actual measurement (following LEDA data standards);31.28;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;29.01;41.69;14.8;31.28;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Salix starkeana;32511;actual measurement (following LEDA data standards);34.88;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.4;46.6;16.44;34.88;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Salix triandra;32478;actual measurement (following LEDA data standards);84.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;87.19;114.98;54.3;84.05;1;;;2003-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Salix triandra;32478;actual measurement (following LEDA data standards);87.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;91.7;122.7;56.41;87.48;1;;;2003-08-04 00:00:00.0;Preaggregated value obtained from single record. ; Salix viminalis;32486;actual measurement (following LEDA data standards);31.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.81;55;18.75;31.6;2;;;2004-06-01 00:00:00.0;preaggregated value obtained from single record; Salix viminalis;32486;actual measurement (following LEDA data standards);33.53;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;33.53;56.5;19;33.53;2;;;2004-06-01 00:00:00.0;Preaggregated value obtained from single record. ; Salix viminalis;32486;actual measurement (following LEDA data standards);32.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;33.53;56.5;19;32.23;2;;;2004-06-01 00:00:00.0;preaggregated value obtained from single record; Salix viminalis;32486;actual measurement (following LEDA data standards);32.81;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.81;55;18.75;32.81;2;;;2004-06-01 00:00:00.0;Preaggregated value obtained from single record. ; Salsola kali;18036;actual measurement (following LEDA data standards);7.07;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.18;13.26;3.86;7.07;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Salsola kali;18036;actual measurement (following LEDA data standards);6.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.18;13.26;3.86;6.6;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Salvia glutinosa;23588;actual measurement (following LEDA data standards);213.42;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;216.76;268.87;166.18;213.42;2;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Salvia nemorosa;24767;actual measurement (following LEDA data standards);61;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;60.4;90;29;61;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Salvia officinalis;23945;actual measurement (following LEDA data standards);46.5;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;42.7;52;26.5;46.5;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Salvia officinalis;23945;actual measurement (following LEDA data standards);60.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;58.6;71.59;43.86;60.81;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Salvia officinalis;23945;actual measurement (following LEDA data standards);58.66;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;58.6;71.59;43.86;58.66;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Salvia officinalis;23945;actual measurement (following LEDA data standards);51.27;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;51.27;62.87;37.74;51.27;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Salvia officinalis;23945;actual measurement (following LEDA data standards);52.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;51.27;62.87;37.74;52.25;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Salvia verticillata;23952;actual measurement (following LEDA data standards);139.95;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;138.79;156.93;118.34;139.95;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Salvia verticillata;23952;actual measurement (following LEDA data standards);141.11;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;138.79;156.93;118.34;141.11;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Salvia verticillata;23952;actual measurement (following LEDA data standards);155.05;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;152.4;175.89;123.61;155.05;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Salvia verticillata;23952;actual measurement (following LEDA data standards);157.71;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;152.4;175.89;123.61;157.71;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Salvinia natans;17;actual measurement (following LEDA data standards);.38;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.38;.51;.27;.38;4;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Salvinia natans;17;actual measurement (following LEDA data standards);.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.38;.51;.27;.38;4;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Sambucus ebulus;15361;actual measurement;667.0381603;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;667.0381603;;;2;;;1996-06-18 00:00:00.0;; Sambucus ebulus;15361;actual measurement (following LEDA data standards);1290;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1575;2350;1085;1290;2;;;2005-05-20 00:00:00.0;preaggregated value obtained from single record; Sambucus racemosa;15364;actual measurement (following LEDA data standards);357.44;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;357.44;446.89;238.46;357.44;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Sambucus racemosa;15364;actual measurement (following LEDA data standards);369.13;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;357.44;446.89;238.46;369.13;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Sambucus racemosa;15364;actual measurement (following LEDA data standards);315.95;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;315.95;393.57;208.26;315.95;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. ; Sambucus racemosa;15364;actual measurement (following LEDA data standards);329.9;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;315.95;393.57;208.26;329.9;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Samolus valerandi;28974;actual measurement (following LEDA data standards);8.82;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;8.82;14.34;2.94;8.82;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Samolus valerandi;28974;actual measurement (following LEDA data standards);8.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;8.82;14.34;2.94;8.69;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Samolus valerandi;28974;actual measurement (following LEDA data standards);9.68;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.68;15.87;3.36;9.68;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Samolus valerandi;28974;actual measurement (following LEDA data standards);9.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.68;15.87;3.36;9.62;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Sanguisorba minor;29153;actual measurement;59.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;59.3;;;2;;;;; Sanguisorba minor;29153;actual measurement;230.8537044;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;230.8537044;;;2;;;1996-09-26 00:00:00.0;; Sanguisorba minor;29153;actual measurement;228.5553898;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;228.5553898;;;2;;;1996-09-09 00:00:00.0;; Sanguisorba minor;29153;actual measurement;120.1748097;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;120.1748097;;;2;;;1996-09-02 00:00:00.0;; Sanguisorba officinalis;30139;actual measurement;44.00988917;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.00988917;;;2;;;;; Sanguisorba officinalis;30139;actual measurement;120.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;120.7;;;2;;;;; Sanguisorba officinalis;30139;actual measurement;150.9559736;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;150.9559736;;;2;;;;; Sanicula europaea;2102;actual measurement;70.91322567;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;70.91322567;;;2;;;1996-09-05 00:00:00.0;; Saponaria officinalis;17539;actual measurement;55.44064303;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;55.44064303;;;2;;;1996-08-08 00:00:00.0;; Saponaria officinalis;17539;actual measurement;161.0931373;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;161.0931373;;;2;;;1996-08-05 00:00:00.0;; Sarracenia purpurea;31302;actual measurement (following LEDA data standards);1280;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1203.33;1470;750;1280;2;;;2005-07-14 00:00:00.0;preaggregated value obtained from single record; Satureja hortensis;25007;laboratory/greenhouse/garden experiment;4.02;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.02;7.53;2.13;4.02;2;;;2004-08-17 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Satureja hortensis;25007;laboratory/greenhouse/garden experiment;1;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.1;1.61;.8;1;2;;;2004-08-17 00:00:00.0;preaggregated value obtained from single record; Satureja hortensis;25007;laboratory/greenhouse/garden experiment;1.01;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.1;1.61;.8;1.01;2;;;2004-08-17 00:00:00.0;Preaggregated value obtained from single record. spataceous bracts; Satureja hortensis;25007;laboratory/greenhouse/garden experiment;3.2;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.02;7.53;2.13;3.2;2;;;2004-08-17 00:00:00.0;preaggregated value obtained from single record; Saussurea alpina;9535;actual measurement (following LEDA data standards);54.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;54.8;;;;1;;;2003-03-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);47.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;47.4;;;;1;;;2003-03-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);38.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;38.8;;;;1;;;2003-02-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);45.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;45.6;;;;1;;;2003-02-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);15;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;15;;;;1;;;2003-04-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);19.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;19.2;;;;1;;;2003-04-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);18.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.8;;;;1;;;2003-04-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);27.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;27.6;;;;1;;;2003-04-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);31.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;31.9;;;;1;;;2003-04-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);27.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;27.9;;;;1;;;2003-03-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);36.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;36.1;;;;1;;;2003-03-09 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);22.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22.4;;;;1;;;2003-08-30 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);33.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;33.6;;;;1;;;2003-08-30 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);32.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;32.6;;;;1;;;2003-08-31 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);35.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;35.3;;;;1;;;2003-08-31 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);46.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;46.6;;;;1;;;2003-08-31 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);61.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;61.7;;;;1;;;2003-08-31 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);64.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;64.3;;;;1;;;2003-08-31 00:00:00.0;; Saussurea alpina;9535;actual measurement (following LEDA data standards);85;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;85;;;;1;;;2003-08-31 00:00:00.0;; Saxifraga aizoides;31321;actual measurement;2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2;;;1;;;1997-05-09 00:00:00.0;; Saxifraga aizoides;31321;actual measurement (following LEDA data standards);1.39;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.53;2.34;.92;1.39;5;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Saxifraga cotyledon;31403;actual measurement (following LEDA data standards);29.97;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;38.98;83.15;18.95;29.97;1;;;2005-07-23 00:00:00.0;preaggregated value obtained from single record; Saxifraga granulata;31381;actual measurement;14.37631579;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.37631579;;;2;;;1996-06-10 00:00:00.0;; Saxifraga granulata;31381;actual measurement;21.73337811;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.73337811;;;2;;;1996-06-10 00:00:00.0;; Saxifraga hirculus;31463;field experiment;.39;7;1;Pyankov, Vladimir I.(1999): Leaf structure and specific leaf mass: the alpine desert plants of the Eastern Pamirs, Tadjikistan;unknown;.39;;;;10;;;;;Pyankov, Vladimir I.(1999): Leaf structure and specific leaf mass: the alpine desert plants of the Eastern Pamirs, Tadjikistan Saxifraga hypnoides;31390;actual measurement;.403030303;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.403030303;;;2;;;1996-07-11 00:00:00.0;; Saxifraga hypnoides;31390;actual measurement;.515254237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.515254237;;;2;;;1996-06-10 00:00:00.0;; Saxifraga hypnoides;31390;actual measurement;.596721311;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.596721311;;;2;;;1996-06-18 00:00:00.0;; Saxifraga paniculata;31528;actual measurement (following LEDA data standards);9.32;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.37;16.48;5.97;9.32;2;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Saxifraga stellaris;31429;actual measurement (following LEDA data standards);1.38;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.52;2.5;.8;1.38;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Saxifraga tridactylites;31616;actual measurement;5.627368421;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.627368421;;;2;;;1996-04-30 00:00:00.0;; Saxifraga tridactylites;31616;actual measurement (following LEDA data standards);.37;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.34;.48;.25;.37;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Saxifraga tridactylites;31616;actual measurement (following LEDA data standards);.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.34;.48;.25;.37;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Scabiosa atropurpurea;19064;laboratory/greenhouse/garden experiment;67.16;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;67.16;130.78;23.08;67.16;2;;;2004-07-26 00:00:00.0;Preaggregated value obtained from single record. ; Scabiosa atropurpurea;19064;laboratory/greenhouse/garden experiment;66.36;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;67.16;130.78;23.08;66.36;2;;;2004-07-26 00:00:00.0;preaggregated value obtained from single record; Scabiosa canescens;19427;actual measurement (following LEDA data standards);31.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.06;59.59;18.81;31.42;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Scabiosa canescens;19427;actual measurement (following LEDA data standards);30.78;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.06;59.59;18.81;30.78;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Scabiosa columbaria;19381;actual measurement;57.73198062;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;57.73198062;;;2;;;1996-08-08 00:00:00.0;; Scabiosa columbaria;19381;actual measurement;526.6136306;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;526.6136306;;;2;;;1996-09-02 00:00:00.0;; Scabiosa columbaria;19381;actual measurement;149.040902;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;149.040902;;;2;;;1996-08-16 00:00:00.0;; Scabiosa ochroleuca;19228;actual measurement (following LEDA data standards);32.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.18;52.07;15.21;32.18;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Scabiosa ochroleuca;19228;actual measurement (following LEDA data standards);33.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;32.18;52.07;15.21;33.21;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Scandix pecten-veneris;1087;actual measurement (following LEDA data standards);31.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;33.39;47.99;15.56;31.27;2;;;2005-06-04 00:00:00.0;preaggregated value obtained from single record; Scheuchzeria palustris;43986;actual measurement (following LEDA data standards);16.32;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;16.37;26.05;7.45;16.32;1;;;2005-07-18 00:00:00.0;preaggregated value obtained from single record; Scheuchzeria palustris;43986;actual measurement (following LEDA data standards);103.63;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;103.65;129.8;59.95;103.63;2;;;2003-09-06 00:00:00.0;preaggregated value obtained from single record; Schoenus ferrugineus;37576;actual measurement (following LEDA data standards);14.52;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.87;18.04;11.18;14.52;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Schoenus ferrugineus;37576;actual measurement (following LEDA data standards);.63;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.68;1.08;.47;.63;3;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Schoenus ferrugineus;37576;actual measurement (following LEDA data standards);2.31;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.31;2.43;2.18;2.31;3;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Schoenus ferrugineus;37576;actual measurement (following LEDA data standards);44.9;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;44.9;50.73;39.07;44.9;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Schoenus nigricans;37577;actual measurement;273.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;273.9;;;1;;;1997-10-01 00:00:00.0;; Schoenus nigricans;37577;actual measurement (following LEDA data standards);65.37;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.84;109.22;46.86;65.37;2;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. ; Schoenus nigricans;37577;actual measurement (following LEDA data standards);64.96;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.84;109.22;46.86;64.96;2;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Schoenus nigricans;37577;actual measurement (following LEDA data standards);133.2;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;128.56;172.55;83.75;133.2;2;;;2003-08-11 00:00:00.0;preaggregated value obtained from single record; Scilla autumnalis;38085;actual measurement (following LEDA data standards);11.26;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.26;11.27;11.25;11.26;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Scilla autumnalis;38085;actual measurement (following LEDA data standards);11.26;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;11.26;11.27;11.25;11.26;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Scilla bifolia;38937;actual measurement (following LEDA data standards);52.96;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;51.66;80.93;25.91;52.96;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Scilla bifolia;38937;actual measurement (following LEDA data standards);53.94;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;51.66;80.93;25.91;53.94;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Scilla sibirica;38091;laboratory/greenhouse/garden experiment;17.36;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.46;37.08;11.27;17.36;2;;;2004-04-08 00:00:00.0;Preaggregated value obtained from single record. ; Scilla sibirica;38091;laboratory/greenhouse/garden experiment;16.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.46;37.08;11.27;16.93;2;;;2004-04-08 00:00:00.0;preaggregated value obtained from single record; Scirpus cespitosus subsp. cespitosus;37034;actual measurement (following LEDA data standards);25.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;26.38;37.79;16.3;25.99;1;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Scirpus fluitans;37478;actual measurement (following LEDA data standards);.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.31;.38;.19;.3;5;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Scirpus fluitans;37478;actual measurement (following LEDA data standards);.3;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.31;.38;.19;.3;5;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Scirpus hudsonianus;37482;actual measurement (following LEDA data standards);11.4;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;11.31;13.4;9.2;11.4;1;;;2005-07-03 00:00:00.0;preaggregated value obtained from single record; Scirpus lacustris;37486;actual measurement;45.15863309;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;45.15863309;;;2;;;1996-08-08 00:00:00.0;; Scirpus lacustris;37486;actual measurement;20.55782946;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.55782946;;;2;;;1996-09-27 00:00:00.0;; Scirpus lacustris s. tabernaemontani;37488;actual measurement (following LEDA data standards);1384.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1385.46;1905.46;902.46;1384.68;1;;;2005-07-08 00:00:00.0;preaggregated value obtained from single record; Scirpus maritimus;37054;actual measurement (following LEDA data standards);139.58;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;150.73;227.59;103.7;139.58;2;;;2004-06-06 00:00:00.0;Preaggregated value obtained from single record. ; Scirpus maritimus;37054;actual measurement (following LEDA data standards);133.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;150.73;227.59;103.7;133.45;2;;;2004-06-06 00:00:00.0;preaggregated value obtained from single record; Scirpus setaceus;37063;actual measurement (following LEDA data standards);2.47;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.59;4.48;1.52;2.47;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. infructescence leaves; Scirpus setaceus;37063;actual measurement (following LEDA data standards);2.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.59;4.48;1.52;2.42;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Scirpus sylvaticus;37067;actual measurement;156.5905062;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;156.5905062;;;2;;;1996-09-09 00:00:00.0;; Scirpus sylvaticus;37067;actual measurement (following LEDA data standards);446.25;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;441.92;674.75;41.8;446.25;2;;;;Preaggregated value obtained from single record. ; Scirpus triqueter;37508;actual measurement (following LEDA data standards);342.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;344.66;486.7;230.2;342.67;1;;;2003-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Scleranthus annuus;17086;actual measurement (following LEDA data standards);.11;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.1;.11;.07;.11;1;;;2003-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Scleranthus annuus;17086;laboratory/greenhouse/garden experiment;.9;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.91;1.4;.58;.9;3;;;2004-05-24 00:00:00.0;Preaggregated value obtained from single record. ; Scleranthus annuus;17086;laboratory/greenhouse/garden experiment;.89;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.91;1.4;.58;.89;3;;;2004-05-24 00:00:00.0;preaggregated value obtained from single record; Scleranthus annuus subsp. polycarpos;17542;actual measurement (following LEDA data standards);.04;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.04;.04;.04;.04;31;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Scleranthus annuus subsp. polycarpos;17542;actual measurement (following LEDA data standards);.04;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.04;.04;.04;.04;31;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Scleranthus perennis;17092;actual measurement (following LEDA data standards);.25;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.25;.33;.18;.25;3;;;2004-04-03 00:00:00.0;Preaggregated value obtained from single record. ; Scleranthus perennis;17092;actual measurement (following LEDA data standards);.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.25;.33;.18;.25;3;;;2004-04-03 00:00:00.0;preaggregated value obtained from single record; Scorzonera hispanica;9619;actual measurement (following LEDA data standards);193.13;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;188.77;258.89;131.99;193.13;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Scorzonera hispanica;9619;actual measurement (following LEDA data standards);197.49;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;188.77;258.89;131.99;197.49;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Scorzonera humilis;9541;actual measurement (following LEDA data standards);107.53;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;107.53;174.14;58.54;107.53;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Scorzonera humilis;9541;actual measurement (following LEDA data standards);111.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;107.53;174.14;58.54;111.39;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Scorzonera humilis;9541;actual measurement (following LEDA data standards);142.28;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;142.28;231.59;83.37;142.28;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Scorzonera humilis;9541;actual measurement (following LEDA data standards);216.75;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;225.45;378.5;143.5;216.75;2;;;2005-06-07 00:00:00.0;preaggregated value obtained from single record; Scorzonera humilis;9541;actual measurement (following LEDA data standards);149.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;142.28;231.59;83.37;149.82;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Scorzonera laciniata;10007;actual measurement (following LEDA data standards);19.02;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.08;28.18;11.64;19.02;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Scorzonera laciniata;10007;actual measurement (following LEDA data standards);18.4;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.08;28.18;11.64;18.4;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Scorzonera laciniata;10007;actual measurement (following LEDA data standards);19.74;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.34;34.31;7.71;19.74;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Scorzonera laciniata;10007;actual measurement (following LEDA data standards);20.04;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.34;34.31;7.71;20.04;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Scrophularia auriculata;33429;actual measurement;915.5384826;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;915.5384826;;;2;;;1996-08-31 00:00:00.0;; Scrophularia auriculata;33429;actual measurement;306.7882848;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;306.7882848;;;2;;;1996-09-27 00:00:00.0;; Scrophularia auriculata;33429;actual measurement;1009.27076;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1009.27076;;;2;;;1996-06-18 00:00:00.0;; Scrophularia canina;32910;actual measurement (following LEDA data standards);19.98;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.98;26.83;13.41;19.98;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Scrophularia canina;32910;actual measurement (following LEDA data standards);18.95;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;19.98;26.83;13.41;18.95;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Scrophularia canina;32910;actual measurement (following LEDA data standards);23.33;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.33;31.01;16.11;23.33;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Scrophularia canina;32910;actual measurement (following LEDA data standards);21.92;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;23.33;31.01;16.11;21.92;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Scrophularia nodosa;32862;actual measurement;313.5979769;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;313.5979769;;;2;;;1996-06-18 00:00:00.0;; Scrophularia umbrosa;34372;actual measurement (following LEDA data standards);121.95;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;122.8;190.16;37.41;121.95;2;;;2005-06-12 00:00:00.0;preaggregated value obtained from single record; Scrophularia umbrosa;34372;actual measurement (following LEDA data standards);125.18;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;133.5;212.2;59.6;125.18;2;;;2005-07-06 00:00:00.0;preaggregated value obtained from single record; Scrophularia vernalis;33383;laboratory/greenhouse/garden experiment;144.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;133.7;169.04;75.83;144.55;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Scrophularia vernalis;33383;laboratory/greenhouse/garden experiment;172.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;164.02;209.69;95.47;172.21;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Scutellaria galericulata;24386;actual measurement;28.08693152;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.08693152;;;2;;;1996-09-27 00:00:00.0;; Scutellaria galericulata;24386;actual measurement (following LEDA data standards);12.55;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;12.26;23.3;4.55;12.55;2;;;;Preaggregated value obtained from single record. ; Scutellaria galericulata;24386;actual measurement;14.53744186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.53744186;;;2;;;1996-08-08 00:00:00.0;; Scutellaria galericulata;24386;actual measurement (following LEDA data standards);9.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;8.98;12.95;4.65;9.25;2;;;;Preaggregated value obtained from single record. ; Scutellaria hastifolia;23966;actual measurement (following LEDA data standards);3.24;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.4;5.33;2.58;3.24;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Scutellaria hastifolia;23966;actual measurement (following LEDA data standards);3.21;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.4;5.33;2.58;3.21;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Scutellaria minor;23967;actual measurement (following LEDA data standards);2.27;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;2.35;4.15;1.36;2.27;2;;;2005-07-11 00:00:00.0;preaggregated value obtained from single record; Sedum album;18182;actual measurement (following LEDA data standards);1.63;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.59;2.03;1.1;1.63;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Sedum annuum;18195;actual measurement (following LEDA data standards);.63;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);with petiole and rachis;.61;.7;.5;.63;1;;;2005-08-04 00:00:00.0;preaggregated value obtained from single record; Sedum cepaea;18212;laboratory/greenhouse/garden experiment;1.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.51;2.48;.98;1.37;3;;;2005-06-20 00:00:00.0;preaggregated value obtained from single record; Sedum dasyphyllum;18216;actual measurement (following LEDA data standards);.82;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.68;.86;.36;.82;3;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Sedum rubens;18260;laboratory/greenhouse/garden experiment;.48;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.19;6.09;.24;.48;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Sedum rubens;18260;laboratory/greenhouse/garden experiment;.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.19;6.09;.24;.45;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Sedum rupestre;18224;actual measurement;7.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.7;;;1;;;1998-09-10 00:00:00.0;; Sedum rupestre;18224;actual measurement (following LEDA data standards);.89;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.85;1.18;.44;.89;3;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Sedum rupestre;18224;actual measurement (following LEDA data standards);.89;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.85;1.18;.44;.89;3;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Sedum sexangulare;18275;actual measurement (following LEDA data standards);.51;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.52;.78;.39;.51;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Sedum sexangulare;18275;actual measurement (following LEDA data standards);.49;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.52;.78;.39;.49;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Sedum spurium;18278;actual measurement (following LEDA data standards);7.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.7;11.47;3.99;7.7;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Sedum spurium;18278;actual measurement (following LEDA data standards);7.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.7;11.47;3.99;7.75;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Sedum telephium;18283;actual measurement;38.14976303;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;38.14976303;;;2;;;1996-08-29 00:00:00.0;; Sedum telephium s. maximum;18293;actual measurement (following LEDA data standards);61.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;124.97;402.18;34.53;61.77;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Selaginella selaginoides;44385;actual measurement (following LEDA data standards);.04;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;.05;.09;.03;.04;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Selinum carvifolia;1092;actual measurement (following LEDA data standards);317.13;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;401.45;910.07;196.68;317.13;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Selinum carvifolia;1092;actual measurement (following LEDA data standards);293.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;401.45;910.07;196.68;293.4;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Selinum carvifolia;1092;actual measurement (following LEDA data standards);383.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;615.05;1456.3;299.63;383.11;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Selinum carvifolia;1092;actual measurement (following LEDA data standards);392.73;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;615.05;1456.3;299.63;392.73;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Sempervivum tectorum;18351;actual measurement (following LEDA data standards);134.71;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;129.01;175.74;87.91;134.71;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Sempervivum tectorum;18351;actual measurement (following LEDA data standards);140.41;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;129.01;175.74;87.91;140.41;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Sempervivum tectorum;18351;actual measurement (following LEDA data standards);6.68;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;7.8;12.45;4.2;6.68;2;;;2005-07-02 00:00:00.0;preaggregated value obtained from single record; Senecio aquaticus;9544;actual measurement;73.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;73.1;;;2;;;1996-09-02 00:00:00.0;; Senecio aquaticus;9544;actual measurement;88.63588317;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;88.63588317;;;2;;;1996-07-08 00:00:00.0;; Senecio aquaticus;9544;actual measurement;395.0803231;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;395.0803231;;;2;;;1996-08-08 00:00:00.0;; Senecio aquaticus s. barbareifolius;11409;actual measurement (following LEDA data standards);71.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;78.77;153.5;56.62;71.52;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Senecio aquaticus s. barbareifolius;11409;actual measurement (following LEDA data standards);98.94;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;104.7;176.93;67.86;98.94;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Senecio aquaticus s. barbareifolius;11409;actual measurement (following LEDA data standards);77;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;78.77;153.5;56.62;77;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Senecio aquaticus s. barbareifolius;11409;actual measurement (following LEDA data standards);98.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;104.7;176.93;67.86;98.91;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Senecio bicolor;9624;actual measurement;101.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;101.2;;;1;;;1997-10-06 00:00:00.0;; Senecio erucifolius;11230;actual measurement;105.9188192;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;105.9188192;;;2;;;1996-07-15 00:00:00.0;; Senecio erucifolius;11230;actual measurement;194.0787547;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;194.0787547;;;2;;;1996-09-02 00:00:00.0;; Senecio germanicus;60251;actual measurement (following LEDA data standards);261.27;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;255.79;303.34;197.28;261.27;2;;;2004-07-10 00:00:00.0;preaggregated value obtained from single record; Senecio germanicus;60251;actual measurement (following LEDA data standards);255.79;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;255.79;303.34;197.28;255.79;2;;;2004-07-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Senecio inaequidens;9629;actual measurement (following LEDA data standards);18.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;19.2;30.33;12.25;18.47;1;;;2003-07-02 00:00:00.0;Preaggregated value obtained from single record. leaf mass not measured oven dry but at room temperature; Senecio inaequidens;9629;actual measurement (following LEDA data standards);4.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.19;24.35;3.55;4.85;1;;;2003-07-16 00:00:00.0;Preaggregated value obtained from single record. ; Senecio jacobaea;10452;actual measurement;212.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;212.7;;;2;;;;; Senecio jacobaea;10452;actual measurement;225.6370329;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;225.6370329;;;2;;;1996-09-27 00:00:00.0;; Senecio jacobaea;10452;actual measurement;371.7970912;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;371.7970912;;;2;;;1996-06-19 00:00:00.0;; Senecio nemorensis subsp. fuchsii;9810;actual measurement (following LEDA data standards);153.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;159.09;213.77;112.1;153.72;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Senecio nemorensis subsp. fuchsii;9810;actual measurement (following LEDA data standards);157.95;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;159.09;213.77;112.1;157.95;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Senecio paludosus;11419;actual measurement (following LEDA data standards);104.65;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;120.66;170.83;86.49;104.65;2;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Senecio paludosus;11419;actual measurement (following LEDA data standards);102.71;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;109.18;182.12;69.04;102.71;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Senecio paludosus;11419;actual measurement (following LEDA data standards);100.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;109.18;182.12;69.04;100.05;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Senecio squalidus;9306;actual measurement;47.44937265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.44937265;;;2;;;1996-09-23 00:00:00.0;; Senecio squalidus;9306;actual measurement;62.84709499;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;62.84709499;;;2;;;1996-05-22 00:00:00.0;; Senecio squalidus;9306;actual measurement;25.90102489;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25.90102489;;;2;;;1996-09-02 00:00:00.0;; Senecio squalidus;9306;laboratory/greenhouse/garden experiment;50.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.92;125.61;39.34;50.07;2;;;2004-06-14 00:00:00.0;preaggregated value obtained from single record; Senecio squalidus;9306;laboratory/greenhouse/garden experiment;52.91;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.92;125.61;39.34;52.91;2;;;2004-06-14 00:00:00.0;Preaggregated value obtained from single record. ; Senecio sylvaticus;9889;actual measurement;180.9838344;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;180.9838344;;;2;;;1996-08-08 00:00:00.0;; Senecio vernalis;11179;actual measurement (following LEDA data standards);52.13;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;78.06;228.84;19.87;52.13;2;;;2005-05-05 00:00:00.0;preaggregated value obtained from single record; Senecio viscosus;10121;actual measurement;64.60870234;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;64.60870234;;;2;;;1996-07-16 00:00:00.0;; Senecio viscosus;10121;actual measurement;65.90632678;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;65.90632678;;;2;;;1996-08-08 00:00:00.0;; Senecio viscosus;10121;actual measurement;73.8295082;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;73.8295082;;;2;;;1996-07-17 00:00:00.0;; Senecio vulgaris;10456;actual measurement;29.28847352;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.28847352;;;2;;;1996-07-15 00:00:00.0;; Senecio vulgaris;10456;actual measurement;5.88173258;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.88173258;;;2;;;1996-05-21 00:00:00.0;; Serratula tinctoria;10123;actual measurement;421.5264519;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;421.5264519;;;2;;;1996-08-29 00:00:00.0;; Serratula tinctoria;10123;actual measurement (following LEDA data standards);119.11;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;119.11;174.35;91.97;119.11;3;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Serratula tinctoria;10123;actual measurement (following LEDA data standards);112.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;119.11;174.35;91.97;112.86;3;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Serratula tinctoria;10123;actual measurement (following LEDA data standards);85.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;93.36;127.93;72.85;85.25;3;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Serratula tinctoria;10123;actual measurement (following LEDA data standards);86.53;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;93.36;127.93;72.85;86.53;3;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Seseli libanotis;1044;actual measurement (following LEDA data standards);512.43;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;538.75;1053.91;280.42;512.43;1;;;2005-05-26 00:00:00.0;preaggregated value obtained from single record; Sesleria albicans;43301;actual measurement (following LEDA data standards);45.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;46.43;69.43;31;45.52;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Setaria italica;42741;laboratory/greenhouse/garden experiment;235.54;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;234.22;306.91;180.95;235.54;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Setaria italica;42741;laboratory/greenhouse/garden experiment;236.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;234.22;306.91;180.95;236.07;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Setaria pumila;43456;laboratory/greenhouse/garden experiment;75.09;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.09;95.18;55;75.09;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Setaria pumila;43456;laboratory/greenhouse/garden experiment;75.09;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.09;95.18;55;75.09;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Setaria viridis;42743;actual measurement;32.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;32.5;;;1;;;1999-06-16 00:00:00.0;; Setaria viridis;42743;laboratory/greenhouse/garden experiment;44.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;49.48;73.37;36.83;44.76;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Setaria viridis;42743;laboratory/greenhouse/garden experiment;44.97;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;49.48;73.37;36.83;44.97;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ; Sherardia arvensis;31967;actual measurement;.173076923;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.173076923;;;2;;;1996-05-23 00:00:00.0;; Sherardia arvensis;31967;actual measurement;.918681319;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.918681319;;;2;;;1996-06-03 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);8.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.7;;;;2;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);22.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;22.1;;;;1;;;2003-08-29 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);19.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;19.2;;;;1;;;2003-08-29 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);13.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;13.2;;;;1;;;2003-08-18 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);18.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.9;;;;1;;;2003-08-18 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;13;;;;1;;;2003-08-29 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);9.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.1;;;;1;;;2003-04-09 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);6.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.2;;;;1;;;2003-08-30 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);6.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.9;;;;1;;;2003-08-30 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);8.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.6;;;;1;;;2003-08-30 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8;;;;1;;;2003-08-21 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);8.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.8;;;;1;;;2003-08-21 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);10.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.6;;;;1;;;2003-08-21 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);12.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.6;;;;1;;;2003-08-21 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);10.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.9;;;;1;;;2003-04-09 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);14.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.2;;;;1;;;2003-04-09 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);7.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.9;;;;1;;;2003-08-28 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);8.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.6;;;;1;;;2003-08-28 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);8.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.8;;;;1;;;2003-08-28 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);9.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.7;;;;1;;;2003-04-09 00:00:00.0;; Sibbaldia procumbens;30472;actual measurement;10.3;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;10.3;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Sigesbeckia orientalis;11602;laboratory/greenhouse/garden experiment;277.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;302.5;550.09;197.53;277.85;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Sigesbeckia orientalis;11602;laboratory/greenhouse/garden experiment;285.51;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;302.5;550.09;197.53;285.51;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Silaum silaus;993;actual measurement;620.5356164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;620.5356164;;;2;;;1996-07-08 00:00:00.0;; Silaum silaus;993;actual measurement;150.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;150.5;;;2;;;1996-09-02 00:00:00.0;; Silaum silaus;993;actual measurement;183.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;183.8;;;2;;;1996-07-15 00:00:00.0;; Silene acaulis;17102;actual measurement (following LEDA data standards);.75;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.75;;;;8;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Silene acaulis;17102;actual measurement (following LEDA data standards);.24;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.24;;;;10;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Silene acaulis;17102;actual measurement (following LEDA data standards);.32;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.32;;;;10;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Silene acaulis;17102;actual measurement (following LEDA data standards);.71;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.71;;;;9;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Silene acaulis;17102;actual measurement (following LEDA data standards);.32;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.32;;;;15;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Silene acaulis;17102;actual measurement (following LEDA data standards);.33;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.33;;;;15;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Silene acaulis;17102;actual measurement (following LEDA data standards);.35;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.35;;;;8;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Silene acaulis;17102;actual measurement (following LEDA data standards);.32;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;.32;;;;10;;;2003-08-31 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Silene acaulis;17102;actual measurement;.9;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;.9;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Silene armeria;17110;actual measurement (following LEDA data standards);5.9;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;11.8;37.1;3.95;5.9;2;;;2005-07-20 00:00:00.0;preaggregated value obtained from single record; Silene chlorantha;15554;actual measurement (following LEDA data standards);16.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18;30.89;9.6;16.5;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Silene chlorantha;15554;actual measurement (following LEDA data standards);17.11;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18;30.89;9.6;17.11;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Silene cretica;16289;laboratory/greenhouse/garden experiment;13.05;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.7;28.52;7.51;13.05;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. ; Silene cretica;16289;laboratory/greenhouse/garden experiment;12.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.7;28.52;7.51;12.01;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Silene dichotoma;15776;laboratory/greenhouse/garden experiment;42.44;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.44;82.24;15.22;42.44;2;;;2004-06-22 00:00:00.0;Preaggregated value obtained from single record. ; Silene dichotoma;15776;laboratory/greenhouse/garden experiment;38.62;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;42.44;82.24;15.22;38.62;2;;;2004-06-22 00:00:00.0;preaggregated value obtained from single record; Silene dioica;17578;actual measurement;34.8;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;34.8;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Silene dioica;17578;actual measurement;111.7624287;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;111.7624287;;;2;;;1996-06-10 00:00:00.0;; Silene gallica;16298;laboratory/greenhouse/garden experiment;11.85;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.28;28.74;6.88;11.85;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Silene gallica;16298;laboratory/greenhouse/garden experiment;11.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;14.28;28.74;6.88;11.81;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Silene latifolia;17283;actual measurement;36.08682421;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;36.08682421;;;2;;;1996-07-08 00:00:00.0;; Silene latifolia;17283;actual measurement;120.042949;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;120.042949;;;2;;;1996-05-23 00:00:00.0;; Silene linicola;17593;laboratory/greenhouse/garden experiment;22.09;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.09;34.11;13.05;22.09;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Silene linicola;17593;laboratory/greenhouse/garden experiment;21.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;22.09;34.11;13.05;21.62;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Silene noctiflora;17252;actual measurement;49.43507692;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;49.43507692;;;2;;;1996-07-15 00:00:00.0;; Silene noctiflora;17252;actual measurement;112.7466535;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;112.7466535;;;2;;;1996-07-15 00:00:00.0;; Silene nutans;16673;actual measurement;60.25777716;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;60.25777716;;;2;;;1996-06-18 00:00:00.0;; Silene otites;15749;actual measurement (following LEDA data standards);16.53;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;14.39;18.75;5.77;16.53;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Silene otites;15749;actual measurement (following LEDA data standards);18.66;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;14.39;18.75;5.77;18.66;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Silene otites;15749;actual measurement (following LEDA data standards);23.48;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.85;27.55;8.89;23.48;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Silene otites;15749;actual measurement (following LEDA data standards);26.11;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;20.85;27.55;8.89;26.11;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Silene rupestris;17622;actual measurement (following LEDA data standards);3.88;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.52;6.05;1.99;3.88;2;;;2004-07-07 00:00:00.0;Preaggregated value obtained from single record. ; Silene rupestris;17622;actual measurement (following LEDA data standards);3.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.52;6.05;1.99;3.94;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Silene uniflora;17634;actual measurement;14.16215334;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;14.16215334;;;2;;;1996-08-24 00:00:00.0;; Silene vulgaris;16657;actual measurement;29.57195033;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.57195033;;;2;;;1996-07-15 00:00:00.0;; Silene vulgaris;16657;actual measurement;97.95460331;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;97.95460331;;;2;;;1996-09-26 00:00:00.0;; Sinapis alba;13450;laboratory/greenhouse/garden experiment;84.21;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;123.09;297.35;24.63;84.21;2;;;2005-07-04 00:00:00.0;preaggregated value obtained from single record; Sinapis arvensis;13454;actual measurement;67.43658773;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;67.43658773;;;2;;;1996-06-03 00:00:00.0;; Sinapis arvensis;13454;actual measurement;428.7387873;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;428.7387873;;;2;;;1996-05-30 00:00:00.0;; Sinapis arvensis;13454;actual measurement;483.9280506;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;483.9280506;;;2;;;1996-07-08 00:00:00.0;; Sison amomum;995;actual measurement;249.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;249.2;;;1;;;1997-08-10 00:00:00.0;; Sisymbrium altissimum;13034;actual measurement;28.7539484;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.7539484;;;2;;;1996-08-08 00:00:00.0;; Sisymbrium altissimum;13034;laboratory/greenhouse/garden experiment;212.42;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;212.42;288.99;135.85;212.42;2;;;2004-07-14 00:00:00.0;preaggregated value obtained from single record; Sisymbrium altissimum;13034;laboratory/greenhouse/garden experiment;212.42;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;212.42;288.99;135.85;212.42;2;;;2004-07-14 00:00:00.0;Preaggregated value obtained from single record. ; Sisymbrium altissimum;13034;actual measurement;603.7465251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;603.7465251;;;2;;;1996-05-22 00:00:00.0;; Sisymbrium loeselii;13930;actual measurement;167.2342572;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;167.2342572;;;2;;;1996-08-05 00:00:00.0;; Sisymbrium loeselii;13930;laboratory/greenhouse/garden experiment;106.79;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;106.79;106.79;106.79;106.79;2;;;2004-10-13 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Sisymbrium loeselii;13930;laboratory/greenhouse/garden experiment;75.71;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;78.15;169.81;33.89;75.71;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Sisymbrium loeselii;13930;laboratory/greenhouse/garden experiment;106.79;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;106.79;106.79;106.79;106.79;2;;;2004-10-13 00:00:00.0;preaggregated value obtained from single record; Sisymbrium loeselii;13930;laboratory/greenhouse/garden experiment;208.62;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;208.62;208.62;208.62;208.62;2;;;2004-10-13 00:00:00.0;preaggregated value obtained from single record; Sisymbrium loeselii;13930;laboratory/greenhouse/garden experiment;47.86;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;55.71;122.22;22.31;47.86;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Sisymbrium loeselii;13930;laboratory/greenhouse/garden experiment;208.62;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;208.62;208.62;208.62;208.62;2;;;2004-10-13 00:00:00.0;Preaggregated value obtained from single record. ground leaves; Sisymbrium officinale;13041;actual measurement;89.22891566;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;89.22891566;;;2;;;1996-06-10 00:00:00.0;; Sisymbrium officinale;13041;actual measurement;170.8565352;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;170.8565352;;;2;;;1996-07-15 00:00:00.0;; Sisymbrium officinale;13041;actual measurement;432.8719935;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;432.8719935;;;2;;;1996-05-21 00:00:00.0;; Sisymbrium orientale;13042;actual measurement;123.5419202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;123.5419202;;;2;;;1996-07-08 00:00:00.0;; Sisymbrium orientale;13042;actual measurement;166.6137382;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;166.6137382;;;2;;;1996-05-22 00:00:00.0;; Sium latifolium;1536;actual measurement (following LEDA data standards);100.85;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;141.58;423.84;23.5;100.85;2;;;;Preaggregated value obtained from single record. ; Sium latifolium;1536;actual measurement (following LEDA data standards);453.01;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;453.01;453.01;453.01;453.01;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Sium latifolium;1536;actual measurement (following LEDA data standards);351.56;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;351.56;351.56;351.56;351.56;1;;;2003-09-23 00:00:00.0;Preaggregated value obtained from single record. ; Sium latifolium;1536;actual measurement (following LEDA data standards);144.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;146.37;216.65;63.95;144.85;2;;;;Preaggregated value obtained from single record. ; Smyrnium olusatrum;1000;actual measurement;172.7079101;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;172.7079101;;;2;;;1996-08-08 00:00:00.0;; Smyrnium perfoliatum;2032;actual measurement (following LEDA data standards);229.52;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;270.81;665.15;116.9;229.52;2;;;2004-05-21 00:00:00.0;Preaggregated value obtained from single record. ; Smyrnium perfoliatum;2032;actual measurement (following LEDA data standards);223.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;270.81;665.15;116.9;223.05;2;;;2004-05-21 00:00:00.0;preaggregated value obtained from single record; Solanum dulcamara;35041;actual measurement;94.705;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;94.705;;;2;;;1996-08-05 00:00:00.0;; Solanum dulcamara;35041;actual measurement (following LEDA data standards);57.55;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;60.23;116.2;25.3;57.55;2;;;;Preaggregated value obtained from single record. ; Solanum dulcamara;35041;actual measurement (following LEDA data standards);57.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;51.13;66.25;30.6;57.65;2;;;;Preaggregated value obtained from single record. ; Solanum dulcamara;35041;actual measurement;119.5227016;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;119.5227016;;;2;;;1996-09-09 00:00:00.0;; Solanum nigrum;34958;actual measurement;29.37846608;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.37846608;;;2;;;1996-08-05 00:00:00.0;; Solanum nigrum;34958;actual measurement;48.96781827;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;48.96781827;;;2;;;1996-09-22 00:00:00.0;; Solanum tuberosum;34915;actual measurement (following LEDA data standards);520;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;520.6;621;436;520;2;;;2005-07-12 00:00:00.0;preaggregated value obtained from single record; Soleirolia soleirolii;35142;actual measurement;.452586207;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.452586207;;;2;;;1996-07-15 00:00:00.0;; Solidago canadensis;9491;actual measurement;29.17434653;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;29.17434653;;;2;;;1996-09-02 00:00:00.0;; Solidago gigantea;10023;actual measurement;83.7088697;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;83.7088697;;;2;;;1996-09-09 00:00:00.0;; Solidago virgaurea;9820;actual measurement;79.37976926;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;79.37976926;;;2;;;1996-09-23 00:00:00.0;; Solidago virgaurea;9820;actual measurement;109.5938085;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;109.5938085;;;2;;;1996-09-05 00:00:00.0;; Sonchus arvensis;10586;actual measurement;606.4159008;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;606.4159008;;;2;;;1996-08-08 00:00:00.0;; Sonchus arvensis;10586;actual measurement;709.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;709.7;;;2;;;1996-07-17 00:00:00.0;; Sonchus arvensis;10586;actual measurement;332.482472;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;332.482472;;;2;;;1996-08-29 00:00:00.0;; Sonchus asper;9413;actual measurement;154.8226744;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;154.8226744;;;2;;;1996-08-14 00:00:00.0;; Sonchus asper;9413;actual measurement;263.5448997;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;263.5448997;;;2;;;1996-06-18 00:00:00.0;; Sonchus asper;9413;actual measurement;230.741718;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;230.741718;;;2;;;1996-07-15 00:00:00.0;; Sonchus oleraceus;10587;actual measurement;573.1777532;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;573.1777532;;;2;;;1996-08-08 00:00:00.0;; Sonchus oleraceus;10587;actual measurement;109.094629;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;109.094629;;;2;;;1996-09-09 00:00:00.0;; Sonchus palustris;9894;actual measurement (following LEDA data standards);174.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;201.82;458.07;114.33;174.71;1;;;2003-09-03 00:00:00.0;Preaggregated value obtained from single record. ; Sorbus aria;30087;actual measurement (following LEDA data standards);286.05;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;296.45;480.12;232.13;286.05;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Sorbus aria;30087;actual measurement (following LEDA data standards);199.32;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;199.32;199.32;199.32;199.32;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Sorbus aria;30087;actual measurement (following LEDA data standards);199.32;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;199.32;199.32;199.32;199.32;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Sorbus aria;30087;actual measurement (following LEDA data standards);207.34;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;207.34;207.34;207.34;207.34;2;;;2004-05-12 00:00:00.0;Preaggregated value obtained from single record. ; Sorbus aria;30087;actual measurement (following LEDA data standards);207.34;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;207.34;207.34;207.34;207.34;2;;;2004-05-12 00:00:00.0;preaggregated value obtained from single record; Sorbus aria;30087;actual measurement (following LEDA data standards);293.68;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;307.31;505.73;239.23;293.68;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Sorbus intermedia;30014;actual measurement (following LEDA data standards);294.43;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;286.51;349.45;197.9;294.43;1;;;2005-06-10 00:00:00.0;preaggregated value obtained from single record; Sorbus torminalis;29551;actual measurement (following LEDA data standards);184.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;194.49;284.47;151.53;184.57;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Sorbus torminalis;29551;actual measurement (following LEDA data standards);180.75;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;194.49;284.47;151.53;180.75;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Sorbus torminalis;29551;actual measurement (following LEDA data standards);167.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;178.16;264.31;138.74;167.15;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Sorbus torminalis;29551;actual measurement (following LEDA data standards);158.95;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;178.16;264.31;138.74;158.95;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Sparganium emersum;43992;actual measurement;100.6118895;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;100.6118895;;;2;;;1996-08-08 00:00:00.0;; Sparganium erectum;43993;actual measurement;890.0230594;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;890.0230594;;;2;;;1996-08-08 00:00:00.0;; Sparganium erectum;43993;actual measurement;947.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;947.1;;;2;;;1996-08-16 00:00:00.0;; Sparganium minimum;43999;actual measurement (following LEDA data standards);9.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.66;19.4;2.37;9.58;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Sparganium minimum;43999;actual measurement (following LEDA data standards);17.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.41;21.01;8.82;17.03;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Sparganium minimum;43999;actual measurement (following LEDA data standards);9.51;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.66;19.4;2.37;9.51;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Sparganium minimum;43999;actual measurement (following LEDA data standards);16.45;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.41;21.01;8.82;16.45;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Spartina anglica;43117;actual measurement (following LEDA data standards);179.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;192.89;316.29;118.32;179.8;2;;;2004-09-11 00:00:00.0;preaggregated value obtained from single record; Spartina anglica;43117;actual measurement (following LEDA data standards);181.97;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;192.89;316.29;118.32;181.97;2;;;2004-09-11 00:00:00.0;Preaggregated value obtained from single record. ; Spergula arvensis;16731;actual measurement;.868421053;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.868421053;;;2;;;1996-08-08 00:00:00.0;; Spergula arvensis;16731;actual measurement;2.51875;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.51875;;;2;;;1996-08-05 00:00:00.0;; Spergula morisonii;17638;actual measurement (following LEDA data standards);.44;15;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.43;.76;.18;.44;3;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Spergula morisonii;17638;actual measurement (following LEDA data standards);.44;14;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.43;.76;.18;.44;3;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Spergularia echinosperma;15958;actual measurement (following LEDA data standards);.15;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.16;.27;.1;.15;1;;;2003-08-20 00:00:00.0;Preaggregated value obtained from single record. ; Spergularia marina;17645;laboratory/greenhouse/garden experiment;1.71;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.74;2.73;1.43;1.71;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Spergularia marina;17645;laboratory/greenhouse/garden experiment;1.67;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.74;2.73;1.43;1.67;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Spergularia marina;17645;actual measurement;5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5;;;1;;;1997-10-06 00:00:00.0;; Spergularia marina;17645;actual measurement;2.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.1;;;2;;;1996-07-08 00:00:00.0;; Spergularia marina;17645;actual measurement;1.783216783;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.783216783;;;2;;;1996-05-30 00:00:00.0;; Spergularia media;16741;actual measurement (following LEDA data standards);.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.62;.79;.47;.61;1;;;2003-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Spergularia media;16741;actual measurement (following LEDA data standards);.98;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.94;1.05;.8;.98;1;;;2003-09-27 00:00:00.0;Preaggregated value obtained from single record. ; Spergularia rubra;17650;actual measurement;.82173913;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.82173913;;;2;;;1996-09-24 00:00:00.0;; Spergularia rupicola;17651;actual measurement;3.158653846;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.158653846;;;2;;;1996-08-31 00:00:00.0;; Spiraea salicifolia;29508;actual measurement (following LEDA data standards);67.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.91;86.76;29.26;67.09;2;;;2004-08-18 00:00:00.0;preaggregated value obtained from single record; Spiraea salicifolia;29508;actual measurement (following LEDA data standards);63.94;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;60.91;86.76;29.26;63.94;2;;;2004-08-18 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Spirodela polyrhiza;36882;actual measurement (following LEDA data standards);.66;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;.66;.66;.65;.66;31;;;;Preaggregated value obtained from single record. ; Stachys arvensis;24369;actual measurement;10.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.5;;;1;;;1997-08-10 00:00:00.0;; Stachys arvensis;24369;actual measurement;4.115283843;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.115283843;;;2;;;1996-08-08 00:00:00.0;; Stachys officinalis;24916;actual measurement;121.598044;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;121.598044;;;2;;;1996-07-15 00:00:00.0;; Stachys officinalis;24916;actual measurement (following LEDA data standards);50.81;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;62.77;93.48;35.25;50.81;1;;;2003-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Stachys officinalis;24916;actual measurement;210.8786054;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;210.8786054;;;2;;;1996-08-29 00:00:00.0;; Stachys officinalis;24916;actual measurement (following LEDA data standards);76.86;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;84.54;121.7;46.55;76.86;1;;;2003-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Stachys recta;24800;actual measurement (following LEDA data standards);22.69;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;24.28;33.61;14.54;22.69;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Stachys recta;24800;actual measurement (following LEDA data standards);27.84;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;27.7;32.44;22.67;27.84;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Stachys sylvatica;24023;actual measurement;47.8095171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.8095171;;;2;;;1996-09-02 00:00:00.0;; Stachys sylvatica;24023;actual measurement;72.09516451;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;72.09516451;;;2;;;1996-08-28 00:00:00.0;; Staphylea pinnata;34660;actual measurement (following LEDA data standards);262.64;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;262.64;390.04;138.97;262.64;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Staphylea pinnata;34660;actual measurement (following LEDA data standards);352.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;346.49;511.19;192.82;352.21;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Staphylea pinnata;34660;actual measurement (following LEDA data standards);346.49;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;346.49;511.19;192.82;346.49;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Staphylea pinnata;34660;actual measurement (following LEDA data standards);255.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;262.64;390.04;138.97;255.92;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Stellaria graminea;17658;actual measurement;1.732085561;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.732085561;;;2;;;1996-07-15 00:00:00.0;; Stellaria graminea;17658;actual measurement;2.614615385;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.614615385;;;2;;;1996-08-14 00:00:00.0;; Stellaria graminea;17658;actual measurement;3.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;3.27;4.85;1.63;3.39;2;;;2003-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Stellaria graminea;17658;actual measurement;3.614814815;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.614814815;;;2;;;1996-06-23 00:00:00.0;; Stellaria holostea;16753;actual measurement;6.365948856;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.365948856;;;2;;;1996-06-19 00:00:00.0;; Stellaria holostea;16753;actual measurement;8.54755814;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.54755814;;;2;;;1996-06-10 00:00:00.0;; Stellaria media;16755;actual measurement;7.198520953;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.198520953;;;2;;;1996-04-30 00:00:00.0;; Stellaria media;16755;actual measurement;10.29394925;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.29394925;;;2;;;1996-08-16 00:00:00.0;; Stellaria neglecta;16759;actual measurement;2.673534636;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.673534636;;;2;;;1996-04-30 00:00:00.0;; Stellaria neglecta;16759;actual measurement;9.187037689;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.187037689;;;2;;;1996-06-03 00:00:00.0;; Stellaria nemorum;16761;actual measurement (following LEDA data standards);21.85;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;22.53;38.25;15.4;21.85;2;;;2005-06-21 00:00:00.0;preaggregated value obtained from single record; Stellaria nemorum subsp. nemorum;17299;actual measurement (following LEDA data standards);53.03;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.4;68.5;45.77;53.03;2;;;2005-05-22 00:00:00.0;preaggregated value obtained from single record; Stellaria pallida;17302;actual measurement;.423913043;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.423913043;;;2;;;1996-05-30 00:00:00.0;; Stellaria pallida;17302;actual measurement;.901639344;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.901639344;;;2;;;1996-05-05 00:00:00.0;; Stellaria uliginosa;17654;actual measurement;.75;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.75;;;2;;;1996-08-16 00:00:00.0;; Stellaria uliginosa;17654;actual measurement;2.296688742;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.296688742;;;2;;;1996-06-23 00:00:00.0;; Stipa capillata;42956;actual measurement (following LEDA data standards);60.52;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.43;151.52;21.69;60.52;2;;;2004-08-10 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Stipa capillata;42956;actual measurement (following LEDA data standards);55.71;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.43;151.52;21.69;55.71;2;;;2004-08-10 00:00:00.0;preaggregated value obtained from single record; Stipa pulcherrima;42556;actual measurement (following LEDA data standards);55.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.74;76.33;42.43;55.39;2;;;2004-05-13 00:00:00.0;preaggregated value obtained from single record; Stipa pulcherrima;42556;actual measurement (following LEDA data standards);54.74;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;54.74;76.33;42.43;54.74;2;;;2004-05-13 00:00:00.0;Preaggregated value obtained from single record. ; Stratiotes aloides;36308;actual measurement (following LEDA data standards);156.17;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;151.03;188.95;82.39;156.17;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Stratiotes aloides;36308;actual measurement (following LEDA data standards);156.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;151.03;188.95;82.39;156.95;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Suaeda maritima;17972;actual measurement;4.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.6;;;1;;;1997-06-03 00:00:00.0;; Suaeda maritima;17972;actual measurement (following LEDA data standards);3.59;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;3.53;4.17;2.99;3.59;2;;;2003-08-12 00:00:00.0;preaggregated value obtained from single record; Suaeda maritima;17972;actual measurement (following LEDA data standards);1.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.24;2.05;.55;1.24;2;;;2004-08-23 00:00:00.0;preaggregated value obtained from single record; Suaeda maritima;17972;actual measurement (following LEDA data standards);1.24;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.24;2.05;.55;1.24;2;;;2004-08-23 00:00:00.0;Preaggregated value obtained from single record. ; Suaeda maritima;17972;actual measurement;2.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.2;;;1;;;1997-07-17 00:00:00.0;; Succisa pratensis;19186;actual measurement;331.5233681;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;331.5233681;;;2;;;1996-07-15 00:00:00.0;; Succisa pratensis;19186;actual measurement;413.0499227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;413.0499227;;;2;;;1996-08-16 00:00:00.0;; Succisa pratensis;19186;actual measurement;87.3;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kühner), Corresponding address: michael.kleyer@uni-oldenburg.de;with petiole and rachis;85.16;113.6;55.6;87.3;1;;;;Preaggregated value obtained from single record. leaves scanned with hand scanner, single leaves measured, not linked to individual plants; Symphoricarpos albus;15329;actual measurement (following LEDA data standards);80.54;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;80.85;107.3;55.02;80.54;5;;;2005-08-20 00:00:00.0;preaggregated value obtained from single record; Symphoricarpos albus;15329;actual measurement (following LEDA data standards);122.63;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;130.76;202.6;88.85;122.63;2;;;2005-08-02 00:00:00.0;preaggregated value obtained from single record; Symphytum officinale;11757;actual measurement (following LEDA data standards);334.88;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;349.46;581.09;155.87;334.88;2;;;2004-06-15 00:00:00.0;preaggregated value obtained from single record; Symphytum officinale;11757;actual measurement (following LEDA data standards);349.46;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;349.46;581.09;155.87;349.46;2;;;2004-06-15 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Symphytum orientale;12215;actual measurement;312.491347;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;312.491347;;;2;;;1996-06-03 00:00:00.0;; Symphytum tuberosum;11764;actual measurement;156.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;156.4;;;2;;;1996-08-08 00:00:00.0;; Symphytum tuberosum;11764;actual measurement (following LEDA data standards);63.88;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;59.78;64.22;51.25;63.88;2;;;2004-04-23 00:00:00.0;preaggregated value obtained from single record; Symphytum tuberosum;11764;actual measurement (following LEDA data standards);61.83;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;59.78;64.22;51.25;61.83;2;;;2004-04-23 00:00:00.0;Preaggregated value obtained from single record. ; Symphytum tuberosum;11764;actual measurement (following LEDA data standards);68.81;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;67.08;73.22;57.5;68.81;2;;;2004-04-23 00:00:00.0;Preaggregated value obtained from single record. ; Symphytum tuberosum;11764;actual measurement (following LEDA data standards);70.53;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;67.08;73.22;57.5;70.53;2;;;2004-04-23 00:00:00.0;preaggregated value obtained from single record; Syringa vulgaris;26377;actual measurement (following LEDA data standards);268.52;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;278.04;446.44;163.09;268.52;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Syringa vulgaris;26377;actual measurement (following LEDA data standards);286.81;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;294.64;471.47;171.18;286.81;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Syringa vulgaris;26377;actual measurement (following LEDA data standards);280.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;294.64;471.47;171.18;280.58;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Syringa vulgaris;26377;actual measurement (following LEDA data standards);265.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;278.04;446.44;163.09;265.33;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Tamus communis;36357;actual measurement;220.0425499;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;220.0425499;;;2;;;1996-07-15 00:00:00.0;; Tanacetum corymbosum;9823;actual measurement (following LEDA data standards);57.89;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;59.79;88.51;42.45;57.89;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Tanacetum corymbosum;9823;actual measurement (following LEDA data standards);69.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.7;101.71;49.81;69.7;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Tanacetum corymbosum;9823;actual measurement (following LEDA data standards);54.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;59.79;88.51;42.45;54.14;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Tanacetum corymbosum;9823;actual measurement (following LEDA data standards);63.02;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.7;101.71;49.81;63.02;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Tanacetum parthenium;11451;actual measurement;125.5838601;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;125.5838601;;;2;;;1996-09-23 00:00:00.0;; Tanacetum vulgare;10128;actual measurement;406.7816347;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;406.7816347;;;2;;;1996-09-02 00:00:00.0;; Tanacetum vulgare;10128;actual measurement;449.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;449.2;;;2;;;1996-08-27 00:00:00.0;; Taraxacum Sec. Erythrosperma;9235;actual measurement (following LEDA data standards);16.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.74;28.13;8.63;16.25;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Taraxacum Sec. Erythrosperma;9235;actual measurement (following LEDA data standards);15.74;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.74;28.13;8.63;15.74;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Taraxacum species;9261;actual measurement;23.66813278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.66813278;;;2;;;1996-05-23 00:00:00.0;; Taraxacum species;9261;actual measurement;253.1284428;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;253.1284428;;;2;;;;; Taraxacum species;9261;actual measurement;220.7617725;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;220.7617725;;;2;;;1996-05-21 00:00:00.0;; Teesdalia nudicaulis;13470;actual measurement;2.751966292;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.751966292;;;2;;;1996-05-30 00:00:00.0;; Teesdalia nudicaulis;13470;actual measurement;5.09044586;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.09044586;;;2;;;1996-05-23 00:00:00.0;; Tellima grandiflora;31626;actual measurement;142.516928;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;142.516928;;;2;;;1996-06-11 00:00:00.0;; Tetragonolobus maritimus;21564;actual measurement (following LEDA data standards);15.6;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;15.6;15.6;15.6;15.6;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Tetragonolobus maritimus;21564;actual measurement (following LEDA data standards);30.03;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.68;33.31;25.71;30.03;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Tetragonolobus maritimus;21564;actual measurement (following LEDA data standards);15.6;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;15.6;15.6;15.6;15.6;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Tetragonolobus maritimus;21564;actual measurement (following LEDA data standards);29.86;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.68;33.31;25.71;29.86;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Tetragonolobus maritimus;21564;actual measurement (following LEDA data standards);16.64;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.64;16.64;16.64;16.64;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Tetragonolobus maritimus;21564;actual measurement (following LEDA data standards);16.64;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.64;16.64;16.64;16.64;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Teucrium botrys;23469;actual measurement (following LEDA data standards);5.83;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.83;8.85;4.38;5.83;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Teucrium botrys;23469;actual measurement (following LEDA data standards);5.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.83;8.85;4.38;5.57;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Teucrium chamaedrys;24813;actual measurement (following LEDA data standards);7.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;7.6;9.23;6.11;7.59;1;;;2003-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Teucrium montanum;23362;actual measurement (following LEDA data standards);2.44;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.44;3.38;1.37;2.44;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Teucrium montanum;23362;actual measurement (following LEDA data standards);2.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.44;3.38;1.37;2.47;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Teucrium scordium;24902;actual measurement (following LEDA data standards);5.61;18;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.77;10.31;1.71;5.61;2;;;2004-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Teucrium scordium;24902;actual measurement (following LEDA data standards);5.5;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.77;10.31;1.71;5.5;2;;;2004-06-18 00:00:00.0;preaggregated value obtained from single record; Teucrium scorodonia;24460;actual measurement;34.29026764;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;34.29026764;;;2;;;1996-09-05 00:00:00.0;; Teucrium scorodonia;24460;actual measurement;140.6565373;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;140.6565373;;;2;;;1996-09-23 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);18.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;18.3;;;;1;;;2003-04-09 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);11;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11;;;;1;;;2003-08-31 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);8.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.6;;;;1;;;2003-08-31 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);6.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.5;;;;1;;;2003-08-31 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);5.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.2;;;;1;;;2003-08-31 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);5.2;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.2;;;;1;;;2003-08-31 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);7.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.8;;;;1;;;2003-08-31 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);10.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.5;;;;1;;;2003-08-31 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);12.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;12.5;;;;1;;;2003-08-31 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);5.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.8;;;;1;;;2003-04-09 00:00:00.0;; Thalictrum alpinum;26671;actual measurement (following LEDA data standards);8.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;8.7;;;;1;;;2003-04-09 00:00:00.0;; Thalictrum aquilegiifolium;26672;actual measurement (following LEDA data standards);1340;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1428.89;2210;1090;1340;1;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Thalictrum flavum;26674;actual measurement;1942.555652;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1942.555652;;;2;;;1996-07-15 00:00:00.0;; Thalictrum flavum;26674;actual measurement;325.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;325.1;;;2;;;1996-06-20 00:00:00.0;; Thalictrum minus;26547;actual measurement (following LEDA data standards);330.63;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;330.73;461.64;244.28;330.63;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Thalictrum minus;26547;actual measurement (following LEDA data standards);1060;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1070;1450;765;1060;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Thalictrum minus;26547;actual measurement (following LEDA data standards);408.46;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;411.86;557.45;304.62;408.46;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Thalictrum minus;26547;actual measurement (following LEDA data standards);1700;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1980.83;2900;1465;1700;2;;;2004-06-07 00:00:00.0;preaggregated value obtained from single record; Thalictrum minus;26547;actual measurement (following LEDA data standards);1820;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1980.83;2900;1465;1820;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Thalictrum minus;26547;actual measurement (following LEDA data standards);410.16;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;411.86;557.45;304.62;410.16;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Thalictrum minus;26547;actual measurement (following LEDA data standards);1070;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1070;1450;765;1070;2;;;2004-06-07 00:00:00.0;Preaggregated value obtained from single record. ; Thalictrum minus;26547;actual measurement (following LEDA data standards);330.52;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;330.73;461.64;244.28;330.52;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Thelypteris palustris;299;actual measurement;603.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;603.7;;;1;;;1999-06-16 00:00:00.0;; Thelypteris palustris;299;actual measurement (following LEDA data standards);307.12;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;332.71;568.16;149.44;307.12;1;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Thesium bavarum;32443;actual measurement (following LEDA data standards);10.54;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.15;34.58;5.18;10.54;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Thesium bavarum;32443;actual measurement (following LEDA data standards);9.7;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;13.15;34.58;5.18;9.7;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Thesium linophyllon;32439;actual measurement (following LEDA data standards);2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.36;4.07;1.62;2;3;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Thesium linophyllon;32439;actual measurement (following LEDA data standards);2.04;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.36;4.07;1.62;2.04;3;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Thesium pyrenaicum;32417;actual measurement (following LEDA data standards);2.57;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.57;2.76;2.38;2.57;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Thesium pyrenaicum;32417;actual measurement (following LEDA data standards);1.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.27;2.22;.64;1.19;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Thesium pyrenaicum;32417;actual measurement (following LEDA data standards);1.27;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.27;2.22;.64;1.27;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Thesium pyrenaicum;32417;actual measurement (following LEDA data standards);2.28;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;2.3;4.02;1.16;2.28;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Thlaspi alliaceum;13472;laboratory/greenhouse/garden experiment;9.72;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.43;11.8;6.78;9.72;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Thlaspi alliaceum;13472;laboratory/greenhouse/garden experiment;13.02;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.88;17.98;8.97;13.02;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Thlaspi alliaceum;13472;laboratory/greenhouse/garden experiment;12.88;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.88;17.98;8.97;12.88;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Thlaspi alliaceum;13472;laboratory/greenhouse/garden experiment;9.87;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.43;11.8;6.78;9.87;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Thlaspi arvense;13825;actual measurement;30.42502058;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;30.42502058;;;2;;;1996-07-03 00:00:00.0;; Thlaspi arvense;13825;actual measurement;60.3304401;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;60.3304401;;;2;;;1996-07-15 00:00:00.0;; Thlaspi arvense;13825;actual measurement;67.33726226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;67.33726226;;;2;;;1996-06-25 00:00:00.0;; Thlaspi caerulescens;45966;actual measurement;3.762836186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.762836186;;;2;;;1996-06-03 00:00:00.0;; Thlaspi montanum;14668;actual measurement (following LEDA data standards);4.59;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.53;6.58;2.92;4.59;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Thlaspi montanum;14668;actual measurement (following LEDA data standards);4.62;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.53;6.58;2.92;4.62;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Thymus praecox;24924;actual measurement (following LEDA data standards);1.15;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.12;1.55;.76;1.15;3;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. ; Thymus praecox;24924;actual measurement (following LEDA data standards);1.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.12;1.55;.76;1.15;3;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Thymus serpyllum;24928;actual measurement (following LEDA data standards);.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.59;.79;.34;.59;5;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Thymus serpyllum;24928;actual measurement (following LEDA data standards);.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.59;.79;.34;.63;5;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Tilia platyphyllos;34634;actual measurement (following LEDA data standards);154.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;159.84;217.52;112.54;154.76;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Tilia platyphyllos;34634;actual measurement (following LEDA data standards);171.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;175.53;241.94;121.85;171.58;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Tilia platyphyllos;34634;actual measurement (following LEDA data standards);167.62;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;175.53;241.94;121.85;167.62;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Tilia platyphyllos;34634;actual measurement (following LEDA data standards);149.68;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;159.84;217.52;112.54;149.68;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Tofieldia calyculata;38841;actual measurement (following LEDA data standards);15.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.18;27.89;5.01;15.6;2;;;2005-05-25 00:00:00.0;preaggregated value obtained from single record; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);1.63;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;1.63;;;;4;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);2.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.5;;;;4;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);2.12;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.12;;;;5;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);2.13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.13;;;;7;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);3.14;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;3.14;;;;5;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);2.22;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;2.22;;;;5;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);4.63;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;4.63;;;;3;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);4.72;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;4.72;;;;4;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tofieldia pusilla;38843;actual measurement (following LEDA data standards);1.55;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;1.55;;;;4;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Tordylium maximum;1545;laboratory/greenhouse/garden experiment;304.26;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;304.26;330.68;277.84;304.26;2;;;2004-10-13 00:00:00.0;preaggregated value obtained from single record; Tordylium maximum;1545;laboratory/greenhouse/garden experiment;289.32;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;288.68;418.82;157.25;289.32;2;;;2005-06-22 00:00:00.0;preaggregated value obtained from single record; Tordylium maximum;1545;laboratory/greenhouse/garden experiment;304.26;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;304.26;330.68;277.84;304.26;2;;;2004-10-13 00:00:00.0;Preaggregated value obtained from single record. ; Torilis arvensis;1012;actual measurement (following LEDA data standards);37.82;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;37.41;68.91;12.57;37.82;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Torilis arvensis;1012;actual measurement (following LEDA data standards);38.23;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;37.41;68.91;12.57;38.23;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Torilis japonica;1552;actual measurement;33.37142857;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;33.37142857;;;2;;;1996-09-05 00:00:00.0;; Torilis japonica;1552;actual measurement;181.1258652;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;181.1258652;;;2;;;1996-07-15 00:00:00.0;; Torilis japonica;1552;actual measurement;202.3732919;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;202.3732919;;;2;;;1996-08-08 00:00:00.0;; Torilis nodosa;1554;actual measurement;3.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.3;;;1;;;1997-09-13 00:00:00.0;; Torilis nodosa;1554;actual measurement (following LEDA data standards);6.11;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;7.37;11.89;4.46;6.11;2;;;2005-07-06 00:00:00.0;preaggregated value obtained from single record; Tragopogon dubius;9874;actual measurement (following LEDA data standards);12;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;12.25;16.4;10;12;1;;;2003-06-18 00:00:00.0;Preaggregated value obtained from single record. ; Tragopogon porrifolius;9289;laboratory/greenhouse/garden experiment;46.39;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;49.89;85.09;24.71;46.39;2;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Tragopogon pratensis;9791;actual measurement;70.73718274;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;70.73718274;;;2;;;1996-08-08 00:00:00.0;; Tragopogon pratensis;9791;actual measurement;93.91592775;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;93.91592775;;;2;;;1996-06-11 00:00:00.0;; Tragopogon pratensis s. orientalis;10571;actual measurement (following LEDA data standards);52.33;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;63.49;86.61;51.54;52.33;2;;;2005-05-23 00:00:00.0;preaggregated value obtained from single record; Trapa natans;34689;actual measurement (following LEDA data standards);74.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;72.08;110.75;18.59;74.5;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Trapa natans;34689;actual measurement (following LEDA data standards);62.3;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;53.08;72.27;15.09;62.3;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Trapa natans;34689;actual measurement (following LEDA data standards);57.93;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;53.08;72.27;15.09;57.93;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Trapa natans;34689;actual measurement (following LEDA data standards);76.92;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;72.08;110.75;18.59;76.92;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Trientalis europaea;28871;actual measurement (following LEDA data standards);10.69;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.69;13.25;7.87;10.69;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Trientalis europaea;28871;actual measurement (following LEDA data standards);10.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.69;13.25;7.87;10.89;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Trientalis europaea;28871;actual measurement (following LEDA data standards);2.03;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.03;;;;4;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Trifolium alpestre;21116;actual measurement (following LEDA data standards);63.13;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.35;134.35;37.47;63.13;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium alpestre;21116;actual measurement (following LEDA data standards);62.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;69.35;134.35;37.47;62.14;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Trifolium alpestre;21116;actual measurement (following LEDA data standards);58.85;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;64.54;126.1;34.88;58.85;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium alpestre;21116;actual measurement (following LEDA data standards);58.29;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;64.54;126.1;34.88;58.29;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Trifolium arvense;19943;actual measurement;13.03686636;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.03686636;;;2;;;1996-05-23 00:00:00.0;; Trifolium arvense;19943;actual measurement;13.22413793;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.22413793;;;2;;;1996-07-16 00:00:00.0;; Trifolium arvense;19943;actual measurement;15.26114754;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.26114754;;;2;;;1996-07-08 00:00:00.0;; Trifolium arvense;19943;actual measurement;6.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;6.08;8.68;3.55;6.22;2;;;2004-06-24 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Trifolium aureum;21992;actual measurement (following LEDA data standards);6.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;6.18;8.79;3.97;6.18;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Trifolium aureum;21992;laboratory/greenhouse/garden experiment;17.81;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;17.81;22.47;13.15;17.81;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium aureum;21992;laboratory/greenhouse/garden experiment;17.81;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;17.81;22.47;13.15;17.81;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Trifolium aureum;21992;laboratory/greenhouse/garden experiment;18.42;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.42;23.18;13.66;18.42;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium aureum;21992;actual measurement (following LEDA data standards);6.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.26;8.89;4.06;6.33;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Trifolium aureum;21992;laboratory/greenhouse/garden experiment;18.42;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.42;23.18;13.66;18.42;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Trifolium aureum;21992;actual measurement (following LEDA data standards);6.26;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.26;8.89;4.06;6.26;2;;;2004-08-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Trifolium aureum;21992;actual measurement (following LEDA data standards);6.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;6.18;8.79;3.97;6.28;2;;;2004-08-13 00:00:00.0;preaggregated value obtained from single record; Trifolium campestre;21008;actual measurement;3.991935484;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.991935484;;;2;;;1996-06-18 00:00:00.0;; Trifolium campestre;21008;actual measurement;6.465747126;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.465747126;;;2;;;1996-07-08 00:00:00.0;; Trifolium campestre;21008;actual measurement;7.636649215;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.636649215;;;2;;;1996-06-19 00:00:00.0;; Trifolium dubium;21100;actual measurement;2.762367865;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.762367865;;;2;;;1996-06-03 00:00:00.0;; Trifolium dubium;21100;actual measurement;5.569299363;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.569299363;;;2;;;1996-05-30 00:00:00.0;; Trifolium fragiferum;22005;actual measurement;7.165360825;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.165360825;;;2;;;1996-08-03 00:00:00.0;; Trifolium hybridum;21107;actual measurement;31.62737851;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31.62737851;;;2;;;1996-07-15 00:00:00.0;; Trifolium hybridum;21107;actual measurement;52.69028043;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;52.69028043;;;2;;;1996-07-17 00:00:00.0;; Trifolium hybridum;21107;actual measurement;113.1488905;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;113.1488905;;;2;;;1996-08-08 00:00:00.0;; Trifolium hybridum;21107;laboratory/greenhouse/garden experiment;64.35;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;59.51;71.91;37.43;64.35;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Trifolium hybridum;21107;laboratory/greenhouse/garden experiment;59.62;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;59.51;71.91;37.43;59.62;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium hybridum;21107;laboratory/greenhouse/garden experiment;75.09;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.09;89.72;51.54;75.09;2;;;2004-08-12 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium hybridum;21107;laboratory/greenhouse/garden experiment;79.56;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;75.09;89.72;51.54;79.56;2;;;2004-08-12 00:00:00.0;preaggregated value obtained from single record; Trifolium incarnatum;21571;laboratory/greenhouse/garden experiment;72.5;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;65.26;108.74;9.24;72.5;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium incarnatum;21571;laboratory/greenhouse/garden experiment;59.8;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;52.84;80.83;7.88;59.8;2;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium incarnatum;21571;laboratory/greenhouse/garden experiment;61.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;52.84;80.83;7.88;61.55;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Trifolium incarnatum;21571;laboratory/greenhouse/garden experiment;75.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;65.26;108.74;9.24;75.64;2;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Trifolium medium;22081;actual measurement;65.74024296;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;65.74024296;;;2;;;1996-07-08 00:00:00.0;; Trifolium micranthum;19621;actual measurement;.5;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.5;;;1;;;1997-09-30 00:00:00.0;; Trifolium micranthum;19621;actual measurement (following LEDA data standards);1.1;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.09;1.48;.72;1.1;2;;;2005-06-08 00:00:00.0;preaggregated value obtained from single record; Trifolium montanum;21547;actual measurement (following LEDA data standards);76.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;76.09;115.41;41.26;76.6;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium montanum;21547;actual measurement (following LEDA data standards);116.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;119.6;181.58;49.54;116.54;1;;;2003-06-21 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium pratense;22096;actual measurement;36.3440525;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;36.3440525;;;2;;;1996-06-11 00:00:00.0;; Trifolium pratense;22096;actual measurement;39.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;40.63;59.79;26.7;39.91;2;;;2003-06-04 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Trifolium pratense;22096;actual measurement;38.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;38.68;54.93;27.64;38.38;2;;;2003-06-04 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Trifolium pratense;22096;actual measurement;15.70170778;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.70170778;;;2;;;;; Trifolium repens;22101;actual measurement;15.96153846;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.96153846;;;2;;;;; Trifolium repens;22101;actual measurement;6.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;6.57;8.76;4.58;6.66;2;;;2003-06-03 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Trifolium repens;22101;actual measurement;19.19078534;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.19078534;;;2;;;1996-06-11 00:00:00.0;; Trifolium repens;22101;actual measurement;5.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;5.15;6.67;3.5;5.22;2;;;2003-06-03 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Trifolium resupinatum;20696;laboratory/greenhouse/garden experiment;6.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;6.86;8.6;5.1;6.63;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Trifolium resupinatum;20696;laboratory/greenhouse/garden experiment;6.73;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;6.86;8.6;5.1;6.73;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium resupinatum;20696;laboratory/greenhouse/garden experiment;8.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.02;11.34;7.65;8.67;2;;;2004-09-02 00:00:00.0;preaggregated value obtained from single record; Trifolium resupinatum;20696;laboratory/greenhouse/garden experiment;9.01;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;9.02;11.34;7.65;9.01;2;;;2004-09-02 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium rubens;19602;actual measurement (following LEDA data standards);61.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;66.07;98.26;40.77;61.4;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Trifolium rubens;19602;actual measurement (following LEDA data standards);56.72;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;66.07;98.26;40.77;56.72;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Trifolium rubens;19602;actual measurement (following LEDA data standards);58.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;62.78;92.7;38.68;58.44;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Trifolium rubens;19602;actual measurement (following LEDA data standards);54.1;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;62.78;92.7;38.68;54.1;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Trifolium spadiceum;20366;actual measurement (following LEDA data standards);7.18;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.77;9.01;1.69;7.18;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium spadiceum;20366;actual measurement (following LEDA data standards);7.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.77;9.01;1.69;7.3;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Trifolium striatum;21076;actual measurement (following LEDA data standards);18.11;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.45;28.18;12.91;18.11;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium striatum;21076;actual measurement (following LEDA data standards);17.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.45;28.18;12.91;17.94;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Trifolium striatum;21076;actual measurement;7.325581395;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.325581395;;;2;;;1996-06-18 00:00:00.0;; Trifolium striatum;21076;actual measurement (following LEDA data standards);13.75;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.89;20.12;10.59;13.75;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. ; Trifolium striatum;21076;actual measurement;16.78857143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;16.78857143;;;2;;;1996-07-16 00:00:00.0;; Trifolium striatum;21076;actual measurement;15.00765456;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.00765456;;;2;;;1996-05-23 00:00:00.0;; Trifolium striatum;21076;actual measurement (following LEDA data standards);13.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.89;20.12;10.59;13.39;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Triglochin maritima;36323;actual measurement (following LEDA data standards);68.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;68.11;103.22;34.3;68.59;2;;;2004-08-18 00:00:00.0;Preaggregated value obtained from single record. ; Triglochin maritima;36323;actual measurement (following LEDA data standards);20.95;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;21.58;35.95;11.55;20.95;2;;;2003-08-13 00:00:00.0;preaggregated value obtained from single record; Triglochin maritima;36323;actual measurement (following LEDA data standards);28.5;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;29.26;40.35;16.6;28.5;2;;;2005-05-28 00:00:00.0;preaggregated value obtained from single record; Triglochin maritima;36323;actual measurement (following LEDA data standards);70.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;68.11;103.22;34.3;70.4;2;;;2004-08-18 00:00:00.0;preaggregated value obtained from single record; Triglochin palustris;36324;actual measurement;10.26606742;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.26606742;;;2;;;1996-08-28 00:00:00.0;; Triglochin palustris;36324;actual measurement;15.27741935;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;15.27741935;;;2;;;1996-09-23 00:00:00.0;; Trigonella foenum-graecum;21525;laboratory/greenhouse/garden experiment;32.1;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.78;69.98;19.82;32.1;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Trigonella foenum-graecum;21525;laboratory/greenhouse/garden experiment;31.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.78;69.98;19.82;31.82;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Trigonella foenum-graecum;21525;laboratory/greenhouse/garden experiment;33.99;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.12;75.31;20.84;33.99;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Trigonella foenum-graecum;21525;laboratory/greenhouse/garden experiment;33.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;35.12;75.31;20.84;33.83;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Trinia glauca;966;actual measurement (following LEDA data standards);33.54;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.83;38.31;28.01;33.54;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Trinia glauca;966;actual measurement (following LEDA data standards);34.25;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.83;38.31;28.01;34.25;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Trinia glauca;966;actual measurement (following LEDA data standards);59.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;59.49;107.13;28.4;59.98;2;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Trinia glauca;966;actual measurement (following LEDA data standards);59.49;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;59.49;107.13;28.4;59.49;2;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Trisetum flavescens;42564;actual measurement;30.49378958;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;30.49378958;;;2;;;;; Trisetum flavescens;42564;actual measurement;10.01413793;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.01413793;;;2;;;1996-07-08 00:00:00.0;; Trisetum flavescens;42564;actual measurement;19.45776567;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.45776567;;;2;;;1996-06-25 00:00:00.0;; Triticum aestivum;43825;laboratory/greenhouse/garden experiment;133.65;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;131.58;175.88;90.51;133.65;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. ; Triticum aestivum;43825;laboratory/greenhouse/garden experiment;135.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;131.58;175.88;90.51;135.15;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Trollius europaeus;26598;actual measurement;401.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;401.4;;;1;;;1997-06-09 00:00:00.0;; Trollius europaeus;26598;actual measurement;121.1374034;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;121.1374034;;;2;;;1996-07-11 00:00:00.0;; Trollius europaeus;26598;actual measurement;347.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;347.7;;;1;;;1997-08-10 00:00:00.0;; Tropaeolum majus;34544;laboratory/greenhouse/garden experiment;220.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;220.7;362.19;106.27;220.7;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Tropaeolum majus;34544;laboratory/greenhouse/garden experiment;219;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;220.7;362.19;106.27;219;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Tropaeolum majus;34544;laboratory/greenhouse/garden experiment;308.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;318.04;470.87;182.23;308.77;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Tropaeolum majus;34544;laboratory/greenhouse/garden experiment;311.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;318.04;470.87;182.23;311.4;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Turgenia latifolia;1998;laboratory/greenhouse/garden experiment;127.72;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;127.72;291.68;25.27;127.72;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Turgenia latifolia;1998;laboratory/greenhouse/garden experiment;107.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;127.72;291.68;25.27;107.48;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Tussilago farfara;9608;actual measurement;1945.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1945.2;;;2;;;1996-08-16 00:00:00.0;; Tussilago farfara;9608;actual measurement;3802.654401;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3802.654401;;;2;;;1996-08-08 00:00:00.0;; Typha angustifolia;44027;actual measurement;2019.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2019.3;;;2;;;1996-09-02 00:00:00.0;; Typha angustifolia;44027;actual measurement (following LEDA data standards);1059.9;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;985.98;1182.6;33.4;1059.9;2;;;;Preaggregated value obtained from single record. ; Typha latifolia;44041;actual measurement;924.9379414;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;924.9379414;;;2;;;1996-08-08 00:00:00.0;; Typha latifolia;44041;actual measurement (following LEDA data standards);2455;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;2495.09;3500;36.7;2455;2;;;;Preaggregated value obtained from single record. ; Typha latifolia;44041;actual measurement;1329.435522;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1329.435522;;;2;;;1996-07-15 00:00:00.0;; Ulex europaeus;21090;actual measurement (following LEDA data standards);3.76;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.98;6.95;2.63;3.76;2;;;2004-04-03 00:00:00.0;Preaggregated value obtained from single record. ; Ulex europaeus;21090;actual measurement (following LEDA data standards);3.53;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;3.98;6.95;2.63;3.53;2;;;2004-04-03 00:00:00.0;preaggregated value obtained from single record; Ulmus glabra;35180;actual measurement (following LEDA data standards);105.86;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;105.86;175.83;49.66;105.86;1;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Ulmus glabra;35180;actual measurement (following LEDA data standards);127.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;126.68;182.9;51.07;127.18;2;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Ulmus glabra;35180;actual measurement (following LEDA data standards);126.68;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;126.68;182.9;51.07;126.68;2;;;2004-05-04 00:00:00.0;Preaggregated value obtained from single record. ; Ulmus glabra;35180;actual measurement (following LEDA data standards);98.97;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;105.86;175.83;49.66;98.97;1;;;2004-05-04 00:00:00.0;preaggregated value obtained from single record; Ulmus laevis;35184;actual measurement (following LEDA data standards);94.34;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;103.34;154.88;86.26;94.34;2;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. ; Ulmus laevis;35184;actual measurement (following LEDA data standards);104.03;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;116.63;178.42;95.83;104.03;2;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Ulmus laevis;35184;actual measurement (following LEDA data standards);104.58;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;116.63;178.42;95.83;104.58;2;;;2004-06-29 00:00:00.0;Preaggregated value obtained from single record. ; Ulmus laevis;35184;actual measurement (following LEDA data standards);90.83;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;103.34;154.88;86.26;90.83;2;;;2004-06-29 00:00:00.0;preaggregated value obtained from single record; Ulmus minor;35187;actual measurement (following LEDA data standards);64.28;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;69.31;109.9;37.87;64.28;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Ulmus minor;35187;actual measurement (following LEDA data standards);63.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;69.31;109.9;37.87;63.5;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Ulmus minor;35187;actual measurement (following LEDA data standards);64.98;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;71.61;113.29;38.68;64.98;2;;;2004-05-11 00:00:00.0;preaggregated value obtained from single record; Ulmus minor;35187;actual measurement (following LEDA data standards);66.13;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;71.61;113.29;38.68;66.13;2;;;2004-05-11 00:00:00.0;Preaggregated value obtained from single record. ; Umbilicus rupestris;18389;actual measurement;60.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;60.2;;;1;;;1997-06-16 00:00:00.0;; Urtica dioica;35149;actual measurement;80.93778559;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;80.93778559;;;2;;;1996-08-16 00:00:00.0;; Urtica dioica;35149;actual measurement;121.5047963;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;121.5047963;;;2;;;1996-09-09 00:00:00.0;; Urtica kioviensis;35156;actual measurement (following LEDA data standards);99.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;100.6;164.79;25.62;99.93;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Urtica kioviensis;35156;actual measurement (following LEDA data standards);99.26;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;100.6;164.79;25.62;99.26;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Urtica kioviensis;35156;actual measurement (following LEDA data standards);111.79;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;110.6;176.74;29.78;111.79;2;;;2004-06-19 00:00:00.0;preaggregated value obtained from single record; Urtica kioviensis;35156;actual measurement (following LEDA data standards);111.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;110.6;176.74;29.78;111.2;2;;;2004-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Urtica urens;35160;actual measurement;21.70206379;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.70206379;;;2;;;1996-05-30 00:00:00.0;; Utricularia australis;26089;actual measurement (following LEDA data standards);1.97;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2;2.82;1.01;1.97;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Utricularia vulgaris;26103;actual measurement (following LEDA data standards);.85;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;1.02;3.2;.2;.85;2;;;;Preaggregated value obtained from single record. ; Utricularia vulgaris;26103;actual measurement (following LEDA data standards);811.81;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;829.82;1209.73;485.93;811.81;1;;;2003-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Vaccaria hispanica;45231;laboratory/greenhouse/garden experiment;155.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;155.4;222.68;82;155.4;2;;;2004-07-28 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Vaccaria hispanica;45231;laboratory/greenhouse/garden experiment;161.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;155.4;222.68;82;161.05;2;;;2004-07-28 00:00:00.0;preaggregated value obtained from single record; Vaccinium corymbosum;19467;actual measurement (following LEDA data standards);98.12;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;98.83;142.31;44.43;98.12;2;;;2004-09-20 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Vaccinium corymbosum;19467;actual measurement (following LEDA data standards);97.1;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;98.83;142.31;44.43;97.1;2;;;2004-09-20 00:00:00.0;preaggregated value obtained from single record; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);3.07;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.07;;;;3;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);2.6;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.6;;;;2;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);5.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.9;;;;3;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);5.9;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.9;;;;4;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;field experiment;1.9;10;1;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change;unknown;1.9;;;;4;;.31;1992-08-01 00:00:00.0;;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);4.38;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.38;;;;4;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);4.5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.5;;;;3;;;2003-08-30 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);4.73;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.73;;;;3;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);4.15;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.15;;;;4;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);3.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.1;;;;4;;;2003-08-21 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);4.26;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.26;;;;5;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium oxycoccos;19476;actual measurement (following LEDA data standards);1.37;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.3;1.48;1.04;1.37;1;;;2003-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);15.2;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.2;22.11;9.27;15.2;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);7.17;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.17;;;;3;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);7.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.4;;;;3;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);9.32;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.32;;;;4;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);5.57;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.57;;;;4;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);9.63;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;9.63;;;;3;;;2003-08-18 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);4.54;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.54;;;;5;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);6.3;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.3;;;;3;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);14.85;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.2;22.11;9.27;14.85;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Vaccinium uliginosum;19479;field experiment;4.08;10;1;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change;unknown;4.08;;;;4;;.5;1992-08-01 00:00:00.0;;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change Vaccinium uliginosum;19479;field experiment;4.73;10;1;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change;unknown;4.73;;;;4;;.65;1991-08-01 00:00:00.0;;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);5;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5;;;;3;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);4.45;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.45;;;;4;;;2003-02-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);7.25;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.25;;;;2;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);10.4;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.4;;;;2;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium uliginosum;19479;actual measurement;4.950704225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.950704225;;;2;;;1996-08-02 00:00:00.0;; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);14.41;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;14.41;21.16;8.7;14.41;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);14.07;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;14.41;21.16;8.7;14.07;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7;;;;3;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);3.92;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;3.92;;;;4;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);5.13;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.13;;;;3;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);4.32;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.32;;;;4;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);10.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;10.8;;;;2;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);11.95;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;11.95;;;;2;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);14.7;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;14.7;;;;2;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);7.27;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.27;;;;3;;;2003-08-15 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);7.25;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.25;;;;4;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);7.45;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;7.45;;;;4;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);4.68;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.68;;;;4;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);6.77;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.77;;;;3;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;field experiment;3.16;10;1;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change;unknown;3.16;;;;4;;.33;1992-08-01 00:00:00.0;;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change Vaccinium vitis-idaea;19439;field experiment;6.58;10;1;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change;unknown;6.58;;;;4;;.69;1991-08-01 00:00:00.0;;Parsons, A.N.(1994): Growth responses of four sub-Arctic dwarf shrubs to simulated environmental change Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);4.83;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;4.83;;;;3;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);6.8;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;6.8;;;;3;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);5.27;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;5.27;;;;3;;;2003-03-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Valeriana dioica;34884;actual measurement;28.80751252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.80751252;;;2;;;1996-08-28 00:00:00.0;; Valeriana dioica;34884;actual measurement;34.64099536;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;34.64099536;;;2;;;1996-08-08 00:00:00.0;; Valeriana dioica;34884;actual measurement;18.36562272;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.36562272;;;2;;;1996-07-08 00:00:00.0;; Valeriana officinalis;34832;actual measurement;657.6937928;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;657.6937928;;;2;;;1996-08-29 00:00:00.0;; Valeriana officinalis;34832;actual measurement;158.3860991;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;158.3860991;;;2;;;1996-06-18 00:00:00.0;; Valeriana pratensis;34760;actual measurement (following LEDA data standards);91.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;94.97;150.13;62.81;91.74;2;;;2005-05-21 00:00:00.0;preaggregated value obtained from single record; Valeriana tripteris;34810;actual measurement (following LEDA data standards);41.25;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;43.14;76.03;26.48;41.25;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Valeriana tripteris;34810;actual measurement (following LEDA data standards);58.04;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.62;108.08;37.92;58.04;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Valeriana tripteris;34810;actual measurement (following LEDA data standards);61.33;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;64.62;108.08;37.92;61.33;2;;;2004-07-09 00:00:00.0;Preaggregated value obtained from single record. ; Valeriana tripteris;34810;actual measurement (following LEDA data standards);39.36;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;43.14;76.03;26.48;39.36;2;;;2004-07-09 00:00:00.0;preaggregated value obtained from single record; Valerianella carinata;34818;actual measurement;1.698717949;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.698717949;;;2;;;1996-06-18 00:00:00.0;; Valerianella carinata;34818;actual measurement;5.243565684;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.243565684;;;2;;;1996-06-03 00:00:00.0;; Valerianella carinata;34818;actual measurement;9.658227848;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.658227848;;;2;;;1996-06-18 00:00:00.0;; Valerianella coronata;34784;laboratory/greenhouse/garden experiment;15.98;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.55;27.58;7.29;15.98;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Valerianella coronata;34784;laboratory/greenhouse/garden experiment;15.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;16.55;27.58;7.29;15.87;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Valerianella dentata;34825;actual measurement (following LEDA data standards);5.38;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.63;10.01;3.67;5.38;2;;;2004-07-25 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Valerianella dentata;34825;actual measurement (following LEDA data standards);5.13;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.63;10.01;3.67;5.13;2;;;2004-07-25 00:00:00.0;preaggregated value obtained from single record; Valerianella dentata;34825;actual measurement (following LEDA data standards);4.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.92;10.2;2.33;4.82;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Valerianella dentata;34825;actual measurement (following LEDA data standards);4.9;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;5.92;10.2;2.33;4.9;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Valerianella locusta;34776;actual measurement;4.788672566;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.788672566;;;2;;;1996-06-03 00:00:00.0;; Valerianella rimosa;34795;laboratory/greenhouse/garden experiment;1.53;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.53;2.27;.79;1.53;2;;;2004-10-12 00:00:00.0;preaggregated value obtained from single record; Valerianella rimosa;34795;laboratory/greenhouse/garden experiment;1.53;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.53;2.27;.79;1.53;2;;;2004-10-12 00:00:00.0;Preaggregated value obtained from single record. ; Verbascum densiflorum;33851;laboratory/greenhouse/garden experiment;227.28;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;227.28;227.28;227.28;227.28;2;;;2004-08-17 00:00:00.0;Preaggregated value obtained from single record. ; Verbascum densiflorum;33851;actual measurement (following LEDA data standards);1376.6;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1505.91;1877.69;1263.44;1376.6;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Verbascum densiflorum;33851;laboratory/greenhouse/garden experiment;227.28;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;227.28;227.28;227.28;227.28;2;;;2004-08-17 00:00:00.0;preaggregated value obtained from single record; Verbascum densiflorum;33851;laboratory/greenhouse/garden experiment;242.38;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;569.66;1339.3;127.32;242.38;2;;;2004-08-17 00:00:00.0;preaggregated value obtained from single record; Verbascum densiflorum;33851;actual measurement (following LEDA data standards);2486.4;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2725.6;4378.39;1968.52;2486.4;1;;;2003-06-25 00:00:00.0;Preaggregated value obtained from single record. ; Verbascum densiflorum;33851;laboratory/greenhouse/garden experiment;406.02;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;569.66;1339.3;127.32;406.02;2;;;2004-08-17 00:00:00.0;Preaggregated value obtained from single record. ; Verbascum lychnitis;33779;laboratory/greenhouse/garden experiment;1265;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1426;2330;675;1265;2;;;2005-06-30 00:00:00.0;preaggregated value obtained from single record; Verbascum nigrum;32834;actual measurement;1532.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1532.4;;;2;;;1996-09-23 00:00:00.0;; Verbascum phlomoides;32841;laboratory/greenhouse/garden experiment;282.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;267.94;378.9;145.16;282.21;2;;;2005-07-04 00:00:00.0;preaggregated value obtained from single record; Verbascum pulverulentum;33747;actual measurement;1845.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1845.1;;;1;;;1997-06-18 00:00:00.0;; Verbascum thapsus;32859;actual measurement;881.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;881.7;;;2;;;1996-07-08 00:00:00.0;; Verbascum thapsus;32859;actual measurement;1901.740452;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1901.740452;;;2;;;1996-07-15 00:00:00.0;; Verbascum thapsus;32859;actual measurement;2002.4;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2002.4;;;2;;;1996-08-08 00:00:00.0;; Verbascum virgatum;33376;actual measurement;614.2;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;614.2;;;2;;;1996-09-05 00:00:00.0;; Verbena officinalis;35092;actual measurement (following LEDA data standards);27.71;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.8;46.81;20.27;27.71;2;;;2004-07-08 00:00:00.0;Preaggregated value obtained from single record. ; Verbena officinalis;35092;actual measurement (following LEDA data standards);26.13;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;28.8;46.81;20.27;26.13;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Veronica agrestis;34127;actual measurement;2.66182708;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.66182708;;;2;;;1996-08-16 00:00:00.0;; Veronica alpina;33325;actual measurement (following LEDA data standards);1.58;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;without petiole and rachis;1.58;;;;4;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Veronica alpina;33325;actual measurement (following LEDA data standards);2.1;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.1;;;;3;;;2003-08-28 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Veronica alpina;33325;actual measurement (following LEDA data standards);2.55;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.55;;;;2;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Veronica alpina;33325;actual measurement (following LEDA data standards);2.22;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;2.22;;;;4;;;2003-04-09 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Veronica alpina;33325;actual measurement (following LEDA data standards);.78;1;1;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;with petiole and rachis;.78;;;;5;;;2003-08-20 00:00:00.0;The leaves of the individual was weighed together and the balance error is given as each leafs fraction of the total balance error; Veronica alpina;33325;actual measurement;2.9;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;2.9;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Veronica anagallis-aquatica;32774;actual measurement;40.27612788;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;40.27612788;;;2;;;1996-09-27 00:00:00.0;; Veronica anagallis-aquatica;32774;actual measurement;50.04829721;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;50.04829721;;;2;;;1996-06-23 00:00:00.0;; Veronica anagallis-aquatica;32774;actual measurement;105.8673151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;105.8673151;;;2;;;1996-07-11 00:00:00.0;; Veronica anagalloides;34184;laboratory/greenhouse/garden experiment;15.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.54;19.72;6.9;15.99;2;;;2004-07-01 00:00:00.0;Preaggregated value obtained from single record. ; Veronica anagalloides;34184;laboratory/greenhouse/garden experiment;16.45;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.54;19.72;6.9;16.45;2;;;2004-07-01 00:00:00.0;preaggregated value obtained from single record; Veronica arvensis;33302;actual measurement;.9;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.9;;;2;;;1996-05-23 00:00:00.0;; Veronica arvensis;33302;actual measurement;6.264144737;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.264144737;;;2;;;1996-06-03 00:00:00.0;; Veronica arvensis;33302;actual measurement;.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;.77;1.55;.32;.69;2;;;2004-06-25 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Veronica arvensis;33302;actual measurement;8.734782609;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.734782609;;;2;;;1996-05-22 00:00:00.0;; Veronica austriaca;32781;actual measurement (following LEDA data standards);2.58;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.82;3.74;2.42;2.58;3;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Veronica austriaca;32781;actual measurement (following LEDA data standards);8;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;8.01;11.65;5.05;8;2;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Veronica austriaca;32781;actual measurement (following LEDA data standards);2.56;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.82;3.74;2.42;2.56;3;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Veronica austriaca s. teucrium;33306;actual measurement (following LEDA data standards);7.99;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.35;12.76;4;7.99;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Veronica austriaca s. teucrium;33306;actual measurement (following LEDA data standards);8.35;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;8.35;12.76;4;8.35;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Veronica austriaca s. teucrium;33306;actual measurement (following LEDA data standards);29.04;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.04;33.21;24.59;29.04;2;;;2004-07-12 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Veronica austriaca s. teucrium;33306;actual measurement (following LEDA data standards);29.19;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;29.04;33.21;24.59;29.19;2;;;2004-07-12 00:00:00.0;preaggregated value obtained from single record; Veronica beccabunga;33863;actual measurement;65.27640165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;65.27640165;;;2;;;1996-06-23 00:00:00.0;; Veronica beccabunga;33863;actual measurement;20.24402451;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.24402451;;;2;;;1996-09-09 00:00:00.0;; Veronica beccabunga;33863;actual measurement;17.901;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.901;;;2;;;1996-08-08 00:00:00.0;; Veronica catenata;33875;actual measurement;5.168733154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.168733154;;;2;;;1996-09-02 00:00:00.0;; Veronica catenata;33875;actual measurement (following LEDA data standards);5.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;6.13;8.83;4.02;5.45;1;;;2003-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Veronica catenata;33875;actual measurement;12.0263089;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.0263089;;;2;;;1996-09-02 00:00:00.0;; Veronica catenata;33875;actual measurement;13.64266843;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.64266843;;;2;;;1996-08-08 00:00:00.0;; Veronica chamaedrys;32792;actual measurement;13.67390791;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.67390791;;;2;;;1996-06-10 00:00:00.0;; Veronica chamaedrys;32792;actual measurement;10.35;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;10.25;21.71;1.36;10.35;2;;;2003-06-26 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Veronica chamaedrys;32792;actual measurement;23.40153186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;23.40153186;;;2;;;;; Veronica filiformis;33807;actual measurement;.777272727;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.777272727;;;2;;;1996-09-26 00:00:00.0;; Veronica filiformis;33807;actual measurement;2.130526316;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.130526316;;;2;;;1996-05-21 00:00:00.0;; Veronica fruticans;34175;actual measurement (following LEDA data standards);1.07;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;1.13;1.7;.75;1.07;1;;;2005-07-22 00:00:00.0;preaggregated value obtained from single record; Veronica hederifolia;33317;actual measurement;9.42864222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.42864222;;;2;;;1996-05-19 00:00:00.0;; Veronica hederifolia;33317;actual measurement;10.56557971;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;10.56557971;;;2;;;1996-05-10 00:00:00.0;; Veronica hederifolia;33317;actual measurement;17.15710723;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.15710723;;;2;;;1996-05-23 00:00:00.0;; Veronica hederifolia;33317;actual measurement (following LEDA data standards);4.04;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;4.61;7.43;2.91;4.04;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Veronica longifolia;32803;actual measurement (following LEDA data standards);70.34;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;70.34;105.66;37.64;70.34;2;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Veronica longifolia;32803;actual measurement (following LEDA data standards);56.25;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;53.38;88.6;27.05;56.25;2;;;2004-07-07 00:00:00.0;preaggregated value obtained from single record; Veronica longifolia;32803;actual measurement (following LEDA data standards);80.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;80.65;122.01;44.88;80.11;2;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Veronica longifolia;32803;actual measurement (following LEDA data standards);70.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;70.34;105.66;37.64;70.46;2;;;2004-06-16 00:00:00.0;preaggregated value obtained from single record; Veronica longifolia;32803;actual measurement (following LEDA data standards);80.65;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;80.65;122.01;44.88;80.65;2;;;2004-06-16 00:00:00.0;Preaggregated value obtained from single record. ; Veronica montana;33758;actual measurement;19.99226158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;19.99226158;;;2;;;1996-06-10 00:00:00.0;; Veronica officinalis;33764;actual measurement;3.050381679;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.050381679;;;2;;;1996-09-24 00:00:00.0;; Veronica officinalis;33764;actual measurement;17.9;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];unknown;17.9;;;;1;;;;largest fully expanded leaf;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81] Veronica peregrina;33270;actual measurement (following LEDA data standards);1.94;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.88;2.35;1.34;1.94;4;;;2005-05-24 00:00:00.0;preaggregated value obtained from single record; Veronica peregrina;33270;actual measurement (following LEDA data standards);1.94;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.85;2.28;1.32;1.94;2;;;2005-10-08 00:00:00.0;preaggregated value obtained from single record; Veronica peregrina;33270;actual measurement (following LEDA data standards);.94;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.05;1.74;.58;.94;2;;;2005-07-06 00:00:00.0;preaggregated value obtained from single record; Veronica persica;33737;actual measurement;9.212885154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;9.212885154;;;2;;;1996-08-16 00:00:00.0;; Veronica persica;33737;actual measurement;18.85143413;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.85143413;;;2;;;1996-05-22 00:00:00.0;; Veronica persica;33737;actual measurement;13.0520251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;13.0520251;;;2;;;1996-09-27 00:00:00.0;; Veronica polita;33745;actual measurement;2.885204082;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;2.885204082;;;2;;;1996-07-15 00:00:00.0;; Veronica polita;33745;actual measurement;3.412969283;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;3.412969283;;;2;;;1996-09-27 00:00:00.0;; Veronica polita;33745;actual measurement;4.080910683;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;4.080910683;;;2;;;1996-05-30 00:00:00.0;; Veronica prostrata s. prostrata;34100;actual measurement (following LEDA data standards);2.92;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.92;2.92;2.92;2.92;3;;;2004-05-17 00:00:00.0;preaggregated value obtained from single record; Veronica prostrata s. prostrata;34100;actual measurement (following LEDA data standards);2.92;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;2.92;2.92;2.92;2.92;3;;;2004-05-17 00:00:00.0;Preaggregated value obtained from single record. ; Veronica scutellata;34347;actual measurement (following LEDA data standards);1.68;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.62;1.72;1.47;1.68;1;;;2003-09-16 00:00:00.0;Preaggregated value obtained from single record. ; Veronica scutellata;34347;actual measurement (following LEDA data standards);4.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;4.9;10.22;3.14;4.25;1;;;2003-08-05 00:00:00.0;Preaggregated value obtained from single record. ; Veronica serpyllifolia;32740;actual measurement;8.018957346;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;8.018957346;;;2;;;1996-06-10 00:00:00.0;; Veronica spicata;32745;actual measurement;68.3;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;68.3;;;1;;;1997-07-14 00:00:00.0;; Veronica spicata s. spicata;33276;actual measurement (following LEDA data standards);13.94;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.19;17.83;8.19;13.94;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Veronica spicata s. spicata;33276;actual measurement (following LEDA data standards);17.4;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.27;41.62;8.61;17.4;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Veronica spicata s. spicata;33276;actual measurement (following LEDA data standards);13.57;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;13.19;17.83;8.19;13.57;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Veronica spicata s. spicata;33276;actual measurement (following LEDA data standards);16.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.27;41.62;8.61;16.98;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Veronica triphyllos;33282;actual measurement (following LEDA data standards);1.07;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.07;1.58;.52;1.07;2;;;2005-05-05 00:00:00.0;preaggregated value obtained from single record; Viburnum lantana;15334;actual measurement (following LEDA data standards);206.19;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;217.97;403.42;121.22;206.19;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Viburnum lantana;15334;actual measurement (following LEDA data standards);217.17;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;229.59;421.48;128.66;217.17;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Vicia articulata;22076;laboratory/greenhouse/garden experiment;16.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.88;35.24;12.29;16.59;2;;;2004-07-13 00:00:00.0;Preaggregated value obtained from single record. ; Vicia articulata;22076;laboratory/greenhouse/garden experiment;16.36;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.88;35.24;12.29;16.36;2;;;2004-07-13 00:00:00.0;preaggregated value obtained from single record; Vicia cassubica;19692;actual measurement (following LEDA data standards);155.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;157.49;237.83;100.62;155.94;2;;;2005-07-08 00:00:00.0;preaggregated value obtained from single record; Vicia cracca;22128;actual measurement;23.55;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;with petiole and rachis;23.66;35.91;15.67;23.55;2;;;2003-06-23 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Vicia cracca;22128;actual measurement;34.30949574;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;34.30949574;;;2;;;1996-08-29 00:00:00.0;; Vicia cracca;22128;actual measurement;40.26050808;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;40.26050808;;;2;;;1996-08-29 00:00:00.0;; Vicia cracca;22128;actual measurement;18.92;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;19.5;29.93;12.16;18.92;2;;;2003-06-23 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Vicia ervilia;20343;laboratory/greenhouse/garden experiment;17.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.21;37.67;5.38;17.26;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. ; Vicia ervilia;20343;laboratory/greenhouse/garden experiment;16.32;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.21;37.67;5.38;16.32;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Vicia faba;20755;actual measurement (following LEDA data standards);326.85;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;320.43;367.8;282.95;326.85;2;;;2005-06-09 00:00:00.0;preaggregated value obtained from single record; Vicia grandiflora;21610;actual measurement (following LEDA data standards);10.7;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.55;18.9;1.98;10.7;2;;;2004-09-01 00:00:00.0;preaggregated value obtained from single record; Vicia grandiflora;21610;actual measurement (following LEDA data standards);10.62;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;10.55;18.9;1.98;10.62;2;;;2004-09-01 00:00:00.0;Preaggregated value obtained from single record. ; Vicia hirsuta;20346;actual measurement;7.34224924;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.34224924;;;2;;;1996-06-20 00:00:00.0;; Vicia hirsuta;20346;actual measurement;16.59062812;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;16.59062812;;;2;;;1996-07-08 00:00:00.0;; Vicia hirsuta;20346;actual measurement;7.6;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.6;;;2;;;1996-06-18 00:00:00.0;; Vicia lathyroides;21160;actual measurement;7.140952381;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;7.140952381;;;2;;;1996-05-30 00:00:00.0;; Vicia sativa;22143;actual measurement;55.60489297;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;55.60489297;;;2;;;1996-06-18 00:00:00.0;; Vicia sativa;22143;actual measurement;56.76602564;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;56.76602564;;;2;;;1996-05-30 00:00:00.0;; Vicia sativa s. nigra;19593;actual measurement (following LEDA data standards);9.2;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;9.2;9.85;8.55;9.2;1;;;2003-07-29 00:00:00.0;Preaggregated value obtained from single record. ; Vicia sativa s. nigra;19593;actual measurement (following LEDA data standards);15.55;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;15.55;18.05;13.05;15.55;1;;;2003-07-15 00:00:00.0;Preaggregated value obtained from single record. ; Vicia sepium;20357;actual measurement;24.55676856;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;24.55676856;;;2;;;1996-06-11 00:00:00.0;; Vicia sylvatica;20360;actual measurement;35.12318029;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;35.12318029;;;2;;;1996-09-02 00:00:00.0;; Vicia tenuifolia;22123;actual measurement;44.13863988;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;44.13863988;;;2;;;1996-06-24 00:00:00.0;; Vicia tenuifolia;22123;actual measurement;70.28528809;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;70.28528809;;;2;;;1996-06-19 00:00:00.0;; Vicia tenuifolia;22123;actual measurement (following LEDA data standards);86.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;82.66;120.93;47.11;86.76;2;;;2005-05-27 00:00:00.0;preaggregated value obtained from single record; Vicia tetrasperma;22147;actual measurement;1.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.8;;;1;;;1999-06-18 00:00:00.0;; Vicia villosa subsp. villosa;21628;actual measurement (following LEDA data standards);45.17;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;49.27;75.15;39.76;45.17;2;;;2005-05-20 00:00:00.0;preaggregated value obtained from single record; Vinca major;2533;actual measurement;198.4444733;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;198.4444733;;;2;;;1996-06-03 00:00:00.0;; Vinca minor;2536;actual measurement;21.85865895;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;21.85865895;;;2;;;1996-06-19 00:00:00.0;; Vincetoxicum hirundinaria;2467;actual measurement (following LEDA data standards);30.04;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;32.75;43.64;24.56;30.04;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Vincetoxicum hirundinaria;2467;actual measurement (following LEDA data standards);26.44;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;37.93;63.18;19.91;26.44;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Vincetoxicum hirundinaria;2467;actual measurement (following LEDA data standards);30.66;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;33.34;44.39;24.98;30.66;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Vincetoxicum hirundinaria;2467;actual measurement (following LEDA data standards);25.69;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;36.79;61.29;19.66;25.69;1;;;2003-06-19 00:00:00.0;Preaggregated value obtained from single record. ; Viola arvensis;35403;actual measurement;20.21718963;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;20.21718963;;;2;;;1996-06-18 00:00:00.0;; Viola arvensis;35403;actual measurement;25.97490775;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;25.97490775;;;2;;;1996-05-21 00:00:00.0;; Viola biflora;35415;actual measurement (following LEDA data standards);2.88;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;with petiole and rachis;2.77;4.05;1.25;2.88;1;;;2005-07-21 00:00:00.0;preaggregated value obtained from single record; Viola canina;35384;actual measurement;12.71737374;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;12.71737374;;;2;;;1996-05-23 00:00:00.0;; Viola hirta;35355;actual measurement;145.0208845;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;145.0208845;;;2;;;1996-07-15 00:00:00.0;; Viola hirta;35355;actual measurement;194.628207;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;194.628207;;;2;;;1996-08-16 00:00:00.0;; Viola lutea;35331;actual measurement;5.610337079;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.610337079;;;2;;;1996-06-03 00:00:00.0;; Viola lutea;35331;actual measurement;5.953170732;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;5.953170732;;;2;;;1996-06-10 00:00:00.0;; Viola mirabilis;35297;actual measurement (following LEDA data standards);104.63;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;106.86;157.23;80.61;104.63;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Viola mirabilis;35297;actual measurement (following LEDA data standards);99.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;106.86;157.23;80.61;99.68;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Viola mirabilis;35297;actual measurement (following LEDA data standards);142.78;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;144.33;205.98;112.67;142.78;2;;;2004-08-09 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Viola mirabilis;35297;actual measurement (following LEDA data standards);134.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;144.33;205.98;112.67;134.19;2;;;2004-08-09 00:00:00.0;preaggregated value obtained from single record; Viola odorata;35309;actual measurement;31;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;31;;;1;;;1997-05-09 00:00:00.0;; Viola odorata;35309;actual measurement;142.1513533;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;142.1513533;;;2;;;1996-08-08 00:00:00.0;; Viola palustris;35276;actual measurement;35.02383639;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;35.02383639;;;2;;;1996-09-09 00:00:00.0;; Viola palustris;35276;actual measurement;84.98798493;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;84.98798493;;;2;;;1996-09-24 00:00:00.0;; Viola palustris;35276;actual measurement (following LEDA data standards);14.18;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;without petiole and rachis;14.24;24.4;7.8;14.18;2;;;;Preaggregated value obtained from single record. ; Viola persicifolia;35285;actual measurement (following LEDA data standards);16.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;18.3;45.02;8.26;16.2;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Viola persicifolia;35285;actual measurement (following LEDA data standards);15.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;18.3;45.02;8.26;15.83;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Viola persicifolia;35285;actual measurement (following LEDA data standards);17.99;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.57;52.15;10.58;17.99;2;;;2004-06-17 00:00:00.0;Preaggregated value obtained from single record. ; Viola persicifolia;35285;actual measurement (following LEDA data standards);17.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;21.57;52.15;10.58;17.98;2;;;2004-06-17 00:00:00.0;preaggregated value obtained from single record; Viola persicifolia;35285;actual measurement (following LEDA data standards);1.41;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1.55;1.89;1.24;1.41;2;;;2004-07-08 00:00:00.0;preaggregated value obtained from single record; Viola reichenbachiana;35262;laboratory/greenhouse/garden experiment;16.87;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;16.87;22.43;11.47;16.87;2;;;2004-04-24 00:00:00.0;Preaggregated value obtained from single record. ; Viola reichenbachiana;35262;laboratory/greenhouse/garden experiment;16.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;16.87;22.43;11.47;16.08;2;;;2004-04-24 00:00:00.0;preaggregated value obtained from single record; Viola reichenbachiana;35262;laboratory/greenhouse/garden experiment;18.98;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.98;25.27;12.95;18.98;2;;;2004-04-24 00:00:00.0;Preaggregated value obtained from single record. ; Viola reichenbachiana;35262;laboratory/greenhouse/garden experiment;18.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;18.98;25.27;12.95;18.15;2;;;2004-04-24 00:00:00.0;preaggregated value obtained from single record; Viola riviniana;35267;actual measurement;28.96341463;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;28.96341463;;;2;;;1996-08-14 00:00:00.0;; Viola tricolor;35219;actual measurement;17.74745387;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;17.74745387;;;2;;;1996-05-30 00:00:00.0;; Viola tricolor;35219;actual measurement;18.3112782;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;18.3112782;;;2;;;1996-05-30 00:00:00.0;; Viola tricolor;35219;actual measurement;8.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;without petiole and rachis;8.19;12.09;5.2;8.05;2;;;2004-05-26 00:00:00.0;Preaggregated value obtained from single record. rehydration (GARNIER); Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);1.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.98;3.41;.95;1.84;2;;;2004-06-05 00:00:00.0;preaggregated value obtained from single record; Viola tricolor s. curtisii;35223;actual measurement (following LEDA data standards);1.98;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1.98;3.41;.95;1.98;2;;;2004-06-05 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Viscum album;25275;actual measurement;86.8;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;86.8;;;1;;;1997-09-13 00:00:00.0;; Viscum album;25275;actual measurement (following LEDA data standards);233.35;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;269.64;548.96;119.01;233.35;2;;;2004-07-27 00:00:00.0;Preaggregated value obtained from single record. ; Viscum album;25275;actual measurement (following LEDA data standards);219;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;269.64;548.96;119.01;219;2;;;2004-07-27 00:00:00.0;preaggregated value obtained from single record; Vitis vinifera;34500;actual measurement (following LEDA data standards);359.78;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;387;541.3;323.07;359.78;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Vitis vinifera;34500;actual measurement (following LEDA data standards);467.71;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;484.39;702.25;402.16;467.71;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. determinated as Vitis vinifera ssp. sylvestris (native plant); Vitis vinifera;34500;actual measurement (following LEDA data standards);376.71;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;387;541.3;323.07;376.71;2;;;2004-05-14 00:00:00.0;Preaggregated value obtained from single record. determinated as Vitis vinifera ssp. sylvestris (native plant); Vitis vinifera;34500;actual measurement (following LEDA data standards);452.75;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;484.39;702.25;402.16;452.75;2;;;2004-05-14 00:00:00.0;preaggregated value obtained from single record; Vulpia bromoides;42790;actual measurement;6.1;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.1;;;1;;;1997-06-24 00:00:00.0;; Vulpia bromoides;42790;actual measurement;1.842276423;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.842276423;;;2;;;1996-05-23 00:00:00.0;; Vulpia bromoides;42790;actual measurement;1.300645161;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1.300645161;;;2;;;1996-06-18 00:00:00.0;; Vulpia ciliata;42792;field experiment;.00079;1;1;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ...;with petiole and rachis;.00079;;;;20;;.07;1989-05-12 00:00:00.0;reproductive tiller;Garnier, E. (1997): Specific leaf area and nitrogen concentration in annual and perennial grass species growing in ... Vulpia myuros;42798;actual measurement;.811267606;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.811267606;;;2;;;1996-06-18 00:00:00.0;; Vulpia myuros;42798;actual measurement;6.466666667;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;6.466666667;;;2;;;1996-06-19 00:00:00.0;; Wolffia arrhiza;36885;actual measurement (following LEDA data standards);.01;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.01;.03;.01;.01;10;;;2004-06-23 00:00:00.0;Preaggregated value obtained from single record. leaf size calculated with slide rule; Wolffia arrhiza;36885;actual measurement (following LEDA data standards);.01;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.01;.03;.01;.01;10;;;2004-06-23 00:00:00.0;preaggregated value obtained from single record; Xanthium albinum s.lat.;61703;laboratory/greenhouse/garden experiment;1166.03;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1166.03;1166.03;1166.03;1166.03;2;;;2004-08-05 00:00:00.0;preaggregated value obtained from single record; Xanthium albinum s.lat.;61703;laboratory/greenhouse/garden experiment;1166.03;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;1166.03;1166.03;1166.03;1166.03;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Xanthium albinum s.lat.;61703;laboratory/greenhouse/garden experiment;1539.77;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1539.77;1539.77;1539.77;1539.77;2;;;2004-08-05 00:00:00.0;preaggregated value obtained from single record; Xanthium albinum s.lat.;61703;laboratory/greenhouse/garden experiment;1539.77;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;1539.77;1539.77;1539.77;1539.77;2;;;2004-08-05 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Xanthium orientale;60681;laboratory/greenhouse/garden experiment;870.85;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;870.85;870.85;870.85;870.85;2;;;2005-08-09 00:00:00.0;preaggregated value obtained from single record; Xanthium strumarium;10168;laboratory/greenhouse/garden experiment;93.45;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;140.66;305.56;47.63;93.45;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Xanthium strumarium;10168;laboratory/greenhouse/garden experiment;117.05;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;without petiole and rachis;140.66;305.56;47.63;117.05;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Xanthium strumarium;10168;laboratory/greenhouse/garden experiment;130.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;158.51;352.2;51.79;130.5;2;;;2004-08-11 00:00:00.0;Preaggregated value obtained from single record. preaggregated value obtained from single record; Xanthium strumarium;10168;laboratory/greenhouse/garden experiment;102.49;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;158.51;352.2;51.79;102.49;2;;;2004-08-11 00:00:00.0;preaggregated value obtained from single record; Zannichellia palustris;43857;actual measurement;.591549296;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;.591549296;;;2;;;1996-09-27 00:00:00.0;; Zannichellia palustris subsp. pedicellata;60685;actual measurement (following LEDA data standards);.21;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;with petiole and rachis;.2;.28;.13;.21;12;;;2005-08-06 00:00:00.0;preaggregated value obtained from single record; Zea mays;43844;actual measurement;1305.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;1305.7;;;1;;;1997-07-04 00:00:00.0;; Zea mays;43844;actual measurement (following LEDA data standards);1427.5;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;1577.5;2770.5;1166.5;1427.5;2;;;2005-08-09 00:00:00.0;preaggregated value obtained from single record; Zostera marina;43879;actual measurement (following LEDA data standards);10.28;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;with petiole and rachis;10.5;14.25;8.25;10.28;2;;;2004-09-18 00:00:00.0;preaggregated value obtained from single record; x Festulolium loliaceum;41093;actual measurement;47.7;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;without petiole and rachis;;47.7;;;1;;;1997-06-03 00:00:00.0;;