The following table was created as response to the SQL query SELECT sbs_sbsname "SBS name", m_methodname "general method", lfm_name "leaf specific method", ldc_singlevalue "single value [mg/g]", ldc_n "sample size", ldc_valid "valid", ref_refname "reference", sbs_sbsnumber "SBS number", pslv_name "plant stage", lflv_name "leaf state", ldc_mean "mean LMDC [mg/g]", ldc_maximum "maximum LDMC [mg/g]", ldc_minimum "minimum LDMC [mg/g]", ldc_replicates "number of replicates", ldc_stddev "standard deviation", ldc_stderror "standard error", ldc_balanceerror "balance error [mg]", ldc_collectiondate "collection date", ldc_comment "general comment", or_origrefname "original reference", eun_habcodeandname "EUNIS habitat code and name", geo_countryname "country", geo_utmzone "UTM zone", geo_utmeasting "UTM easting", geo_comment "georeference comment", geo_utmnorthing "UTM northing" FROM (SELECT case when ldc_median is not null then ldc_median when ldc_mean is not null then ldc_mean when ldc_minimum is not null and ldc_maximum is not null then (ldc_minimum + ldc_maximum) / 2 when ldc_minimum is not null then ldc_minimum when ldc_maximum is not null then ldc_maximum else null end AS ldc_singlevalue, sbs_sbsnumber, sbs_sbsname, m_methodname, lfm_name, ldc_mean, ldc_minimum, ldc_maximum, ldc_n, ldc_valid, ref_refname, pslv_name, lflv_name, ldc_replicates, ldc_stddev, ldc_stderror, ldc_balanceerror, ldc_collectiondate, ldc_comment, or_origrefname, eun_habcodeandname, geo_countryname, geo_utmzone, geo_utmeasting, geo_comment, geo_utmnorthing, ldc_sbsnumber FROM (SELECT sbs.sbs_sbsnumber, sbs.sbs_sbsname, m_ldmc.m_methodname, m_ldmc.lfm_name, m_ldmc.ldc_median, m_ldmc.ldc_mean, m_ldmc.ldc_minimum, m_ldmc.ldc_maximum, m_ldmc.ldc_n, m_ldmc.ldc_valid, m_ldmc.ref_refname, m_ldmc.pslv_name, m_ldmc.lflv_name, m_ldmc.ldc_replicates, m_ldmc.ldc_stddev, m_ldmc.ldc_stderror, m_ldmc.ldc_balanceerror, m_ldmc.ldc_collectiondate, m_ldmc.ldc_comment, m_ldmc.or_origrefname, m_ldmc.eun_habcodeandname, m_ldmc.geo_countryname, m_ldmc.geo_utmzone, m_ldmc.geo_utmeasting, m_ldmc.geo_comment, m_ldmc.geo_utmnorthing, m_ldmc.ldc_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 ldmc_lfm.ldc_sbsnumber, m.m_methodname, ldmc_lfm.lfm_name, ldmc_lfm.ldc_median, ldmc_lfm.ldc_mean, ldmc_lfm.ldc_minimum, ldmc_lfm.ldc_maximum, ldmc_lfm.ldc_n, ldmc_lfm.ldc_valid, ldmc_lfm.ref_refname, ldmc_lfm.pslv_name, ldmc_lfm.lflv_name, ldmc_lfm.ldc_replicates, ldmc_lfm.ldc_stddev, ldmc_lfm.ldc_stderror, ldmc_lfm.ldc_balanceerror, ldmc_lfm.ldc_collectiondate, ldmc_lfm.ldc_comment, ldmc_lfm.or_origrefname, ldmc_lfm.eun_habcodeandname, ldmc_lfm.geo_countryname, ldmc_lfm.geo_utmzone, ldmc_lfm.geo_utmeasting, ldmc_lfm.geo_comment, ldmc_lfm.geo_utmnorthing FROM (SELECT methodid AS m_methodid, methodname AS m_methodname FROM (select * from method_lv)) m JOIN (SELECT r_ldmc.ldc_sbsnumber, r_ldmc.ldc_methodid, lfm.lfm_name, r_ldmc.ldc_median, r_ldmc.ldc_mean, r_ldmc.ldc_minimum, r_ldmc.ldc_maximum, r_ldmc.ldc_n, r_ldmc.ldc_valid, r_ldmc.ref_refname, r_ldmc.pslv_name, r_ldmc.lflv_name, r_ldmc.ldc_replicates, r_ldmc.ldc_stddev, r_ldmc.ldc_stderror, r_ldmc.ldc_balanceerror, r_ldmc.ldc_collectiondate, r_ldmc.ldc_comment, r_ldmc.or_origrefname, r_ldmc.eun_habcodeandname, r_ldmc.geo_countryname, r_ldmc.geo_utmzone, r_ldmc.geo_utmeasting, r_ldmc.geo_comment, r_ldmc.geo_utmnorthing FROM (SELECT ldmc_pslv.ldc_sbsnumber, ldmc_pslv.ldc_methodid, ldmc_pslv.ldc_specificmethodid, ldmc_pslv.ldc_median, ldmc_pslv.ldc_mean, ldmc_pslv.ldc_minimum, ldmc_pslv.ldc_maximum, ldmc_pslv.ldc_n, ldmc_pslv.ldc_valid, r.ref_refname, ldmc_pslv.pslv_name, ldmc_pslv.lflv_name, ldmc_pslv.ldc_replicates, ldmc_pslv.ldc_stddev, ldmc_pslv.ldc_stderror, ldmc_pslv.ldc_balanceerror, ldmc_pslv.ldc_collectiondate, ldmc_pslv.ldc_comment, ldmc_pslv.or_origrefname, ldmc_pslv.eun_habcodeandname, ldmc_pslv.geo_countryname, ldmc_pslv.geo_utmzone, ldmc_pslv.geo_utmeasting, ldmc_pslv.geo_comment, ldmc_pslv.geo_utmnorthing FROM (SELECT referenceid AS ref_referenceid, refname AS ref_refname FROM (select referenceid, refname, reftypeid from reference)) r LEFT JOIN (SELECT ldmc_lflv.ldc_sbsnumber, ldmc_lflv.ldc_methodid, ldmc_lflv.ldc_specificmethodid, ldmc_lflv.ldc_median, ldmc_lflv.ldc_mean, ldmc_lflv.ldc_minimum, ldmc_lflv.ldc_maximum, ldmc_lflv.ldc_n, ldmc_lflv.ldc_valid, ldmc_lflv.ldc_referenceid, pslv.pslv_name, ldmc_lflv.lflv_name, ldmc_lflv.ldc_replicates, ldmc_lflv.ldc_stddev, ldmc_lflv.ldc_stderror, ldmc_lflv.ldc_balanceerror, ldmc_lflv.ldc_collectiondate, ldmc_lflv.ldc_comment, ldmc_lflv.or_origrefname, ldmc_lflv.eun_habcodeandname, ldmc_lflv.geo_countryname, ldmc_lflv.geo_utmzone, ldmc_lflv.geo_utmeasting, ldmc_lflv.geo_comment, ldmc_lflv.geo_utmnorthing FROM (SELECT ldmc_orf.ldc_sbsnumber, ldmc_orf.ldc_methodid, ldmc_orf.ldc_specificmethodid, ldmc_orf.ldc_median, ldmc_orf.ldc_mean, ldmc_orf.ldc_minimum, ldmc_orf.ldc_maximum, ldmc_orf.ldc_n, ldmc_orf.ldc_valid, ldmc_orf.ldc_referenceid, ldmc_orf.ldc_plantstageid, lflv.lflv_name, ldmc_orf.ldc_replicates, ldmc_orf.ldc_stddev, ldmc_orf.ldc_stderror, ldmc_orf.ldc_balanceerror, ldmc_orf.ldc_collectiondate, ldmc_orf.ldc_comment, ldmc_orf.or_origrefname, ldmc_orf.eun_habcodeandname, ldmc_orf.geo_countryname, ldmc_orf.geo_utmzone, ldmc_orf.geo_utmeasting, ldmc_orf.geo_comment, ldmc_orf.geo_utmnorthing FROM (SELECT ldmc_hab.ldc_sbsnumber, ldmc_hab.ldc_methodid, ldmc_hab.ldc_specificmethodid, ldmc_hab.ldc_median, ldmc_hab.ldc_mean, ldmc_hab.ldc_minimum, ldmc_hab.ldc_maximum, ldmc_hab.ldc_n, ldmc_hab.ldc_valid, ldmc_hab.ldc_referenceid, ldmc_hab.ldc_plantstageid, ldmc_hab.ldc_leafformid, ldmc_hab.ldc_replicates, ldmc_hab.ldc_stddev, ldmc_hab.ldc_stderror, ldmc_hab.ldc_balanceerror, ldmc_hab.ldc_collectiondate, ldmc_hab.ldc_comment, orf.or_origrefname, ldmc_hab.eun_habcodeandname, ldmc_hab.geo_countryname, ldmc_hab.geo_utmzone, ldmc_hab.geo_utmeasting, ldmc_hab.geo_comment, ldmc_hab.geo_utmnorthing FROM (SELECT ldmc_geo.ldc_sbsnumber, ldmc_geo.ldc_methodid, ldmc_geo.ldc_specificmethodid, ldmc_geo.ldc_median, ldmc_geo.ldc_mean, ldmc_geo.ldc_minimum, ldmc_geo.ldc_maximum, ldmc_geo.ldc_n, ldmc_geo.ldc_valid, ldmc_geo.ldc_referenceid, ldmc_geo.ldc_plantstageid, ldmc_geo.ldc_leafformid, ldmc_geo.ldc_replicates, ldmc_geo.ldc_stddev, ldmc_geo.ldc_stderror, ldmc_geo.ldc_balanceerror, ldmc_geo.ldc_collectiondate, ldmc_geo.ldc_comment, ldmc_geo.ldc_origreferenceid, hab_eun.eun_habcodeandname, ldmc_geo.geo_countryname, ldmc_geo.geo_utmzone, ldmc_geo.geo_utmeasting, ldmc_geo.geo_comment, ldmc_geo.geo_utmnorthing FROM (SELECT ldmc.ldc_sbsnumber, ldmc.ldc_methodid, ldmc.ldc_specificmethodid, ldmc.ldc_median, ldmc.ldc_mean, ldmc.ldc_minimum, ldmc.ldc_maximum, ldmc.ldc_n, ldmc.ldc_valid, ldmc.ldc_referenceid, ldmc.ldc_plantstageid, ldmc.ldc_leafformid, ldmc.ldc_replicates, ldmc.ldc_stddev, ldmc.ldc_stderror, ldmc.ldc_balanceerror, ldmc.ldc_collectiondate, ldmc.ldc_comment, ldmc.ldc_origreferenceid, ldmc.ldc_habitattypeid, geo.geo_countryname, geo.geo_utmzone, geo.geo_utmeasting, geo.geo_comment, geo.geo_utmnorthing FROM (SELECT sbsnumber AS ldc_sbsnumber, methodid AS ldc_methodid, leafspecificmethodid AS ldc_specificmethodid, median AS ldc_median, mean AS ldc_mean, minimum AS ldc_minimum, maximum AS ldc_maximum, n AS ldc_n, valid AS ldc_valid, referenceid AS ldc_referenceid, plantstageid AS ldc_plantstageid, leafformid AS ldc_leafformid, replicates AS ldc_replicates, stddeviation AS ldc_stddev, stderror AS ldc_stderror, balanceerror AS ldc_balanceerror, collectiondate AS ldc_collectiondate, p_comment AS ldc_comment, origreferenceid AS ldc_origreferenceid, habitattypeid AS ldc_habitattypeid, georefid AS ldc_georeferenceid FROM (SELECT sbsnumber, 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, plantstageid, leafspecificmethodid, balanceerror, leafdrymattercontentid FROM leafdrymattercontent natural join taxontosbsassignment WHERE valid IN (-2, 1))) ldmc FULL JOIN (SELECT georefid AS geo_georefid, countryname AS geo_countryname, utm_zone AS geo_utmzone, utm_easting AS geo_utmeasting, georef_comment AS geo_comment, utm_northing AS geo_utmnorthing FROM (select * from georef_part)) geo ON ldmc.ldc_georeferenceid = geo.geo_georefid) ldmc_geo FULL JOIN (SELECT hab.hab_habitattypeid, eun.eun_habcodeandname FROM (SELECT habitattypeid AS hab_habitattypeid, eunishabitattypeid AS hab_eunisid FROM (select * from habtype_base)) hab FULL JOIN (SELECT eunishabitattypeid AS eun_habitattypeid, eunishabitattypecodeandname AS eun_habcodeandname FROM (SELECT eunishabitattypeid, eunishabitattypename, eunishabitattypecode, eunishabitattypecodeandname FROM eunishabitattype_lv)) eun ON hab.hab_eunisid = eun.eun_habitattypeid) hab_eun ON ldmc_geo.ldc_habitattypeid = hab_eun.hab_habitattypeid) ldmc_hab 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 ldmc_hab.ldc_origreferenceid = orf.or_origrefid) ldmc_orf FULL JOIN (SELECT leafformid AS lflv_id, leafformname AS lflv_name FROM (select leafformid, leafformname from leafform_lv)) lflv ON ldmc_orf.ldc_leafformid = lflv.lflv_id) ldmc_lflv FULL JOIN (SELECT plantstageid AS pslv_id, plantstagename AS pslv_name FROM (select plantstageid, plantstagename from plantstage_lv)) pslv ON ldmc_lflv.ldc_plantstageid = pslv.pslv_id) ldmc_pslv ON r.ref_referenceid = ldmc_pslv.ldc_referenceid) r_ldmc LEFT JOIN (SELECT leafspecificmethodid AS lfm_id, leafspecificmethodname AS lfm_name FROM (select leafspecificmethodid, leafspecificmethodname from leafspecificmethod_lv)) lfm ON r_ldmc.ldc_specificmethodid = lfm.lfm_id) ldmc_lfm ON m.m_methodid = ldmc_lfm.ldc_methodid) m_ldmc ON sbs.sbs_sbsnumber = m_ldmc.ldc_sbsnumber)) ORDER BY sbs_sbsname on Tue Mar 25 17:06:17 CET 2008 . SBS name;general method;leaf specific method;single value [mg/g];sample size;valid;reference;SBS number;plant stage;leaf state;mean LMDC [mg/g];maximum LDMC [mg/g];minimum LDMC [mg/g];number of replicates;standard deviation;standard error;balance error [mg];collection date;general comment;original reference;EUNIS habitat code and name;country;UTM zone;UTM easting;georeference comment;UTM northing Abies alba;actual measurement (following LEDA data standards);no leaf rehydration;319.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;697;adult;with petiole and rachis;331.93;428.89;254.34;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G3.1 - [Abies] and [Picea] woodland;GERMANY;32;431028;P 350 Ravennaschlucht, Black forest (Baden-Württemberg);5307908 Acer campestre;actual measurement;leaf rehydration;441;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;811;adult;without petiole and rachis;441;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Acer campestre;actual measurement;leaf rehydration;280;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;811;adult;without petiole and rachis;280;;;1;;;;1997-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Monks Dale; Acer monspessulanum;field experiment;leaf rehydration;429;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;783;adult;without petiole and rachis;429;;;10;5;5;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Acer monspessulanum;field experiment;leaf rehydration;428;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;783;adult;without petiole and rachis;428;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Acer monspessulanum;field experiment;leaf rehydration;437;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;783;adult;without petiole and rachis;437;;;10;9;9;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Acer monspessulanum;field experiment;leaf rehydration;421;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;783;adult;without petiole and rachis;421;;;10;6;6;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;6.35;Les Agros;43.25 Acer platanoides;actual measurement;leaf rehydration;270;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;801;adult;without petiole and rachis;270;;;5;10.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Acer platanoides;actual measurement;leaf rehydration;278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;801;adult;without petiole and rachis;278;;;5;22.8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Acer pseudoplatanus;actual measurement;leaf rehydration;275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;803;adult;without petiole and rachis;275;;;5;10.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Acer pseudoplatanus;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;803;adult;without petiole and rachis;247;;;5;21.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Acer pseudoplatanus;actual measurement;leaf rehydration;260;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;803;adult;without petiole and rachis;260;;;5;5.8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Markland Grips; Acer pseudoplatanus;actual measurement;leaf rehydration;268;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;803;adult;without petiole and rachis;268;;;5;9.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Aceras anthropophorum;actual measurement (following LEDA data standards);no leaf rehydration;82.8;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39442;adult;with petiole and rachis;81.65;91.94;70.2;2;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;409555;P 512 Ebringen, Sch?rg, NSG Jennetal (Baden-W?emberg);5312993 Aceras anthropophorum;actual measurement;leaf rehydration;66;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39442;adult;without petiole and rachis;66;;;1;;;;1997-06-04 00:00:00.0;;;;UNITED KINGDOM;;;Barnack, Northhants; Achillea cartilaginea;actual measurement (following LEDA data standards);no leaf rehydration;204.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4689;adult;with petiole and rachis;203.6;232.79;167.61;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;33;448569;P 464 National park Unteres Odertal, Brandenburg;5873522 Achillea collina;laboratory/greenhouse/garden experiment;no leaf rehydration;190.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3512;adult;with petiole and rachis;186.29;220.24;159.29;2;;;0;2004-08-17 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Achillea macrophylla;laboratory/greenhouse/garden experiment;no leaf rehydration;248.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4009;adult;with petiole and rachis;247.5;272.58;199.51;2;;;10;2005-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Achillea macrophylla;actual measurement (following LEDA data standards);no leaf rehydration;209.44;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4009;adult;with petiole and rachis;181.27;216.04;118.33;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;401207;P 358 closely to NSG Badberg, Kaiserstuhl / Baden-Württemberg;5327428 Achillea millefolium;actual measurement;leaf rehydration;196;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3013;adult;without petiole and rachis;196;;;2;;;;;;;;UNITED KINGDOM;;;; Achillea millefolium;actual measurement;leaf rehydration;175;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;3013;adult;without petiole and rachis;172.2;186.06;150.07;2;;;0;2003-06-12 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349929;national park Müritz;5924056 Achillea pannonica;actual measurement (following LEDA data standards);no leaf rehydration;383.39;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5321;adult;with petiole and rachis;382;487.76;299.47;1;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684186;P 411a/b Jenzig(berg) closely to Jena (Thüringen);5646244 Achillea pannonica;actual measurement (following LEDA data standards);no leaf rehydration;284.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5321;adult;with petiole and rachis;297.17;353.24;264.99;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;684138;P 412 Jenzig(berg) closely to Jena (Thüringen);5646239 Achillea ptarmica;actual measurement;leaf rehydration;213;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4799;adult;without petiole and rachis;213;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Acinos arvensis;actual measurement (following LEDA data standards);no leaf rehydration;227.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24493;adult;with petiole and rachis;229.45;266.67;183.81;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Acinos arvensis;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24493;adult;without petiole and rachis;244;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Acinos arvensis;actual measurement (following LEDA data standards);no leaf rehydration;225.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24493;adult;without petiole and rachis;229.8;270.44;186.21;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Acinos arvensis;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24493;adult;without petiole and rachis;244;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Aconitum lycoctonum subsp. vulparia;actual measurement (following LEDA data standards);no leaf rehydration;141.19;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45330;adult;with petiole and rachis;131.38;161.26;94.64;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;462220;P 382a Zastlertal, Black forest, Baden-Württemberg;5305664 Aconitum lycoctonum subsp. vulparia;actual measurement (following LEDA data standards);no leaf rehydration;139.12;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45330;adult;without petiole and rachis;137.42;166.55;108.84;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;462220;P 382a Zastlertal, Black forest, Baden-Württemberg;5305664 Aconitum napellus;actual measurement (following LEDA data standards);no leaf rehydration;173.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27279;adult;with petiole and rachis;172.31;184.94;161.68;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;462220;P 382a Zastlertal, Black forest, Baden-Württemberg;5305664 Aconitum napellus;actual measurement (following LEDA data standards);no leaf rehydration;175.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27279;adult;without petiole and rachis;174.43;187.93;164.12;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;462220;P 382a Zastlertal, Black forest, Baden-Württemberg;5305664 Acorus calamus;actual measurement (following LEDA data standards);no leaf rehydration;269.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;35825;adult;without petiole and rachis;273.75;316.76;250.12;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Acorus calamus;actual measurement;leaf rehydration;224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35825;adult;without petiole and rachis;224;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Actaea spicata;actual measurement (following LEDA data standards);no leaf rehydration;246.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27324;adult;with petiole and rachis;244.27;277.65;196.36;1;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;684457;P 413a/b Jenzig(berg) closely to Jena (Thüringen);5646509 Actaea spicata;actual measurement (following LEDA data standards);no leaf rehydration;250.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27324;adult;without petiole and rachis;248.09;279.83;198.85;1;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;684457;P 413a/b Jenzig(berg) closely to Jena (Thüringen);5646509 Adenostyles alliariae;actual measurement (following LEDA data standards);no leaf rehydration;113.47;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3188;adult;with petiole and rachis;115.37;144.87;90.21;2;;;10;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426814;P 372 NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;8303722 Adenostyles alliariae;actual measurement (following LEDA data standards);no leaf rehydration;120.96;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3188;adult;without petiole and rachis;124.64;159.25;86.04;2;;;10;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426814;P 372 NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;8303722 Adonis aestivalis;actual measurement (following LEDA data standards);no leaf rehydration;120.2;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27328;adult;with petiole and rachis;120.2;120.2;120.2;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;507089;P 385 weed communities in farmland, Bühleberge (Swabian Alb);5354408 Adonis vernalis;actual measurement (following LEDA data standards);no leaf rehydration;455.61;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;29095;adult;with petiole and rachis;455.61;455.61;455.61;1;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Adonis vernalis;actual measurement (following LEDA data standards);no leaf rehydration;260.07;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;29095;adult;with petiole and rachis;261.98;308.3;218.09;2;;;0;2005-06-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;SWEDEN;;;St. Karlso Sweden; Adoxa moschatellina;actual measurement;leaf rehydration;146;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2407;adult;without petiole and rachis;146;;;2;;;;1996-05-10 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Adoxa moschatellina;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2407;adult;without petiole and rachis;135;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Adoxa moschatellina;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2407;adult;without petiole and rachis;129;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Aegilops geniculata;field experiment;leaf rehydration;254;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;41112;adult;without petiole and rachis;254;;;10;3;3;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Aegilops geniculata;field experiment;leaf rehydration;263;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;41112;adult;without petiole and rachis;263;;;10;7;7;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Aegilops geniculata;field experiment;leaf rehydration;265;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;41112;adult;without petiole and rachis;265;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Aegopodium podagraria;actual measurement;leaf rehydration;280;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2007;adult;without petiole and rachis;280;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton Village; Aegopodium podagraria;actual measurement;leaf rehydration;164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2007;adult;without petiole and rachis;164;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Aegopodium podagraria;actual measurement;leaf rehydration;246;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2007;adult;without petiole and rachis;246;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Aesculus hippocastanum;actual measurement;leaf rehydration;233;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24982;adult;without petiole and rachis;233;;;5;6.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Dinnington; Aesculus hippocastanum;actual measurement;leaf rehydration;270;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24982;adult;without petiole and rachis;270;;;5;5.9;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Aethusa cynapium;actual measurement (following LEDA data standards);no leaf rehydration;172.2;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1502;adult;with petiole and rachis;169.54;175.67;160.74;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;401207;P 358 closely to NSG Badberg, Kaiserstuhl / Baden-Württemberg;5327428 Aethusa cynapium;actual measurement;leaf rehydration;211;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1502;adult;without petiole and rachis;211;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Aethusa cynapium;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1502;adult;without petiole and rachis;188;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Aethusa cynapium;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1502;adult;without petiole and rachis;203;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Agrimonia eupatoria;actual measurement;leaf rehydration;346;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29512;adult;without petiole and rachis;346;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Agrimonia eupatoria;actual measurement;leaf rehydration;333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29512;adult;without petiole and rachis;333;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Agrimonia procera;actual measurement (following LEDA data standards);no leaf rehydration;310.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29916;adult;with petiole and rachis;304.36;352.15;242.16;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;613911;P 433 Elsbachtal b. Hundertmorgenwiese (Harz, Lower Saxony);5720594 Agrimonia procera;actual measurement (following LEDA data standards);no leaf rehydration;316.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29916;adult;without petiole and rachis;308.6;355.85;238.82;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;613911;P 433 Elsbachtal b. Hundertmorgenwiese (Harz, Lower Saxony);5720594 Agrimonia procera;actual measurement;leaf rehydration;313;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29916;adult;without petiole and rachis;313;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Agrostemma githago;laboratory/greenhouse/garden experiment;no leaf rehydration;204.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16318;adult;with petiole and rachis;209.19;234.92;183;2;;;0;2004-06-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Agrostis canina;actual measurement (following LEDA data standards);no leaf rehydration;290.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;40532;adult;without petiole and rachis;292.15;326.67;255.95;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Agrostis canina;actual measurement;leaf rehydration;273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40532;adult;without petiole and rachis;273;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Agrostis capillaris;actual measurement;leaf rehydration;285.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;41392;adult;without petiole and rachis;281.66;312.16;240.85;2;;;0;2003-06-04 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E1 - Dry grasslands;GERMANY;33;350137;national park Müritz;5924294 Agrostis capillaris;actual measurement;leaf rehydration;266;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41392;adult;without petiole and rachis;266;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Agrostis capillaris;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41392;adult;without petiole and rachis;227;;;2;;;;;;;;UNITED KINGDOM;;;; Agrostis capillaris;actual measurement;leaf rehydration;260;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41392;adult;without petiole and rachis;260;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Agrostis curtisii;actual measurement;leaf rehydration;344;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40483;adult;without petiole and rachis;344;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Devon, UK; Agrostis gigantea;actual measurement (following LEDA data standards);no leaf rehydration;241.17;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40852;adult;with petiole and rachis;243.64;263.79;226.53;2;;;0;2004-09-08 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-13 Munich disused railway network, Bavaria; Agrostis mertensii;actual measurement (following LEDA data standards);no leaf rehydration;312.5;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;40856;adult;with petiole and rachis;323.44;438.9;276;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 2-3 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Agrostis stolonifera;actual measurement;leaf rehydration;284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40861;adult;without petiole and rachis;284;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Dinnington; Agrostis stolonifera;actual measurement;leaf rehydration;327.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;40861;adult;without petiole and rachis;327.13;365.07;292.88;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Agrostis stolonifera;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40861;adult;without petiole and rachis;235;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Agrostis stolonifera;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40861;adult;without petiole and rachis;247;;;1;;;;1997-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maldon, Essex; Agrostis vinealis;actual measurement (following LEDA data standards);no leaf rehydration;326.31;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41896;adult;with petiole and rachis;346.73;514.34;272.99;4;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;;;P 476 NSG Mühlengrund, Emsland; Agrostis vinealis;actual measurement;leaf rehydration;341;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41896;adult;without petiole and rachis;341;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Aira caryophyllea;actual measurement;leaf rehydration;338;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40866;adult;without petiole and rachis;338;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Aira caryophyllea;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40866;adult;without petiole and rachis;254;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Aira caryophyllea;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40866;adult;without petiole and rachis;247;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Aira praecox;actual measurement;leaf rehydration;308;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41629;adult;without petiole and rachis;308;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Aira praecox;actual measurement;leaf rehydration;285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41629;adult;without petiole and rachis;285;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Aira praecox;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41629;adult;without petiole and rachis;238;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Aira praecox;laboratory/greenhouse/garden experiment;no leaf rehydration;250.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41629;adult;with petiole and rachis;250.83;276.2;204.64;2;;;0;2004-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ajuga chamaepitys;actual measurement (following LEDA data standards);no leaf rehydration;157.93;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24497;adult;with petiole and rachis;162.49;184.49;151.76;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;H5.3 - Clay. silt. sand and gravel habitats with very sparse or no vegetation;GERMANY;32;392758;P 248 Grißheim, Trockenwald/Oberrhein (upper Rhine);5303335 Ajuga genevensis;actual measurement (following LEDA data standards);no leaf rehydration;145.56;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24142;adult;with petiole and rachis;146.93;163.7;127.95;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-3 disused rail network Munich city (Bavaria); Ajuga pyramidalis;actual measurement (following LEDA data standards);no leaf rehydration;199.55;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24144;adult;with petiole and rachis;195.15;220.77;140.67;2;;;0;2005-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;SWEDEN;;;Sweden, Ronneby; Ajuga reptans;actual measurement;leaf rehydration;153;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25159;adult;without petiole and rachis;153;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Alcea rosea;laboratory/greenhouse/garden experiment;no leaf rehydration;202.64;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25760;adult;with petiole and rachis;202.38;204.5;200;2;;;10;2005-07-11 00:00:00.0;Preaggregated data obtained from single record. this is Alcea rosea var. alba;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Alchemilla alpina;actual measurement (following LEDA data standards);no leaf rehydration;353.6;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;29517;adult;with petiole and rachis;346.9;379.7;302.2;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Alchemilla alpina;actual measurement;leaf rehydration;253;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29517;adult;without petiole and rachis;253;;;2;;;;1996-08-02 00:00:00.0;;;;UNITED KINGDOM;;;Cairngorm mountains; Alchemilla alpina;actual measurement (following LEDA data standards);no leaf rehydration;313.4;12;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;29517;adult;with petiole and rachis;319.16;373.5;275.9;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Alchemilla filicaulis;actual measurement;leaf rehydration;284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30404;adult;without petiole and rachis;284;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Buxton Country Park; Alchemilla glabra;actual measurement (following LEDA data standards);no leaf rehydration;246;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;30979;adult;with petiole and rachis;285.57;393.2;221.4;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Alchemilla glabra;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30979;adult;without petiole and rachis;255;;;2;;;;;;;;UNITED KINGDOM;;;; Alchemilla glabra;actual measurement;leaf rehydration;264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30979;adult;without petiole and rachis;264;;;2;;;;;;;;UNITED KINGDOM;;;; Alchemilla glabra;actual measurement;leaf rehydration;264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30979;adult;without petiole and rachis;264;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Alchemilla glabra;actual measurement (following LEDA data standards);no leaf rehydration;187.27;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30979;adult;with petiole and rachis;187.27;195.97;178.57;2;;;0;2004-08-25 00:00:00.0;Preaggregated data obtained from single record. ;;E2.3 - Mountain hay meadows;GERMANY;32;605129;P 451 NSG Jordanshöhe/Bergwiesen and P 449a Gr. Lutter (near Bad Lauterberg), Harz (Lower Saxony);5731360 Alchemilla glabra;actual measurement (following LEDA data standards);no leaf rehydration;244.6;13;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;30979;adult;with petiole and rachis;262.75;400;206.7;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Alchemilla glaucescens;actual measurement (following LEDA data standards);no leaf rehydration;310.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29479;adult;without petiole and rachis;316.34;356.01;298.11;1;;;0;2003-07-23 00:00:00.0;Preaggregated data obtained from single record. determination of Alchemilla-aggregate is sometimes difficult;;E2 - Mesic grasslands;SWEDEN;33;534999.9944;P3 Sweden, Blekinge;6251346.461 Alchemilla glaucescens;actual measurement (following LEDA data standards);no leaf rehydration;222.61;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29479;adult;with petiole and rachis;222.33;254.36;195.09;1;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E2.3 - Mountain hay meadows;GERMANY;32;615089;P 430 FFH Bergwiesen Hohegeiß (Harz, Lower Saxony) and P 450 NSG Jordanshöhe/Bergwiesen, Harz (Lower Saxony);5726707 Alchemilla glaucescens;actual measurement (following LEDA data standards);no leaf rehydration;279.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29479;adult;with petiole and rachis;286.06;324.43;251.55;1;;;0;2003-07-23 00:00:00.0;Preaggregated data obtained from single record. determination of Alchemilla-aggregate is sometimes difficult;;E2 - Mesic grasslands;SWEDEN;33;534999.9944;P3 Sweden, Blekinge;6251346.461 Alchemilla mollis;actual measurement (following LEDA data standards);no leaf rehydration;235.12;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30970;adult;with petiole and rachis;235.12;245.35;224.88;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E2.2 - Coarse permanent grassland and tall herbs. usually mown but little grazed;GERMANY;32;614236;P 424 FFH Wolfsbachtal (Harz, Lower Saxony);5725252 Alchemilla monticola;actual measurement (following LEDA data standards);no leaf rehydration;227.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29465;adult;with petiole and rachis;230.9;292.37;201.57;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;613911;P 433 Elsbachtal b. Hundertmorgenwiese and P 451 NSG Jordanshöhe/Bergwiesen, Harz (Lower Saxony);5720594 Alchemilla propinqua;actual measurement (following LEDA data standards);no leaf rehydration;248.69;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30381;adult;with petiole and rachis;249.38;357.49;164.63;2;;;0;2004-08-25 00:00:00.0;Preaggregated data obtained from single record. ;;E2.3 - Mountain hay meadows;GERMANY;32;606600;P 451 NSG Jordanshöhe/Bergwiesen, P 453 Hasselkopf bei Braunlage and P 424 FFH Wolfsbachtal (Harz, Lower Saxony);5730895 Alchemilla subcrenata;actual measurement (following LEDA data standards);no leaf rehydration;239.89;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;30359;adult;with petiole and rachis;231.46;259.7;147.23;1;;;;2005-07-06 00:00:00.0;Preaggregated data obtained from single record. ;;G1.1 - Riparian [Salix]. [Alnus] and [Betula] woodland;NORWAY;32;572830;Trondheim 01;7033302 Alchemilla subcrenata;actual measurement (following LEDA data standards);no leaf rehydration;217.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30359;adult;with petiole and rachis;213.89;257.31;156.17;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;613621;P 434 Elsbachtal b. Zorge, P 451 NSG Jordanshöhe/Bergwiesen and P 453 Hasselkopf bei Braunlage, Harz (Lower Saxony) ;5720827 Alchemilla subglobosa;actual measurement (following LEDA data standards);no leaf rehydration;241.98;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29864;adult;with petiole and rachis;245.32;273.58;220.4;2;;;0;2004-08-25 00:00:00.0;Preaggregated data obtained from single record. ;;E2.3 - Mountain hay meadows;GERMANY;32;611745;P 453 Hasselkopf near Braunlage, Harz (Lower Saxony);5729944 Alchemilla vulgaris;actual measurement;leaf rehydration;350;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;60849;adult;without petiole and rachis;350;;;2;;;;;;;;UNITED KINGDOM;;;; Alchemilla vulgaris;actual measurement;leaf rehydration;335;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;60849;adult;without petiole and rachis;335;;;2;;;;;;;;UNITED KINGDOM;;;; Alchemilla xanthochlora;actual measurement (following LEDA data standards);no leaf rehydration;173.39;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30366;adult;with petiole and rachis;187.07;303.59;153.7;2;;;0;2004-05-10 00:00:00.0;Preaggregated data obtained from single record. ;;E2.2 - Coarse permanent grassland and tall herbs. usually mown but little grazed;GERMANY;32;408650;P 434 Elsbachtal b. Zorge (Harz, Lower Saxony) and P449a Gr. Lutter (near Bad Lauterberg), Harz (Lower Saxony);5658997 Alchemilla xanthochlora;actual measurement;leaf rehydration;251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30366;adult;without petiole and rachis;251;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;ViaGellia; Alisma lanceolatum;actual measurement (following LEDA data standards);no leaf rehydration;79.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;35630;adult;without petiole and rachis;78.32;89.16;65.77;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Alisma lanceolatum;actual measurement (following LEDA data standards);no leaf rehydration;121.06;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35630;adult;with petiole and rachis;119.45;126.2;111.09;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;;;P 302 Vehgast (Havel), Brandenburg; Alisma lanceolatum;actual measurement (following LEDA data standards);no leaf rehydration;130.63;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35630;adult;with petiole and rachis;130.63;130.63;130.63;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;;P 297 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Alisma lanceolatum;actual measurement (following LEDA data standards);no leaf rehydration;121.74;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35630;adult;with petiole and rachis;121.74;121.74;121.74;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;;P 297 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Alisma lanceolatum;actual measurement (following LEDA data standards);no leaf rehydration;138.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35630;adult;without petiole and rachis;134.88;141.29;125.01;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;;;P 302 Vehgast (Havel), Brandenburg; Alisma plantago-aquatica;actual measurement (following LEDA data standards);no leaf rehydration;119.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;35609;adult;without petiole and rachis;119.65;130.21;109;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Alisma plantago-aquatica;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35609;adult;without petiole and rachis;130;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr, Doncaster; Alisma plantago-aquatica;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35609;adult;without petiole and rachis;156;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Alliaria petiolata;actual measurement;leaf rehydration;173;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13080;adult;without petiole and rachis;173;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarrry; Alliaria petiolata;actual measurement;leaf rehydration;169;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13080;adult;without petiole and rachis;169;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Alliaria petiolata;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13080;adult;without petiole and rachis;142;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Allium carinatum;actual measurement (following LEDA data standards);no leaf rehydration;111.11;15;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;39360;adult;with petiole and rachis;111.81;151.2;93.3;1;;;0;2005-07-06 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Beetgum; Allium oleraceum;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38816;adult;without petiole and rachis;150;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Allium paradoxum;actual measurement (following LEDA data standards);no leaf rehydration;48.99;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38827;adult;with petiole and rachis;49.96;54.22;46.67;1;;;0;2004-05-06 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;GERMANY;32;446903;P 218 Oldenburg, private garden;5893978 Allium schoenoprasum;laboratory/greenhouse/garden experiment;no leaf rehydration;168.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39221;adult;with petiole and rachis;172.2;210.95;149.96;1;;;0;2005-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Allium schoenoprasum;actual measurement (following LEDA data standards);no leaf rehydration;172.68;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39221;adult;with petiole and rachis;172.68;178.89;166.47;1;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;494600;P 518 NSG Radolfzeller Aachried, Lake of Constance, Baden-W?emberg;5286922 Allium scorodoprasum;actual measurement (following LEDA data standards);no leaf rehydration;207.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39339;adult;with petiole and rachis;207.32;218.34;200.86;1;;;0;2003-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;SWEDEN;33;534337.2596;P1 Sweden, Blekinge;6251697.32 Allium senescens;actual measurement (following LEDA data standards);no leaf rehydration;145.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39230;adult;with petiole and rachis;146.03;160.43;134.98;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flachsbühl closely to Trochtelfingen, Schwabian Alb;5352469 Allium sphaerocephalon;actual measurement (following LEDA data standards);no leaf rehydration;134.51;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39232;adult;with petiole and rachis;138.31;191.04;109.94;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Allium ursinum;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39243;adult;without petiole and rachis;137;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Allium ursinum;actual measurement;leaf rehydration;88;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39243;adult;without petiole and rachis;88;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Allium ursinum;actual measurement;leaf rehydration;118;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39243;adult;without petiole and rachis;118;;;2;;;;1996-05-10 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Allium vineale;actual measurement;leaf rehydration;179;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39246;adult;without petiole and rachis;179;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Allium vineale;actual measurement;leaf rehydration;162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39246;adult;without petiole and rachis;162;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Alnus glutinosa;actual measurement;leaf rehydration;239;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11694;adult;without petiole and rachis;239;;;5;10.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Alnus glutinosa;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11694;adult;without petiole and rachis;237;;;5;8.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Alnus glutinosa;actual measurement;leaf rehydration;253;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11694;adult;without petiole and rachis;253;;;5;6.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Alnus glutinosa;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11694;adult;without petiole and rachis;263;;;5;7.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Alnus incana;actual measurement (following LEDA data standards);no leaf rehydration;213.84;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;11695;adult;with petiole and rachis;221.28;284.57;178.77;1;;;;2005-06-10 00:00:00.0;Preaggregated data obtained from single record. ;;G1.1 - Riparian [Salix]. [Alnus] and [Betula] woodland;NORWAY;32;572830;Trondheim 02;7033302 Alnus viridis;actual measurement (following LEDA data standards);no leaf rehydration;296.43;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11702;adult;without petiole and rachis;292.81;375.59;220.26;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;F2.3 - Subalpine deciduous scrub;GERMANY;32;426823;P 368a Höllental, Hirschsprung, Black forest;5309802 Alnus viridis;actual measurement (following LEDA data standards);no leaf rehydration;295.23;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11702;adult;with petiole and rachis;290.53;372.29;217.81;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;F2.3 - Subalpine deciduous scrub;GERMANY;32;426823;P 368a Höllental, Hirschsprung, Black forest;5309802 Alopecurus aequalis;actual measurement (following LEDA data standards);no leaf rehydration;177.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;40867;adult;without petiole and rachis;173.84;204.05;150.02;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Alopecurus geniculatus;actual measurement (following LEDA data standards);no leaf rehydration;230.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;41635;adult;without petiole and rachis;230.93;238.08;221.66;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Alopecurus geniculatus;actual measurement;leaf rehydration;193;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41635;adult;without petiole and rachis;193;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Alopecurus myosuroides;actual measurement;leaf rehydration;272;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41138;adult;without petiole and rachis;272;;;2;;;;1996-07-16 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Alopecurus pratensis;actual measurement;leaf rehydration;312;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40391;adult;without petiole and rachis;312;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Doe Lea; Alopecurus pratensis;actual measurement;leaf rehydration;211;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40391;adult;without petiole and rachis;211;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Alopecurus pratensis;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40391;adult;without petiole and rachis;255;;;2;;;;;;;;UNITED KINGDOM;;;; Alopecurus pratensis;actual measurement (following LEDA data standards);no leaf rehydration;454.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;40391;adult;without petiole and rachis;455.92;491.79;424.43;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Althaea officinalis;laboratory/greenhouse/garden experiment;no leaf rehydration;204.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25782;adult;with petiole and rachis;205.29;259.11;175.21;2;;;0;2004-10-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Althaea officinalis;laboratory/greenhouse/garden experiment;no leaf rehydration;205.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25782;adult;without petiole and rachis;207.23;262.78;176.68;2;;;0;2004-10-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Alyssum alyssoides;actual measurement (following LEDA data standards);no leaf rehydration;225.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13424;adult;with petiole and rachis;229.5;268.93;204.26;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Alyssum alyssoides;laboratory/greenhouse/garden experiment;no leaf rehydration;188.94;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13424;adult;with petiole and rachis;181.42;195.85;162.36;2;;;0;2004-05-18 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;32;;P 210 University of Oldenburg, Botanical Garden; Alyssum montanum;actual measurement (following LEDA data standards);no leaf rehydration;241.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14366;adult;with petiole and rachis;248.23;304.41;202.46;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Amaranthus caudatus;laboratory/greenhouse/garden experiment;no leaf rehydration;174.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;894;adult;with petiole and rachis;176.35;206.79;156.24;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Amaranthus lividus;actual measurement (following LEDA data standards);no leaf rehydration;86.35;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;924;adult;with petiole and rachis;80.66;87.05;68.57;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ssp. emarginatus;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Amaranthus lividus;actual measurement (following LEDA data standards);no leaf rehydration;89.41;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;924;adult;without petiole and rachis;84.15;93.17;69.88;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ssp. emarginatus;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Amaranthus retroflexus;actual measurement (following LEDA data standards);no leaf rehydration;213.49;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;931;adult;with petiole and rachis;196.05;283.77;103.56;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;;;P 419 Großheringen, Thüringen; Amaranthus retroflexus;actual measurement;leaf rehydration;226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;931;adult;without petiole and rachis;226;;;1;;;;1997-09-17 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Amaranthus retroflexus;actual measurement (following LEDA data standards);no leaf rehydration;236.29;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;931;adult;without petiole and rachis;232.94;296.64;142.63;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;;;P 419 Großheringen, Thüringen; Amaranthus retroflexus;laboratory/greenhouse/garden experiment;no leaf rehydration;215.43;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;931;adult;with petiole and rachis;212.38;245.86;183.86;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ambrosia artemisiifolia;laboratory/greenhouse/garden experiment;no leaf rehydration;152.52;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4198;adult;with petiole and rachis;150.08;157.85;137.6;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ambrosia coronopifolia;actual measurement (following LEDA data standards);no leaf rehydration;250.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5955;adult;with petiole and rachis;248.6;261.24;237.39;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449145.35;P7 NSG Krusenbusch (Oldenburg);5883358.715 Ambrosia trifida;laboratory/greenhouse/garden experiment;no leaf rehydration;188.76;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6319;adult;with petiole and rachis;184.68;208.16;163.78;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ambrosia trifida;laboratory/greenhouse/garden experiment;no leaf rehydration;192.14;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6319;adult;without petiole and rachis;189.99;212.4;165.74;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Amelanchier lamarckii;actual measurement (following LEDA data standards);no leaf rehydration;346.35;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;50025;adult;with petiole and rachis;346.5;379.88;320.83;2;;;0;2005-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;NETHERLANDS;;;BC Haren; Ammi majus;laboratory/greenhouse/garden experiment;no leaf rehydration;134.83;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1508;adult;with petiole and rachis;134.83;134.83;134.83;1;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ecotonal (transient) leaves;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ammi majus;laboratory/greenhouse/garden experiment;no leaf rehydration;152.29;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1508;adult;with petiole and rachis;152.29;152.29;152.29;1;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. spataceous bracts;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ammi majus;laboratory/greenhouse/garden experiment;no leaf rehydration;138.71;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1508;adult;with petiole and rachis;141.94;152.29;134.83;1;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ammophila arenaria;actual measurement;leaf rehydration;287;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40398;adult;without petiole and rachis;287;;;2;;;;1996-08-24 00:00:00.0;;;;UNITED KINGDOM;;;Alnmouth; Amsinckia menziesii;actual measurement;leaf rehydration;119;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12586;adult;without petiole and rachis;119;;;1;;;;1997-10-02 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Amsinckia menziesii;actual measurement;leaf rehydration;149;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12586;adult;without petiole and rachis;149;;;1;;;;1997-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Anacamptis pyramidalis;actual measurement (following LEDA data standards);leaf rehydration;112.25;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39443;adult;without petiole and rachis;119.6;162.43;77.4;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Anagallis arvensis;actual measurement;leaf rehydration;125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28783;adult;without petiole and rachis;125;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Anagallis arvensis;field experiment;leaf rehydration;172;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;28783;adult;without petiole and rachis;172;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Anagallis arvensis;field experiment;leaf rehydration;129;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;28783;adult;without petiole and rachis;129;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Anagallis foemina;laboratory/greenhouse/garden experiment;no leaf rehydration;177.32;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29031;adult;with petiole and rachis;171.72;219.41;131.88;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anagallis minima;actual measurement (following LEDA data standards);no leaf rehydration;140.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28953;adult;with petiole and rachis;141.37;172.45;116.26;10;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. ;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;;;P 475 Freren (Landkreis Osnabrück); Anagallis minima;actual measurement (following LEDA data standards);no leaf rehydration;104.06;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28953;adult;with petiole and rachis;106.01;125;90.91;2;;;0;2004-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Anagallis tenella;actual measurement;leaf rehydration;120;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28935;adult;without petiole and rachis;120;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Anaphalis margaritacea;actual measurement;leaf rehydration;294;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5740;adult;without petiole and rachis;294;;;2;;;;1996-09-30 00:00:00.0;;;;UNITED KINGDOM;;;Sheldon, Derbys; Anarrhinum bellidifolium;laboratory/greenhouse/garden experiment;no leaf rehydration;228.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33247;adult;with petiole and rachis;224.73;254.72;194.98;2;;;0;2005-06-20 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anarrhinum bellidifolium;laboratory/greenhouse/garden experiment;no leaf rehydration;166.43;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33247;adult;with petiole and rachis;174.01;251.65;136.71;2;;;0;2005-06-20 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anchusa arvensis;actual measurement;leaf rehydration;124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12189;adult;without petiole and rachis;124;;;2;;;;1996-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Anchusa arvensis;actual measurement;leaf rehydration;109;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12189;adult;without petiole and rachis;109;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Anchusa azurea;laboratory/greenhouse/garden experiment;no leaf rehydration;123.36;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12594;adult;with petiole and rachis;123.36;123.36;123.36;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anchusa officinalis;actual measurement (following LEDA data standards);no leaf rehydration;88.5;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12527;adult;with petiole and rachis;86.06;108.26;65.49;2;;;0;2005-06-12 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;SWEDEN;;;Eke, Gotland Sweden; Anchusa officinalis;actual measurement (following LEDA data standards);no leaf rehydration;142.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12527;adult;with petiole and rachis;138.92;154.91;118.75;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;;;P 462 Gabower Hänge FFH, Biosphärenreservat Schorfheide-Chorin (Brandenburg); Andromeda polifolia;actual measurement (following LEDA data standards);no leaf rehydration;414.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19573;adult;with petiole and rachis;415.63;465.15;392.19;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;455279.8952;P7 NSG Rockenmoor / Landkreis Wesermarsch;5895592.819 Androsace lactea;actual measurement (following LEDA data standards);no leaf rehydration;163.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29061;adult;with petiole and rachis;164.93;194.52;141.59;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 5, Schwäbische Alb;5379100 Androsace maxima;laboratory/greenhouse/garden experiment;no leaf rehydration;137.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28785;adult;with petiole and rachis;139.33;157.64;124.69;2;;;0;2004-07-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Androsace septentrionalis;laboratory/greenhouse/garden experiment;no leaf rehydration;178.62;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28905;adult;with petiole and rachis;173.56;197.46;136.89;3;;;0;2005-04-04 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anemone nemorosa;actual measurement;leaf rehydration;226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27355;adult;without petiole and rachis;226;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Anemone nemorosa;actual measurement;leaf rehydration;184;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27355;adult;without petiole and rachis;184;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Anemone ranunculoides;laboratory/greenhouse/garden experiment;no leaf rehydration;186.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27359;adult;with petiole and rachis;185.84;193.85;172.16;2;;;0;2004-04-08 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Anemone ranunculoides;laboratory/greenhouse/garden experiment;no leaf rehydration;182.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27359;adult;without petiole and rachis;182.29;196.18;163.18;2;;;0;2004-04-08 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Anemone sylvestris;actual measurement (following LEDA data standards);no leaf rehydration;233.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27363;adult;with petiole and rachis;236.58;250.5;222.04;2;;;0;2004-07-25 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;MK-5 Münzesheim i. Kraichgau, Baden-Württemberg; Anemone sylvestris;actual measurement (following LEDA data standards);no leaf rehydration;240.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27363;adult;without petiole and rachis;243.1;272.84;221.26;2;;;0;2004-07-25 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;MK-5 Münzesheim i. Kraichgau, Baden-Württemberg; Anethum graveolens;laboratory/greenhouse/garden experiment;no leaf rehydration;153.56;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1512;adult;with petiole and rachis;163.99;209.72;144.28;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anethum graveolens;laboratory/greenhouse/garden experiment;no leaf rehydration;158.75;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1512;adult;without petiole and rachis;168.99;208.82;146.81;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Angelica archangelica;actual measurement (following LEDA data standards);no leaf rehydration;253.83;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);1514;adult;without petiole and rachis;253.98;280.49;227.76;1;;;;2005-08-07 00:00:00.0;Preaggregated data obtained from single record. 3. order leaflet;;E5 - Woodland fringes and clearings and tall forb habitats;NORWAY;32;496467;Surnadal 05;6984796 Angelica archangelica;actual measurement (following LEDA data standards);no leaf rehydration;148.91;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1514;adult;with petiole and rachis;148.91;151.41;146.41;2;;;10;2005-06-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;607341;P 535 wet grassland beside river Trave near L?k, Schleswig-Holstein;5968244 Angelica archangelica;actual measurement (following LEDA data standards);no leaf rehydration;273.68;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);1514;adult;without petiole and rachis;264.69;274.04;246.36;1;;;;2005-08-07 00:00:00.0;Preaggregated data obtained from single record. 2. order leaflet;;E5 - Woodland fringes and clearings and tall forb habitats;NORWAY;32;496467;Surnadal 05;6984796 Angelica sylvestris;actual measurement;leaf rehydration;240;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1519;adult;without petiole and rachis;240;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Angelica sylvestris;actual measurement;leaf rehydration;200;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1519;adult;without petiole and rachis;200;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Antennaria carpatica;actual measurement;leaf rehydration;308;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4017;adult;without petiole and rachis;308;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Buxton Country Park; Antennaria dioica;actual measurement;leaf rehydration;249;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2770;adult;without petiole and rachis;249;;;1;;;;1997-07-03 00:00:00.0;;;;IRELAND;;;Burren, Co Clare; Anthemis arvensis;laboratory/greenhouse/garden experiment;no leaf rehydration;106.98;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3024;adult;with petiole and rachis;112.91;141.97;91.09;2;;;0;2004-06-30 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anthemis arvensis;actual measurement;leaf rehydration;173;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3024;adult;without petiole and rachis;173;;;1;;;;1997-06-09 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster Golf Course; Anthemis cotula;actual measurement;leaf rehydration;107;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2778;adult;without petiole and rachis;107;;;2;;;;1996-07-16 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Anthemis ruthenica;actual measurement (following LEDA data standards);no leaf rehydration;137.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3848;adult;with petiole and rachis;141.78;177.6;127.76;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1 - Dry grasslands;GERMANY;33;312023;P 307 NSG Untere Havel Nord, Brandenburg;5846225 Anthemis tinctoria;actual measurement (following LEDA data standards);no leaf rehydration;176.56;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2787;adult;with petiole and rachis;178.79;197.72;160.45;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Anthemis tinctoria;actual measurement (following LEDA data standards);no leaf rehydration;226.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2787;adult;with petiole and rachis;227.39;260.49;190.14;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;I2.3 - Weed communities of recently abandoned garden areas;GERMANY;;;P 406 east of Hemsbach/Odenwald (Bergstrasse), Baden-Württemberg; Anthemis tinctoria;actual measurement;leaf rehydration;246;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2787;adult;without petiole and rachis;246;;;1;;;;1997-06-06 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Anthericum liliago;actual measurement (following LEDA data standards);no leaf rehydration;162.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38767;adult;with petiole and rachis;162.49;175.63;151.95;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Anthericum ramosum;actual measurement (following LEDA data standards);leaf rehydration;161.45;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38246;adult;with petiole and rachis;163.02;176.27;151.37;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Anthoxanthum alpinum;actual measurement (following LEDA data standards);no leaf rehydration;298.7;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;41906;adult;with petiole and rachis;305.02;408.3;228.9;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Anthoxanthum aristatum;laboratory/greenhouse/garden experiment;no leaf rehydration;228.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40551;adult;with petiole and rachis;227.17;261.59;176.33;2;;;0;2004-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anthoxanthum odoratum;actual measurement;leaf rehydration;258.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;41907;adult;without petiole and rachis;273.17;464.43;209.23;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Anthriscus caucalis;laboratory/greenhouse/garden experiment;no leaf rehydration;171.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1975;adult;without petiole and rachis;166.63;180.62;149.73;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;32;;P 210 University of Oldenburg, Botanical Garden; Anthriscus caucalis;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1975;adult;without petiole and rachis;150;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Anthriscus caucalis;laboratory/greenhouse/garden experiment;no leaf rehydration;144.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1975;adult;with petiole and rachis;146.68;165.39;130.03;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;32;;P 210 University of Oldenburg, Botanical Garden; Anthriscus caucalis;actual measurement;leaf rehydration;264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1975;adult;without petiole and rachis;264;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Anthriscus caucalis;actual measurement;leaf rehydration;239;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1975;adult;without petiole and rachis;239;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Anthriscus cerefolium;laboratory/greenhouse/garden experiment;no leaf rehydration;167.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1526;adult;with petiole and rachis;168.15;201.76;130.82;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Anthriscus nitida;actual measurement (following LEDA data standards);no leaf rehydration;201.38;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1447;adult;with petiole and rachis;207.1;269.93;154.6;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;518254;P 386a Schwabian Alb (near Trochtelfingen), ND Flachsbühl;5352515 Anthriscus nitida;actual measurement (following LEDA data standards);no leaf rehydration;214.35;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1447;adult;without petiole and rachis;224.43;292.05;185.19;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;518254;P 386a Schwabian Alb (near Trochtelfingen), ND Flachsbühl;5352515 Anthriscus sylvestris;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1916;adult;without petiole and rachis;214;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Anthriscus sylvestris;actual measurement;leaf rehydration;200;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1916;adult;without petiole and rachis;200;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Anthyllis vulneraria;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21660;adult;without petiole and rachis;170;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Antirrhinum majus;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33261;adult;without petiole and rachis;165;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton Priory; Apera interrupta;laboratory/greenhouse/garden experiment;no leaf rehydration;246.84;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41910;adult;with petiole and rachis;235.77;264.08;182.47;2;;;0;2004-10-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Apera interrupta;actual measurement;leaf rehydration;314;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41910;adult;without petiole and rachis;314;;;1;;;;1997-09-01 00:00:00.0;;;;UNITED KINGDOM;;;Mansfield Woodhouse; Apera spica-venti;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40884;adult;without petiole and rachis;252;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Aphanes arvensis;actual measurement;leaf rehydration;264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29391;adult;without petiole and rachis;264;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Aphanes inexspectata;laboratory/greenhouse/garden experiment;no leaf rehydration;178.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;50026;adult;with petiole and rachis;184.44;225.33;151.08;2;;;0;2004-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Aphanes inexspectata;actual measurement;leaf rehydration;250;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;50026;adult;without petiole and rachis;250;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Aphanes inexspectata;actual measurement;leaf rehydration;209;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;50026;adult;without petiole and rachis;209;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Apium graveolens;actual measurement;leaf rehydration;167;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1456;adult;without petiole and rachis;167;;;1;;;;1997-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Apium inundatum;actual measurement (following LEDA data standards);no leaf rehydration;103.4;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1920;adult;with petiole and rachis;102;112.12;92.15;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. water form;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;436870;P 318 mesotrophic pond, Landkreis Cloppenburg;5876414 Apium inundatum;actual measurement (following LEDA data standards);no leaf rehydration;155.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1920;adult;without petiole and rachis;153.61;182.62;125.46;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. land form;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;32;436870;P 318 mesotrophic pond, Landkreis Cloppenburg;5876414 Apium inundatum;actual measurement (following LEDA data standards);no leaf rehydration;151.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1920;adult;with petiole and rachis;148.9;172.72;127.22;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. land form;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;;;P 318 mesotrophic pond, Landkreis Cloppenburg; Apium inundatum;actual measurement (following LEDA data standards);no leaf rehydration;112.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1920;adult;with petiole and rachis;111.84;124.73;98.02;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. water form;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;436870;P 318 mesotrophic pond, Landkreis Cloppenburg;5876414 Apium nodiflorum;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1922;adult;without petiole and rachis;137;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Apium nodiflorum;actual measurement;leaf rehydration;83;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1922;adult;without petiole and rachis;83;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Aquilegia vulgaris;actual measurement;leaf rehydration;295;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27156;adult;without petiole and rachis;295;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Arabidopsis suecica;laboratory/greenhouse/garden experiment;no leaf rehydration;146.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13762;adult;with petiole and rachis;151.02;206.84;108.56;2;;;0;2004-06-30 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Arabidopsis thaliana;actual measurement;leaf rehydration;92;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12652;adult;without petiole and rachis;92;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Arabidopsis thaliana;actual measurement;leaf rehydration;115;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12652;adult;without petiole and rachis;115;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Arabis glabra;laboratory/greenhouse/garden experiment;no leaf rehydration;173.1;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13349;adult;with petiole and rachis;173.32;183.56;161.58;2;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Arabis glabra;actual measurement (following LEDA data standards);no leaf rehydration;176.28;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13349;adult;with petiole and rachis;175.37;186.32;161.88;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;389290;P 504 NSG Kapellengrien, upper Rhine, Bad Bellingen - Rheinweiler (Baden-W?emberg);5284787 Arabis hirsuta;actual measurement;leaf rehydration;166;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13002;adult;without petiole and rachis;166;;;2;;;;1996-06-25 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Arabis sagittata;actual measurement (following LEDA data standards);no leaf rehydration;139.98;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14273;adult;with petiole and rachis;137.29;150.17;111.02;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;unknown from literature;GERMANY;32;395157;P 241 NSG Burkheim;5328511 Arabis sagittata;actual measurement (following LEDA data standards);no leaf rehydration;147.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14273;adult;with petiole and rachis;144.89;163.71;111.02;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. sample consists of 5 rosette leaves and 5 stem leaves (morphologically very similar);;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Arbutus unedo;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19577;adult;without petiole and rachis;252;;;5;4.3;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Arbutus unedo;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19577;adult;without petiole and rachis;263;;;5;8.3;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Arctium lappa;laboratory/greenhouse/garden experiment;no leaf rehydration;203.14;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6084;adult;with petiole and rachis;201.27;212.54;188.12;2;;;10;2005-06-24 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Arctium lappa;actual measurement (following LEDA data standards);no leaf rehydration;184.9;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6084;adult;with petiole and rachis;178.66;225.3;122.19;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;807405;Berlin, sampled by Ute Schadek;5831754 Arctium lappa;actual measurement (following LEDA data standards);no leaf rehydration;198.05;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6084;adult;without petiole and rachis;196.88;260.54;140.81;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;807405;Berlin, sampled by Ute Schadek;5831754 Arctium minus;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4154;adult;without petiole and rachis;214;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Treeton, S Yks; Arctium minus;actual measurement;leaf rehydration;131;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4154;adult;without petiole and rachis;131;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Arctium minus;actual measurement;leaf rehydration;187;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4154;adult;without petiole and rachis;187;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Arctostaphylos alpinus;actual measurement (following LEDA data standards);no leaf rehydration;272.38;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;19579;adult;with petiole and rachis;260.53;337.59;200.43;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;609331;Hessdalen 01;6951972 Arctostaphylos uva-ursi;actual measurement;leaf rehydration;371;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19582;adult;without petiole and rachis;371;;;2;;;;1996-08-02 00:00:00.0;;;;UNITED KINGDOM;;;Loch Einich, Cairngorms; Arenaria serpyllifolia;actual measurement (following LEDA data standards);no leaf rehydration;268.72;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16833;adult;with petiole and rachis;273.47;391.3;206.11;2;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog, far east; Arenaria serpyllifolia;actual measurement;leaf rehydration;167;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16833;adult;without petiole and rachis;167;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Arenaria serpyllifolia;actual measurement;leaf rehydration;213;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16833;adult;without petiole and rachis;213;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Arenaria serpyllifolia;actual measurement;leaf rehydration;228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16833;adult;without petiole and rachis;228;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Arenaria serpyllifolia s. leptoclados;actual measurement (following LEDA data standards);no leaf rehydration;252.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44912;adult;with petiole and rachis;252.87;305.13;198.69;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-4 disused rail network Munich city (Bavaria); Aristolochia clematitis;actual measurement (following LEDA data standards);no leaf rehydration;267.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2411;adult;with petiole and rachis;265.76;281.14;245.51;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;J2 - Low density buildings;GERMANY;33;312391;P 311 Dorf Gülpe, Brandenburg;5845463 Aristolochia clematitis;actual measurement (following LEDA data standards);no leaf rehydration;277.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2411;adult;without petiole and rachis;275.12;288.39;256.81;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;J2 - Low density buildings;GERMANY;33;312391;P 311 Dorf Gülpe, Brandenburg;5845463 Armeria maritima;actual measurement (following LEDA data standards);no leaf rehydration;173.88;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28355;adult;with petiole and rachis;171.06;235.68;115.76;2;;;0;2004-09-09 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;DENMARK;;;Skallingen, dunes; Armeria maritima s. halleri;actual measurement (following LEDA data standards);no leaf rehydration;195.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28712;adult;with petiole and rachis;197.1;234.77;176.76;2;;;0;2004-08-26 00:00:00.0;Preaggregated data obtained from single record. ;;E1.B - Heavy-metal grassland;GERMANY;32;595451;P 457 at the Wartberg, Astfeld/Jerstedt, Harzvorland (Lower Saxony);5754355 Armoracia rusticana;actual measurement;leaf rehydration;204;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13400;adult;without petiole and rachis;204;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Dinnington; Armoracia rusticana;actual measurement;leaf rehydration;163;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13400;adult;without petiole and rachis;163;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Armoracia rusticana;actual measurement;leaf rehydration;184;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13400;adult;without petiole and rachis;184;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Arnica montana;actual measurement (following LEDA data standards);no leaf rehydration;125.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3665;adult;with petiole and rachis;120.31;131.04;93.62;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E4.3 - Acid alpine and subalpine grassland;GERMANY;32;426365;P 374 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303435 Arnoseris minima;actual measurement (following LEDA data standards);no leaf rehydration;96.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3666;adult;with petiole and rachis;99.76;120.41;75.94;2;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;I1.5 - Bare tilled. fallow or recently abandoned arable land;GERMANY;32;652773;P 291 Wendland, Niedersächsische Elbtalaue (Lower Saxony);5884491 Arrhenatherum elatius;laboratory/greenhouse/garden experiment;no leaf rehydration;300;1;1;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;40414;adult;without petiole and rachis;300;;;8;;;;2004-02-11 00:00:00.0;;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;unknown from literature;Europe;;0;;0 Arrhenatherum elatius;actual measurement;leaf rehydration;307;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40414;adult;without petiole and rachis;307;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Arrhenatherum elatius;actual measurement;leaf rehydration;266.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;40414;adult;without petiole and rachis;270.02;327.64;237.11;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Artemisia absinthium;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5486;adult;without petiole and rachis;225;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Artemisia absinthium;actual measurement;leaf rehydration;216;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5486;adult;without petiole and rachis;216;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Artemisia annua;actual measurement (following LEDA data standards);no leaf rehydration;229.15;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5487;adult;with petiole and rachis;262.73;410.38;182.23;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Artemisia annua;actual measurement (following LEDA data standards);no leaf rehydration;210.87;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5487;adult;without petiole and rachis;213.03;273.01;157.36;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Artemisia annua;actual measurement;leaf rehydration;271;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5487;adult;without petiole and rachis;271;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Artemisia annua;actual measurement;leaf rehydration;249;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5487;adult;without petiole and rachis;249;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Artemisia annua;actual measurement (following LEDA data standards);no leaf rehydration;182.36;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5487;adult;without petiole and rachis;181.21;215.53;145.75;1;;;0;2003-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;584170.3184;P2 Unteres Elbtal bei Drage/ Ufer (Lower Saxony);5919082.419 Artemisia annua;actual measurement (following LEDA data standards);no leaf rehydration;182.9;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5487;adult;with petiole and rachis;182.51;217.94;146.7;1;;;0;2003-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;584170.3184;P2 Unteres Elbtal bei Drage/ Ufer (Lower Saxony);5919082.419 Artemisia campestris;actual measurement (following LEDA data standards);no leaf rehydration;220.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2974;adult;without petiole and rachis;219.01;252.07;171.77;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;620350.5168;P13 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5973641.915 Artemisia campestris;actual measurement (following LEDA data standards);no leaf rehydration;208.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2974;adult;with petiole and rachis;208.6;234.64;175.23;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;620350.5168;P13 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5973641.915 Artemisia maritima;actual measurement (following LEDA data standards);no leaf rehydration;186.91;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2981;adult;with petiole and rachis;201.76;259.17;158.98;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Artemisia maritima;actual measurement (following LEDA data standards);no leaf rehydration;177.54;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2981;adult;with petiole and rachis;179.46;204.46;157.38;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;353073;P 273 Borkum (NO), National park Niedersächsiches Wattenmeer;5941494 Artemisia vulgaris;actual measurement;leaf rehydration;262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4158;adult;without petiole and rachis;262;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Artemisia vulgaris;actual measurement;leaf rehydration;260;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4158;adult;without petiole and rachis;260;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Artemisia vulgaris;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4158;adult;without petiole and rachis;252;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Arum maculatum;actual measurement;leaf rehydration;123;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35847;adult;without petiole and rachis;123;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Arum maculatum;actual measurement;leaf rehydration;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35847;adult;without petiole and rachis;111;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Arum maculatum;actual measurement;leaf rehydration;119;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35847;adult;without petiole and rachis;119;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Aruncus dioicus;actual measurement (following LEDA data standards);no leaf rehydration;196.88;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31209;adult;with petiole and rachis;201.46;233.89;170.69;2;;;10;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Aruncus dioicus;actual measurement (following LEDA data standards);no leaf rehydration;204.99;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31209;adult;without petiole and rachis;206.21;230.15;180.91;2;;;10;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Asarum europaeum;actual measurement (following LEDA data standards);no leaf rehydration;139.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2429;adult;with petiole and rachis;142.98;163.92;126.34;1;;;0;2003-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Asarum europaeum;actual measurement (following LEDA data standards);no leaf rehydration;145.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2429;adult;without petiole and rachis;148.67;169.2;130.45;1;;;0;2003-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Asparagus officinalis;actual measurement (following LEDA data standards);no leaf rehydration;283.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38660;adult;with petiole and rachis;298.58;391.87;240.57;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. twigs;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsisches Wattenmeer;5939106 Asparagus officinalis;actual measurement (following LEDA data standards);no leaf rehydration;277.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38660;adult;with petiole and rachis;306.19;467.19;210.53;5;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. leaves;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsiches Wattenmeer;5939106 Asperugo procumbens;actual measurement (following LEDA data standards);no leaf rehydration;81.13;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12544;adult;with petiole and rachis;81.19;83.86;77.23;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;SWEDEN;;;Hoburgen, Gotland Sweden; Asperula cynanchica;actual measurement (following LEDA data standards);leaf rehydration;329.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31904;adult;with petiole and rachis;311.52;373.22;205.33;1;;;0;2003-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;545000;MK 2, Schwäbische Alb;5375900 Asperula tinctoria;actual measurement (following LEDA data standards);no leaf rehydration;228.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32329;adult;with petiole and rachis;226.78;248.83;199.56;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;G4.7 - Mixed [Pinus sylvestris] - acidophilous [Quercus] woodland;GERMANY;;;P 468 NSG Jamikow, Brandenburg; Asplenium ceterach;actual measurement;leaf rehydration;288;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;125;adult;without petiole and rachis;288;;;1;;;;1997-09-29 00:00:00.0;;;;UNITED KINGDOM;;;Steetley Quarry; Asplenium ruta-muraria;actual measurement;leaf rehydration;340;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;156;adult;without petiole and rachis;340;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton Priory; Asplenium ruta-muraria;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;156;adult;without petiole and rachis;235;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Asplenium ruta-muraria;actual measurement;leaf rehydration;302;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;156;adult;without petiole and rachis;302;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Asplenium scolopendrium;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;133;adult;without petiole and rachis;256;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Asplenium scolopendrium;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;133;adult;without petiole and rachis;212;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell Crags; Asplenium septentrionale;actual measurement (following LEDA data standards);no leaf rehydration;187.49;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;116;adult;with petiole and rachis;180.02;198.65;151.3;2;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;H3.1 - Acid siliceous inland cliffs;GERMANY;32;432178;P 509 Haslach - Obersimonsw?er Tal, Black forest;5329852 Asplenium trichomanes;actual measurement;leaf rehydration;337;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;117;adult;without petiole and rachis;337;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Asplenium trichomanes-ramosum;actual measurement;leaf rehydration;337;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44469;adult;without petiole and rachis;337;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Aster amellus;actual measurement (following LEDA data standards);no leaf rehydration;207.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3537;adult;with petiole and rachis;210.99;256.1;175.44;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;684050;P 409 Jenzig(berg) closely to Jena (Thüringen);5646141 Aster amellus;actual measurement (following LEDA data standards);no leaf rehydration;204.9;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3537;adult;without petiole and rachis;203.68;233.97;168.26;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;684050;P 409 Jenzig(berg) closely to Jena (Thüringen);5646141 Aster bellidiastrum;actual measurement (following LEDA data standards);no leaf rehydration;128.27;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5946;adult;with petiole and rachis;125.39;141.03;100.91;2;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;494764;P 527 rock face, semi shady, B?tal, Schwabian Alb, Baden-W?emberg;5323887 Aster lanceolatus;actual measurement;leaf rehydration;291;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5496;adult;without petiole and rachis;291;;;1;;;;1997-08-10 00:00:00.0;;;;UNITED KINGDOM;;;Sheepbridge; Aster linosyris;actual measurement (following LEDA data standards);no leaf rehydration;247.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5330;adult;with petiole and rachis;253.74;304.41;221.62;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Aster novi-belgii;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4901;adult;without petiole and rachis;225;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Renishaw; Aster novi-belgii;actual measurement;leaf rehydration;217;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4901;adult;without petiole and rachis;217;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Aster novi-belgii;actual measurement;leaf rehydration;189;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4901;adult;without petiole and rachis;189;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Aster tripolium;actual measurement (following LEDA data standards);no leaf rehydration;91.72;19;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3539;adult;with petiole and rachis;89.08;115.6;63.18;1;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Aster tripolium;actual measurement (following LEDA data standards);no leaf rehydration;152.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3539;adult;with petiole and rachis;162.98;254.32;126.06;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;621038.8111;P12 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5974188.366 Aster tripolium;actual measurement (following LEDA data standards);no leaf rehydration;217.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3539;adult;with petiole and rachis;221.12;343.01;41.33;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;621038.8111;P12 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5974188.366 Aster tripolium;actual measurement;leaf rehydration;104;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3539;adult;without petiole and rachis;104;;;1;;;;1997-06-21 00:00:00.0;;;;UNITED KINGDOM;;;Widnes; Aster tripolium;actual measurement;leaf rehydration;122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3539;adult;without petiole and rachis;122;;;1;;;;1997-09-04 00:00:00.0;;;;UNITED KINGDOM;;;Maldon, Essex; Astragalus alpinus;actual measurement (following LEDA data standards);no leaf rehydration;183.12;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;21673;adult;with petiole and rachis;181.02;193.48;165.45;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;609374;Hessdalen 02;6951951 Astragalus cicer;actual measurement (following LEDA data standards);no leaf rehydration;208.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21198;adult;with petiole and rachis;205.85;250.9;176.98;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;683877;P 408 Jenzig(berg) closely to Jena (LSG), Thüringen;5646075 Astragalus danicus;actual measurement;leaf rehydration;241;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22416;adult;without petiole and rachis;241;;;2;;;;1996-08-24 00:00:00.0;;;;UNITED KINGDOM;;;Alnmouth; Astragalus frigidus;actual measurement (following LEDA data standards);no leaf rehydration;182.8;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;21746;adult;with petiole and rachis;184.61;216.43;161.62;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;609331;Hessdalen 03;6951972 Astragalus glycyphyllos;actual measurement;leaf rehydration;281;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22427;adult;without petiole and rachis;281;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Whitwell Wood; Astragalus glycyphyllos;actual measurement;leaf rehydration;264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22427;adult;without petiole and rachis;264;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Creswell; Astrantia major;actual measurement (following LEDA data standards);no leaf rehydration;166.29;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1925;adult;with petiole and rachis;168.33;195.78;144.14;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Astrantia major;actual measurement (following LEDA data standards);no leaf rehydration;179.83;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1925;adult;without petiole and rachis;182.84;222.94;157.63;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Athyrium distentifolium;actual measurement (following LEDA data standards);no leaf rehydration;189.7;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;35;adult;without petiole and rachis;188.47;190.8;184.9;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Athyrium distentifolium;actual measurement (following LEDA data standards);no leaf rehydration;106.65;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35;adult;with petiole and rachis;105.51;107.41;102.48;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.1 - [Abies] and [Picea] woodland;GERMANY;;;MK-1 Gr. Arber-Gipfel (south), Bavarian Forest, Bavaria; Athyrium filix-femina;actual measurement;leaf rehydration;292;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37;adult;without petiole and rachis;292;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Atriplex calotheca;laboratory/greenhouse/garden experiment;no leaf rehydration;198.32;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17758;adult;with petiole and rachis;195.26;210.47;178.58;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex calotheca;laboratory/greenhouse/garden experiment;no leaf rehydration;202.73;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17758;adult;without petiole and rachis;198.92;218.16;180.05;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex glabriuscula;laboratory/greenhouse/garden experiment;no leaf rehydration;168.12;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17760;adult;with petiole and rachis;169.31;189.49;145.22;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex glabriuscula;laboratory/greenhouse/garden experiment;no leaf rehydration;168.13;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17760;adult;without petiole and rachis;168.99;190.51;144.18;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex laciniata;laboratory/greenhouse/garden experiment;no leaf rehydration;210.87;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17773;adult;with petiole and rachis;208.62;253.46;156.92;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex laciniata;laboratory/greenhouse/garden experiment;no leaf rehydration;213.33;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17773;adult;without petiole and rachis;211.57;260.04;157.69;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex littoralis;laboratory/greenhouse/garden experiment;no leaf rehydration;152.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17778;adult;with petiole and rachis;160.54;266.92;100.46;2;;;0;2004-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex littoralis;actual measurement;leaf rehydration;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17778;adult;without petiole and rachis;111;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Worksop; Atriplex littoralis;laboratory/greenhouse/garden experiment;no leaf rehydration;152.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17778;adult;without petiole and rachis;161.35;274.73;99.72;2;;;0;2004-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex littoralis;actual measurement;leaf rehydration;85;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17778;adult;without petiole and rachis;85;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Atriplex micrantha;laboratory/greenhouse/garden experiment;no leaf rehydration;180.05;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44812;adult;with petiole and rachis;180.05;193.83;166.27;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex micrantha;laboratory/greenhouse/garden experiment;no leaf rehydration;177.82;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44812;adult;without petiole and rachis;177.82;191.97;163.66;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex nitens;actual measurement (following LEDA data standards);no leaf rehydration;212.02;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17671;adult;with petiole and rachis;218.83;247.22;197.26;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;33;437432;P 461 Oderhänge near Gabow Ib, Biosphärenreservat Schorfheide-Chorin (Brandenburg);5852154 Atriplex nitens;actual measurement (following LEDA data standards);no leaf rehydration;211.17;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17671;adult;without petiole and rachis;217.02;243.17;196.72;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;33;437432;P 461 Oderhänge near Gabow Ib, Biosphärenreservat Schorfheide-Chorin (Brandenburg);5852154 Atriplex oblongifolia;actual measurement (following LEDA data standards);no leaf rehydration;198.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17673;adult;with petiole and rachis;200.38;225.73;183.4;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;33;448115;P 464 National park Unteres Odertal, Brandenburg;5873828 Atriplex oblongifolia;actual measurement (following LEDA data standards);no leaf rehydration;198.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17673;adult;without petiole and rachis;199.55;225.45;180.33;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;33;448115;P 464 National park Unteres Odertal, Brandenburg;5873828 Atriplex patula;actual measurement;leaf rehydration;206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17675;adult;without petiole and rachis;206;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Atriplex patula;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17675;adult;without petiole and rachis;140;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Atriplex patula;actual measurement;leaf rehydration;128;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17675;adult;without petiole and rachis;128;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Atriplex patula;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17675;adult;without petiole and rachis;183;;;1;;;;1997-09-19 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Atriplex prostrata;actual measurement;leaf rehydration;168;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44815;adult;without petiole and rachis;168;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Atriplex prostrata;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44815;adult;without petiole and rachis;160;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Atriplex prostrata;actual measurement;leaf rehydration;105;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44815;adult;without petiole and rachis;105;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Worksop; Atriplex rosea;laboratory/greenhouse/garden experiment;no leaf rehydration;231.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17679;adult;with petiole and rachis;237.32;316.81;199.87;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex rosea;laboratory/greenhouse/garden experiment;no leaf rehydration;235.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17679;adult;without petiole and rachis;240.15;316.52;202.98;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex tatarica;laboratory/greenhouse/garden experiment;no leaf rehydration;234.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17681;adult;with petiole and rachis;236.45;243.07;231.95;2;;;0;2004-08-17 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atriplex tatarica;actual measurement (following LEDA data standards);no leaf rehydration;209.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17681;adult;without petiole and rachis;209.78;232.92;193.94;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;625944;P 444 abandonded potash mine Beiersole, Harzvorland, Lower Saxony;5794830 Atriplex tatarica;actual measurement (following LEDA data standards);no leaf rehydration;209.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17681;adult;with petiole and rachis;210.21;233.55;195.1;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;625944;P 444 abandonded potash mine Beiersole, Harzvorland, Lower Saxony;5794830 Atriplex tatarica;laboratory/greenhouse/garden experiment;no leaf rehydration;236.49;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17681;adult;without petiole and rachis;238.43;244.6;234.2;2;;;0;2004-08-17 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Atropa bella-donna;actual measurement (following LEDA data standards);no leaf rehydration;102.9;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35087;adult;with petiole and rachis;101.09;113.42;89.02;2;;;0;2005-05-20 00:00:00.0;Preaggregated data obtained from single record. ;;G5.8 - Recently felled areas;GERMANY;32;402960;P 502 Kaiserstuhl, near Schelingen, Baden-W?emberg;5329543 Atropa bella-donna;actual measurement;leaf rehydration;272;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35087;adult;without petiole and rachis;272;;;1;;;;1997-07-14 00:00:00.0;;;;UNITED KINGDOM;;;Nether Langwith; Avena barbata;field experiment;leaf rehydration;231;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40564;adult;without petiole and rachis;231;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Avena barbata;field experiment;leaf rehydration;232;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40564;adult;without petiole and rachis;232;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Avena barbata;field experiment;leaf rehydration;250;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40564;adult;without petiole and rachis;250;;;10;6;6;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Avena fatua;actual measurement;leaf rehydration;245;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40425;adult;without petiole and rachis;245;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Catcliffe; Avena fatua;actual measurement;leaf rehydration;239;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40425;adult;without petiole and rachis;239;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Avena sativa;laboratory/greenhouse/garden experiment;no leaf rehydration;193.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41151;adult;with petiole and rachis;188.89;203.62;158.98;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Avena sterilis;laboratory/greenhouse/garden experiment;no leaf rehydration;192.73;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41440;adult;with petiole and rachis;192.73;199.41;186.05;2;;;0;2004-07-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Avena strigosa;laboratory/greenhouse/garden experiment;no leaf rehydration;201.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40565;adult;with petiole and rachis;206.95;238.73;187.58;2;;;0;2004-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Avenula pratensis;actual measurement;leaf rehydration;344;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40921;adult;without petiole and rachis;344;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Avenula pratensis;actual measurement;leaf rehydration;318;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40921;adult;without petiole and rachis;318;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Avenula pratensis;actual measurement;leaf rehydration;306;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40921;adult;without petiole and rachis;306;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick golf course; Avenula pubescens;actual measurement;leaf rehydration;274;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40923;adult;without petiole and rachis;274;;;2;;;;;;;;UNITED KINGDOM;;;; Avenula pubescens;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40923;adult;without petiole and rachis;254;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Azolla filiculoides;actual measurement (following LEDA data standards);no leaf rehydration;88.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22;adult;with petiole and rachis;90.64;110.45;75.64;1;;;0;2004-05-18 00:00:00.0;Preaggregated data obtained from single record. whole plant treated as one leaf;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;404333;P 263 NSG Taubergießen, Blautopf, Oberrheinebene (upper Rhine);5349911 Azolla filiculoides;actual measurement;leaf rehydration;107;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22;adult;without petiole and rachis;107;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Baldellia ranunculoides;actual measurement;leaf rehydration;139;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35614;adult;without petiole and rachis;139;;;1;;;;1997-07-25 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr; Ballota nigra;actual measurement;leaf rehydration;222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24563;adult;without petiole and rachis;222;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Worksop; Barbarea intermedia;laboratory/greenhouse/garden experiment;no leaf rehydration;148.35;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13016;adult;with petiole and rachis;148.35;148.35;148.35;2;;;0;2004-10-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Barbarea intermedia;laboratory/greenhouse/garden experiment;no leaf rehydration;148.93;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13016;adult;without petiole and rachis;148.93;148.93;148.93;2;;;0;2004-10-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Barbarea intermedia;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13016;adult;without petiole and rachis;142;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Barbarea stricta;laboratory/greenhouse/garden experiment;no leaf rehydration;131.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14378;adult;with petiole and rachis;131.95;153.57;114.37;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Barbarea vulgaris;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14291;adult;without petiole and rachis;225;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Barbarea vulgaris;actual measurement;leaf rehydration;123;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14291;adult;without petiole and rachis;123;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Bartsia alpina;actual measurement (following LEDA data standards);no leaf rehydration;198.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34451;adult;with petiole and rachis;195.84;220.65;171.79;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;426444;P 375a NSG Feldberg (Schwarzwald), Baden-Württemberg;5303165 Bassia scoparia;laboratory/greenhouse/garden experiment;no leaf rehydration;215.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44831;adult;with petiole and rachis;209.06;237.74;160.38;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bassia scoparia;actual measurement;leaf rehydration;166;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44831;adult;without petiole and rachis;166;;;1;;;;1997-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Catcliffe; Bellis perennis;actual measurement;leaf rehydration;118;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2808;adult;without petiole and rachis;118;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Bellis perennis;actual measurement;leaf rehydration;109;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2808;adult;without petiole and rachis;109;;;2;;;;;;;;UNITED KINGDOM;;;; Berberis vulgaris;actual measurement;leaf rehydration;259;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11672;adult;without petiole and rachis;259;;;5;5.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Markland Grips; Berberis vulgaris;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11672;adult;without petiole and rachis;254;;;5;7.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Wardlow; Berteroa incana;actual measurement (following LEDA data standards);no leaf rehydration;242.94;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14292;adult;with petiole and rachis;244.63;276.57;207.72;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449177.3372;f, P9 NSG Krusenbusch (Oldenburg);5883805.536 Berteroa incana;actual measurement (following LEDA data standards);no leaf rehydration;247.54;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14292;adult;with petiole and rachis;246.26;251.86;237.7;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449215.322;P11 NSG Krusenbusch (Oldenburg);5882857.915 Berula erecta;actual measurement (following LEDA data standards);no leaf rehydration;77.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;1938;adult;without petiole and rachis;78.32;83.02;72.45;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Berula erecta;actual measurement;leaf rehydration;115;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1938;adult;without petiole and rachis;115;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Beta vulgaris;actual measurement;leaf rehydration;167;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17819;adult;without petiole and rachis;167;;;1;;;;1997-07-14 00:00:00.0;;;;UNITED KINGDOM;;;Mansfield; Betula nana;actual measurement (following LEDA data standards);no leaf rehydration;440;13;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;11715;adult;with petiole and rachis;426.61;471.9;360.6;3;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 3-6 leaves per sample;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Betula nana;actual measurement (following LEDA data standards);no leaf rehydration;461.7;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;11715;adult;with petiole and rachis;462.2;466.2;458.7;5;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Betula nana;actual measurement (following LEDA data standards);no leaf rehydration;354.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11715;adult;without petiole and rachis;355.64;410.98;254.41;2;;;0;2004-08-25 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;32;606790;P 452 closely to Torfhaus, Harz (Lower Saxony);5740051 Betula nana;actual measurement (following LEDA data standards);no leaf rehydration;357.87;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11715;adult;with petiole and rachis;377.49;426.9;337.71;2;;;0;2004-08-25 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;32;606790;P 452 closely to Torfhaus, Harz (Lower Saxony);5740051 Betula pendula;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11720;adult;without petiole and rachis;254;;;5;6.9;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Betula pendula;actual measurement;leaf rehydration;269;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11720;adult;without petiole and rachis;269;;;5;6.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Betula pendula;actual measurement;leaf rehydration;296;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11720;adult;without petiole and rachis;296;;;5;6.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Bidens cernua;actual measurement (following LEDA data standards);no leaf rehydration;165.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;3807;adult;without petiole and rachis;165.7;176.25;150.64;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Bidens cernua;laboratory/greenhouse/garden experiment;no leaf rehydration;171.38;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3807;adult;with petiole and rachis;170.2;181.96;156.09;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bidens cernua;actual measurement;leaf rehydration;120;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3807;adult;without petiole and rachis;120;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Bidens connata;actual measurement (following LEDA data standards);no leaf rehydration;113.88;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3153;adult;with petiole and rachis;116.84;149.4;86.4;2;;;0;2005-08-02 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;NETHERLANDS;;;Haren; Bidens frondosa;actual measurement (following LEDA data standards);no leaf rehydration;171.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6191;adult;with petiole and rachis;177.7;233.8;141.05;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Bidens frondosa;actual measurement (following LEDA data standards);no leaf rehydration;177.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6191;adult;without petiole and rachis;186.29;241.72;146.85;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Bidens radiata;actual measurement (following LEDA data standards);no leaf rehydration;134.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5325;adult;without petiole and rachis;137.34;167.19;120.61;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Bidens radiata;actual measurement (following LEDA data standards);no leaf rehydration;126.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5325;adult;with petiole and rachis;128.47;154.5;114.79;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Bidens tripartita;actual measurement (following LEDA data standards);no leaf rehydration;145.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;3990;adult;without petiole and rachis;146.56;165.85;126.89;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Bidens tripartita;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3990;adult;without petiole and rachis;156;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Bidens tripartita;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3990;adult;without petiole and rachis;183;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Varese; Bidens tripartita;actual measurement;leaf rehydration;124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3990;adult;without petiole and rachis;124;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Bifora radians;laboratory/greenhouse/garden experiment;no leaf rehydration;130.84;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1939;adult;with petiole and rachis;126.92;150.18;95.71;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Blackstonia perfoliata;actual measurement (following LEDA data standards);no leaf rehydration;215.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22864;adult;with petiole and rachis;212.05;252.02;150.31;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;32;450153;P 392b NSG Fritschlach, Karlsruhe, Oberrheinebene (Rhine);5426634 Blackstonia perfoliata;actual measurement;leaf rehydration;231;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22864;adult;without petiole and rachis;231;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Blechnum spicant;actual measurement;leaf rehydration;266;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;160;adult;without petiole and rachis;266;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Blysmus compressus;actual measurement (following LEDA data standards);no leaf rehydration;283.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37421;adult;with petiole and rachis;294.46;332.49;277.88;2;;;0;2005-07-02 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;577387;P 539 Falckensteiner Strand / Kiel, Baltic sea (Schleswig-Holstein);6029345 Blysmus rufus;actual measurement (following LEDA data standards);no leaf rehydration;297.09;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37423;adult;with petiole and rachis;311.45;429.43;252.64;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Borago officinalis;actual measurement (following LEDA data standards);no leaf rehydration;130.79;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12546;adult;with petiole and rachis;123.27;133.67;105.36;2;;;0;2005-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Borago officinalis;actual measurement (following LEDA data standards);no leaf rehydration;158.69;2;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;12546;adult;with petiole and rachis;158.69;183.33;134.05;2;;;1;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Botrychium lunaria;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;270;adult;without petiole and rachis;194;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Brachypodium pinnatum;laboratory/greenhouse/garden experiment;no leaf rehydration;350;1;1;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;40931;adult;without petiole and rachis;350;;;8;;;;2004-02-11 00:00:00.0;;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;unknown from literature;Europe;;0;;0 Brachypodium pinnatum;actual measurement;leaf rehydration;397;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40931;adult;without petiole and rachis;397;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Brachypodium pinnatum;actual measurement;leaf rehydration;340;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40931;adult;without petiole and rachis;340;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Brachypodium pinnatum s. pinnatum;actual measurement (following LEDA data standards);no leaf rehydration;474.2;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41177;adult;with petiole and rachis;457.76;513.17;358.76;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;G4.7 - Mixed [Pinus sylvestris] - acidophilous [Quercus] woodland;GERMANY;;;P 468 NSG Jamikow, Brandenburg; Brachypodium sylvaticum;actual measurement;leaf rehydration;374;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41179;adult;without petiole and rachis;374;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Brachypodium sylvaticum;actual measurement;leaf rehydration;305;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41179;adult;without petiole and rachis;305;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Brachypodium sylvaticum;actual measurement;leaf rehydration;240;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41179;adult;without petiole and rachis;240;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Brachypodium sylvaticum;actual measurement;leaf rehydration;314.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;41179;adult;without petiole and rachis;313.73;326.85;294.45;2;;;0;2004-06-25 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Brassica elongata;laboratory/greenhouse/garden experiment;no leaf rehydration;196.63;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14200;adult;with petiole and rachis;196.63;216.04;177.21;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Brassica nigra;laboratory/greenhouse/garden experiment;no leaf rehydration;128.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13691;adult;with petiole and rachis;130.32;144.11;122.19;2;;;0;2005-07-11 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Brassica oleracea;laboratory/greenhouse/garden experiment;no leaf rehydration;174.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14208;juvenile;with petiole and rachis;174.81;208.44;157.18;2;;;0;2005-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Brassica rapa;laboratory/greenhouse/garden experiment;no leaf rehydration;140.06;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13695;adult;with petiole and rachis;138.56;140.95;134.66;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Brassica rapa;actual measurement;leaf rehydration;146;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13695;adult;without petiole and rachis;146;;;2;;;;1996-06-25 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Brassica rapa;laboratory/greenhouse/garden experiment;no leaf rehydration;138.13;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13695;adult;without petiole and rachis;138.13;142.36;133.9;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Briza media;actual measurement;leaf rehydration;358;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40342;adult;without petiole and rachis;358;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Briza media;actual measurement;leaf rehydration;312;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40342;adult;without petiole and rachis;312;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Briza media;actual measurement;leaf rehydration;243;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40342;adult;without petiole and rachis;243;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney clough; Briza media;actual measurement;leaf rehydration;279.14;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;40342;adult;without petiole and rachis;262.77;315.58;170.9;2;;;0;2003-06-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Bromus arvensis;laboratory/greenhouse/garden experiment;no leaf rehydration;271.46;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40609;adult;with petiole and rachis;276.56;310.84;249.68;2;;;0;2005-06-29 00:00:00.0;Preaggregated data obtained from single record. collection date of #1 is 2004-10-13;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bromus benekenii;actual measurement (following LEDA data standards);no leaf rehydration;344.79;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41454;adult;with petiole and rachis;346.07;383.59;312.49;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;406577;P 507a Wolfsgraben, Dinkelberg (Baden-W?emberg);5269780 Bromus carinatus;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40352;adult;without petiole and rachis;235;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Bromus commutatus;actual measurement (following LEDA data standards);no leaf rehydration;264.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40941;adult;with petiole and rachis;273.31;400.48;205.19;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;393182;P 223 closely to Teiler Wald (upper Rhine valley);5316232 Bromus commutatus;laboratory/greenhouse/garden experiment;no leaf rehydration;178.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40941;adult;with petiole and rachis;175.36;213.36;140.68;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bromus diandrus;actual measurement;leaf rehydration;289;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42153;adult;without petiole and rachis;289;;;2;;;;;;;;SPAIN;;;Ambel; Bromus erectus;actual measurement;leaf rehydration;387;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40358;adult;without petiole and rachis;387;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Bromus erectus;actual measurement;leaf rehydration;319;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40358;adult;without petiole and rachis;319;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Bromus erectus;field experiment;leaf rehydration;316;10;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40358;adult;without petiole and rachis;316;;;1;22.13594362;7;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Bromus erectus;field experiment;leaf rehydration;329;10;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40358;adult;without petiole and rachis;329;;;1;22.13594362;7;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Bromus erectus;field experiment;leaf rehydration;401;10;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40358;adult;without petiole and rachis;401;;;1;25.29822128;8;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Bromus erectus;laboratory/greenhouse/garden experiment;unknown;260;8;1;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;40358;adult;without petiole and rachis;260;;;1;;;;2004-02-19 00:00:00.0;;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;unknown from literature;Europe;;0;;0 Bromus erectus;field experiment;leaf rehydration;358;10;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40358;adult;without petiole and rachis;358;;;1;91.70605214;29;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Bromus erectus;field experiment;leaf rehydration;343;10;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40358;adult;without petiole and rachis;343;;;1;31.6227766;10;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Bromus erectus;field experiment;leaf rehydration;343;10;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;40358;adult;without petiole and rachis;343;;;1;22.13594362;7;;1997-10-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Bromus grossus;laboratory/greenhouse/garden experiment;no leaf rehydration;291.09;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42156;adult;with petiole and rachis;291.09;302.15;280.02;2;;;0;2005-08-26 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bromus hordeaceus;actual measurement;leaf rehydration;278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40361;adult;without petiole and rachis;278;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Bromus hordeaceus;actual measurement;leaf rehydration;290.24;14;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;40361;adult;without petiole and rachis;285.23;339.68;217.96;2;;;0;2003-06-11 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;350231;national park Müritz;5924041 Bromus hordeaceus;actual measurement;leaf rehydration;325;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40361;adult;without petiole and rachis;325;;;2;;;;;;;;SPAIN;;;Ambel; Bromus hordeaceus;actual measurement;leaf rehydration;269;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40361;adult;without petiole and rachis;269;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Bromus inermis;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40620;adult;without petiole and rachis;255;;;1;;;;1997-08-18 00:00:00.0;;;;UNITED KINGDOM;;;Norwood; Bromus japonicus;laboratory/greenhouse/garden experiment;no leaf rehydration;286.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40365;adult;with petiole and rachis;288.99;322.99;248.12;2;;;0;2005-05-19 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bromus lanceolatus;field experiment;leaf rehydration;255;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;42158;adult;without petiole and rachis;255;;;10;10;10;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Bromus lanceolatus;field experiment;leaf rehydration;277;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;42158;adult;without petiole and rachis;277;;;10;8;8;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Bromus lanceolatus;field experiment;leaf rehydration;279;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;42158;adult;without petiole and rachis;279;;;10;6;6;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Bromus lanceolatus;field experiment;leaf rehydration;293;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;42158;adult;without petiole and rachis;293;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Bromus madritensis;laboratory/greenhouse/garden experiment;no leaf rehydration;165.83;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40949;adult;with petiole and rachis;165.15;172.2;155.64;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bromus racemosus;laboratory/greenhouse/garden experiment;no leaf rehydration;182.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40951;adult;with petiole and rachis;177.92;188.72;158.78;2;;;0;2004-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bromus ramosus;actual measurement;leaf rehydration;265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40952;adult;without petiole and rachis;265;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Bromus ramosus;actual measurement;leaf rehydration;249;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40952;adult;without petiole and rachis;249;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Bromus ramosus;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40952;adult;without petiole and rachis;237;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Bromus secalinus;laboratory/greenhouse/garden experiment;no leaf rehydration;289.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40610;adult;with petiole and rachis;290.86;318.21;263.98;2;;;0;2005-06-30 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bromus squarrosus;laboratory/greenhouse/garden experiment;no leaf rehydration;191.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40372;adult;with petiole and rachis;194.58;222.1;175.27;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bromus sterilis;actual measurement;leaf rehydration;251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40373;adult;without petiole and rachis;251;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Bromus sterilis;actual measurement;leaf rehydration;199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40373;adult;without petiole and rachis;199;;;2;;;;;;;;SPAIN;;;Ambel; Bromus sterilis;actual measurement;leaf rehydration;248;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40373;adult;without petiole and rachis;248;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Bromus sterilis;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40373;adult;without petiole and rachis;225;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Bromus tectorum;laboratory/greenhouse/garden experiment;no leaf rehydration;151.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41688;adult;with petiole and rachis;155.1;194.09;139.36;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bryonia alba;actual measurement (following LEDA data standards);no leaf rehydration;168.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18474;adult;with petiole and rachis;164.92;184.15;143.5;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;;P 246 Rand von Rheinwald bei Grißheim/Oberrheinebene (upper Rhine); Bryonia alba;actual measurement (following LEDA data standards);no leaf rehydration;175.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18474;adult;without petiole and rachis;172.07;191.48;150.06;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;;P 246 Rand von Rheinwald bei Grißheim/Oberrheinebene (upper Rhine); Bryonia cretica s. cretica;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18476;adult;without petiole and rachis;129;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Bryonia cretica s. cretica;actual measurement;leaf rehydration;128;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18476;adult;without petiole and rachis;128;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Bryonia cretica s. cretica;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18476;adult;without petiole and rachis;127;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Buddleja davidii;actual measurement (following LEDA data standards);no leaf rehydration;200.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15414;adult;with petiole and rachis;197.82;213.33;164.09;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-1 disused rail network Munich city (Bavaria); Buddleja davidii;actual measurement;leaf rehydration;224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15414;adult;without petiole and rachis;224;;;5;8.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Buddleja davidii;actual measurement;leaf rehydration;265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15414;adult;without petiole and rachis;265;;;5;10;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Buglossoides purpurocaerulea;actual measurement (following LEDA data standards);no leaf rehydration;159.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12486;adult;with petiole and rachis;160.3;182.47;128.84;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;G1.7 - Thermophilous deciduous woodland;GERMANY;32;389536;P 252 NSG Eichholz-Buchholz, Baden-Württemberg;5282872 Bunias orientalis;laboratory/greenhouse/garden experiment;no leaf rehydration;137.13;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14415;adult;with petiole and rachis;137.13;142.64;131.61;2;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bunias orientalis;laboratory/greenhouse/garden experiment;no leaf rehydration;160.17;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14415;adult;without petiole and rachis;160.17;174.01;146.33;2;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Bunium bulbocastanum;actual measurement (following LEDA data standards);no leaf rehydration;150.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2366;adult;with petiole and rachis;150.1;174.9;133.43;2;;;0;2005-05-20 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;32;476188;P 501 N?stenbach, Bergstrasse, poor pasture, same sample area as P 405 from 2006;5490931 Buphthalmum salicifolium;actual measurement (following LEDA data standards);leaf rehydration;181.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5238;adult;with petiole and rachis;179.08;198.59;153.85;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Bupleurum rotundifolium;actual measurement (following LEDA data standards);no leaf rehydration;260.87;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1894;adult;with petiole and rachis;255.13;285.51;228.15;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;G1.6 - [Fagus] woodland;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schwabian Alb);5354485 Bupleurum rotundifolium;actual measurement (following LEDA data standards);no leaf rehydration;283.87;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1894;adult;without petiole and rachis;274.48;309.95;240.9;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;G1.6 - [Fagus] woodland;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schwabian Alb);5354485 Bupleurum rotundifolium;actual measurement (following LEDA data standards);no leaf rehydration;307.68;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1894;adult;with petiole and rachis;298.9;336.62;223.84;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. stem leaves, ground leaf see UOL-886;;G1.6 - [Fagus] woodland;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Bupleurum tenuissimum;actual measurement (following LEDA data standards);no leaf rehydration;184.52;7;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1364;adult;with petiole and rachis;185.22;208.05;169.7;2;;;0;2003-09-17 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog; Butomus umbellatus;actual measurement (following LEDA data standards);no leaf rehydration;95.68;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;35620;adult;with petiole and rachis;96.24;115.44;79.33;2;;;1;2004-07-15 00:00:00.0;Preaggregated data obtained from single record. ;;C1 - Surface standing waters;NETHERLANDS;;;Alteveer; Butomus umbellatus;actual measurement (following LEDA data standards);no leaf rehydration;109.26;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35620;adult;with petiole and rachis;104.92;122.54;77.2;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;;P 299 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Butomus umbellatus;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35620;adult;without petiole and rachis;156;;;1;;;;1997-08-11 00:00:00.0;;;;UNITED KINGDOM;;;Tinsley; Buxus sempervirens;field experiment;leaf rehydration;482;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;14716;adult;without petiole and rachis;482;;;10;14;14;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Buxus sempervirens;field experiment;leaf rehydration;462;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;14716;adult;without petiole and rachis;462;;;10;13;13;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Buxus sempervirens;field experiment;leaf rehydration;489;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;14716;adult;without petiole and rachis;489;;;10;3;3;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Buxus sempervirens;field experiment;leaf rehydration;472;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;14716;adult;without petiole and rachis;472;;;10;13;13;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Buxus sempervirens;field experiment;leaf rehydration;431;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;14716;adult;without petiole and rachis;431;;;10;5;5;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Buxus sempervirens;field experiment;leaf rehydration;476;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;14716;adult;without petiole and rachis;476;;;10;3;3;;1997-10-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Buxus sempervirens;actual measurement;leaf rehydration;283;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14716;adult;without petiole and rachis;283;;;5;7.2;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Hathersage; Buxus sempervirens;actual measurement;leaf rehydration;310;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14716;adult;without petiole and rachis;310;;;5;12.3;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Buxus sempervirens;actual measurement;leaf rehydration;291;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14716;adult;without petiole and rachis;291;;;5;8.2;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Buxus sempervirens;actual measurement;leaf rehydration;273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14716;adult;without petiole and rachis;273;;;5;11;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Hathersage; Cakile maritima;actual measurement (following LEDA data standards);no leaf rehydration;109.21;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14226;adult;with petiole and rachis;105.03;124.95;79.51;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Cakile maritima;actual measurement (following LEDA data standards);no leaf rehydration;77.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14226;adult;with petiole and rachis;80.2;108.93;59.95;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.2 - Sand beaches above the driftline;GERMANY;32;347731;P 275 Borkum (SW), National park Niedersächsiches Wattenmeer;5937923 Cakile maritima;actual measurement (following LEDA data standards);no leaf rehydration;79.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14226;adult;without petiole and rachis;80.95;109.84;58.87;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.2 - Sand beaches above the driftline;GERMANY;32;347731;P 275 Borkum (SW), National park Niedersächsiches Wattenmeer;5937923 Calamagrostis arundinacea;actual measurement (following LEDA data standards);no leaf rehydration;372.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40633;adult;with petiole and rachis;386.57;445.08;349.64;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426444;P 375 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303165 Calamagrostis canescens;actual measurement;leaf rehydration;362;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40960;adult;without petiole and rachis;362;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Calamagrostis canescens;actual measurement;leaf rehydration;360;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40960;adult;without petiole and rachis;360;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Calamagrostis epigejos;actual measurement;leaf rehydration;380.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;41199;adult;without petiole and rachis;376.27;409.84;346.91;2;;;0;2003-07-16 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349145;national park Müritz;5924495 Calamagrostis epigejos;actual measurement;leaf rehydration;425;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41199;adult;without petiole and rachis;425;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Calamagrostis epigejos;actual measurement;leaf rehydration;395;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41199;adult;without petiole and rachis;395;;;2;;;;1996-09-22 00:00:00.0;;;;UNITED KINGDOM;;;Stockport; Calamagrostis purpurea;actual measurement (following LEDA data standards);no leaf rehydration;315.89;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);40263;adult;with petiole and rachis;309.82;328.61;268.13;1;;;;2005-07-03 00:00:00.0;Preaggregated data obtained from single record. ;;G4.4 - Mixed [Pinus sylvestris] - [Betula] woodland;NORWAY;32;517686;Rindal 01;6995565 Calamagrostis villosa;actual measurement (following LEDA data standards);no leaf rehydration;292.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40268;adult;with petiole and rachis;297.9;333.76;274.15;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;;;MK-3 forest way between Gr. Arber and Kl. Arber, Bavarian Forest, Bavaria; Calendula arvensis;actual measurement (following LEDA data standards);no leaf rehydration;93.24;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3677;adult;with petiole and rachis;95.36;124.95;82.7;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Calla palustris;actual measurement (following LEDA data standards);no leaf rehydration;90.32;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35879;adult;with petiole and rachis;90.86;100.13;82.67;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;452825.8772;P4 a ditch closed to NSG Gellner Torfmöorte / Landkreis Oldenburg ;5892344.119 Calla palustris;actual measurement (following LEDA data standards);no leaf rehydration;122.34;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35879;adult;without petiole and rachis;120.99;126.18;113.12;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;452825.8772;P4 a ditch closed to NSG Gellner Torfmöorte / Landkreis Oldenburg ;5892344.119 Callitriche hamulata;actual measurement (following LEDA data standards);no leaf rehydration;272.46;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15444;adult;with petiole and rachis;263.72;277.74;240.95;10;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. submersed leaves;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;;;P 477 Emsschleife near Lingen; Callitriche hamulata;actual measurement;leaf rehydration;200;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15444;adult;without petiole and rachis;200;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Callitriche palustris;actual measurement (following LEDA data standards);leaf rehydration;118.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15420;adult;with petiole and rachis;129.21;174.07;90.48;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. swim leaves;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453798.488;P 15 Bornhorster Wiesen/ Gräben (Oldenburg/Hunte-Wiesen);5891054.635 Callitriche palustris;actual measurement (following LEDA data standards);leaf rehydration;99.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15420;adult;with petiole and rachis;98.7;147.44;70.64;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. subaqueous leaves;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453798.488;P 15 Bornhorster Wiesen/ Gräben (Oldenburg/Hunte-Wiesen);5891054.635 Callitriche platycarpa;actual measurement;leaf rehydration;101;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15423;adult;without petiole and rachis;101;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Renishaw; Callitriche stagnalis;actual measurement (following LEDA data standards);no leaf rehydration;69.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;15424;adult;without petiole and rachis;68.45;70.5;64.35;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Callitriche stagnalis;actual measurement;leaf rehydration;85;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15424;adult;without petiole and rachis;85;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Callitriche stagnalis;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15424;adult;without petiole and rachis;140;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Calluna vulgaris;actual measurement;leaf rehydration;286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19587;adult;without petiole and rachis;286;;;15;13.5;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Harpur Hill; Calluna vulgaris;actual measurement;leaf rehydration;288;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19587;adult;without petiole and rachis;288;;;15;10.2;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Harpur Hill; Calluna vulgaris;actual measurement;leaf rehydration;332;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19587;adult;without petiole and rachis;332;;;15;32.3;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sherwood Forest area; Calluna vulgaris;actual measurement;leaf rehydration;242;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19587;adult;without petiole and rachis;242;;;15;24.2;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Caltha palustris;actual measurement;leaf rehydration;166;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27293;adult;without petiole and rachis;166;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Calystegia pulchra;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18975;adult;without petiole and rachis;203;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Calystegia sepium;actual measurement;leaf rehydration;206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18945;adult;without petiole and rachis;206;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Calystegia sepium;actual measurement;leaf rehydration;162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18945;adult;without petiole and rachis;162;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Calystegia silvatica;actual measurement;leaf rehydration;224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18953;adult;without petiole and rachis;224;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Calystegia soldanella;actual measurement (following LEDA data standards);no leaf rehydration;126.66;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18962;adult;with petiole and rachis;124.68;136.75;110.42;2;;;0;2005-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Kwade Hoek; Camelina microcarpa;actual measurement (following LEDA data standards);no leaf rehydration;147.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13713;adult;with petiole and rachis;146.47;172.69;128.23;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Campanula cervicaria;laboratory/greenhouse/garden experiment;no leaf rehydration;232.94;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15224;adult;with petiole and rachis;236;254.38;223.72;2;;;0;2005-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Campanula glomerata;actual measurement;leaf rehydration;184;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15158;adult;without petiole and rachis;184;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Campanula glomerata;actual measurement;leaf rehydration;216;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15158;adult;without petiole and rachis;216;;;1;;;;1997-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Sprotbrough; Campanula glomerata;actual measurement;leaf rehydration;264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15158;adult;without petiole and rachis;264;;;1;;;;1997-09-26 00:00:00.0;;;;UNITED KINGDOM;;;Parsley Hay; Campanula latifolia;actual measurement (following LEDA data standards);no leaf rehydration;150.46;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15145;adult;with petiole and rachis;155.02;182.6;141.62;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;614139;P 427 FFH Wolfsbachschlucht (Harz, Lower Saxony);5724245 Campanula latifolia;actual measurement (following LEDA data standards);no leaf rehydration;152.53;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15145;adult;without petiole and rachis;158.02;186.66;145.37;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;614139;P 427 FFH Wolfsbachschlucht (Harz, Lower Saxony);5724245 Campanula latifolia;actual measurement;leaf rehydration;161;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15145;adult;without petiole and rachis;161;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Campanula persicifolia;actual measurement (following LEDA data standards);no leaf rehydration;178.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15103;adult;with petiole and rachis;178.81;200.48;163.25;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. rosette leaves;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Campanula persicifolia;actual measurement (following LEDA data standards);no leaf rehydration;170.29;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15103;adult;with petiole and rachis;170.95;183.82;152.06;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Campanula rapunculoides;actual measurement (following LEDA data standards);no leaf rehydration;161.2;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15082;adult;with petiole and rachis;161.19;187.84;132.51;2;;;1;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Campanula rapunculoides;actual measurement (following LEDA data standards);no leaf rehydration;120.64;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15082;adult;without petiole and rachis;126.02;156.09;110;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;683877;P 408 Jenzig(berg) closely to Jena (LSG), Thüringen;5646075 Campanula rapunculoides;actual measurement (following LEDA data standards);no leaf rehydration;123.25;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15082;adult;with petiole and rachis;127.69;156.72;109.49;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;683877;P 408 Jenzig(berg) closely to Jena (LSG), Thüringen;5646075 Campanula rapunculoides;actual measurement (following LEDA data standards);no leaf rehydration;147.84;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15082;adult;with petiole and rachis;151.25;164.6;144.33;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Campanula rapunculus;actual measurement (following LEDA data standards);no leaf rehydration;177.56;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15083;adult;with petiole and rachis;174.61;191.21;155.06;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Campanula rapunculus;actual measurement (following LEDA data standards);no leaf rehydration;147.44;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15083;adult;with petiole and rachis;152.09;198.88;123.31;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;401410;P 364 NSG Badberg (Kaiserstuhl) / Baden-Württemberg;5327650 Campanula rotundifolia;actual measurement (following LEDA data standards);no leaf rehydration;233.3;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;15045;adult;with petiole and rachis;243.7;325;160;1;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. rosette;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Campanula rotundifolia;actual measurement (following LEDA data standards);no leaf rehydration;283.9;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;15045;adult;with petiole and rachis;277.3;328.6;225;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. stem, 2-7 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Campanula rotundifolia;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15045;adult;without petiole and rachis;254;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Campanula rotundifolia;actual measurement;leaf rehydration;257;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15045;adult;without petiole and rachis;257;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Campanula sibirica;actual measurement (following LEDA data standards);no leaf rehydration;214.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15030;adult;with petiole and rachis;213.75;235.19;180.55;2;;;0;2004-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;33;431665;P 470 Gr. Rummelsberg Biosphärenreservat Schorfheide, Brandenburg;5862718 Campanula trachelium;actual measurement;leaf rehydration;159;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15002;adult;without petiole and rachis;159;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Water-cum-Jolly Dale; Cannabis sativa;actual measurement (following LEDA data standards);no leaf rehydration;231.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14695;adult;with petiole and rachis;229.53;258.29;208.03;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;I1.1 - Intensive unmixed crops;GERMANY;;;P1 Huntlosen (Landkreis Oldenburg); Cannabis sativa;actual measurement (following LEDA data standards);no leaf rehydration;246.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14695;adult;without petiole and rachis;243.15;271.94;218.43;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;I1.1 - Intensive unmixed crops;GERMANY;;;P1 Huntlosen (Landkreis Oldenburg); Capsella bursa-pastoris;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12848;adult;without petiole and rachis;140;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black rock, Derbys; Capsella bursa-pastoris;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12848;adult;without petiole and rachis;130;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Capsella bursa-pastoris;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12848;adult;without petiole and rachis;127;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Capsella bursa-pastoris;actual measurement;leaf rehydration;192.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;12848;adult;without petiole and rachis;196.62;255.68;150.17;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Caragana arborescens;actual measurement (following LEDA data standards);no leaf rehydration;365.44;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20788;adult;with petiole and rachis;365.44;365.44;365.44;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;F3 - Temperate and mediterraneo-montane scrub habitats;GERMANY;32;399564;P 365 slope in vineyard, Bickensohl (Kaiserstuhl) / Baden-Württemberg;5326108 Cardamine amara;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14239;adult;without petiole and rachis;183;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Cardamine amara;actual measurement;leaf rehydration;89;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14239;adult;without petiole and rachis;89;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Beeley, Derbys; Cardamine amara;actual measurement;leaf rehydration;105;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14239;adult;without petiole and rachis;105;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Cardamine bulbifera;laboratory/greenhouse/garden experiment;no leaf rehydration;147.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14430;adult;with petiole and rachis;150.95;171.3;140.64;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Cardamine bulbifera;laboratory/greenhouse/garden experiment;no leaf rehydration;151.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14430;adult;without petiole and rachis;153.52;172.12;140.47;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Cardamine flexuosa;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13294;adult;without petiole and rachis;129;;;2;;;;1996-05-19 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Cardamine heptaphylla;actual measurement (following LEDA data standards);no leaf rehydration;137.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13726;adult;with petiole and rachis;135.38;140.8;121.14;2;;;10;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;406577;P 507 Wolfsgraben, Dinkelberg (Baden-W?emberg);5269780 Cardamine hirsuta;actual measurement;leaf rehydration;136;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14245;adult;without petiole and rachis;136;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Cardamine hirsuta;actual measurement;leaf rehydration;126;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14245;adult;without petiole and rachis;126;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Cardamine hirsuta;actual measurement;leaf rehydration;116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14245;adult;without petiole and rachis;116;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Cardamine impatiens;actual measurement;leaf rehydration;311;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13298;adult;without petiole and rachis;311;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Cardamine parviflora;actual measurement (following LEDA data standards);no leaf rehydration;163.24;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14444;adult;without petiole and rachis;164.46;189.34;148.05;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;33;311982;P 308 NSG Untere Havel Nord, Brandenburg;5846039 Cardamine parviflora;actual measurement (following LEDA data standards);no leaf rehydration;165.3;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14444;adult;with petiole and rachis;167.42;188.85;153.34;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;33;311982;P 308 NSG Untere Havel Nord, Brandenburg;5846039 Cardamine pratensis;actual measurement;leaf rehydration;205;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14249;adult;without petiole and rachis;205;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Cardamine pratensis;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14249;adult;without petiole and rachis;194;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Cardaminopsis arenosa;actual measurement (following LEDA data standards);no leaf rehydration;240.47;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14130;adult;with petiole and rachis;225.44;309.95;153.66;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449210.324;P 10 NSG Krusenbusch (Oldenburg);5882979.866 Cardaminopsis arenosa;actual measurement (following LEDA data standards);no leaf rehydration;138.33;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14130;adult;with petiole and rachis;145.21;178.74;125.8;2;;;0;2004-04-23 00:00:00.0;Preaggregated data obtained from single record. determinated as Cardaminopsis arenosa ssp. borbasii;;unknown from literature;GERMANY;32;;P 211 Kallmünz/ Hammerschloss, Fränkische Schweiz, Bavaria; Cardaminopsis arenosa;actual measurement (following LEDA data standards);no leaf rehydration;209.78;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14130;adult;with petiole and rachis;231.96;395.51;112.78;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449105.366;P12 NSG Krusenbusch (Oldenburg);5883951.477 Cardaminopsis halleri;actual measurement (following LEDA data standards);no leaf rehydration;189.13;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14132;adult;with petiole and rachis;187.04;250.9;127.86;2;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;603654;P 448 beside Bad Lauterberg, Harz (Lower Saxony);5724094 Cardaminopsis halleri;actual measurement (following LEDA data standards);no leaf rehydration;191.5;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14132;adult;without petiole and rachis;191.9;257.94;133.58;2;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;603654;P 448 beside Bad Lauterberg, Harz (Lower Saxony);5724094 Cardaminopsis petraea;actual measurement (following LEDA data standards);no leaf rehydration;139.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13735;adult;with petiole and rachis;144.96;183.71;116.38;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. rosette leaves;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;609650;P 437 NSG Sachsenstein, Harzvorland, Lower Saxony;5715895 Cardaria draba;actual measurement;leaf rehydration;187;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13313;adult;without petiole and rachis;187;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Cardaria draba;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13313;adult;without petiole and rachis;160;;;2;;;;1996-06-25 00:00:00.0;;;;UNITED KINGDOM;;;Great Longstone, Derbys; Cardaria draba;actual measurement;leaf rehydration;138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13313;adult;without petiole and rachis;138;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Mattersey, Notts; Carduus acanthoides;actual measurement (following LEDA data standards);no leaf rehydration;104.78;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3326;adult;with petiole and rachis;111.6;135.63;95.68;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-5 disused rail network Munich city (Bavaria); Carduus acanthoides;actual measurement;leaf rehydration;166;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3326;adult;without petiole and rachis;166;;;1;;;;1997-09-29 00:00:00.0;;;;UNITED KINGDOM;;;Beighton; Carduus crispus;actual measurement;leaf rehydration;131;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2731;adult;without petiole and rachis;131;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Carduus defloratus;actual measurement (following LEDA data standards);no leaf rehydration;172.33;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3164;adult;with petiole and rachis;170.64;176.94;159.45;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Carduus nutans;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3493;adult;without petiole and rachis;137;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Carduus nutans;actual measurement;leaf rehydration;126;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3493;adult;without petiole and rachis;126;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Carduus nutans;actual measurement;leaf rehydration;120;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3493;adult;without petiole and rachis;120;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Carex acuta;actual measurement (following LEDA data standards);no leaf rehydration;331.79;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;38000;adult;without petiole and rachis;331.09;360.08;300.88;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex acutiformis;actual measurement (following LEDA data standards);no leaf rehydration;323.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37460;adult;without petiole and rachis;320.18;335.94;295.19;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex acutiformis;actual measurement;leaf rehydration;343;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37460;adult;without petiole and rachis;343;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Carex alba;actual measurement (following LEDA data standards);no leaf rehydration;363.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37462;adult;with petiole and rachis;363.45;410.68;294.62;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;392883;P 251 Grißheim, Trockenwald/Oberrhein (upper Rhine);5303777 Carex appropinquata;actual measurement (following LEDA data standards);no leaf rehydration;295.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37464;adult;with petiole and rachis;292.99;327.7;267.74;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;D5.2 - Beds of large sedges normally without free-standing water;GERMANY;32;403985;P 533 NSG Flumm-Niederung, NW - Lower Saxony;5917782 Carex appropinquata;actual measurement (following LEDA data standards);no leaf rehydration;243.39;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37464;adult;with petiole and rachis;244.46;270.2;223.73;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Carex aquatilis;actual measurement (following LEDA data standards);no leaf rehydration;436.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38015;adult;with petiole and rachis;438.66;499.02;378.38;2;;;0;2004-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;D5.2 - Beds of large sedges normally without free-standing water;GERMANY;32;401756;P 279 NSG Flumm-Niederung, Ostfriesland;5916757 Carex arenaria;actual measurement;leaf rehydration;371;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38017;adult;without petiole and rachis;371;;;2;;;;1996-08-24 00:00:00.0;;;;UNITED KINGDOM;;;Alnmouth; Carex arenaria;actual measurement;leaf rehydration;321;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38017;adult;without petiole and rachis;321;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Carex atrata;actual measurement (following LEDA data standards);no leaf rehydration;284.6;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;37469;adult;without petiole and rachis;296.37;327.1;277.4;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Carex atrofusca;actual measurement (following LEDA data standards);no leaf rehydration;299.61;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;37347;adult;with petiole and rachis;306.49;410.98;229.69;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608416;Hessdalen 04;6951841 Carex bigelowii;actual measurement (following LEDA data standards);no leaf rehydration;367.6;11;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;37350;adult;without petiole and rachis;376.9;477.4;309.6;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Carex brizoides;actual measurement (following LEDA data standards);no leaf rehydration;406.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37356;adult;with petiole and rachis;401.15;454.67;347.29;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;;P 227 Gündlinger Wald, Oberrheinebene (upper Rhine valley); Carex buxbaumii;actual measurement (following LEDA data standards);no leaf rehydration;280.9;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37932;adult;with petiole and rachis;288.1;320.49;263.82;2;;;1;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Carex capillaris;actual measurement (following LEDA data standards);no leaf rehydration;365.44;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;37936;adult;with petiole and rachis;404.62;628.38;339.53;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608437;Hessdalen 05;6951855 Carex caryophyllea;actual measurement;leaf rehydration;323;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37362;adult;without petiole and rachis;323;;;2;;;;;;;;UNITED KINGDOM;;;; Carex caryophyllea;actual measurement;leaf rehydration;297;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37362;adult;without petiole and rachis;297;;;2;;;;;;;;UNITED KINGDOM;;;; Carex cespitosa;actual measurement (following LEDA data standards);no leaf rehydration;238.87;7;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37943;adult;with petiole and rachis;238.14;257.72;222.48;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Carex cespitosa;actual measurement (following LEDA data standards);no leaf rehydration;295.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37943;adult;with petiole and rachis;295.36;361.87;222.43;2;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;D5.2 - Beds of large sedges normally without free-standing water;GERMANY;32;492188;P 526 NSG Galgenwiesen, B?tal, Schwabian Alb, Baden-W?emberg;5328282 Carex chordorrhiza;actual measurement (following LEDA data standards);no leaf rehydration;348.11;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37947;adult;with petiole and rachis;348.11;367.98;328.24;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;G3.E - Nemoral bog conifer woodland;GERMANY;32;502534;P 524 ND Winterried, Baden-W?emberg;5287359 Carex curta;actual measurement (following LEDA data standards);no leaf rehydration;193.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37950;adult;without petiole and rachis;223.78;379.14;167.43;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex curta;actual measurement;leaf rehydration;329;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37950;adult;without petiole and rachis;329;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Carex davalliana;actual measurement (following LEDA data standards);no leaf rehydration;266.61;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37956;adult;with petiole and rachis;268.68;298.91;239.38;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;500828;P 520 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5289577 Carex demissa;actual measurement (following LEDA data standards);no leaf rehydration;232.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37374;adult;with petiole and rachis;232.88;265.42;205.87;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Carex demissa;actual measurement;leaf rehydration;345;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37374;adult;without petiole and rachis;345;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Carex demissa;actual measurement;leaf rehydration;322;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37374;adult;without petiole and rachis;322;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Carex digitata;actual measurement;leaf rehydration;333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37970;adult;without petiole and rachis;333;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Carex digitata;actual measurement (following LEDA data standards);leaf rehydration;215.31;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37970;adult;with petiole and rachis;221.12;244.14;213.63;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Carex dioica;actual measurement (following LEDA data standards);no leaf rehydration;361.99;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37381;adult;with petiole and rachis;352.12;406.3;288.22;2;;;0;2005-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;SWEDEN;;;Muskmyr, Gotland Sweden; Carex dioica;actual measurement;leaf rehydration;378;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37381;adult;without petiole and rachis;378;;;1;;;;1997-06-13 00:00:00.0;;;;UNITED KINGDOM;;;Whitwell Wood; Carex distans;actual measurement (following LEDA data standards);no leaf rehydration;276.35;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37979;adult;with petiole and rachis;272.86;286.48;248.53;2;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;352486;P 270 Borkum (NO), National park Niedersächsiches Wattenmeer;5941614 Carex distans;actual measurement (following LEDA data standards);no leaf rehydration;331.62;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37979;adult;with petiole and rachis;328.48;358.27;284.36;1;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;494600;P 518 NSG Radolfzeller Aachried, Lake of Constance, Baden-W?emberg;5286922 Carex disticha;actual measurement;leaf rehydration;330.11;14;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;37982;adult;without petiole and rachis;330.36;348.1;307.62;2;;;0;2003-06-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;350321;national park Müritz;5923935 Carex divulsa;actual measurement;leaf rehydration;105;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37393;adult;without petiole and rachis;105;;;1;;;;1997-09-13 00:00:00.0;;;;UNITED KINGDOM;;;Coombs Dale; Carex divulsa subsp. leersii;actual measurement (following LEDA data standards);no leaf rehydration;274.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36954;adult;with petiole and rachis;269.52;324.24;217.02;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;E5 - Woodland fringes and clearings and tall forb habitats;GERMANY;32;393182;P 223 Teiler-Wald, Oberrimsingen, Oberrheinebene (upper Rhine valley);5316232 Carex echinata;actual measurement;leaf rehydration;386;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37888;adult;without petiole and rachis;386;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Carex echinata;actual measurement;leaf rehydration;345;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37888;adult;without petiole and rachis;345;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Carex elata;actual measurement (following LEDA data standards);no leaf rehydration;344.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37396;adult;without petiole and rachis;345.23;372.66;316.35;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex elongata;actual measurement (following LEDA data standards);no leaf rehydration;270.47;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37397;adult;with petiole and rachis;263.73;277.06;236.82;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;G1.B - Non-riverine [Alnus] woodland;GERMANY;32;502534;P 523a, Erlenbruch closely to Winterried, Bodan, Baden-W?emberg;5287359 Carex extensa;actual measurement (following LEDA data standards);no leaf rehydration;320.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37399;adult;with petiole and rachis;321.23;358.17;292.26;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Carex flacca;actual measurement (following LEDA data standards);no leaf rehydration;383.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37912;adult;without petiole and rachis;378.41;404.38;345.43;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex flacca;actual measurement;leaf rehydration;352;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37912;adult;without petiole and rachis;352;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Carex flacca;actual measurement;leaf rehydration;284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37912;adult;without petiole and rachis;284;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Carex flacca;actual measurement;leaf rehydration;312.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;37912;adult;without petiole and rachis;305.39;326.66;237.31;2;;;0;2003-06-23 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348715;national park Müritz;5924952 Carex flava;actual measurement (following LEDA data standards);no leaf rehydration;245.43;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37404;adult;with petiole and rachis;255.83;307.83;223.61;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;;;P 370 near Rinken (NSG Feldberg), Black forest (Baden-Württemberg); Carex frigida;actual measurement (following LEDA data standards);no leaf rehydration;198.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37406;adult;with petiole and rachis;210.13;277.77;178.24;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. #1: ground leaves, rest stem leaves;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;;P 375a NSG Feldberg (Schwarzwald), Baden-Württemberg; Carex hallerana;field experiment;leaf rehydration;404;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;37290;adult;without petiole and rachis;404;;;10;5;5;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Carex hallerana;field experiment;leaf rehydration;373;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;37290;adult;without petiole and rachis;373;;;10;11;11;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Carex hirta;actual measurement;leaf rehydration;310;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37296;adult;without petiole and rachis;310;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Carex hirta;actual measurement;leaf rehydration;316.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;37296;adult;without petiole and rachis;311.54;351.54;253.77;2;;;0;2003-06-04 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;350038;national park Müritz;5924197 Carex hirta;actual measurement;leaf rehydration;299;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37296;adult;without petiole and rachis;299;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Carex hirta;actual measurement;leaf rehydration;239;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37296;adult;without petiole and rachis;239;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Carex hostiana;actual measurement (following LEDA data standards);no leaf rehydration;353.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37300;adult;with petiole and rachis;349;364.65;299.39;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;500828;P 520 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5289577 Carex humilis;actual measurement (following LEDA data standards);no leaf rehydration;349.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37847;adult;with petiole and rachis;344.9;379.73;276.99;2;;;0;2004-04-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;5450634;P 207 Fränkische Schweiz, Kallmünz (Regensburg/Bavaria);716066 Carex laevigata;actual measurement;leaf rehydration;278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37865;adult;without petiole and rachis;278;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Yorkshire Bridge; Carex laevigata;actual measurement;leaf rehydration;266;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37865;adult;without petiole and rachis;266;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Carex lasiocarpa;actual measurement (following LEDA data standards);no leaf rehydration;394.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37319;adult;without petiole and rachis;396.54;421.52;358.15;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex lasiocarpa;actual measurement (following LEDA data standards);leaf rehydration;385.11;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37319;adult;with petiole and rachis;387.18;408.17;374.29;1;;;0;2003-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;D5.2 - Beds of large sedges normally without free-standing water;GERMANY;;;MK23 Paschensee, Mecklenburg-Vorpommern; Carex lasiocarpa;actual measurement (following LEDA data standards);no leaf rehydration;329.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37319;adult;with petiole and rachis;334.51;354.4;313.88;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;502926;P 522 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5289147 Carex lepidocarpa;actual measurement;leaf rehydration;346;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37871;adult;without petiole and rachis;346;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Carex lepidocarpa;actual measurement;leaf rehydration;327;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37871;adult;without petiole and rachis;327;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Carex ligerica;actual measurement (following LEDA data standards);no leaf rehydration;410.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37874;adult;with petiole and rachis;394.31;471.35;297.12;2;;;0;2005-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;;;P 537 Weser-Aller area between Verden (Lower Saxony) and Bremen; Carex limosa;actual measurement (following LEDA data standards);no leaf rehydration;307.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37761;adult;with petiole and rachis;311.97;331.81;296.3;1;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;432992;P 515 NSG Horbacher Moor, Hotzenwald (Baden-W?emberg);5287560 Carex magellanica;actual measurement (following LEDA data standards);no leaf rehydration;264.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37333;adult;with petiole and rachis;270.18;311.53;237.38;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.D - Boreal bog conifer woodland;GERMANY;;;MK-2 Gr. Arber-Gipfel (south), Bavarian Forest, Bavaria; Carex magellanica;actual measurement (following LEDA data standards);no leaf rehydration;264.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37333;adult;with petiole and rachis;270.18;311.53;237.38;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.D - Boreal bog conifer woodland;GERMANY;;;MK-2 Gr. Arber-Gipfel (south), Bavarian Forest, Bavaria; Carex montana;actual measurement (following LEDA data standards);no leaf rehydration;283.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37346;adult;with petiole and rachis;283.64;302.85;268.63;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Carex montana;actual measurement;leaf rehydration;346;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37346;adult;without petiole and rachis;346;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Carex muricata;actual measurement;leaf rehydration;323;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37224;adult;without petiole and rachis;323;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Carex muricata;actual measurement;leaf rehydration;353;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37224;adult;without petiole and rachis;353;;;1;;;;1997-05-29 00:00:00.0;;;;UNITED KINGDOM;;;Bawtry; Carex nigra;actual measurement (following LEDA data standards);no leaf rehydration;386.7;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;37228;adult;without petiole and rachis;382.8;421.7;340;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Carex nigra;actual measurement (following LEDA data standards);no leaf rehydration;396.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;37228;adult;without petiole and rachis;390.71;426.21;326.04;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex nigra;actual measurement;leaf rehydration;334.22;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;37228;adult;without petiole and rachis;326.47;355.76;277.41;2;;;0;2003-06-27 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349147;national park Müritz;5924593 Carex ornithopoda;actual measurement (following LEDA data standards);no leaf rehydration;274.99;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37237;adult;with petiole and rachis;262.72;286.14;214.76;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;398325;P 222 Teiler-Wald, Oberrimsingen, Oberrheinebene (upper Rhine valley);5316161 Carex otrubae;actual measurement;leaf rehydration;318;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37711;adult;without petiole and rachis;318;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Carex ovalis;actual measurement;leaf rehydration;336;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37242;adult;without petiole and rachis;336;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Carex pallescens;actual measurement (following LEDA data standards);no leaf rehydration;264.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37247;adult;with petiole and rachis;270.6;301.14;241.77;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;;P 227, Gündlinger Wald (upper Rhine valley); Carex panicea;actual measurement;leaf rehydration;351;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37248;adult;without petiole and rachis;351;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Carex panicea;actual measurement;leaf rehydration;418.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;37248;adult;without petiole and rachis;409.94;561.98;295.88;2;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348259;national park Müritz;5924828 Carex paniculata;actual measurement (following LEDA data standards);no leaf rehydration;300.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37249;adult;without petiole and rachis;302.38;326.74;282.28;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex paniculata;actual measurement;leaf rehydration;290;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37249;adult;without petiole and rachis;290;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Carex pauciflora;actual measurement (following LEDA data standards);no leaf rehydration;355.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37251;adult;with petiole and rachis;355.99;396.23;303.42;1;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;432992;P 515 NSG Horbacher Moor, Hotzenwald (Baden-W?emberg);5287560 Carex pauciflora;actual measurement (following LEDA data standards);no leaf rehydration;258.36;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37251;adult;with petiole and rachis;253.39;272.3;225.06;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.D - Boreal bog conifer woodland;GERMANY;;;MK-2 Gr. Arber-Gipfel (south), Bavarian Forest, Bavaria; Carex pendula;actual measurement;leaf rehydration;278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37253;adult;without petiole and rachis;278;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Water-cum-Jolly Dale; Carex pendula;actual measurement;leaf rehydration;325;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37253;adult;without petiole and rachis;325;;;1;;;;1997-09-01 00:00:00.0;;;;UNITED KINGDOM;;;Eakring; Carex pilosa;actual measurement (following LEDA data standards);no leaf rehydration;294.31;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37256;adult;with petiole and rachis;299.55;341.11;266.88;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;399913;P 228 Gündlinger Wald, Oberrheinebene (upper Rhine valley);5318138 Carex pilulifera;actual measurement;leaf rehydration;328;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37739;adult;without petiole and rachis;328;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Carex pseudocyperus;actual measurement (following LEDA data standards);no leaf rehydration;308.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37263;adult;without petiole and rachis;306.98;327.71;281.8;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex pulicaris;actual measurement (following LEDA data standards);no leaf rehydration;347.33;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37751;adult;with petiole and rachis;351.77;426.6;260.54;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;503124;P 521 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5288687 Carex pulicaris;actual measurement;leaf rehydration;351;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37751;adult;without petiole and rachis;351;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Carex punctata;actual measurement (following LEDA data standards);no leaf rehydration;323.97;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37752;adult;with petiole and rachis;301.92;337.34;228.38;2;;;0;2005-07-05 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog; Carex remota;actual measurement;leaf rehydration;273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37756;adult;without petiole and rachis;273;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Carex remota;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37756;adult;without petiole and rachis;235;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Carex riparia;actual measurement (following LEDA data standards);no leaf rehydration;329.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37273;adult;without petiole and rachis;326.01;346.63;306.43;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex riparia;actual measurement;leaf rehydration;324;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37273;adult;without petiole and rachis;324;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Carex rostrata;actual measurement (following LEDA data standards);no leaf rehydration;169.8;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37274;adult;with petiole and rachis;169.9;181.31;159.18;2;;;1;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;D5 - Sedge and reedbeds. normally without free-standing water;NETHERLANDS;;;Kogelbergsveen; Carex rostrata;actual measurement (following LEDA data standards);no leaf rehydration;244.54;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37274;adult;with petiole and rachis;252.19;293.41;210.73;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Carex rostrata;actual measurement (following LEDA data standards);no leaf rehydration;323.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37274;adult;without petiole and rachis;317.59;333.4;294.29;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex rupestris;actual measurement (following LEDA data standards);no leaf rehydration;353.41;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;37277;adult;with petiole and rachis;365.75;417.03;298.65;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;H3.6 - Weathered rock and outcrop habitats;NORWAY;32;609857;Hessdalen 08;6951926 Carex saxatilis;actual measurement (following LEDA data standards);no leaf rehydration;329.5;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;37653;adult;without petiole and rachis;337.23;371.4;310.2;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Carex saxatilis;actual measurement (following LEDA data standards);no leaf rehydration;322.6;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;37653;adult;without petiole and rachis;331.83;361.3;320.8;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;D2 - Valley mires. poor fens and transition mires;NORWAY;32;604700;Hessdalen;6958700 Carex scandinavica;actual measurement (following LEDA data standards);leaf rehydration;312.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37016;adult;with petiole and rachis;309.78;340.17;269.85;1;;;0;2003-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;;;MK22 NSG Großer Langenhagensee, Mecklenburg-Vorpommern; Carex spicata;actual measurement (following LEDA data standards);no leaf rehydration;171.81;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37285;adult;with petiole and rachis;170.76;179.06;161.42;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Carex spicata;actual measurement (following LEDA data standards);no leaf rehydration;302.09;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37285;adult;with petiole and rachis;305.97;336.78;293.14;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;SWEDEN;;;Grötlingbo, Gotland Sweden; Carex spicata;actual measurement;leaf rehydration;275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37285;adult;without petiole and rachis;275;;;1;;;;1997-07-14 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Carex strigosa;actual measurement (following LEDA data standards);no leaf rehydration;151.88;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37674;adult;with petiole and rachis;155.36;168.43;146.37;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;406952;P 505 Wolfsgraben, Dinkelberg (Baden-W?emberg);5269960 Carex strigosa;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37674;adult;without petiole and rachis;170;;;1;;;;1997-06-06 00:00:00.0;;;;UNITED KINGDOM;;;Linacre; Carex sylvatica;actual measurement;leaf rehydration;324;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37678;adult;without petiole and rachis;324;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Carex tomentosa;actual measurement (following LEDA data standards);no leaf rehydration;354.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37173;adult;with petiole and rachis;363.93;409.91;322.94;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;494600;P 518 NSG Radolfzeller Aachried, Lake of Constance, Baden-W?emberg;5286922 Carex trinervis;actual measurement (following LEDA data standards);no leaf rehydration;270.76;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37174;adult;with petiole and rachis;278.21;319.59;242.96;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Carex trinervis;actual measurement (following LEDA data standards);no leaf rehydration;252.61;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37174;adult;with petiole and rachis;274.11;359.17;214.44;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;348111;P 274 Borkum (SW), National park Niedersächsiches Wattenmeer;5938927 Carex umbrosa;actual measurement (following LEDA data standards);no leaf rehydration;390.44;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37688;adult;with petiole and rachis;388.67;397.63;377.94;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. three samples of each tussock;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;399160;P 225 Gündlinger Wald/Zwölferholz, Oberrheinebene (upper Rhine valley);5317299 Carex vaginata;actual measurement (following LEDA data standards);no leaf rehydration;264.04;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;37695;adult;with petiole and rachis;265.25;327.88;226.42;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608440;Hessdalen 09;6951854 Carex vesicaria;actual measurement (following LEDA data standards);no leaf rehydration;320.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37183;adult;without petiole and rachis;320.59;353.3;298.69;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex vulpina;actual measurement (following LEDA data standards);no leaf rehydration;255.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37185;adult;without petiole and rachis;250.48;269.89;211.45;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Carex vulpina;actual measurement (following LEDA data standards);no leaf rehydration;375.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37185;adult;with petiole and rachis;398.48;538.65;319.04;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;;P 296 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue ; Carlina acaulis;actual measurement (following LEDA data standards);no leaf rehydration;177.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3171;adult;with petiole and rachis;177.04;189.08;162.34;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Carlina acaulis;actual measurement (following LEDA data standards);no leaf rehydration;188.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3171;adult;without petiole and rachis;184.6;194.67;167.44;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Carlina vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;98.15;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3338;adult;with petiole and rachis;97.62;105.31;88.33;2;;;0;2005-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;SWEDEN;;;Eke, Gotland Sweden; Carlina vulgaris s. vulgaris;actual measurement;leaf rehydration;281;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2945;adult;without petiole and rachis;281;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Carlina vulgaris s. vulgaris;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2945;adult;without petiole and rachis;156;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Carpinus betulus;actual measurement (following LEDA data standards);no leaf rehydration;258.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17990;adult;with petiole and rachis;254.24;295.18;205.2;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437393;P 212 Wald near Gristede, Landkreis Ammerland;5898075 Carpinus betulus;actual measurement (following LEDA data standards);no leaf rehydration;258.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17990;adult;without petiole and rachis;254.51;295.82;204.58;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437393;P 212 Wald near Gristede, Landkreis Ammerland;5898075 Carthamus tinctorius;laboratory/greenhouse/garden experiment;no leaf rehydration;145.99;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3822;adult;with petiole and rachis;145.99;145.99;145.99;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Carum carvi;actual measurement (following LEDA data standards);no leaf rehydration;178.51;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2331;adult;with petiole and rachis;175.86;184.59;161.81;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;518254;P 386a Schwabian Alb (near Trochtelfingen), ND Flachsbühl;5352515 Castanea sativa;actual measurement;leaf rehydration;265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22480;adult;without petiole and rachis;265;;;5;12.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Castanea sativa;actual measurement;leaf rehydration;262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22480;adult;without petiole and rachis;262;;;5;9.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Castanea sativa;actual measurement;leaf rehydration;269;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22480;adult;without petiole and rachis;269;;;5;12.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Catabrosa aquatica;actual measurement;leaf rehydration;196;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41695;adult;without petiole and rachis;196;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Catabrosa aquatica;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41695;adult;without petiole and rachis;127;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Catananche caerulea;field experiment;leaf rehydration;152;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;2948;adult;without petiole and rachis;152;;;10;7;7;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Catananche caerulea;field experiment;leaf rehydration;126;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;2948;adult;without petiole and rachis;126;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Centaurea calcitrapa;laboratory/greenhouse/garden experiment;no leaf rehydration;165.83;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2960;adult;with petiole and rachis;165.83;165.83;165.83;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Centaurea cyanus;laboratory/greenhouse/garden experiment;no leaf rehydration;196.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3132;adult;with petiole and rachis;184.06;227.87;114.9;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Centaurea cyanus;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3132;adult;without petiole and rachis;171;;;1;;;;1997-09-13 00:00:00.0;;;;UNITED KINGDOM;;;Staveley; Centaurea diffusa;actual measurement (following LEDA data standards);no leaf rehydration;203.49;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6142;adult;with petiole and rachis;197.1;219.37;161.86;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;J4.1 - Weed communities of transport networks and other constructed hard-surfaced areas;GERMANY;;;P 421 Apolda, beside railway station (Th); Centaurea jacea;actual measurement;leaf rehydration;219.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;4270;adult;without petiole and rachis;217.98;233.47;192.96;2;;;0;2003-07-08 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348644;national park M?z;5924405 Centaurea montana;actual measurement;leaf rehydration;79;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2682;adult;without petiole and rachis;79;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Bretton, Derbys; Centaurea nigra;actual measurement;leaf rehydration;172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3754;adult;without petiole and rachis;172;;;2;;;;;;;;UNITED KINGDOM;;;; Centaurea nigra;actual measurement;leaf rehydration;169;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3754;adult;without petiole and rachis;169;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Centaurea nigra;actual measurement;leaf rehydration;122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3754;adult;without petiole and rachis;122;;;2;;;;;;;;UNITED KINGDOM;;;; Centaurea phrygia subsp. pseudophrygia;actual measurement (following LEDA data standards);no leaf rehydration;144.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3702;adult;with petiole and rachis;149.33;194.54;132.24;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E2.2 - Coarse permanent grassland and tall herbs. usually mown but little grazed;GERMANY;32;614236;P 424 FFH Wolfsbachtal (Harz, Lower Saxony);5725252 Centaurea phrygia subsp. pseudophrygia;actual measurement (following LEDA data standards);no leaf rehydration;145.73;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3702;adult;without petiole and rachis;149.14;166.37;136.35;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E2.2 - Coarse permanent grassland and tall herbs. usually mown but little grazed;GERMANY;32;614236;P 424 FFH Wolfsbachtal (Harz, Lower Saxony);5725252 Centaurea scabiosa;actual measurement;leaf rehydration;197;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3597;adult;without petiole and rachis;197;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Centaurea solstitialis;laboratory/greenhouse/garden experiment;no leaf rehydration;183.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3444;adult;with petiole and rachis;181.79;203.76;138.04;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Centaurea stoebe s.lat.;actual measurement (following LEDA data standards);no leaf rehydration;132.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60957;adult;without petiole and rachis;134.23;180.12;109.34;2;;;0;2004-09-11 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-15 Munich, disused railway network, Bavaria; Centaurea stoebe s.lat.;actual measurement (following LEDA data standards);no leaf rehydration;130.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60957;adult;with petiole and rachis;131.3;180.69;106.39;2;;;0;2004-09-11 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-15 Munich, disused railway network, Bavaria; Centaurea stoebe s.lat.;actual measurement (following LEDA data standards);no leaf rehydration;231.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60957;adult;with petiole and rachis;235.13;275.6;212.02;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. rosette leaves of new rosettes;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;33;437398;P 460 Oderhänge near Gabow I, Biosphärenreservat Schorfheide-Chorin (Brandenburg);5852165 Centaurium erythraea;actual measurement (following LEDA data standards);no leaf rehydration;285.5;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22963;adult;with petiole and rachis;291.75;316.31;276.29;1;;;0;;Preaggregated data obtained from single record. ;;;GERMANY;;;MK 1, Schwäbische Alb; Centaurium erythraea;actual measurement;leaf rehydration;311;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22963;adult;without petiole and rachis;311;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Centaurium erythraea;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22963;adult;without petiole and rachis;183;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Centaurium littorale;actual measurement (following LEDA data standards);no leaf rehydration;296.07;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22951;adult;with petiole and rachis;297.36;348.94;253.33;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Centaurium littorale;actual measurement (following LEDA data standards);no leaf rehydration;225.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22951;adult;with petiole and rachis;218.93;251.13;173.46;1;;;0;2003-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;435715.724;P2 Schillig, Friesland /coast of Northsea;5951029.635 Centaurium pulchellum;actual measurement (following LEDA data standards);no leaf rehydration;184.38;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22823;adult;with petiole and rachis;180.32;232.92;119.12;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;I1.5 - Bare tilled. fallow or recently abandoned arable land;GERMANY;32;644382.5933;P5 Biophärenreservat Niedersächsische Elbtalaue, wechselfeuchte Ackerbrache;5888089.245 Centranthus ruber;actual measurement (following LEDA data standards);no leaf rehydration;138.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34865;adult;with petiole and rachis;130.96;148.98;90.07;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;J1 - Buildings of cities. towns and villages;GERMANY;32;;P 242 Burkheim, Stadtmauer/Kaiserstuhl; Centranthus ruber;actual measurement;leaf rehydration;138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34865;adult;without petiole and rachis;138;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Cephalanthera damasonium;actual measurement (following LEDA data standards);no leaf rehydration;147.43;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39459;adult;with petiole and rachis;148.94;158.49;140.9;1;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;409555;P 512 Ebringen, Sch?rg, NSG Jennetal (Baden-W?emberg);5312993 Cephalanthera damasonium;actual measurement (following LEDA data standards);no leaf rehydration;184.7;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39459;adult;with petiole and rachis;186.44;192.54;182.07;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 416 c/b Golmsdorf northern forest slope (Thüringen); Cephalanthera longifolia;actual measurement (following LEDA data standards);no leaf rehydration;209.71;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);39466;adult;with petiole and rachis;208.21;220.13;195.89;1;;;;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. ;;G3.4 - [Pinus sylvestris] woodland south of the taiga;SWEDEN;34;366205;Gotland, Åminne 2;6388369 Cephalanthera longifolia;actual measurement (following LEDA data standards);no leaf rehydration;150.39;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39466;adult;with petiole and rachis;150.39;150.39;150.39;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 379 Zastlertal/Sommerhalde, Black forest, Baden-Württemberg; Cephalanthera longifolia;actual measurement (following LEDA data standards);no leaf rehydration;195.25;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;39466;adult;with petiole and rachis;194.25;212.65;177.87;2;;;0;2005-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;SWEDEN;;;Eke, Gotland Sweden; Cerastium alpinum;actual measurement (following LEDA data standards);no leaf rehydration;201.15;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;16895;adult;with petiole and rachis;200.94;245.99;148.73;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608420;Hessdalen 11;6951863 Cerastium arvense;actual measurement;leaf rehydration;194.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;16782;adult;without petiole and rachis;196.89;226.47;172.71;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Cerastium cerastoides;actual measurement (following LEDA data standards);no leaf rehydration;268.82;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;17207;adult;with petiole and rachis;283.24;388.39;222.22;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608440;Hessdalen 12;6951940 Cerastium cerastoides;actual measurement (following LEDA data standards);no leaf rehydration;185.8;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;17207;adult;with petiole and rachis;179.83;218.7;129;8;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 8-14 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Cerastium diffusum;actual measurement;leaf rehydration;134;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16473;adult;without petiole and rachis;134;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Cerastium diffusum;actual measurement;leaf rehydration;175;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16473;adult;without petiole and rachis;175;;;1;;;;1997-08-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Cerastium diffusum;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16473;adult;without petiole and rachis;176;;;1;;;;1997-07-27 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley; Cerastium fontanum;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16798;adult;without petiole and rachis;140;;;2;;;;;;;;UNITED KINGDOM;;;; Cerastium fontanum;actual measurement;leaf rehydration;116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16798;adult;without petiole and rachis;116;;;2;;;;2004-10-17 00:00:00.0;;;;ITALY;;;Saronno; Cerastium fontanum;actual measurement;leaf rehydration;147;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16798;adult;without petiole and rachis;147;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Cerastium fontanum;actual measurement;leaf rehydration;118;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16798;adult;without petiole and rachis;118;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Surprise view; Cerastium fontanum s. vulgare;actual measurement (following LEDA data standards);no leaf rehydration;177.3;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44993;adult;with petiole and rachis;174.8;190.02;157.07;1;;;0;2003-07-15 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Cerastium glomeratum;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17356;adult;without petiole and rachis;186;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Cerastium glomeratum;actual measurement;leaf rehydration;115;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17356;adult;without petiole and rachis;115;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Cerastium glomeratum;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17356;adult;without petiole and rachis;127;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Cerastium glomeratum;actual measurement;leaf rehydration;192.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;17356;adult;without petiole and rachis;193.61;249.98;112.46;2;;;0;2003-06-11 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;350131;national park Müritz;5924046 Cerastium pumilum;actual measurement (following LEDA data standards);no leaf rehydration;120.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16863;adult;with petiole and rachis;125.98;162.75;101.74;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-7 disused rail network Munich city (Bavaria); Cerastium semidecandrum;actual measurement;leaf rehydration;211;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15651;adult;without petiole and rachis;211;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Cerastium semidecandrum;actual measurement;leaf rehydration;145;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15651;adult;without petiole and rachis;145;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Cerastium semidecandrum;actual measurement;leaf rehydration;197;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15651;adult;without petiole and rachis;197;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Cerastium tomentosum;actual measurement (following LEDA data standards);no leaf rehydration;223.97;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16387;adult;with petiole and rachis;233.86;284.42;200.46;2;;;0;2005-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;H - Inland unvegetated or sparsely vegetated habitats;SWEDEN;;;Visby, Gotland Sweden; Ceratocapnos claviculata;actual measurement (following LEDA data standards);no leaf rehydration;79.6;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45620;adult;with petiole and rachis;80.96;88.43;74.56;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437393;P 212 Gristede (Landkreis Ammerland);5898075 Ceratocapnos claviculata;actual measurement (following LEDA data standards);no leaf rehydration;85.37;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45620;adult;without petiole and rachis;86.21;96.67;79.29;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437393;P 212 Gristede (Landkreis Ammerland);5898075 Ceratophyllum demersum;actual measurement (following LEDA data standards);no leaf rehydration;148.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;17691;adult;without petiole and rachis;148.5;155.22;143.1;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Ceratophyllum demersum;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17691;adult;without petiole and rachis;127;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Ceratophyllum demersum;actual measurement;leaf rehydration;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17691;adult;without petiole and rachis;111;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Chaenorhinum minus;actual measurement (following LEDA data standards);no leaf rehydration;107.64;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33202;adult;with petiole and rachis;106.84;139.15;72.93;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;507089;P 385 weed communities in farmland, Bühleberge (Swabian Alb);5354408 Chaenorhinum minus;actual measurement;leaf rehydration;121;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33202;adult;without petiole and rachis;121;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Chaenorhinum minus;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33202;adult;without petiole and rachis;135;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Chaenorhinum minus;actual measurement;leaf rehydration;132;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33202;adult;without petiole and rachis;132;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Totley, Sheffield; Chaerophyllum bulbosum;laboratory/greenhouse/garden experiment;no leaf rehydration;264.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1394;adult;with petiole and rachis;262.15;287.3;213.9;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Chaerophyllum hirsutum;actual measurement (following LEDA data standards);no leaf rehydration;109.26;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1398;adult;with petiole and rachis;121.75;186.36;93.93;2;;;0;2004-05-15 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;;P 253 Kappler Tal near Freiburg i.Br., Black forest; Chaerophyllum hirsutum;actual measurement (following LEDA data standards);no leaf rehydration;158.48;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1398;adult;without petiole and rachis;164.5;231.48;127.6;2;;;0;2004-05-15 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;;P 253 Kappler Tal near Freiburg i.Br., Black forest; Chaerophyllum temulum;actual measurement;leaf rehydration;249;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;59605;adult;without petiole and rachis;249;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Water-cum-Jolly Dale; Chamomilla recutita;actual measurement;leaf rehydration;113;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5994;adult;without petiole and rachis;113;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Chamomilla recutita;actual measurement;leaf rehydration;112;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5994;adult;without petiole and rachis;112;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Chamomilla recutita;actual measurement;leaf rehydration;104;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5994;adult;without petiole and rachis;104;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Chamomilla suaveolens;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5904;adult;without petiole and rachis;142;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Surprise view; Chamomilla suaveolens;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5904;adult;without petiole and rachis;127;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Chamomilla suaveolens;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5904;adult;without petiole and rachis;135;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Chelidonium majus;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25435;adult;without petiole and rachis;202;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Chelidonium majus;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25435;adult;without petiole and rachis;171;;;2;;;;1996-05-19 00:00:00.0;;;;UNITED KINGDOM;;;Bradbury; Chenopodium album;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17842;adult;without petiole and rachis;188;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Chenopodium album;actual measurement;leaf rehydration;145;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17842;adult;without petiole and rachis;145;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Chenopodium album;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17842;adult;without petiole and rachis;160;;;2;;;;1996-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Chenopodium ambrosioides;laboratory/greenhouse/garden experiment;no leaf rehydration;168.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17719;adult;with petiole and rachis;168.55;196.5;139.94;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Chenopodium bonus-henricus;actual measurement (following LEDA data standards);leaf rehydration;186.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17724;adult;with petiole and rachis;183.48;205.84;165;1;;;0;2003-06-20 00:00:00.0;Preaggregated data obtained from single record. ;;E5 - Woodland fringes and clearings and tall forb habitats;GERMANY;32;544810;MK 6, Schwäbische Alb;5580050 Chenopodium bonus-henricus;actual measurement (following LEDA data standards);leaf rehydration;187.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17724;adult;without petiole and rachis;183.83;205.98;162.06;1;;;0;2003-06-20 00:00:00.0;Preaggregated data obtained from single record. ;;E5 - Woodland fringes and clearings and tall forb habitats;GERMANY;32;544810;MK 6, Schwäbische Alb;5580050 Chenopodium bonus-henricus;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17724;adult;without petiole and rachis;176;;;1;;;;1997-06-26 00:00:00.0;;;;UNITED KINGDOM;;;Marsh Lane; Chenopodium ficifolium;laboratory/greenhouse/garden experiment;no leaf rehydration;181.58;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17866;adult;with petiole and rachis;181.58;204.87;158.29;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Chenopodium ficifolium;laboratory/greenhouse/garden experiment;no leaf rehydration;185.14;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17866;adult;without petiole and rachis;185.14;212.27;158;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Chenopodium ficifolium;actual measurement (following LEDA data standards);no leaf rehydration;252.27;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17866;adult;without petiole and rachis;248.64;260.71;232.95;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Chenopodium ficifolium;actual measurement (following LEDA data standards);no leaf rehydration;225.24;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17866;adult;with petiole and rachis;226.41;244.84;209.14;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Chenopodium ficifolium;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17866;adult;without petiole and rachis;214;;;2;;;;1996-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Chenopodium glaucum;actual measurement (following LEDA data standards);no leaf rehydration;126.92;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17874;adult;with petiole and rachis;124.46;171.63;87.78;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Chenopodium glaucum;actual measurement (following LEDA data standards);no leaf rehydration;125.13;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17874;adult;without petiole and rachis;123.14;173.11;84.76;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Chenopodium hybridum;actual measurement (following LEDA data standards);no leaf rehydration;103.13;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17875;adult;with petiole and rachis;108.98;140.86;89.14;2;;;0;2005-07-06 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Sint Annaparochie; Chenopodium hybridum;actual measurement (following LEDA data standards);no leaf rehydration;174.02;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17875;adult;without petiole and rachis;177.63;225.39;157.52;2;;;0;2004-07-25 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;MK-5 Münzesheim i. Kraichgau, Baden-Württemberg; Chenopodium hybridum;actual measurement (following LEDA data standards);no leaf rehydration;171.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17875;adult;with petiole and rachis;174;219.52;155.08;2;;;0;2004-07-25 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;MK-5 Münzesheim i. Kraichgau, Baden-Württemberg; Chenopodium polyspermum;actual measurement (following LEDA data standards);no leaf rehydration;217.66;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17882;adult;with petiole and rachis;210.87;226.31;173.39;1;;;0;;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;;;MK25; Chenopodium polyspermum;actual measurement;leaf rehydration;113;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17882;adult;without petiole and rachis;113;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Chenopodium polyspermum;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17882;adult;without petiole and rachis;181;;;1;;;;1997-05-29 00:00:00.0;;;;UNITED KINGDOM;;;Sandbeck; Chenopodium polyspermum;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17882;adult;without petiole and rachis;165;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Chenopodium polyspermum;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17882;adult;without petiole and rachis;110;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Chenopodium polyspermum;actual measurement (following LEDA data standards);no leaf rehydration;218.55;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17882;adult;without petiole and rachis;211.99;227.21;176.13;1;;;0;;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;;;MK25; Chenopodium rubrum;actual measurement (following LEDA data standards);no leaf rehydration;56.42;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17729;adult;with petiole and rachis;62.24;85.85;49.07;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Chenopodium rubrum;actual measurement (following LEDA data standards);no leaf rehydration;56.24;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17729;adult;without petiole and rachis;62.6;87.05;49.08;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Chenopodium rubrum;actual measurement;leaf rehydration;81;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17729;adult;without petiole and rachis;81;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Chenopodium rubrum;actual measurement;leaf rehydration;88;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17729;adult;without petiole and rachis;88;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Chenopodium rubrum;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17729;adult;without petiole and rachis;212;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Chenopodium urbicum;laboratory/greenhouse/garden experiment;no leaf rehydration;220.67;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17891;adult;with petiole and rachis;220.67;228.17;213.17;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Chenopodium urbicum;laboratory/greenhouse/garden experiment;no leaf rehydration;224.05;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17891;adult;without petiole and rachis;224.05;231.22;216.87;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Chondrilla juncea;actual measurement (following LEDA data standards);no leaf rehydration;216.62;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5390;adult;with petiole and rachis;215.67;250.73;183.22;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;33;437398;P 460 Oderhänge near Gabow I, Biosphärenreservat Schorfheide-Chorin (Brandenburg);5852165 Chrysanthemum segetum;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3728;adult;without petiole and rachis;142;;;2;;;;1996-07-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Chrysosplenium alternifolium;actual measurement;leaf rehydration;122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31308;adult;without petiole and rachis;122;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Chrysosplenium alternifolium;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31308;adult;without petiole and rachis;110;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Chrysosplenium oppositifolium;actual measurement;leaf rehydration;132;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31313;adult;without petiole and rachis;132;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Chrysosplenium oppositifolium;actual measurement;leaf rehydration;117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31313;adult;without petiole and rachis;117;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Cicendia filiformis;actual measurement (following LEDA data standards);no leaf rehydration;235.29;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22974;adult;with petiole and rachis;234.33;276.92;162.16;2;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;;;P 480 Heideweiher closely to Herzlake, Emsland; Cicerbita alpina;actual measurement (following LEDA data standards);no leaf rehydration;128.16;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2692;adult;with petiole and rachis;125.17;141.85;111.35;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;;;MK-3 forest way between Gr. Arber and Kl. Arber, Bavarian Forest, Bavaria; Cicerbita alpina;actual measurement (following LEDA data standards);no leaf rehydration;142.44;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2692;adult;with petiole and rachis;145.1;169.5;123.88;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426444;P 375 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303165 Cicerbita macrophylla;actual measurement;leaf rehydration;178;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3060;adult;without petiole and rachis;178;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Hope; Cichorium intybus;actual measurement;leaf rehydration;136;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2694;adult;without petiole and rachis;136;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Clowne; Cicuta virosa;actual measurement (following LEDA data standards);no leaf rehydration;115.32;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;2295;adult;with petiole and rachis;112.61;127.71;78.22;2;;;1;2005-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;D5 - Sedge and reedbeds. normally without free-standing water;NETHERLANDS;;;Haren; Cicuta virosa;actual measurement (following LEDA data standards);no leaf rehydration;94.9;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2295;adult;with petiole and rachis;95.27;110.91;76.8;2;;;10;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;450289;P 391 NSG Fritschlach / Karlsruhe, Oberrheinebene (Rhine);5427948 Cicuta virosa;actual measurement (following LEDA data standards);no leaf rehydration;180.46;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2295;adult;without petiole and rachis;180.54;216.84;140.37;2;;;10;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;450289;P 391 NSG Fritschlach / Karlsruhe, Oberrheinebene (Rhine);5427948 Circaea alpina;actual measurement (following LEDA data standards);no leaf rehydration;177.95;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;26057;adult;with petiole and rachis;177.03;199.4;151.43;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Circaea lutetiana;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26061;adult;without petiole and rachis;202;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Buxton Country Park; Circaea lutetiana;actual measurement;leaf rehydration;185;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26061;adult;without petiole and rachis;185;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Cirsium acaule;actual measurement (following LEDA data standards);no leaf rehydration;140.24;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3252;adult;with petiole and rachis;141.69;154.05;130.77;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;684457;P 413a/b Jenzig(berg) closely to Jena (Thüringen);5646509 Cirsium acaule;actual measurement (following LEDA data standards);no leaf rehydration;143.48;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3252;adult;without petiole and rachis;145.22;158.81;133.69;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;684457;P 413a/b Jenzig(berg) closely to Jena (Thüringen);5646509 Cirsium acaule;actual measurement;leaf rehydration;217;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3252;adult;without petiole and rachis;217;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Cirsium acaule;actual measurement;leaf rehydration;206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3252;adult;without petiole and rachis;206;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Cirsium acaule;actual measurement;leaf rehydration;158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3252;adult;without petiole and rachis;158;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Cirsium arvense;actual measurement;leaf rehydration;160.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;5024;adult;without petiole and rachis;168.24;308.6;94.77;2;;;0;2003-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348957;national park Müritz;5924696 Cirsium arvense;actual measurement;leaf rehydration;153;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5024;adult;without petiole and rachis;153;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Cirsium arvense;actual measurement;leaf rehydration;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5024;adult;without petiole and rachis;111;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Cirsium dissectum;actual measurement (following LEDA data standards);no leaf rehydration;107.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5048;adult;with petiole and rachis;110.87;126.73;96.05;2;;;0;2004-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;396014;P 283 NSG Fentjer Tief (south), Ostfriesland;5912488 Cirsium dissectum;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5048;adult;without petiole and rachis;130;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Cirsium dissectum;actual measurement;leaf rehydration;94;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5048;adult;without petiole and rachis;94;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Bicester, Bucks; Cirsium eriophorum;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2903;adult;without petiole and rachis;183;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Hassop; Cirsium helenioides;actual measurement (following LEDA data standards);leaf rehydration;108.6;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);3067;adult;with petiole and rachis;109.38;132.2;99;2;;;;2004-03-10 00:00:00.0;Preaggregated data obtained from single record. Only base leaves;;G4.4 - Mixed [Pinus sylvestris] - [Betula] woodland;NORWAY;32;517650;A 1:50.000 map is used;6995550 Cirsium oleraceum;actual measurement (following LEDA data standards);no leaf rehydration;142.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;6109;adult;without petiole and rachis;145.29;165.13;123.26;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Cirsium tuberosum;actual measurement (following LEDA data standards);no leaf rehydration;174.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3068;adult;with petiole and rachis;175.05;188.08;162.61;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Cirsium vulgare;actual measurement (following LEDA data standards);leaf rehydration;164.35;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3737;adult;with petiole and rachis;171.4;191.7;163.03;1;;;0;2003-06-20 00:00:00.0;Preaggregated data obtained from single record. ;;E5 - Woodland fringes and clearings and tall forb habitats;GERMANY;32;544810;MK 6, Schwäbische Alb;5580050 Cirsium vulgare;actual measurement (following LEDA data standards);leaf rehydration;177.24;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3737;adult;without petiole and rachis;181.33;196.06;168.74;1;;;0;2003-06-20 00:00:00.0;Preaggregated data obtained from single record. ;;E5 - Woodland fringes and clearings and tall forb habitats;GERMANY;32;544810;MK 6, Schwäbische Alb;5580050 Cirsium vulgare;actual measurement;leaf rehydration;128;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3737;adult;without petiole and rachis;128;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Cirsium vulgare;actual measurement;leaf rehydration;108;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3737;adult;without petiole and rachis;108;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Cirsium vulgare;actual measurement;leaf rehydration;126;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3737;adult;without petiole and rachis;126;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Cistus albidus;actual measurement;no leaf rehydration;370.32;20;1;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];18778;unknown;without petiole and rachis;370.32;;;5;8.989;2.01;;;;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];unknown from literature;FRANCE;31;0;eight location in Provence, altitude: 90-450m;0 Cladium mariscus;actual measurement;leaf rehydration;395.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;37586;adult;without petiole and rachis;387.47;411.13;322.21;2;;;0;2004-07-29 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;33;;national park Müritz; Claytonia perfoliata;actual measurement (following LEDA data standards);no leaf rehydration;68.09;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27495;adult;without petiole and rachis;71.86;95.26;59.31;1;;;0;2004-04-03 00:00:00.0;Preaggregated data obtained from single record. spathaceous bracts (ground leaves see UOL-LF-1-201);;I2 - Cultivated areas of gardens and parks;GERMANY;;;P 201 Spiekeroog, National park Niedersächsisches Wattenmeer; Claytonia perfoliata;actual measurement;leaf rehydration;59;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27495;adult;without petiole and rachis;59;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Claytonia perfoliata;actual measurement;leaf rehydration;62;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27495;adult;without petiole and rachis;62;;;2;;;;1996-05-05 00:00:00.0;;;;UNITED KINGDOM;;;Freshfield Dunes, Lancs; Claytonia perfoliata;actual measurement (following LEDA data standards);no leaf rehydration;57.17;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27495;adult;without petiole and rachis;57.19;73.26;43.34;1;;;0;2004-04-03 00:00:00.0;Preaggregated data obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-870);;I2 - Cultivated areas of gardens and parks;GERMANY;;;P 201 Spiekeroog, National park Niedersächsisches Wattenmeer; Claytonia perfoliata;actual measurement (following LEDA data standards);no leaf rehydration;55.13;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27495;adult;with petiole and rachis;54;59.09;49.06;1;;;0;2004-04-03 00:00:00.0;Preaggregated data obtained from single record. spathaceous bracts (ground leaves see UOL-LF-1-201);;I2 - Cultivated areas of gardens and parks;GERMANY;;;P 201 Spiekeroog, National park Niedersächsisches Wattenmeer; Claytonia perfoliata;actual measurement;leaf rehydration;72;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27495;adult;without petiole and rachis;72;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Claytonia perfoliata;actual measurement (following LEDA data standards);no leaf rehydration;52.28;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27495;adult;with petiole and rachis;51.66;66.5;37.83;1;;;0;2004-04-03 00:00:00.0;Preaggregated data obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-870);;I2 - Cultivated areas of gardens and parks;GERMANY;;;P 201 Spiekeroog, National park Niedersächsisches Wattenmeer; Clematis flammula;actual measurement;no leaf rehydration;289.28;20;1;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];27199;unknown;without petiole and rachis;289.28;;;5;10.375;2.32;;;;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];unknown from literature;FRANCE;31;0;eight location in Provence, altitude: 90-450m;0 Clematis vitalba;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27205;adult;without petiole and rachis;194;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Clematis vitalba;field experiment;leaf rehydration;220;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;27205;adult;without petiole and rachis;220;;;10;8;8;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Clematis vitalba;field experiment;leaf rehydration;254;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;27205;adult;without petiole and rachis;254;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Clematis vitalba;field experiment;leaf rehydration;284;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;27205;adult;without petiole and rachis;284;;;10;10;10;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Clematis viticella;actual measurement (following LEDA data standards);no leaf rehydration;214.46;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;27206;adult;with petiole and rachis;214.46;214.46;214.46;6;;;0;2005-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Clinopodium vulgare;actual measurement;leaf rehydration;258;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24218;adult;without petiole and rachis;258;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Cnicus benedictus;laboratory/greenhouse/garden experiment;no leaf rehydration;132.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3260;adult;with petiole and rachis;131.71;143.27;112.4;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Cnidium dubium;actual measurement (following LEDA data standards);no leaf rehydration;222.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1405;adult;with petiole and rachis;224.45;242.87;204.7;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;;P 296 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue ; Cnidium dubium;actual measurement (following LEDA data standards);no leaf rehydration;248.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1405;adult;without petiole and rachis;246.92;270;220.56;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;;P 296 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue ; Cochlearia anglica;actual measurement (following LEDA data standards);no leaf rehydration;71.27;13;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13319;adult;with petiole and rachis;66.33;96.94;43.64;1;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog, dijk; Cochlearia danica;laboratory/greenhouse/garden experiment;no leaf rehydration;81.96;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12875;adult;with petiole and rachis;79.68;86.88;68.85;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;32;;P 210 University of Oldenburg, Botanical Garden; Cochlearia danica;actual measurement;leaf rehydration;60;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12875;adult;without petiole and rachis;60;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Worksop; Cochlearia danica;actual measurement (following LEDA data standards);no leaf rehydration;107.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12875;adult;without petiole and rachis;112.24;144.02;92.92;3;;;0;2004-04-03 00:00:00.0;Preaggregated data obtained from single record. ;;B1 - Coastal dune and sand habitats;GERMANY;;;P 200 Spiekeroog, National park Niedersächsisches Wattenmeer; Cochlearia danica;actual measurement (following LEDA data standards);no leaf rehydration;103.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12875;adult;with petiole and rachis;107.51;135.99;91.69;3;;;0;2004-04-03 00:00:00.0;Preaggregated data obtained from single record. ;;B1 - Coastal dune and sand habitats;GERMANY;;;P 200 Spiekeroog, National park Niedersächsisches Wattenmeer; Cochlearia danica;laboratory/greenhouse/garden experiment;no leaf rehydration;81.29;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12875;adult;without petiole and rachis;79.4;86.57;69.19;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;32;;P 210 University of Oldenburg, Botanical Garden; Cochlearia danica;actual measurement;leaf rehydration;65;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12875;adult;without petiole and rachis;65;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Coeloglossum viride;actual measurement;leaf rehydration;173;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39475;adult;without petiole and rachis;173;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Coeloglossum viride;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39475;adult;without petiole and rachis;129;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Buxton Country Park; Coincya monensis;actual measurement;leaf rehydration;136;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;46061;adult;without petiole and rachis;136;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Shirebrook, Derbys; Colchicum autumnale;actual measurement (following LEDA data standards);no leaf rehydration;130.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38684;adult;with petiole and rachis;127.76;153.08;98.87;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;E2.2 - Coarse permanent grassland and tall herbs. usually mown but little grazed;GERMANY;32;417664;P 230 Kappel/Freiburg i. Br., mesic pasture, Black forest;5311667 Colutea arborescens;actual measurement (following LEDA data standards);no leaf rehydration;251.05;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21799;adult;with petiole and rachis;252.73;265.65;243.15;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;F3 - Temperate and mediterraneo-montane scrub habitats;GERMANY;32;399564;P 365 slope in vineyard, Bickensohl (Kaiserstuhl) / Baden-Württemberg;5326108 Colutea arborescens;actual measurement;leaf rehydration;223;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21799;adult;without petiole and rachis;223;;;1;;;;1997-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Hexthorpe; Conium maculatum;actual measurement (following LEDA data standards);no leaf rehydration;168.65;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1410;adult;with petiole and rachis;165.19;180;143.4;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;518254;P 386a Schwabian Alb (near Trochtelfingen), ND Flachsbühl;5352515 Conium maculatum;actual measurement;leaf rehydration;245;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1410;adult;without petiole and rachis;245;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Conium maculatum;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1410;adult;without petiole and rachis;227;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Conopodium majus;actual measurement;leaf rehydration;197;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1346;adult;without petiole and rachis;197;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Serlby, Notts; Conopodium majus;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1346;adult;without petiole and rachis;190;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Conopodium majus;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1346;adult;without petiole and rachis;181;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Conringia orientalis;laboratory/greenhouse/garden experiment;no leaf rehydration;84.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13624;adult;with petiole and rachis;85.2;101.9;70.81;2;;;0;2004-06-30 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Consolida regalis;actual measurement (following LEDA data standards);no leaf rehydration;153.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27229;adult;with petiole and rachis;153.68;193.61;132.95;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;570767;P 422 Gr. Lengden near Göttingen (Lower Saxony);5706686 Consolida regalis;actual measurement (following LEDA data standards);no leaf rehydration;149.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27229;adult;without petiole and rachis;149.94;190.94;127.23;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;570767;P 422 Gr. Lengden near Göttingen (Lower Saxony);5706686 Convallaria majalis;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39099;adult;without petiole and rachis;256;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Water-cum-Jolly Dale; Convallaria majalis;actual measurement;leaf rehydration;187;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39099;adult;without petiole and rachis;187;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Convolvulus arvensis;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18911;adult;without petiole and rachis;165;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Convolvulus arvensis;actual measurement;leaf rehydration;146;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18911;adult;without petiole and rachis;146;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Convolvulus arvensis;actual measurement;leaf rehydration;107;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18911;adult;without petiole and rachis;107;;;2;;;;1996-08-27 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Convolvulus arvensis;field experiment;leaf rehydration;221;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18911;adult;without petiole and rachis;221;;;10;9;9;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Convolvulus arvensis;field experiment;leaf rehydration;201;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18911;adult;without petiole and rachis;201;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Convolvulus arvensis;field experiment;leaf rehydration;195;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18911;adult;without petiole and rachis;195;;;10;5;5;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Conyza canadensis;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5194;adult;without petiole and rachis;198;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Conyza canadensis;actual measurement;leaf rehydration;154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5194;adult;without petiole and rachis;154;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Coriandrum sativum;laboratory/greenhouse/garden experiment;no leaf rehydration;157.63;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2310;adult;with petiole and rachis;169.25;213.76;142.97;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. spataceous bracts;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Coriandrum sativum;laboratory/greenhouse/garden experiment;no leaf rehydration;121.44;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2310;adult;with petiole and rachis;123.08;128.88;118.73;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Corispermum intermedium;actual measurement (following LEDA data standards);no leaf rehydration;174.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17909;adult;with petiole and rachis;171.58;193.07;144.98;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449210.324;P10 NSG Krusenbusch (Oldenburg);5882979.866 Cornus mas;actual measurement (following LEDA data standards);no leaf rehydration;215.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18428;adult;with petiole and rachis;225.67;270;192.96;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;32;407711;P 234 NSG Ölberg bei Bollschweil;5307743 Cornus mas;actual measurement (following LEDA data standards);no leaf rehydration;218.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18428;adult;without petiole and rachis;227.84;273.57;194.84;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;32;407711;P 234 NSG Ölberg bei Bollschweil;5307743 Cornus sanguinea;actual measurement;leaf rehydration;251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18429;adult;without petiole and rachis;251;;;5;6.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Cornus sanguinea;actual measurement;leaf rehydration;259;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18429;adult;without petiole and rachis;259;;;5;9.8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Cornus suecica;actual measurement (following LEDA data standards);no leaf rehydration;171.79;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18440;adult;with petiole and rachis;168.33;204.08;134.31;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;NETHERLANDS;;;Zeijer Strubben; Cornus suecica;actual measurement (following LEDA data standards);no leaf rehydration;190.53;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;18440;adult;with petiole and rachis;183.75;226.76;104.57;1;;;;2005-06-20 00:00:00.0;Preaggregated data obtained from single record. ;;G3.A - [Picea] taiga woodland;NORWAY;32;562150;Trondheim 03;7020700 Coronilla coronata;actual measurement (following LEDA data standards);no leaf rehydration;195.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21803;adult;with petiole and rachis;202.21;272.89;178.01;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Coronilla coronata;actual measurement (following LEDA data standards);no leaf rehydration;196.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21803;adult;without petiole and rachis;202.06;276.31;176.74;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Coronilla emerus;actual measurement (following LEDA data standards);no leaf rehydration;192.99;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21806;adult;with petiole and rachis;184.44;194.2;166.14;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;G1.7 - Thermophilous deciduous woodland;GERMANY;32;389536;P 252 NSG Eichholz-Buchholz, Baden-Württemberg;5282872 Coronilla vaginalis;actual measurement (following LEDA data standards);no leaf rehydration;166.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21349;adult;with petiole and rachis;168.4;204.89;148.12;2;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;499419;P 525 Rock, Schwabian Donaualb near Beuron, Baden-W?emberg;5322615 Coronilla varia;actual measurement (following LEDA data standards);no leaf rehydration;168.33;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21810;adult;with petiole and rachis;171.27;210.03;129.78;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-11 Munich disused railway network, Bavaria; Coronilla varia;actual measurement (following LEDA data standards);no leaf rehydration;164.82;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21810;adult;without petiole and rachis;169.58;219.67;122.3;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-11 Munich disused railway network, Bavaria; Coronilla varia;actual measurement (following LEDA data standards);no leaf rehydration;171.18;7;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21810;adult;with petiole and rachis;175.6;230.7;147.84;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Coronopus didymus;actual measurement (following LEDA data standards);no leaf rehydration;172.89;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13200;adult;with petiole and rachis;173.63;184.06;164.66;4;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;32;450153;P 392b NSG Fritschlach, Karlsruhe, Oberrheinebene (Rhine);5426634 Coronopus didymus;actual measurement;leaf rehydration;116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13200;adult;without petiole and rachis;116;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Coronopus didymus;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13200;adult;without petiole and rachis;156;;;2;;;;1996-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Coronopus squamatus;actual measurement (following LEDA data standards);no leaf rehydration;164.54;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14154;adult;with petiole and rachis;169.47;221.05;139.68;3;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;J4.6 - Pavements and recreation areas;GERMANY;;;P 464 National park Unteres Odertal, Brandenburg; Coronopus squamatus;actual measurement;leaf rehydration;147;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14154;adult;without petiole and rachis;147;;;2;;;;1996-08-03 00:00:00.0;;;;UNITED KINGDOM;;;Crystal Palace; Corrigiola litoralis;actual measurement (following LEDA data standards);no leaf rehydration;149.16;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15658;adult;with petiole and rachis;149.16;149.16;149.16;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Corrigiola litoralis;actual measurement (following LEDA data standards);no leaf rehydration;144.51;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15658;adult;with petiole and rachis;143.9;162.55;128.37;2;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;663955;P 294 Elbufer bei Pevestorf, Biosphärenreservat Niedersächsische Elbtalaue (Lower Saxony);5883654 Corrigiola litoralis;laboratory/greenhouse/garden experiment;no leaf rehydration;127.99;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15658;adult;with petiole and rachis;125.16;158.59;83.8;2;;;0;2004-10-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Corydalis cava;laboratory/greenhouse/garden experiment;no leaf rehydration;131.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25389;adult;with petiole and rachis;130.47;146.1;108.14;2;;;0;2004-04-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Corydalis cava;laboratory/greenhouse/garden experiment;no leaf rehydration;150.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25389;adult;without petiole and rachis;149.35;170.1;136.5;2;;;0;2004-04-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Corydalis solida;laboratory/greenhouse/garden experiment;no leaf rehydration;139.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25469;adult;with petiole and rachis;136.73;155.78;105.52;2;;;0;2004-04-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Corydalis solida;laboratory/greenhouse/garden experiment;no leaf rehydration;160.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25469;adult;without petiole and rachis;159.65;175.68;135.75;2;;;0;2004-04-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Corylus avellana;actual measurement;leaf rehydration;291;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18083;adult;without petiole and rachis;291;;;5;4.9;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Corylus avellana;actual measurement;leaf rehydration;278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18083;adult;without petiole and rachis;278;;;5;5.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Corylus avellana;actual measurement;leaf rehydration;274;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18083;adult;without petiole and rachis;274;;;5;10.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Corylus avellana;actual measurement;leaf rehydration;292;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18083;adult;without petiole and rachis;292;;;5;8.8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Corynephorus canescens;actual measurement (following LEDA data standards);no leaf rehydration;369.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41702;adult;with petiole and rachis;369.38;487.39;305.31;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449210.324;P 10 NSG Krusenbusch (Oldenburg);5882979.866 Corynephorus canescens;actual measurement (following LEDA data standards);no leaf rehydration;418.4;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41702;adult;with petiole and rachis;414.42;492.42;328.47;1;;;0;2003-07-16 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Cotoneaster horizontalis;actual measurement (following LEDA data standards);no leaf rehydration;404.03;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;29735;adult;with petiole and rachis;404.93;418.29;388.24;2;;;0;2005-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;H - Inland unvegetated or sparsely vegetated habitats;SWEDEN;;;Visby, Gotland Sweden; Cotoneaster integerrimus;actual measurement (following LEDA data standards);no leaf rehydration;343.53;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;30932;adult;with petiole and rachis;343.45;367.04;312.05;2;;;0;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. ;;H - Inland unvegetated or sparsely vegetated habitats;SWEDEN;;;Sundre, Gotland Sweden; Cotoneaster integerrimus;actual measurement (following LEDA data standards);no leaf rehydration;395.35;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30932;adult;without petiole and rachis;399.69;457;361.96;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;684002;P 410b Jenzig(berg) closely to Jena (Thüringen);5646183 Cotoneaster integerrimus;actual measurement (following LEDA data standards);no leaf rehydration;395.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30932;adult;with petiole and rachis;399.69;458.35;364.54;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;684002;P 410b Jenzig(berg) closely to Jena (Thüringen);5646183 Cotula coronopifolia;actual measurement (following LEDA data standards);no leaf rehydration;64.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5009;adult;with petiole and rachis;62.82;68.74;55.74;2;;;0;2004-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;384877;P 438 Ems-Mündung, Dollart (Lower Saxony);5910484 Crambe maritima;actual measurement (following LEDA data standards);no leaf rehydration;80.88;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14463;adult;with petiole and rachis;80.64;86.34;72.43;1;;;1;2005-07-06 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Zwarte Haan, Friesland; Crambe maritima;actual measurement (following LEDA data standards);no leaf rehydration;103.71;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14463;adult;with petiole and rachis;102.12;117.25;83.8;2;;;10;2005-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;B2.3 - Upper shingle beaches with open vegetation;GERMANY;32;577752;P 538 Strande (Baltic sea) near Kiel;6035033 Crambe maritima;actual measurement (following LEDA data standards);no leaf rehydration;110.89;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);14463;adult;without petiole and rachis;114.67;127.47;107.76;1;;;;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. ;;B1.2 - Sand beaches above the driftline;SWEDEN;34;352158;Gotland Lickershamn3;6412128 Crassula helmsii;actual measurement;leaf rehydration;47;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;46103;adult;without petiole and rachis;47;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Crataegus laevigata;actual measurement (following LEDA data standards);no leaf rehydration;355.06;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29749;adult;with petiole and rachis;345.2;382.68;314.97;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437361;P 213 Gristede (Landkreis Ammerland);5897992 Crataegus laevigata;actual measurement (following LEDA data standards);no leaf rehydration;344.72;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29749;adult;without petiole and rachis;346.31;393.84;317.32;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437361;P 213 Gristede (Landkreis Ammerland);5897992 Crataegus monogyna;actual measurement;leaf rehydration;308;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29980;adult;without petiole and rachis;308;;;5;5.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Crataegus monogyna;actual measurement;leaf rehydration;284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29980;adult;without petiole and rachis;284;;;5;4.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Crataegus monogyna;actual measurement;leaf rehydration;283;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29980;adult;without petiole and rachis;283;;;5;6.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Smeekley Wood; Crataegus monogyna;actual measurement;leaf rehydration;304;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29980;adult;without petiole and rachis;304;;;5;8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Crataegus monogyna;field experiment;leaf rehydration;427;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29980;adult;without petiole and rachis;427;;;10;7;7;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Crataegus monogyna;field experiment;leaf rehydration;361;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29980;adult;without petiole and rachis;361;;;10;6;6;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;6.35;Les Agros;43.25 Crataegus monogyna;field experiment;leaf rehydration;386;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29980;adult;without petiole and rachis;386;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Crepis biennis;actual measurement;leaf rehydration;120;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4230;adult;without petiole and rachis;120;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby ; Crepis biennis;actual measurement;leaf rehydration;145;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;4230;adult;without petiole and rachis;145;;;1;;;;1997-06-21 00:00:00.0;;;;UNITED KINGDOM;;;Norwoods; Crepis capillaris;actual measurement;leaf rehydration;133;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3071;adult;without petiole and rachis;133;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Crepis capillaris;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3071;adult;without petiole and rachis;127;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Crepis capillaris;actual measurement;leaf rehydration;117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3071;adult;without petiole and rachis;117;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Treeton, S Yks; Crepis paludosa;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5882;adult;without petiole and rachis;140;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Yorkshire Bridge; Crepis pyrenaica;actual measurement (following LEDA data standards);no leaf rehydration;142.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;4706;adult;with petiole and rachis;142.47;167.26;126.66;2;;;0;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;GERMANY;;;MK-8 Kanzelwandhaus, Allg?near Oberstdorf, Bavaria; Crepis sancta;field experiment;leaf rehydration;137;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;4235;adult;without petiole and rachis;137;;;10;5;5;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Crepis sancta;field experiment;leaf rehydration;138;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;4235;adult;without petiole and rachis;138;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Crepis sancta;field experiment;leaf rehydration;109;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;4235;adult;without petiole and rachis;109;;;10;7;7;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Crepis vesicaria;actual measurement;leaf rehydration;178;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3710;adult;without petiole and rachis;178;;;1;;;;1998-09-10 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Crepis vesicaria;field experiment;leaf rehydration;141;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;3710;adult;without petiole and rachis;141;;;10;5;5;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Crepis vesicaria;field experiment;leaf rehydration;158;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;3710;adult;without petiole and rachis;158;;;10;6;6;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Crepis vesicaria;field experiment;leaf rehydration;161;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;3710;adult;without petiole and rachis;161;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Crepis vesicaria;actual measurement (following LEDA data standards);no leaf rehydration;198.1;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3710;adult;with petiole and rachis;196.66;206.53;183.92;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flachsbühl closely to Trochtelfingen, Schwabian Alb;5352469 Crithmum maritimum;actual measurement;leaf rehydration;92;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1350;adult;without petiole and rachis;92;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Devon, UK; Cruciata laevipes;actual measurement;leaf rehydration;314;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32133;adult;without petiole and rachis;314;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Cruciata laevipes;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32133;adult;without petiole and rachis;177;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Cruciata laevipes;actual measurement;leaf rehydration;207;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32133;adult;without petiole and rachis;207;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Cucurbita pepo;actual measurement (following LEDA data standards);no leaf rehydration;103.87;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18484;adult;with petiole and rachis;105.48;113.46;100.72;2;;;1;2005-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Ouddorp; Cymbalaria muralis;actual measurement;leaf rehydration;102;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33224;adult;without petiole and rachis;102;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Stony Middleton; Cymbalaria muralis;actual measurement;leaf rehydration;68;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33224;adult;without petiole and rachis;68;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Cynodon dactylon;actual measurement (following LEDA data standards);no leaf rehydration;156.72;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;41221;adult;with petiole and rachis;157.79;175.72;143.93;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;H - Inland unvegetated or sparsely vegetated habitats;NETHERLANDS;;;Helpman, spoor; Cynodon dactylon;actual measurement (following LEDA data standards);no leaf rehydration;291.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41221;adult;with petiole and rachis;293.12;346.04;273.18;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;401334;P 359 NSG Badberg (Kaiserstuhl) / Baden-Württemberg;5327521 Cynoglossum officinale;actual measurement (following LEDA data standards);no leaf rehydration;139.8;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12519;adult;with petiole and rachis;140.78;165.63;124.95;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;FRANCE;32;386658;P 257 Neu-Breisach, Wolfgartzen, Alsace;5321747 Cynoglossum officinale;actual measurement (following LEDA data standards);no leaf rehydration;138.29;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12519;adult;without petiole and rachis;138.87;162.03;123.53;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;FRANCE;32;386658;P 257 Neu-Breisach, Wolfgartzen, Alsace;5321747 Cynoglossum officinale;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12519;adult;without petiole and rachis;160;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Cynosurus cristatus;actual measurement;leaf rehydration;282;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40659;adult;without petiole and rachis;282;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Cynosurus cristatus;actual measurement;leaf rehydration;195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40659;adult;without petiole and rachis;195;;;2;;;;;;;;UNITED KINGDOM;;;; Cynosurus cristatus;actual measurement;leaf rehydration;264.49;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;40659;adult;without petiole and rachis;267.76;301.9;218.55;2;;;0;2003-06-11 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349731;national park Müritz;5924063 Cyperus flavescens;laboratory/greenhouse/garden experiment;no leaf rehydration;146.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37602;adult;with petiole and rachis;146.85;167.39;122.43;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Cyperus fuscus;actual measurement (following LEDA data standards);no leaf rehydration;131.46;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37606;adult;with petiole and rachis;132.25;149.89;119.23;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Cyperus longus;laboratory/greenhouse/garden experiment;no leaf rehydration;241.33;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37214;adult;with petiole and rachis;227.67;259.64;136.83;2;;;0;2004-08-17 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Cystopteris fragilis;actual measurement;leaf rehydration;248;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43;adult;without petiole and rachis;248;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Cytisus scoparius;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21757;adult;without petiole and rachis;198;;;5;7.2;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;A57 east of Ladybower; Cytisus scoparius;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21757;adult;without petiole and rachis;202;;;5;12.6;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sherwood Forest area; Dactylis glomerata;laboratory/greenhouse/garden experiment;no leaf rehydration;320;1;1;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;40290;adult;without petiole and rachis;320;;;8;;;;2004-02-11 00:00:00.0;;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;unknown from literature;Europe;;0;;0 Dactylis glomerata;actual measurement;leaf rehydration;313;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40290;adult;without petiole and rachis;313;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Dactylis glomerata;actual measurement;leaf rehydration;205;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40290;adult;without petiole and rachis;205;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Dactylis glomerata;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40290;adult;without petiole and rachis;212;;;2;;;;;;;;UNITED KINGDOM;;;; Dactylorhiza fuchsii;actual measurement;leaf rehydration;145;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39508;adult;without petiole and rachis;145;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Dactylorhiza fuchsii;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39508;adult;without petiole and rachis;110;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Dactylorhiza incarnata;actual measurement (following LEDA data standards);no leaf rehydration;143.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39515;adult;with petiole and rachis;142.7;149.26;135.8;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;494600;P 518 NSG Radolfzeller Aachried, Lake of Constance, Baden-W?emberg;5286922 Dactylorhiza incarnata subsp. ochroleuca;actual measurement (following LEDA data standards);no leaf rehydration;150.68;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39839;adult;with petiole and rachis;148.52;152.04;142.85;1;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;502926;P 522 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5289147 Dactylorhiza maculata;actual measurement (following LEDA data standards);no leaf rehydration;119.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39506;adult;with petiole and rachis;120.75;144.33;106.9;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;;;P 370 near Rinken (NSG Feldberg), Black forest (Baden-Württemberg); Dactylorhiza majalis s. praetermissa;actual measurement;leaf rehydration;155;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39843;adult;without petiole and rachis;155;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Dactylorhiza majalis s. praetermissa;actual measurement;leaf rehydration;113;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39843;adult;without petiole and rachis;113;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley; Dactylorhiza sambucina;actual measurement (following LEDA data standards);no leaf rehydration;113.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39567;adult;with petiole and rachis;115.6;133.77;104.29;2;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;433296;P 511 Haslach - Obersimonsw?er Tal, Black forest;5330362 Dactylorhiza sphagnicola;actual measurement (following LEDA data standards);no leaf rehydration;113.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;50029;adult;with petiole and rachis;113.26;127.36;90.21;2;;;0;2004-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;D2.3 - Transition mires and quaking bogs;GERMANY;32;487256;P 319 NSG Silbersee, North-west Lower Saxony;5926815 Dactylorhiza traunsteineri s. lapponica;actual measurement (following LEDA data standards);no leaf rehydration;127.59;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);39600;adult;with petiole and rachis;127.4;145.03;112.04;1;;;;2005-07-18 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;NORWAY;32;519714;Rindal 07;6990533 Dactylorhiza traunsteineri subsp. traunsteineri;actual measurement (following LEDA data standards);no leaf rehydration;120.86;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39923;adult;with petiole and rachis;128;142.41;120.74;1;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;503124;P 521 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5288687 Danthonia decumbens;actual measurement;leaf rehydration;306;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42203;adult;without petiole and rachis;306;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Danthonia decumbens;actual measurement;leaf rehydration;371.27;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;42203;adult;without petiole and rachis;365.4;389.22;334.67;2;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348644;national park Müritz;5924405 Daphne laureola;actual measurement (following LEDA data standards);no leaf rehydration;276.41;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34606;adult;with petiole and rachis;279.17;307.31;242.36;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;G4.8 - Mixed non-riverine deciduous and coniferous woodland;GERMANY;32;407993;P 508 NSG Buhrenboden, Dinkelberg (Baden-W?emberg);5271836 Daphne mezereum;actual measurement;leaf rehydration;185;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34610;adult;without petiole and rachis;185;;;1;;;;1997-06-06 00:00:00.0;;;;UNITED KINGDOM;;;Millers Dale; Daphne mezereum;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34610;adult;without petiole and rachis;188;;;5;8.6;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Datura stramonium;actual measurement (following LEDA data standards);no leaf rehydration;128.49;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34907;adult;with petiole and rachis;130.31;172.47;110.53;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;456173;P 397 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Baden-Württemberg;5450824 Datura stramonium;actual measurement (following LEDA data standards);no leaf rehydration;135.98;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34907;adult;without petiole and rachis;140.87;178.96;126.6;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;456173;P 397 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Baden-Württemberg;5450824 Daucus carota;actual measurement;leaf rehydration;251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1358;adult;without petiole and rachis;251;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Daucus carota;actual measurement;leaf rehydration;213.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;1358;adult;without petiole and rachis;205;228.8;173.32;2;;;0;2004-07-29 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Deschampsia cespitosa;actual measurement;leaf rehydration;359;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40299;adult;without petiole and rachis;359;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Deschampsia cespitosa;actual measurement;leaf rehydration;308;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40299;adult;without petiole and rachis;308;;;2;;;;;;;;UNITED KINGDOM;;;; Deschampsia cespitosa;actual measurement;leaf rehydration;305.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;40299;adult;without petiole and rachis;307.29;381.13;234.44;2;;;0;2003-07-08 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348459;national park Müritz;5924719 Deschampsia cespitosa;actual measurement (following LEDA data standards);no leaf rehydration;349.2;11;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;40299;adult;without petiole and rachis;358.69;485.7;285;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Deschampsia cespitosa;actual measurement (following LEDA data standards);no leaf rehydration;364.65;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;40299;adult;without petiole and rachis;362.38;373.1;347.1;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Deschampsia cespitosa subsp. paludosa;actual measurement (following LEDA data standards);no leaf rehydration;273.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41235;adult;with petiole and rachis;264.74;325.09;202.99;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;C3 - Littoral zone of inland surface waterbodies;GERMANY;32;574586;P 288 Fliegenberg beside River Elbe;5919706 Deschampsia cespitosa subsp. paludosa;actual measurement (following LEDA data standards);no leaf rehydration;273.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41235;adult;with petiole and rachis;264.74;325.09;202.99;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. determinated as D. wibeliana;;C3 - Littoral zone of inland surface waterbodies;GERMANY;32;574586;P 288 Fliegenberg beside River Elbe;5919706 Deschampsia flexuosa;actual measurement (following LEDA data standards);no leaf rehydration;317.7;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;41982;adult;without petiole and rachis;310.85;332.1;275.9;4;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 4-5 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Deschampsia flexuosa;actual measurement;leaf rehydration;337;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41982;adult;without petiole and rachis;337;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Deschampsia flexuosa;actual measurement (following LEDA data standards);no leaf rehydration;333.95;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;41982;adult;without petiole and rachis;337.35;400;281.5;5;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 5-7 leaves per sample;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Deschampsia setacea;actual measurement (following LEDA data standards);no leaf rehydration;305.41;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;40982;adult;with petiole and rachis;299.32;341.05;242.67;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;D5 - Sedge and reedbeds. normally without free-standing water;NETHERLANDS;;;Puthuizen; Descurainia sophia;actual measurement (following LEDA data standards);leaf rehydration;176.87;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13207;adult;with petiole and rachis;152.53;179;101.73;1;;;0;2003-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;MK20 Feißneck, Mecklenburg-Vorpommern; Descurainia sophia;actual measurement (following LEDA data standards);leaf rehydration;184.49;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13207;adult;without petiole and rachis;181.38;190.83;168.83;1;;;0;2003-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;MK20 Feißneck, Mecklenburg-Vorpommern; Desmazeria rigida;actual measurement;leaf rehydration;311;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40985;adult;without petiole and rachis;311;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Desmazeria rigida;actual measurement;leaf rehydration;259;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40985;adult;without petiole and rachis;259;;;1;;;;1997-09-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Dianthus armeria;actual measurement (following LEDA data standards);no leaf rehydration;189.06;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16115;adult;with petiole and rachis;189.2;226.72;145.03;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Dianthus barbatus;actual measurement (following LEDA data standards);no leaf rehydration;224.9;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16451;adult;with petiole and rachis;222.78;244.14;184.17;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Dianthus deltoides;actual measurement;leaf rehydration;300;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16129;adult;without petiole and rachis;300;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Hassop; Dianthus deltoides;actual measurement;leaf rehydration;224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16129;adult;without petiole and rachis;224;;;1;;;;1997-08-12 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Dianthus gratianopolitanus;actual measurement (following LEDA data standards);no leaf rehydration;237.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16472;adult;with petiole and rachis;238.32;253.07;220.86;2;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;499419;P 525 Rock, Schwabian Donaualb near Beuron, Baden-W?emberg;5322615 Dianthus superbus;actual measurement (following LEDA data standards);no leaf rehydration;179.49;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16439;adult;with petiole and rachis;181.5;202.73;164.51;2;;;0;2005-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Dianthus superbus;laboratory/greenhouse/garden experiment;no leaf rehydration;203.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16439;adult;with petiole and rachis;204.67;230.01;194.25;2;;;0;2005-06-24 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Diapensia lapponica;actual measurement (following LEDA data standards);no leaf rehydration;355.8;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19591;adult;with petiole and rachis;353.24;394.5;291.2;10;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F1 - Tundra;NORWAY;32;604700;Hessdalen;6958700 Dictamnus albus;actual measurement (following LEDA data standards);no leaf rehydration;210.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31688;adult;with petiole and rachis;213.45;274.14;173.87;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Dictamnus albus;actual measurement (following LEDA data standards);no leaf rehydration;212.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31688;adult;without petiole and rachis;222.31;279.53;182.4;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Digitalis grandiflora;actual measurement (following LEDA data standards);no leaf rehydration;184.95;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33169;adult;with petiole and rachis;181.67;203.63;162.85;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426444;P 375 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303165 Digitalis lutea;actual measurement (following LEDA data standards);no leaf rehydration;171.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33173;adult;with petiole and rachis;171.5;187.37;160.2;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;H3.1 - Acid siliceous inland cliffs;GERMANY;32;423681;P 378b Zastlertal/Sommerhalde, Black forest, Baden-Württemberg;5308925 Digitalis purpurea;actual measurement;leaf rehydration;295;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33178;adult;without petiole and rachis;295;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Digitalis purpurea;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33178;adult;without petiole and rachis;190;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Digitaria ischaemum;actual measurement (following LEDA data standards);no leaf rehydration;157.14;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40681;adult;with petiole and rachis;158.68;175.48;144;2;;;0;2004-09-11 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-16 Munich, disused railway network, Bavaria; Digitaria ischaemum;actual measurement (following LEDA data standards);no leaf rehydration;173.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40681;adult;with petiole and rachis;181.12;249.45;132.27;1;;;0;2003-08-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P2 NSG Krusenbusch (Oldenburg);5883035.844 Digitaria sanguinalis;actual measurement (following LEDA data standards);no leaf rehydration;170.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40683;adult;with petiole and rachis;173.37;200.17;157.08;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;32;450153;P 392b NSG Fritschlach, Karlsruhe, Oberrheinebene (Rhine);5426634 Diphasiastrum alpinum;actual measurement (following LEDA data standards);no leaf rehydration;304.53;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44384;adult;with petiole and rachis;287.07;337.68;201.04;2;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. two samples of upper 2 cm of stem measured per plant;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;604788;P 447 Gr. Sonnenberg /National park Harz (Lower Saxony);5734997 Diphasiastrum alpinum;actual measurement;leaf rehydration;355;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44384;adult;without petiole and rachis;355;;;2;;;;1996-08-02 00:00:00.0;;;;UNITED KINGDOM;;;Loch Einich, Cairngorms; Diphasiastrum complanatum;actual measurement (following LEDA data standards);no leaf rehydration;293.63;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44372;adult;with petiole and rachis;284.47;304.74;231.22;2;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. two samples of upper 2 cm of stem measured per plant;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;604788;P 447 Gr. Sonnenberg /National park Harz (Lower Saxony);5734997 Diphasiastrum complanatum s. issleri;actual measurement (following LEDA data standards);no leaf rehydration;264.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44374;adult;with petiole and rachis;271.34;340.38;235.53;2;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. two samples of upper 2 cm of stem measured per plant;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;604788;P 447 Gr. Sonnenberg /National park Harz (Lower Saxony);5734997 Diplotaxis erucoides;actual measurement;no leaf rehydration;124.58;20;1;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];13209;unknown;without petiole and rachis;124.58;;;5;9.705;2.17;;;;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];unknown from literature;FRANCE;31;0;eight location in Provence, altitude: 90-450m;0 Diplotaxis muralis;laboratory/greenhouse/garden experiment;no leaf rehydration;132.24;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13634;adult;with petiole and rachis;128.57;142.87;111.86;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Diplotaxis muralis;laboratory/greenhouse/garden experiment;no leaf rehydration;147.31;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13634;adult;without petiole and rachis;144.25;160.46;122.25;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Diplotaxis tenuifolia;actual measurement;leaf rehydration;128;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14468;adult;without petiole and rachis;128;;;2;;;;1996-08-03 00:00:00.0;;;;UNITED KINGDOM;;;Crystal Palace; Diplotaxis tenuifolia;actual measurement;leaf rehydration;98;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14468;adult;without petiole and rachis;98;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Dipsacus fullonum;actual measurement;leaf rehydration;167;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19359;adult;without petiole and rachis;167;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Dipsacus pilosus;actual measurement;leaf rehydration;57;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19256;adult;without petiole and rachis;57;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Dipsacus pilosus;actual measurement (following LEDA data standards);no leaf rehydration;128.08;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19256;adult;with petiole and rachis;126.12;147.1;112.36;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;;;P 399 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Baden-Württemberg; Dipsacus pilosus;actual measurement (following LEDA data standards);no leaf rehydration;127.94;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19256;adult;without petiole and rachis;123.39;148.7;89.87;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;;;P 399 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Baden-Württemberg; Dipsacus strigosus;laboratory/greenhouse/garden experiment;no leaf rehydration;226.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19104;adult;with petiole and rachis;223.95;234.45;204.48;2;;;10;2005-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Doronicum pardalianches;actual measurement;leaf rehydration;123;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3685;adult;without petiole and rachis;123;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Draba aizoides;actual measurement (following LEDA data standards);no leaf rehydration;280.27;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14170;adult;with petiole and rachis;286.96;328.74;260.54;6;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;499419;P 525 Rock, Schwabian Donaualb near Beuron, Baden-W?emberg;5322615 Draba aizoides;actual measurement (following LEDA data standards);no leaf rehydration;272.73;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14170;adult;with petiole and rachis;282.4;312.27;262.2;2;;;0;2004-04-20 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;5435697;P 206 Fränkische Schweiz, Kallmünz (Regensburg/Bavaria);718789 Draba muralis;actual measurement;leaf rehydration;207;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14065;adult;without petiole and rachis;207;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Draba muralis;actual measurement;leaf rehydration;136;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14065;adult;without petiole and rachis;136;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Drosera anglica;actual measurement (following LEDA data standards);no leaf rehydration;124.34;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);18994;adult;with petiole and rachis;146.13;322.21;97.61;1;;;;2005-08-26 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;NORWAY;32;518220;Rindal 12;6995267 Drosera anglica;actual measurement;leaf rehydration;102;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18994;adult;without petiole and rachis;102;;;1;;;;1999-06-07 00:00:00.0;;;;IRELAND;;;Killarney; Drosera intermedia;actual measurement (following LEDA data standards);no leaf rehydration;177.83;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18996;adult;with petiole and rachis;178.08;193.79;162.88;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;455279.8952;P7 NSG Rockenmoor / Landkreis Wesermarsch;5895592.819 Drosera intermedia;actual measurement (following LEDA data standards);no leaf rehydration;175.04;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18996;adult;without petiole and rachis;178.04;204.27;157.82;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;455279.8952;P7 NSG Rockenmoor / Landkreis Wesermarsch;5895592.819 Drosera rotundifolia;actual measurement (following LEDA data standards);leaf rehydration;133.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18999;adult;with petiole and rachis;137.56;177.97;106.92;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449169.3404;P13 NSG Krusenbusch (Oldenburg);5883945.48 Drosera rotundifolia;actual measurement (following LEDA data standards);leaf rehydration;135.96;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18999;adult;without petiole and rachis;149.79;267.24;112.29;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449169.3404;P13 NSG Krusenbusch (Oldenburg);5883945.48 Dryas octopetala;actual measurement;leaf rehydration;345;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31232;adult;without petiole and rachis;345;;;1;;;;1997-05-30 00:00:00.0;;;;IRELAND;;;Burren, Co Clare; Dryas octopetala;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31232;adult;without petiole and rachis;244;;;5;11.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Dryopteris affinis;actual measurement (following LEDA data standards);no leaf rehydration;222.73;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44528;adult;with petiole and rachis;226.76;300.43;184.94;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Dryopteris affinis;actual measurement (following LEDA data standards);no leaf rehydration;244.38;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44528;adult;without petiole and rachis;249.68;310.43;209.8;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Dryopteris carthusiana;actual measurement;leaf rehydration;320;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;377;adult;without petiole and rachis;320;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr, Doncaster; Dryopteris carthusiana;actual measurement;leaf rehydration;230.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;377;adult;without petiole and rachis;232.4;272.44;194.5;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Dryopteris dilatata;actual measurement;leaf rehydration;277;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;387;adult;without petiole and rachis;277;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Dryopteris expansa;actual measurement (following LEDA data standards);no leaf rehydration;272.58;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44546;adult;with petiole and rachis;272.58;272.58;272.58;1;;;10;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Dryopteris expansa;actual measurement (following LEDA data standards);no leaf rehydration;266.1;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44546;adult;without petiole and rachis;266.1;266.1;266.1;1;;;10;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Dryopteris filix-mas;actual measurement;leaf rehydration;295;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;393;adult;without petiole and rachis;295;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Dryopteris remota;actual measurement (following LEDA data standards);no leaf rehydration;140.64;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44547;adult;with petiole and rachis;141.14;146.15;136.64;1;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.1 - [Abies] and [Picea] woodland;GERMANY;;;MK-1 Gr. Arber-Gipfel (south), Bavarian Forest, Bavaria; Echinochloa crus-galli;actual measurement (following LEDA data standards);no leaf rehydration;229.59;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42222;adult;with petiole and rachis;229.59;232.3;226.88;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Echinochloa crus-galli;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42222;adult;without petiole and rachis;150;;;2;;;;1996-08-27 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Echinops exaltatus;actual measurement (following LEDA data standards);no leaf rehydration;298.96;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;3278;adult;with petiole and rachis;296.45;311.61;276.26;2;;;1;2005-07-20 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Stadskanaal, garden fam. Pras; Echinops ritro;field experiment;leaf rehydration;205;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;2649;adult;without petiole and rachis;205;;;10;5;5;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Echinops ritro;field experiment;leaf rehydration;165;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;2649;adult;without petiole and rachis;165;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Echium vulgare;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12105;adult;without petiole and rachis;142;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Elatine hexandra;actual measurement (following LEDA data standards);no leaf rehydration;238.11;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19033;adult;with petiole and rachis;240.91;304.35;200;3;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. ;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;;;P 475 Freren (Landkreis Osnabrück); Elatine hydropiper;actual measurement (following LEDA data standards);no leaf rehydration;152.04;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19010;adult;with petiole and rachis;153.26;180.56;125.98;3;;;0;2004-09-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;442302;P 483 NSG Ahlhorner Fischteiche, Landkreis Oldenburg;5864940 Eleocharis acicularis;actual measurement (following LEDA data standards);no leaf rehydration;148.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37636;adult;with petiole and rachis;150.35;183.96;104.29;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;451051.5872;P1 Kl. Bornhorster See (Oldenburg);5892735.962 Eleocharis multicaulis;actual measurement (following LEDA data standards);no leaf rehydration;282.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37116;adult;with petiole and rachis;275.1;311.2;224.93;2;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. ;;D2.3 - Transition mires and quaking bogs;GERMANY;;;P 478 NSG Swarte Pötte, Emsland; Eleocharis palustris;actual measurement (following LEDA data standards);no leaf rehydration;217.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37120;adult;without petiole and rachis;218.96;232.45;209.45;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Eleocharis quinqueflora;actual measurement (following LEDA data standards);no leaf rehydration;295.05;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37539;adult;with petiole and rachis;297.37;325.11;271.04;2;;;0;2003-08-14 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling, saltmarsh; Eleocharis quinqueflora;actual measurement (following LEDA data standards);no leaf rehydration;303.53;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37539;adult;with petiole and rachis;336.01;532.49;252.64;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Eleocharis uniglumis;actual measurement;leaf rehydration;186.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;37127;adult;without petiole and rachis;182.76;282.8;127.13;1;;;0;2004-05-27 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Eleusine indica;laboratory/greenhouse/garden experiment;no leaf rehydration;222.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40688;adult;with petiole and rachis;221.83;240.53;203.08;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Elodea canadensis;actual measurement (following LEDA data standards);no leaf rehydration;309.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;36340;adult;without petiole and rachis;315.73;345.24;301.11;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Elodea canadensis;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36340;adult;without petiole and rachis;235;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Stony Middleton; Elodea nuttallii;actual measurement;leaf rehydration;320;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36344;adult;without petiole and rachis;320;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Elodea nuttallii;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36344;adult;without petiole and rachis;214;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Elodea nuttallii;actual measurement;leaf rehydration;239;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36344;adult;without petiole and rachis;239;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Pebley Reservoir; Elymus caninus;actual measurement;leaf rehydration;310;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42231;adult;without petiole and rachis;310;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Elymus caninus;actual measurement;leaf rehydration;309;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42231;adult;without petiole and rachis;309;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Elymus farctus;actual measurement (following LEDA data standards);no leaf rehydration;288.71;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;40994;adult;with petiole and rachis;291.95;320.12;278.01;2;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog; Elymus repens;actual measurement (following LEDA data standards);no leaf rehydration;308.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40238;adult;with petiole and rachis;313.26;356.98;268.18;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. big form of species ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;33;;P 314 beside the Havel between Hohenauen and Parey, Brandenburg; Elymus repens;actual measurement;leaf rehydration;271;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40238;adult;without petiole and rachis;271;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Elymus repens;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40238;adult;without petiole and rachis;263;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Elymus repens;actual measurement;leaf rehydration;249.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;40238;adult;without petiole and rachis;235.66;312.1;157;2;;;0;2004-07-29 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Empetrum nigrum;actual measurement (following LEDA data standards);no leaf rehydration;443.45;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19449;adult;with petiole and rachis;443.02;463.4;412.8;1;;;;2003-08-23 00:00:00.0;Preaggregated data obtained from single record. 24-61 leaves per sample;;F - Heathland. scrub and tundra habitats;NORWAY;32;604700;;6958700 Empetrum nigrum;actual measurement;leaf rehydration;281;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19449;adult;without petiole and rachis;281;;;15;9.4;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Bucka Hill; Empetrum nigrum;actual measurement;leaf rehydration;297;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19449;adult;without petiole and rachis;297;;;15;8.6;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Bucka Hill; Empetrum nigrum;actual measurement;leaf rehydration;302;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19449;adult;without petiole and rachis;302;;;15;3.8;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Empetrum nigrum;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19449;adult;without petiole and rachis;252;;;15;10.7;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Empetrum nigrum;actual measurement (following LEDA data standards);no leaf rehydration;412.5;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19449;adult;with petiole and rachis;413.6;508.5;274.3;1;;;;2003-08-22 00:00:00.0;Preaggregated data obtained from single record. 23-29 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;;6958700 Epilobium alpestre;actual measurement (following LEDA data standards);no leaf rehydration;213.29;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26069;adult;with petiole and rachis;213.33;229.28;189.32;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426814;P 372 NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;8303722 Epilobium anagallidifolium;actual measurement (following LEDA data standards);no leaf rehydration;344.84;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;26073;adult;with petiole and rachis;335.27;387.32;253.84;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608477;Hessdalen 13;6951729 Epilobium angustifolium;actual measurement;leaf rehydration;228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26075;adult;without petiole and rachis;228;;;2;;;;;;;;UNITED KINGDOM;;;; Epilobium ciliatum;actual measurement (following LEDA data standards);no leaf rehydration;152.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;26518;adult;without petiole and rachis;152.93;180.78;136.38;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Epilobium ciliatum;actual measurement;leaf rehydration;167;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26518;adult;without petiole and rachis;167;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Epilobium ciliatum;actual measurement;leaf rehydration;172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26518;adult;without petiole and rachis;172;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Epilobium ciliatum;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26518;adult;without petiole and rachis;151;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Epilobium dodonaei;actual measurement (following LEDA data standards);no leaf rehydration;209.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26526;adult;with petiole and rachis;204.25;225.13;175.47;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-6 disused rail network Munich city (Bavaria); Epilobium hirsutum;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26536;adult;without petiole and rachis;255;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Epilobium hirsutum;actual measurement;leaf rehydration;161;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26536;adult;without petiole and rachis;161;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Epilobium montanum;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26496;adult;without petiole and rachis;244;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Epilobium montanum;actual measurement;leaf rehydration;220;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26496;adult;without petiole and rachis;220;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton Priory; Epilobium montanum;actual measurement;leaf rehydration;224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26496;adult;without petiole and rachis;224;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Epilobium nutans;actual measurement (following LEDA data standards);no leaf rehydration;195.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26501;adult;with petiole and rachis;204.16;249.18;162.68;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;;;P 370 near Rinken (NSG Feldberg), Black forest (Baden-Württemberg); Epilobium obscurum;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26502;adult;without petiole and rachis;135;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Epilobium palustre;actual measurement (following LEDA data standards);no leaf rehydration;111.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;26504;adult;without petiole and rachis;112.23;124.01;101.84;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Epilobium palustre;actual measurement;leaf rehydration;149;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26504;adult;without petiole and rachis;149;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Epilobium palustre;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26504;adult;without petiole and rachis;174;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Epilobium parviflorum;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26505;adult;without petiole and rachis;174;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Epilobium parviflorum;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26505;adult;without petiole and rachis;142;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Epilobium parviflorum;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26505;adult;without petiole and rachis;165;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Epilobium roseum;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26508;adult;without petiole and rachis;150;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Epipactis atrorubens;actual measurement (following LEDA data standards);no leaf rehydration;210.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39603;adult;with petiole and rachis;208.85;222.08;189.2;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Epipactis atrorubens;actual measurement;leaf rehydration;232;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39603;adult;without petiole and rachis;232;;;1;;;;1998-09-10 00:00:00.0;;;;UNITED KINGDOM;;;Priestcliffe Lees; Epipactis helleborine;actual measurement (following LEDA data standards);no leaf rehydration;216.57;7;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;39609;adult;with petiole and rachis;218.29;252.34;192.25;2;;;1;2005-06-30 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren, roadside BC Kerklaan; Epipactis helleborine;actual measurement (following LEDA data standards);no leaf rehydration;182.38;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;39609;adult;with petiole and rachis;180.26;191.93;168.93;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;NETHERLANDS;;;Terschelling; Epipactis helleborine;actual measurement (following LEDA data standards);no leaf rehydration;213.57;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39609;adult;with petiole and rachis;212.71;227.3;193.25;2;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;P 479 near Fürstenau, Emsland; Epipactis palustris;actual measurement (following LEDA data standards);no leaf rehydration;199.33;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39624;adult;with petiole and rachis;202.41;227.69;187.17;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Epipactis palustris;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39624;adult;without petiole and rachis;170;;;1;;;;1997-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Norfolk; Equisetum arvense;actual measurement (following LEDA data standards);no leaf rehydration;259.26;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;166;adult;with petiole and rachis;257.11;302.52;210.75;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;452300.0876;P2 NSG Huntloser Moor (Lankreis Oldenburg);5868705.578 Equisetum arvense;actual measurement (following LEDA data standards);no leaf rehydration;216.35;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;166;adult;with petiole and rachis;221.89;267.74;189.79;1;;;0;2003-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Equisetum fluviatile;actual measurement (following LEDA data standards);no leaf rehydration;267.61;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;167;adult;with petiole and rachis;283.75;357.07;241.5;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;463618;P 317 Wesermarsch beside Hunte;5896094 Equisetum hyemale;actual measurement (following LEDA data standards);no leaf rehydration;154.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;170;adult;with petiole and rachis;153.42;178.47;131.6;1;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. stem was measured;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437168;P 323 Gristede (Landkreis Ammerland);5898312 Equisetum palustre;actual measurement;leaf rehydration;201.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;174;adult;without petiole and rachis;205.81;240.77;189.79;2;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348358;national park Müritz;5924824 Equisetum sylvaticum;actual measurement (following LEDA data standards);no leaf rehydration;236.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;179;adult;with petiole and rachis;278.89;440.78;211.94;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;32;427451;P 369 Rinken closely to NSG Feldberg, Black forest, Baden-Württemberg;5304210 Equisetum telmateia;actual measurement (following LEDA data standards);no leaf rehydration;118.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;180;adult;with petiole and rachis;120.62;135.22;114.29;3;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. leaves measured;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;406734;P 506 Wolfsgraben, Dinkelberg (Baden-W?emberg);5269966 Eragrostis minor;actual measurement (following LEDA data standards);no leaf rehydration;292.38;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41786;adult;with petiole and rachis;303.81;439.36;167.11;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;32;450153;P 392b NSG Fritschlach, Karlsruhe, Oberrheinebene (Rhine);5426634 Eragrostis minor;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41786;adult;without petiole and rachis;198;;;2;;;;2004-10-17 00:00:00.0;;;;ITALY;;;Varese; Eragrostis minor;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41786;adult;without petiole and rachis;221;;;2;;;;2004-10-17 00:00:00.0;;;;ITALY;;;Saronno; Erica cinerea;actual measurement;leaf rehydration;275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19545;adult;without petiole and rachis;275;;;15;8.9;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Bucka Hill; Erica cinerea;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19545;adult;without petiole and rachis;263;;;15;6.8;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Bucka Hill; Erica cinerea;actual measurement;leaf rehydration;325;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19545;adult;without petiole and rachis;325;;;15;22.2;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Erica cinerea;actual measurement;leaf rehydration;298;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19545;adult;without petiole and rachis;298;;;15;16.7;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Erica tetralix;actual measurement (following LEDA data standards);no leaf rehydration;515.03;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19489;adult;with petiole and rachis;508.47;546.3;454.55;10;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;F4 - Temperate shrub heathland;NETHERLANDS;;;Terschelling; Erica tetralix;actual measurement (following LEDA data standards);no leaf rehydration;432.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19489;adult;with petiole and rachis;422.58;484.04;258.54;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;454040.3912;P6 NSG Gellner Torfmöorte / Landkreis Oldenburg;5893212.771 Erigeron acer;actual measurement;leaf rehydration;209;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3429;adult;without petiole and rachis;209;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Erigeron acer;actual measurement;leaf rehydration;195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3429;adult;without petiole and rachis;195;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Erigeron acer;actual measurement;leaf rehydration;180;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3429;adult;without petiole and rachis;180;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Erigeron annuus;laboratory/greenhouse/garden experiment;no leaf rehydration;200.74;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;5070;adult;with petiole and rachis;196.72;215.44;166.07;2;;;0;2005-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Erigeron borealis;actual measurement (following LEDA data standards);no leaf rehydration;151.61;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;4210;adult;with petiole and rachis;153.79;220.7;111.41;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608440;Hessdalen 14;6951860 Eriophorum angustifolium;actual measurement;leaf rehydration;342;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37550;adult;without petiole and rachis;342;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Eriophorum latifolium;actual measurement (following LEDA data standards);no leaf rehydration;304.38;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37555;adult;with petiole and rachis;307.98;351.1;279.61;2;;;0;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;SWEDEN;;;Sundre, Gotland Sweden; Eriophorum latifolium;actual measurement (following LEDA data standards);no leaf rehydration;257.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37555;adult;with petiole and rachis;260.01;287.85;233.45;2;;;0;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. only small upper stem leaves measured;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;;;MK-7 Kanzelwandhaus, Allg?near Oberstdorf, Bavaria; Eriophorum latifolium;actual measurement (following LEDA data standards);no leaf rehydration;314.36;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);37555;adult;with petiole and rachis;313.34;368.37;274.39;1;;;;2005-07-03 00:00:00.0;Preaggregated data obtained from single record. ;;D2 - Valley mires. poor fens and transition mires;NORWAY;32;517928;Rindal 03;6995268 Eriophorum vaginatum;actual measurement;leaf rehydration;387;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37560;adult;without petiole and rachis;387;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Erodium cicutarium;actual measurement;leaf rehydration;224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22675;adult;without petiole and rachis;224;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Erodium cicutarium;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22675;adult;without petiole and rachis;165;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Erodium cicutarium;actual measurement;leaf rehydration;216;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22675;adult;without petiole and rachis;216;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Erodium cicutarium;actual measurement;leaf rehydration;200.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22675;adult;without petiole and rachis;212.62;282.85;169.51;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Erodium lebelii;actual measurement (following LEDA data standards);no leaf rehydration;248.29;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;50011;adult;with petiole and rachis;256.34;315.16;231.46;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.2 - Sand beaches above the driftline;GERMANY;32;347731;P 275 Borkum (SW), National park Niedersächsiches Wattenmeer;5937923 Erodium moschatum;laboratory/greenhouse/garden experiment;no leaf rehydration;98.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22680;adult;with petiole and rachis;98.5;107.92;90.98;2;;;0;2004-06-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Erodium moschatum;laboratory/greenhouse/garden experiment;no leaf rehydration;136.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22680;adult;without petiole and rachis;139.09;162.47;131.95;2;;;0;2004-06-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Erophila verna;actual measurement (following LEDA data standards);no leaf rehydration;166.13;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14075;adult;with petiole and rachis;193.48;409.52;110.2;2;;;0;2005-04-21 00:00:00.0;Preaggregated data obtained from single record. ;;H - Inland unvegetated or sparsely vegetated habitats;NETHERLANDS;;;BC Haren; Erophila verna s. verna;actual measurement;leaf rehydration;100;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12790;adult;without petiole and rachis;100;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Middleton, Derbys; Erophila verna s. verna;actual measurement;leaf rehydration;97;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12790;adult;without petiole and rachis;97;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Erucastrum nasturtiifolium;actual measurement (following LEDA data standards);no leaf rehydration;188.65;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12804;adult;with petiole and rachis;200.44;238.14;174.53;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;H5.3 - Clay. silt. sand and gravel habitats with very sparse or no vegetation;GERMANY;32;392758;P 248 Grißheim, Trockenwald/Oberrhein (upper Rhine);5303335 Erucastrum nasturtiifolium;actual measurement (following LEDA data standards);no leaf rehydration;205.39;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12804;adult;without petiole and rachis;215.17;258.66;181.45;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;H5.3 - Clay. silt. sand and gravel habitats with very sparse or no vegetation;GERMANY;32;392758;P 248 Grißheim, Trockenwald/Oberrhein (upper Rhine);5303335 Eryngium campestre;actual measurement (following LEDA data standards);no leaf rehydration;185.05;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1324;adult;with petiole and rachis;182.82;196.17;167.24;1;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Eryngium campestre;actual measurement (following LEDA data standards);no leaf rehydration;241.18;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1324;adult;without petiole and rachis;232.7;242.47;214.46;1;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Eryngium campestre;field experiment;leaf rehydration;288;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;1324;adult;without petiole and rachis;288;;;10;28;28;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Eryngium campestre;field experiment;leaf rehydration;231;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;1324;adult;without petiole and rachis;231;;;10;7;7;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Eryngium maritimum;actual measurement (following LEDA data standards);no leaf rehydration;141.19;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1328;adult;without petiole and rachis;140.44;146.73;131.47;1;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsiches Wattenmeer;5939106 Eryngium maritimum;actual measurement (following LEDA data standards);no leaf rehydration;131.11;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1328;adult;with petiole and rachis;132.3;145.06;125.56;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsiches Wattenmeer;5939106 Erysimum cheiranthoides;actual measurement (following LEDA data standards);no leaf rehydration;219.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14097;adult;with petiole and rachis;216.79;253.41;158.47;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Erysimum cheiranthoides;actual measurement;leaf rehydration;259;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14097;adult;without petiole and rachis;259;;;2;;;;1996-08-03 00:00:00.0;;;;UNITED KINGDOM;;;Crystal Palace; Erysimum cheiranthoides;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14097;adult;without petiole and rachis;174;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Buxton Country Park; Erysimum cheiri;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12871;adult;without petiole and rachis;186;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Stony Middleton; Erysimum hieracifolium;actual measurement (following LEDA data standards);no leaf rehydration;245.21;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12817;adult;with petiole and rachis;253.07;336.54;198.4;2;;;0;2004-09-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-17 Munich disused railway network, Bavaria; Erysimum hieracifolium;actual measurement (following LEDA data standards);no leaf rehydration;207.69;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12817;adult;with petiole and rachis;219.05;266.25;188.47;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;311645;P 310 NSG Untere Havel Nord, Brandenburg;5845815 Erysimum odoratum;actual measurement (following LEDA data standards);no leaf rehydration;154.62;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13255;adult;with petiole and rachis;168.57;204.44;146.02;2;;;0;2004-04-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;5450634;P 207 Fränkische Schweiz, Kallmünz (Regensburg/Bavaria);716066 Euonymus europaeus;actual measurement;leaf rehydration;236;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18402;adult;without petiole and rachis;236;;;5;3.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Euonymus europaeus;actual measurement;leaf rehydration;251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18402;adult;without petiole and rachis;251;;;5;6.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Eupatorium cannabinum;actual measurement;leaf rehydration;229;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3585;adult;without petiole and rachis;229;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Eupatorium cannabinum;actual measurement;leaf rehydration;175;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3585;adult;without petiole and rachis;175;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Euphorbia amygdaloides;laboratory/greenhouse/garden experiment;no leaf rehydration;286.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20294;adult;with petiole and rachis;284.14;303.12;255.18;2;;;0;2004-04-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Euphorbia brittingeri;actual measurement (following LEDA data standards);no leaf rehydration;297.66;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20281;adult;with petiole and rachis;299.21;329.03;271.77;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Euphorbia brittingeri;actual measurement (following LEDA data standards);no leaf rehydration;311.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20281;adult;without petiole and rachis;312.78;346.69;268.96;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Euphorbia dulcis;actual measurement (following LEDA data standards);no leaf rehydration;238.54;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20247;adult;with petiole and rachis;243.07;255.81;237.16;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;;P 247 Grißheim, Trockenwald/Oberrhein (upper Rhine); Euphorbia esula;actual measurement (following LEDA data standards);no leaf rehydration;200.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20227;adult;with petiole and rachis;201.83;232.91;166.94;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;P 289a Wilseder Marsch near river Elbe; Euphorbia esula;actual measurement (following LEDA data standards);no leaf rehydration;242.95;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;20227;adult;with petiole and rachis;259.8;363.45;179.53;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Euphorbia exigua;actual measurement;leaf rehydration;213;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20206;adult;without petiole and rachis;213;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Euphorbia helioscopia;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20189;adult;without petiole and rachis;214;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Euphorbia helioscopia;actual measurement;leaf rehydration;201;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20189;adult;without petiole and rachis;201;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Euphorbia helioscopia;actual measurement;leaf rehydration;175;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20189;adult;without petiole and rachis;175;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Euphorbia lathyris;actual measurement (following LEDA data standards);no leaf rehydration;173.61;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;20168;adult;with petiole and rachis;173.23;214.52;140.65;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Euphorbia lathyris;actual measurement (following LEDA data standards);no leaf rehydration;165.58;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20168;adult;with petiole and rachis;170.17;184.99;159.94;2;;;0;2004-07-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2.2 - Small-scale ornamental and domestic garden areas;GERMANY;;;P 218 Oldenburg, private garden; Euphorbia lathyris;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20168;adult;without petiole and rachis;190;;;1;;;;1997-07-27 00:00:00.0;;;;UNITED KINGDOM;;;Bakewell; Euphorbia palustris;actual measurement (following LEDA data standards);no leaf rehydration;323.76;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20139;adult;with petiole and rachis;322.98;346.44;295.12;1;;;0;2003-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;D5.1 - Reedbeds normally without free-standing water;GERMANY;32;583214.7008;P1 Unteres Elbtal, Phalaris-Sumpf;5916354.511 Euphorbia peplus;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20109;adult;without petiole and rachis;177;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Euphorbia segetalis;laboratory/greenhouse/garden experiment;no leaf rehydration;200.49;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20079;adult;with petiole and rachis;201.48;218.83;186.1;2;;;0;2004-10-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Euphorbia seguierana;actual measurement (following LEDA data standards);no leaf rehydration;284.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20085;adult;with petiole and rachis;280.03;313.04;234.81;2;;;0;2004-05-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;404784;P 262 NSG Taubergießen / Oberrheinebene (upper Rhine);5349351 Euphorbia serrulata;actual measurement (following LEDA data standards);no leaf rehydration;247.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20055;adult;with petiole and rachis;247.05;276.8;227.94;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;401207;P 358 closely to NSG Badberg, Kaiserstuhl / Baden-Württemberg;5327428 Euphrasia nemorosa;actual measurement (following LEDA data standards);no leaf rehydration;253.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33614;adult;with petiole and rachis;267.97;364.24;227.76;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;H5.6 - Trampled areas;GERMANY;32;610222;P 432b fringe near Lausenbuche (Harz, Lower Saxony);5728729 Euphrasia officinalis;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33149;adult;without petiole and rachis;247;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Euphrasia stricta;actual measurement (following LEDA data standards);no leaf rehydration;200.34;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;33166;adult;with petiole and rachis;210.96;323.08;157.52;2;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Euphrasia stricta;actual measurement (following LEDA data standards);no leaf rehydration;244.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33166;adult;with petiole and rachis;253.4;300.75;215.08;1;;;0;2003-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;B1.5 - Coastal dune heaths;GERMANY;32;435715.724;P2 Schillig, Friesland /coast of Northsea;5951029.635 Fagus sylvatica;actual measurement;leaf rehydration;309;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22485;adult;without petiole and rachis;309;;;5;6.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Anston; Fagus sylvatica;actual measurement;leaf rehydration;327;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22485;adult;without petiole and rachis;327;;;5;2.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Fagus sylvatica;actual measurement;leaf rehydration;301;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22485;adult;without petiole and rachis;301;;;5;6.6;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Fagus sylvatica;actual measurement;leaf rehydration;300;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22485;adult;without petiole and rachis;300;;;5;4.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Falcaria vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;163.85;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2255;adult;with petiole and rachis;163.85;167.79;159.91;1;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-871);;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Falcaria vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;201.76;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2255;adult;with petiole and rachis;190.24;204.19;164.78;1;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. spathaceous bracts (ground leaves see UOL-LF-1-273);;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;395157;P 241 NSG Burkheim / Kaiserstuhl, Baden-Württemberg;5328511 Falcaria vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;202.5;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2255;adult;without petiole and rachis;204.07;226.18;183.53;1;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. spathaceous bracts (ground leaves see UOL-LF-1-273);;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;395157;P 241 NSG Burkheim / Kaiserstuhl, Baden-Württemberg;5328511 Falcaria vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;183.71;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2255;adult;without petiole and rachis;183.45;189.38;177.26;1;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-871);;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Fallopia convolvulus;actual measurement;leaf rehydration;326;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44736;adult;without petiole and rachis;326;;;2;;;;1996-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Fallopia convolvulus;actual measurement;leaf rehydration;124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44736;adult;without petiole and rachis;124;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Fallopia convolvulus;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44736;adult;without petiole and rachis;150;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Fallopia dumetorum;actual measurement (following LEDA data standards);no leaf rehydration;240.68;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44738;adult;with petiole and rachis;239.12;250.95;225.74;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;645969.3347;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5888981.332 Fallopia dumetorum;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44738;adult;without petiole and rachis;160;;;2;;;;2004-10-16 00:00:00.0;;;;ITALY;;;Varese; Fallopia dumetorum;actual measurement (following LEDA data standards);no leaf rehydration;243.43;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44738;adult;without petiole and rachis;242.72;251.99;232.73;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;645969.3347;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5888981.332 Festuca altissima;actual measurement (following LEDA data standards);no leaf rehydration;254.05;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41544;adult;with petiole and rachis;260.47;321.07;217.66;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Festuca arundinacea;actual measurement;leaf rehydration;241;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40254;adult;without petiole and rachis;241;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Festuca arundinacea;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40254;adult;without petiole and rachis;227;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Pebley Reservoir; Festuca brevipila;actual measurement (following LEDA data standards);no leaf rehydration;429.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;41305;adult;with petiole and rachis;437.56;479.39;409.42;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1 - Dry grasslands;GERMANY;33;312023;P 307 NSG Untere Havel Nord, Brandenburg;5846225 Festuca gigantea;actual measurement;leaf rehydration;216;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40761;adult;without petiole and rachis;216;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Festuca ovina;actual measurement;leaf rehydration;410;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40171;adult;without petiole and rachis;410;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Festuca ovina;actual measurement;leaf rehydration;309.74;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;40171;adult;without petiole and rachis;306.3;336.87;271.92;2;;;0;2004-05-27 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Festuca ovina;actual measurement (following LEDA data standards);no leaf rehydration;287.58;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;40171;adult;with petiole and rachis;292.13;344.26;263.47;2;;;0;2005-05-29 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog; Festuca ovina;laboratory/greenhouse/garden experiment;no leaf rehydration;290;1;1;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;40171;adult;without petiole and rachis;290;;;8;;;;2004-02-11 00:00:00.0;;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;unknown from literature;Europe;;0;;0 Festuca pallens;actual measurement (following LEDA data standards);no leaf rehydration;396.29;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40789;adult;with petiole and rachis;416.71;498.37;360.39;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;609650;P 437 NSG Sachsenstein, Harzvorland, Lower Saxony;5715895 Festuca pratensis;laboratory/greenhouse/garden experiment;no leaf rehydration;230;1;1;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;41343;adult;without petiole and rachis;230;;;8;;;;2004-02-11 00:00:00.0;;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;unknown from literature;Europe;;0;;0 Festuca pratensis;actual measurement;leaf rehydration;257;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41343;adult;without petiole and rachis;257;;;2;;;;;;;;UNITED KINGDOM;;;; Festuca pratensis;actual measurement;leaf rehydration;281;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41343;adult;without petiole and rachis;281;;;2;;;;;;;;UNITED KINGDOM;;;; Festuca pratensis;actual measurement;leaf rehydration;293.02;16;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;41343;adult;without petiole and rachis;283.12;323.76;234.29;2;;;0;2003-06-11 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;350131;national park M?z;5924046 Festuca psammophila;actual measurement (following LEDA data standards);no leaf rehydration;550.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42306;adult;with petiole and rachis;545.22;613.62;478.09;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;P 462 Gabower Hänge FFH, Biosphärenreservat Schorfheide-Chorin (Brandenburg); Festuca rubra;actual measurement;leaf rehydration;289;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40103;adult;without petiole and rachis;289;;;2;;;;;;;;UNITED KINGDOM;;;; Festuca rubra;actual measurement;leaf rehydration;239;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40103;adult;without petiole and rachis;239;;;2;;;;;;;;UNITED KINGDOM;;;; Festuca rubra;actual measurement;leaf rehydration;273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40103;adult;without petiole and rachis;273;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Festuca vivipara;actual measurement (following LEDA data standards);no leaf rehydration;368.8;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;42318;adult;with petiole and rachis;370.04;406.3;321.9;3;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 3-6 leaves per sample;;F1 - Tundra;NORWAY;32;604700;Hessdalen;6958700 Filaginella uliginosa;actual measurement (following LEDA data standards);no leaf rehydration;150.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;3719;adult;without petiole and rachis;149.62;162.94;132.19;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Filaginella uliginosa;actual measurement;leaf rehydration;187;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3719;adult;without petiole and rachis;187;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Filaginella uliginosa;actual measurement;leaf rehydration;148;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3719;adult;without petiole and rachis;148;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Pebley Reservoir; Filaginella uliginosa;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;3719;adult;without petiole and rachis;165;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Filago lutescens;actual measurement;leaf rehydration;234.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;2658;adult;without petiole and rachis;233.42;264.88;193.03;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Filago pyramidata;actual measurement (following LEDA data standards);no leaf rehydration;340.65;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3396;adult;with petiole and rachis;340.65;340.65;340.65;4;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Filago pyramidata;actual measurement (following LEDA data standards);no leaf rehydration;219.61;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;3396;adult;with petiole and rachis;216.06;236.64;191.94;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;H5.3 - Clay. silt. sand and gravel habitats with very sparse or no vegetation;GERMANY;32;392758;P 248 Grißheim, Trockenwald/Oberrhein (upper Rhine);5303335 Filago vulgaris;actual measurement;leaf rehydration;196;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5888;adult;without petiole and rachis;196;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Filago vulgaris;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;5888;adult;without petiole and rachis;170;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Filipendula ulmaria;actual measurement;leaf rehydration;392;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29764;adult;without petiole and rachis;392;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Filipendula ulmaria;actual measurement;leaf rehydration;390;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29764;adult;without petiole and rachis;390;;;2;;;;;;;;UNITED KINGDOM;;;; Filipendula vulgaris;actual measurement;leaf rehydration;295;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29429;adult;without petiole and rachis;295;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Foeniculum vulgare;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1281;adult;without petiole and rachis;227;;;1;;;;1997-05-29 00:00:00.0;;;;UNITED KINGDOM;;;Wath; Foeniculum vulgare;actual measurement;leaf rehydration;242;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1281;adult;without petiole and rachis;242;;;1;;;;1997-07-14 00:00:00.0;;;;UNITED KINGDOM;;;Rotherham; Fragaria vesca;actual measurement;leaf rehydration;396;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30633;adult;without petiole and rachis;396;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Fragaria vesca;actual measurement;leaf rehydration;380;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30633;adult;without petiole and rachis;380;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Fragaria viridis;actual measurement (following LEDA data standards);no leaf rehydration;321.64;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);29358;adult;with petiole and rachis;318.46;358.58;274.52;1;;;;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;SWEDEN;34;351780;Gotland Lickershamn1;6412500 Fragaria viridis;actual measurement (following LEDA data standards);no leaf rehydration;349.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29358;adult;without petiole and rachis;340.69;384.57;277.05;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-2 disused rail network Munich city (Bavaria); Fragaria viridis;actual measurement (following LEDA data standards);no leaf rehydration;310.93;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29358;adult;with petiole and rachis;311.31;350.12;254.23;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-2 disused rail network Munich city (Bavaria); Frangula alnus;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28032;adult;without petiole and rachis;256;;;5;12.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Essex; Fraxinus excelsior;actual measurement;leaf rehydration;265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26381;adult;without petiole and rachis;265;;;5;17.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Fraxinus excelsior;actual measurement;leaf rehydration;251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26381;adult;without petiole and rachis;251;;;5;10.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Fraxinus excelsior;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26381;adult;without petiole and rachis;263;;;5;16.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Fraxinus excelsior;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26381;adult;without petiole and rachis;247;;;5;11.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Fritillaria meleagris;actual measurement (following LEDA data standards);no leaf rehydration;134.95;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39121;adult;with petiole and rachis;138.64;167.79;121.88;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;572388;P 285 NSG Unteres Seevetal, near river Elbe (Lower Saxony);5918571 Fritillaria meleagris;actual measurement;leaf rehydration;122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39121;adult;without petiole and rachis;122;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield (cultivated); Fumana procumbens;actual measurement (following LEDA data standards);no leaf rehydration;310.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18723;adult;with petiole and rachis;308.3;339.55;277.12;3;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Fumaria muralis;actual measurement;leaf rehydration;195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25544;adult;without petiole and rachis;195;;;2;;;;1996-06-14 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Fumaria officinalis;actual measurement;leaf rehydration;133;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25549;adult;without petiole and rachis;133;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Fumaria parviflora;laboratory/greenhouse/garden experiment;no leaf rehydration;120.29;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25553;adult;with petiole and rachis;120.29;120.29;120.29;2;;;0;2004-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Fumaria parviflora;laboratory/greenhouse/garden experiment;no leaf rehydration;152.46;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25553;adult;without petiole and rachis;152.46;152.46;152.46;2;;;0;2004-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Fumaria vaillantii;actual measurement (following LEDA data standards);no leaf rehydration;140.65;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25522;adult;with petiole and rachis;142.82;162.67;125.14;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;507089;P 385 weed communities in farmland, Bühleberge (Swabian Alb);5354408 Gagea lutea;actual measurement;leaf rehydration;103;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39025;adult;without petiole and rachis;103;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Gagea spathacea;actual measurement (following LEDA data standards);no leaf rehydration;103.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38650;adult;with petiole and rachis;103.45;116.43;89.79;2;;;0;2004-04-12 00:00:00.0;Preaggregated data obtained from single record. spathaceous bract (ground leaf see UOL-LF-1-204);;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;;;P 204 Wald near Gristede (Landkreis Ammerland); Gagea spathacea;actual measurement (following LEDA data standards);no leaf rehydration;104.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38650;adult;with petiole and rachis;103.79;114.76;94.06;2;;;0;2004-04-12 00:00:00.0;Preaggregated data obtained from single record. ground leaf (spathaceous bract see UOL-LF-1-848);;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;;;P 204 Spiekeroog, National park Niedersächsisches Wattenmeer; Galanthus nivalis;actual measurement (following LEDA data standards);no leaf rehydration;102.88;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;35672;adult;with petiole and rachis;99.78;109.54;85.54;2;;;1;2005-04-21 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;NETHERLANDS;;;Haren, garden Renee Bekker; Galega officinalis;actual measurement (following LEDA data standards);no leaf rehydration;115.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21307;adult;with petiole and rachis;118.42;139.13;101.65;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-10 disused rail network Munich city (Bavaria); Galega officinalis;actual measurement (following LEDA data standards);no leaf rehydration;139.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21307;adult;without petiole and rachis;137.28;154.92;120.99;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-10 disused rail network Munich city (Bavaria); Galeopsis angustifolia;actual measurement (following LEDA data standards);no leaf rehydration;353.51;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23489;adult;with petiole and rachis;353.51;353.51;353.51;3;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;603654;P 448 near Bad Lauterberg, Harz, Lower Saxony;5724094 Galeopsis angustifolia;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23489;adult;without petiole and rachis;182;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Galeopsis ladanum;actual measurement (following LEDA data standards);no leaf rehydration;185.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24587;adult;with petiole and rachis;192.04;239.01;167.9;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;518254;P 386b Flachsbühl bei Trochtelfingen (ND), Swabian Alb;5352515 Galeopsis ladanum;actual measurement (following LEDA data standards);no leaf rehydration;186.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24587;adult;without petiole and rachis;194.07;242.32;169.43;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;518254;P 386b Flachsbühl bei Trochtelfingen (ND), Swabian Alb;5352515 Galeopsis pubescens;actual measurement;leaf rehydration;170.87;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;24228;adult;without petiole and rachis;170.55;208.11;114.98;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Galeopsis segetum;actual measurement (following LEDA data standards);no leaf rehydration;138.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24230;adult;with petiole and rachis;149.88;210.91;118.82;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;H3.1 - Acid siliceous inland cliffs;GERMANY;32;423681;P 378c Zastlertal/Sommerhalde, Black forest, Baden-Württemberg;5308925 Galeopsis segetum;actual measurement (following LEDA data standards);no leaf rehydration;138.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24230;adult;without petiole and rachis;151.02;212.25;119.32;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;H3.1 - Acid siliceous inland cliffs;GERMANY;32;423681;P 378c Zastlertal/Sommerhalde, Black forest, Baden-Württemberg;5308925 Galeopsis speciosa;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23861;adult;without petiole and rachis;165;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Galeopsis tetrahit;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24648;adult;without petiole and rachis;176;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Galinsoga ciliata;laboratory/greenhouse/garden experiment;no leaf rehydration;138.46;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6801;adult;with petiole and rachis;136.3;152.54;117.89;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Galinsoga ciliata;laboratory/greenhouse/garden experiment;no leaf rehydration;140.14;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6801;adult;without petiole and rachis;138.04;154.11;119.86;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Galinsoga ciliata;actual measurement;leaf rehydration;113;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6801;adult;without petiole and rachis;113;;;2;;;;1996-09-22 00:00:00.0;;;;UNITED KINGDOM;;;Stockport; Galinsoga parviflora;laboratory/greenhouse/garden experiment;no leaf rehydration;242.07;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7147;adult;with petiole and rachis;245.79;282.34;213.58;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Galinsoga parviflora;laboratory/greenhouse/garden experiment;no leaf rehydration;254.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7147;adult;without petiole and rachis;250.11;284.29;216.52;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Galium album subsp. pycnotrichum;actual measurement (following LEDA data standards);no leaf rehydration;162.37;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32314;adult;with petiole and rachis;171.54;194.09;158.17;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Galium aparine;actual measurement;leaf rehydration;167;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31956;adult;without petiole and rachis;167;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Galium aparine;actual measurement;leaf rehydration;118;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31956;adult;without petiole and rachis;118;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Galium aparine;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31956;adult;without petiole and rachis;135;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Galium boreale;actual measurement (following LEDA data standards);no leaf rehydration;204.37;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;31917;adult;with petiole and rachis;208.34;287.83;150.21;2;;;0;2005-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;SWEDEN;;;Gotland; Galium boreale;actual measurement (following LEDA data standards);no leaf rehydration;215.57;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;31917;adult;with petiole and rachis;216.92;236.21;206.08;1;;;;2005-06-20 00:00:00.0;Preaggregated data obtained from single record. ;;E3 - Seasonally wet and wet grasslands;NORWAY;32;561700;Trondheim 04;7020500 Galium glaucum;actual measurement (following LEDA data standards);no leaf rehydration;198.67;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31858;adult;with petiole and rachis;197.43;275.08;146.69;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Galium mollugo;actual measurement;leaf rehydration;166;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31782;adult;without petiole and rachis;166;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Galium mollugo;actual measurement;leaf rehydration;200.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;31782;adult;without petiole and rachis;195.95;210.13;168.21;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Galium mollugo;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31782;adult;without petiole and rachis;142;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Galium odoratum;actual measurement;leaf rehydration;243;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31805;adult;without petiole and rachis;243;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Galium palustre;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31813;adult;without petiole and rachis;183;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Galium palustre;actual measurement;leaf rehydration;179;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31813;adult;without petiole and rachis;179;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr, Doncaster; Galium palustre;actual measurement;leaf rehydration;168.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;31813;adult;without petiole and rachis;171.5;234.44;123.98;2;;;0;2004-05-27 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park M?z; Galium palustre;actual measurement (following LEDA data standards);no leaf rehydration;194.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;31813;adult;without petiole and rachis;195.2;209.81;177.2;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Galium parisiense;laboratory/greenhouse/garden experiment;no leaf rehydration;199.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31817;adult;with petiole and rachis;188.47;246.68;133.48;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Galium parisiense;actual measurement (following LEDA data standards);no leaf rehydration;200.71;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31817;adult;with petiole and rachis;203.61;285.71;153.85;3;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-8 disused rail network Munich city (Bavaria); Galium rotundifolium;actual measurement (following LEDA data standards);no leaf rehydration;140.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32103;adult;with petiole and rachis;144.05;163.98;127.83;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;413683;P 355 upper Ravennaschlucht, Black forest;5307838 Galium saxatile;actual measurement;leaf rehydration;213;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31769;adult;without petiole and rachis;213;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Galium saxatile;actual measurement;leaf rehydration;164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31769;adult;without petiole and rachis;164;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Galium sterneri;actual measurement;leaf rehydration;250;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31777;adult;without petiole and rachis;250;;;2;;;;1996-08-11 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Galium sterneri;actual measurement;leaf rehydration;205;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31777;adult;without petiole and rachis;205;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Galium sylvaticum;laboratory/greenhouse/garden experiment;no leaf rehydration;179.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31699;adult;with petiole and rachis;178.54;189.76;162.16;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Galium tricornutum;laboratory/greenhouse/garden experiment;no leaf rehydration;207.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31719;adult;with petiole and rachis;203.21;236.33;161.47;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Galium uliginosum;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31724;adult;without petiole and rachis;256;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Galium uliginosum;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31724;adult;without petiole and rachis;198;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Galium uliginosum;actual measurement;leaf rehydration;281.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;31724;adult;without petiole and rachis;275.06;326.19;201.92;2;;;0;2003-06-17 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349725;national park Müritz;5923964 Galium verrucosum;laboratory/greenhouse/garden experiment;no leaf rehydration;177.57;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32204;adult;with petiole and rachis;179.67;230.03;139.52;2;;;0;2004-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Galium verum;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31730;adult;without petiole and rachis;247;;;2;;;;;;;;UNITED KINGDOM;;;; Galium verum;actual measurement;leaf rehydration;211.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;31730;adult;without petiole and rachis;205.13;246.56;161.09;2;;;0;2003-06-29 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER), here: Galium x pomeranicum;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348911;national park M?z;5924746 Galium verum;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31730;adult;without petiole and rachis;212;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Galium verum;actual measurement;leaf rehydration;242;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31730;adult;without petiole and rachis;242;;;2;;;;;;;;UNITED KINGDOM;;;; Genista anglica;actual measurement (following LEDA data standards);no leaf rehydration;395.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19775;adult;with petiole and rachis;393.07;422.17;369.93;5;;;0;2005-07-14 00:00:00.0;Preaggregated data obtained from single record. ;;F4.2 - Dry heaths;GERMANY;;;P 543 NSG Gildehauser Venn, SW- Lower Saxony; Genista anglica;actual measurement;leaf rehydration;293;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19775;adult;without petiole and rachis;293;;;1;;;;1997-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster Golf Course; Genista anglica;actual measurement;leaf rehydration;285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19775;adult;without petiole and rachis;285;;;2;;;;1996-08-02 00:00:00.0;;;;UNITED KINGDOM;;;Loch Einich, Cairngorms; Genista pilosa;actual measurement (following LEDA data standards);no leaf rehydration;324.67;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20915;adult;with petiole and rachis;317.96;329.15;300.05;5;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;H3.1 - Acid siliceous inland cliffs;GERMANY;32;432720;P 510b Haslach - Obersimonsw?er Tal, Gef?felsen, Black forest;5330279 Genista pilosa;actual measurement (following LEDA data standards);no leaf rehydration;416.52;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20915;adult;with petiole and rachis;450.06;566.63;347.32;3;;;0;2004-08-25 00:00:00.0;Preaggregated data obtained from single record. ;;E2.3 - Mountain hay meadows;GERMANY;32;605129;P 450 NSG Jordanshöhe/Bergwiesen, Harz (Lower Saxony);5731360 Genista tinctoria;actual measurement;leaf rehydration;248;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21390;adult;without petiole and rachis;248;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Gentiana asclepiadea;actual measurement (following LEDA data standards);no leaf rehydration;263.18;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23062;adult;with petiole and rachis;272.07;311.22;241.82;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;503124;P 521 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5288687 Gentiana lutea;actual measurement (following LEDA data standards);no leaf rehydration;193.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22882;adult;with petiole and rachis;193.74;212.76;172.5;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E4.3 - Acid alpine and subalpine grassland;GERMANY;32;426794;P 373 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303639 Gentiana lutea;actual measurement (following LEDA data standards);no leaf rehydration;194.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22882;adult;without petiole and rachis;194.86;213.69;172.96;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E4.3 - Acid alpine and subalpine grassland;GERMANY;32;426794;P 373 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303639 Gentiana nivalis;actual measurement (following LEDA data standards);no leaf rehydration;142.89;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;22851;adult;with petiole and rachis;148.12;246.53;76.7;1;;;;2005-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;609402;Hessdalen 35;6951929 Gentiana pneumonanthe;actual measurement (following LEDA data standards);no leaf rehydration;233.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22875;adult;with petiole and rachis;218.23;246.71;168.22;2;;;0;2004-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;396014;P 283 NSG Fentjer Tief (south), Ostfriesland;5912488 Gentianella amarella;actual measurement;leaf rehydration;210;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23102;adult;without petiole and rachis;210;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Geranium columbinum;actual measurement;leaf rehydration;301;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22581;adult;without petiole and rachis;301;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Geranium columbinum;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22581;adult;without petiole and rachis;235;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Geranium dissectum;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22583;adult;without petiole and rachis;244;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Geranium dissectum;actual measurement;leaf rehydration;242;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22583;adult;without petiole and rachis;242;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Geranium dissectum;actual measurement;leaf rehydration;228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22583;adult;without petiole and rachis;228;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Geranium lucidum;actual measurement;leaf rehydration;205;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22584;adult;without petiole and rachis;205;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Geranium lucidum;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22584;adult;without petiole and rachis;182;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Geranium molle;actual measurement;leaf rehydration;196;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22585;adult;without petiole and rachis;196;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Geranium molle;actual measurement;leaf rehydration;179;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22585;adult;without petiole and rachis;179;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Geranium molle;actual measurement;leaf rehydration;185;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22585;adult;without petiole and rachis;185;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Geranium palustre;actual measurement (following LEDA data standards);no leaf rehydration;209.39;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22587;adult;with petiole and rachis;221.52;282.68;195.21;2;;;0;2005-08-02 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;606791;P 548 L?k, Grienau, Schleswig-Holstein;5965840 Geranium phaeum;actual measurement (following LEDA data standards);no leaf rehydration;162.29;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22588;adult;with petiole and rachis;157.12;175.85;138.94;2;;;1;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren; Geranium phaeum;actual measurement (following LEDA data standards);no leaf rehydration;142.09;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22588;adult;with petiole and rachis;143.16;160.94;124.91;1;;;1;2004-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Geranium pratense;actual measurement;leaf rehydration;269;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22589;adult;without petiole and rachis;269;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Hope; Geranium pratense;actual measurement;leaf rehydration;206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22589;adult;without petiole and rachis;206;;;1;;;;1997-08-18 00:00:00.0;;;;UNITED KINGDOM;;;Bradwell; Geranium pusillum;actual measurement;leaf rehydration;217;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22590;adult;without petiole and rachis;217;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Geranium pusillum;actual measurement;leaf rehydration;185;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22590;adult;without petiole and rachis;185;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Geranium pusillum;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22590;adult;without petiole and rachis;203;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Geranium pyrenaicum;actual measurement;leaf rehydration;209;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22631;adult;without petiole and rachis;209;;;1;;;;1997-08-22 00:00:00.0;;;;UNITED KINGDOM;;;Edlington Wood; Geranium robertianum;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22592;adult;without petiole and rachis;194;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Geranium robertianum;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22592;adult;without petiole and rachis;186;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Geranium robertianum;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22592;adult;without petiole and rachis;177;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Geranium sanguineum;actual measurement;leaf rehydration;271;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22557;adult;without petiole and rachis;271;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Geranium sanguineum;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22557;adult;without petiole and rachis;247;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Geranium sylvaticum;actual measurement (following LEDA data standards);no leaf rehydration;246.5;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;22559;adult;with petiole and rachis;252.52;289.2;225.6;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Geranium sylvaticum;actual measurement (following LEDA data standards);no leaf rehydration;243.1;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;22559;adult;with petiole and rachis;241.8;269.2;206.7;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Geranium sylvaticum;actual measurement;leaf rehydration;207;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22559;adult;without petiole and rachis;207;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield (cultivated); Geranium sylvaticum;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22559;adult;without petiole and rachis;177;;;2;;;;;;;;UNITED KINGDOM;;;; Geum rivale;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29366;adult;without petiole and rachis;237;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Bradwell; Geum urbanum;actual measurement;leaf rehydration;302;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30638;adult;without petiole and rachis;302;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Glaucium flavum;laboratory/greenhouse/garden experiment;no leaf rehydration;147.33;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25533;adult;with petiole and rachis;145.25;151.72;132.74;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Glaux maritima;actual measurement (following LEDA data standards);no leaf rehydration;135.65;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28861;adult;with petiole and rachis;141.45;179.36;92.5;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Glaux maritima;actual measurement (following LEDA data standards);no leaf rehydration;218.07;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28861;adult;with petiole and rachis;225.79;317.7;171.97;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;622547.8761;P4 NSG Dummersdorfer Ufer (Lübeck/ near Baltic Sea);5975957.297 Glechoma hederacea;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24650;adult;without petiole and rachis;176;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Glechoma hederacea;actual measurement;leaf rehydration;144;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24650;adult;without petiole and rachis;144;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Creswell; Globularia punctata;actual measurement (following LEDA data standards);no leaf rehydration;283.96;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25198;adult;with petiole and rachis;287.26;342.06;239.95;2;;;0;2004-04-24 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;5450634;P 207 Fränkische Schweiz, Kallmünz (Regensburg/Bavaria);716066 Globularia punctata;actual measurement (following LEDA data standards);no leaf rehydration;290.76;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25198;adult;without petiole and rachis;291.4;348.98;243.82;2;;;0;2004-04-24 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;5450634;P 207 Fränkische Schweiz, Kallmünz (Regensburg/Bavaria);716066 Glyceria declinata;actual measurement;leaf rehydration;199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42323;adult;without petiole and rachis;199;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Glyceria declinata;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42323;adult;without petiole and rachis;156;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Glyceria declinata;actual measurement;leaf rehydration;138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42323;adult;without petiole and rachis;138;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Glyceria fluitans;actual measurement (following LEDA data standards);no leaf rehydration;390.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;40814;adult;without petiole and rachis;393.66;440.11;358.9;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Glyceria fluitans;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40814;adult;without petiole and rachis;227;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Glyceria fluitans;actual measurement;leaf rehydration;216;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40814;adult;without petiole and rachis;216;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Stony Middleton; Glyceria maxima;actual measurement;leaf rehydration;228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40135;adult;without petiole and rachis;228;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Glyceria maxima;actual measurement (following LEDA data standards);no leaf rehydration;306.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;40135;adult;without petiole and rachis;305.66;347.32;270.3;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Glyceria maxima;actual measurement;leaf rehydration;211;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40135;adult;without petiole and rachis;211;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Glyceria plicata;actual measurement;leaf rehydration;204;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;40816;adult;without petiole and rachis;204;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Gnaphalium luteo-album;actual measurement (following LEDA data standards);no leaf rehydration;176.04;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7695;adult;with petiole and rachis;173.08;187.05;158.25;2;;;0;2004-09-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;442467;P 484 NSG Ahlhorner Fischteiche, Landkreis Oldenburg;5865057 Gnaphalium luteo-album;actual measurement (following LEDA data standards);no leaf rehydration;209.57;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7695;adult;with petiole and rachis;204.19;244.44;156.47;2;;;0;2004-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;H - Inland unvegetated or sparsely vegetated habitats;NETHERLANDS;;;Helpman, railway; Gratiola officinalis;actual measurement (following LEDA data standards);no leaf rehydration;188.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33117;adult;with petiole and rachis;186.74;212.54;163.01;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;33;312022;P 306 NSG Untere Havel Nord, Brandenburg;5846408 Groenlandia densa;actual measurement (following LEDA data standards);no leaf rehydration;243.74;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;43982;adult;with petiole and rachis;224.57;275;155.44;2;;;0;2004-07-15 00:00:00.0;Preaggregated data obtained from single record. ;;C1 - Surface standing waters;NETHERLANDS;;;Colmschate/Gooiermars; Gymnadenia conopsea;actual measurement (following LEDA data standards);leaf rehydration;130.29;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39638;adult;without petiole and rachis;131.89;156.63;113.73;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Gymnadenia conopsea;actual measurement;leaf rehydration;164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39638;adult;without petiole and rachis;164;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Gymnadenia conopsea;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39638;adult;without petiole and rachis;150;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Gymnadenia conopsea;actual measurement;leaf rehydration;134;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39638;adult;without petiole and rachis;134;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Gymnadenia odoratissima;actual measurement (following LEDA data standards);no leaf rehydration;115.06;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39639;adult;with petiole and rachis;118.64;136.57;105.13;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Gymnocarpium dryopteris;actual measurement (following LEDA data standards);no leaf rehydration;178.99;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;355;adult;with petiole and rachis;185.77;231.31;164.72;1;;;0;2003-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.A - [Picea] taiga woodland;SWEDEN;33;535065.968;P4 Sweden, Blekinge;6251154.537 Gymnocarpium dryopteris;actual measurement (following LEDA data standards);no leaf rehydration;172.91;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;355;adult;without petiole and rachis;180.67;228.42;152.72;1;;;0;2003-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.A - [Picea] taiga woodland;SWEDEN;33;535065.968;P4 Sweden, Blekinge;6251154.537 Gymnocarpium robertianum;actual measurement;leaf rehydration;284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;359;adult;without petiole and rachis;284;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Gymnocarpium robertianum;actual measurement;leaf rehydration;274;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;359;adult;without petiole and rachis;274;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Gypsophila perfoliata;actual measurement (following LEDA data standards);no leaf rehydration;140.33;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16510;adult;with petiole and rachis;144.46;177.84;121.41;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;625944;P 444 abandonded potash mine Beiersole, Harzvorland, Lower Saxony;5794830 Gypsophila repens;actual measurement (following LEDA data standards);no leaf rehydration;146.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17131;adult;with petiole and rachis;148.45;196.99;128.88;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;609650;P 437 NSG Sachsenstein, Harzvorland, Lower Saxony;5715895 Gypsophila scorzonerifolia Ser.;actual measurement (following LEDA data standards);no leaf rehydration;165.51;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17132;adult;with petiole and rachis;166.61;181.28;148.06;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;625944;P 444 abandonded potash mine Beiersole, Harzvorland, Lower Saxony;5794830 Halimione pedunculata;actual measurement (following LEDA data standards);no leaf rehydration;167.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17799;adult;with petiole and rachis;166.75;228.21;120.48;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;625944;P 444 abandonded potash mine Beiersole, Harzvorland, Lower Saxony;5794830 Halimione portulacoides;actual measurement;leaf rehydration;93;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17931;adult;without petiole and rachis;93;;;1;;;;1998-09-10 00:00:00.0;;;;UNITED KINGDOM;;;Maldon, Essex; Hedera helix;actual measurement;leaf rehydration;249;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;249;;;5;8.8;;;1995-07-01 00:00:00.0;CURRENT YEARS REPRODUCTIVE GROWTH;;;UNITED KINGDOM;;;Hathersage; Hedera helix;actual measurement;leaf rehydration;266;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;266;;;4;9.8;;;1995-07-01 00:00:00.0;PREVIOUS YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Hathersage; Hedera helix;actual measurement;leaf rehydration;240;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;240;;;3;21.6;;;1995-07-01 00:00:00.0;CURRENT YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Hathersage; Hedera helix;actual measurement;leaf rehydration;251;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;251;;;5;12.3;;;1995-07-01 00:00:00.0;CURRENT YEARS REPRODUCTIVE GROWTH;;;UNITED KINGDOM;;;Peter Dale; Hedera helix;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;252;;;2;6.5;;;1995-07-01 00:00:00.0;PREVIOUS YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Peter Dale; Hedera helix;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;254;;;5;3.8;;;1995-07-01 00:00:00.0;CURRENT YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Hedera helix;actual measurement;leaf rehydration;271;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;271;;;5;4.9;;;1995-07-01 00:00:00.0;PREVIOUS YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Hedera helix;actual measurement;leaf rehydration;270;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;270;;;5;5.3;;;1995-07-01 00:00:00.0;CURRENT YEARS REPRODUCTIVE GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Hedera helix;actual measurement;leaf rehydration;231;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2449;adult;without petiole and rachis;231;;;5;11.5;;;1995-07-01 00:00:00.0;CURRENT YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Peter Dale; Helianthemum canum;actual measurement;leaf rehydration;388;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18656;adult;without petiole and rachis;388;;;1;;;;1997-09-26 00:00:00.0;;;;UNITED KINGDOM;;;Great Orme; Helianthemum nummularium;actual measurement;leaf rehydration;253;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18594;adult;without petiole and rachis;253;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Helianthemum nummularium;actual measurement;leaf rehydration;222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18594;adult;without petiole and rachis;222;;;5;14.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Helianthemum nummularium;actual measurement;leaf rehydration;258;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18594;adult;without petiole and rachis;258;;;5;9.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Markland Grips; Helianthemum nummularium;actual measurement;leaf rehydration;215;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18594;adult;without petiole and rachis;215;;;5;14;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Helianthemum nummularium;field experiment;leaf rehydration;291;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18594;adult;without petiole and rachis;291;;;10;8;8;;1997-10-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Helianthemum nummularium;field experiment;leaf rehydration;276;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18594;adult;without petiole and rachis;276;;;10;5;5;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Helianthemum nummularium;field experiment;leaf rehydration;278;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18594;adult;without petiole and rachis;278;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Helianthemum nummularium;field experiment;leaf rehydration;273;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18594;adult;without petiole and rachis;273;;;10;7;7;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Helianthemum nummularium;field experiment;leaf rehydration;297;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18594;adult;without petiole and rachis;297;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;6.35;Les Agros;43.25 Helianthemum nummularium;field experiment;leaf rehydration;277;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;18594;adult;without petiole and rachis;277;;;10;6;6;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Helianthus annuus;actual measurement (following LEDA data standards);no leaf rehydration;131.12;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7986;adult;with petiole and rachis;135.76;153.34;127.05;2;;;1;2005-08-08 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Alteveer; Helianthus tuberosus;actual measurement (following LEDA data standards);no leaf rehydration;125.95;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7788;adult;with petiole and rachis;127.13;136.5;119.12;2;;;1;2004-07-15 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren, garden Renee Bekker; Helichrysum arenarium;actual measurement (following LEDA data standards);no leaf rehydration;225.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7066;adult;with petiole and rachis;226.68;248.21;201.35;1;;;0;2003-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;B1 - Coastal dune and sand habitats;DENMARK;;;MK20 Sealand, Denmark; Helleborus foetidus;actual measurement (following LEDA data standards);leaf rehydration;158.44;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27081;adult;with petiole and rachis;156.6;179.29;130.25;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;544300;MK 9, Schwäbische Alb, Katzenbuckel;5379100 Helleborus foetidus;actual measurement;leaf rehydration;216;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27081;adult;without petiole and rachis;216;;;1;;;;1997-09-29 00:00:00.0;;;;UNITED KINGDOM;;;Cromford; Helleborus foetidus;actual measurement (following LEDA data standards);leaf rehydration;167.69;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27081;adult;without petiole and rachis;167.99;187.53;149.03;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;544300;MK 9, Schwäbische Alb, Katzenbuckel;5379100 Helleborus viridis;actual measurement;leaf rehydration;236;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27076;adult;without petiole and rachis;236;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Wormhill, Derbys; Hepatica nobilis;laboratory/greenhouse/garden experiment;no leaf rehydration;176.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26984;adult;with petiole and rachis;169.62;181.38;112.08;2;;;0;2004-04-15 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Hepatica nobilis;laboratory/greenhouse/garden experiment;no leaf rehydration;195.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26984;adult;without petiole and rachis;188.83;210.9;98.95;2;;;0;2004-04-15 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Heracleum mantegazzianum;actual measurement (following LEDA data standards);no leaf rehydration;168.84;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;1295;adult;with petiole and rachis;174.9;217.63;131.94;1;;;;2005-08-10 00:00:00.0;Preaggregated data obtained from single record. 1. order leaflet;;I2.3 - Weed communities of recently abandoned garden areas;NORWAY;32;570144;Trondheim 05;7033844 Heracleum mantegazzianum;actual measurement;leaf rehydration;189;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1295;adult;without petiole and rachis;189;;;1;;;;1997-06-06 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Heracleum sphondylium;actual measurement;leaf rehydration;239;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1232;adult;without petiole and rachis;239;;;2;;;;;;;;UNITED KINGDOM;;;; Heracleum sphondylium;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1232;adult;without petiole and rachis;202;;;2;;;;;;;;UNITED KINGDOM;;;; Heracleum sphondylium;actual measurement;leaf rehydration;219;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1232;adult;without petiole and rachis;219;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Herniaria glabra;actual measurement (following LEDA data standards);no leaf rehydration;194.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16521;adult;with petiole and rachis;189.35;256.1;119.75;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P1 NSG Krusenbusch (Oldenburg);5883035.844 Herniaria hirsuta;actual measurement (following LEDA data standards);no leaf rehydration;296.3;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17001;adult;with petiole and rachis;296.3;296.3;296.3;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Herniaria hirsuta;laboratory/greenhouse/garden experiment;no leaf rehydration;124.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17001;adult;with petiole and rachis;123.82;161.76;93.92;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hesperis matronalis;laboratory/greenhouse/garden experiment;no leaf rehydration;145.16;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14004;adult;with petiole and rachis;145.16;145.16;145.16;2;;;0;2004-10-08 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hesperis matronalis;laboratory/greenhouse/garden experiment;no leaf rehydration;144.83;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14004;adult;without petiole and rachis;144.83;144.83;144.83;2;;;0;2004-10-08 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hesperis matronalis;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14004;adult;without petiole and rachis;176;;;2;;;;1996-06-25 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Hesperis matronalis;actual measurement;leaf rehydration;125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14004;adult;without petiole and rachis;125;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Hieracium acuminatum;actual measurement (following LEDA data standards);no leaf rehydration;217.66;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7467;adult;with petiole and rachis;212.21;255.2;173.3;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Hieracium acuminatum;actual measurement;leaf rehydration;97.61;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;7467;adult;without petiole and rachis;105.6;177.32;79.95;2;;;0;2004-05-26 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Hieracium alpinum gr.;actual measurement (following LEDA data standards);no leaf rehydration;182.9;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;8507;adult;with petiole and rachis;185.75;216.7;160.5;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Hieracium alpinum gr.;actual measurement (following LEDA data standards);no leaf rehydration;157.6;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;8507;adult;with petiole and rachis;162.4;184.3;145.3;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Hieracium amplexicaule;actual measurement (following LEDA data standards);no leaf rehydration;114.92;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;33881;adult;with petiole and rachis;119.55;137.59;103.45;2;;;1;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Hieracium aurantiacum;actual measurement (following LEDA data standards);no leaf rehydration;133.77;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7024;adult;with petiole and rachis;129.5;157.64;107.35;2;;;0;2004-08-15 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren, garden Renee Bekker; Hieracium aurantiacum;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7024;adult;without petiole and rachis;171;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Hieracium bifidum;actual measurement (following LEDA data standards);no leaf rehydration;152.09;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14677;adult;with petiole and rachis;149.58;172.07;119.64;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;609650;P 437 NSG Sachsenstein, Harzvorland, Lower Saxony;5715895 Hieracium bifidum;actual measurement (following LEDA data standards);no leaf rehydration;209.45;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14677;adult;with petiole and rachis;216.21;236.87;202.32;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;684457;P 413a/b Jenzig(berg) closely to Jena (Thüringen);5646509 Hieracium bifidum;actual measurement (following LEDA data standards);no leaf rehydration;143.29;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14677;adult;without petiole and rachis;136.93;167.69;93.68;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;609650;P 437 NSG Sachsenstein, Harzvorland, Lower Saxony;5715895 Hieracium bifidum;actual measurement (following LEDA data standards);no leaf rehydration;218.28;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14677;adult;without petiole and rachis;221.34;239.05;206.69;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;684457;P 413a/b Jenzig(berg) closely to Jena (Thüringen);5646509 Hieracium cymosum;actual measurement (following LEDA data standards);no leaf rehydration;149.12;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6921;adult;with petiole and rachis;150.01;182.1;122.08;2;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;486567;P 530 NSG Hohentwiel, Hegau, Baden-W?emberg;5290308 Hieracium echioides;actual measurement (following LEDA data standards);no leaf rehydration;171.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6543;adult;with petiole and rachis;175.04;215.41;151.97;2;;;0;2004-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;33;431665;P 470 Gr. Rummelsberg Biosphärenreservat Schorfheide, Brandenburg;5862718 Hieracium flagellare;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7042;adult;without petiole and rachis;183;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Hieracium glaucinum;actual measurement (following LEDA data standards);no leaf rehydration;145.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14515;adult;with petiole and rachis;149.09;188.06;114.7;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684002;P 410a Jenzig(berg) closely to Jena (Thüringen);5646183 Hieracium glaucinum;actual measurement (following LEDA data standards);no leaf rehydration;151.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14515;adult;without petiole and rachis;157.35;218.12;113.64;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684002;P 410a Jenzig(berg) closely to Jena (Thüringen);5646183 Hieracium humile;actual measurement (following LEDA data standards);no leaf rehydration;173.21;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34141;adult;with petiole and rachis;167.37;175.68;153.22;2;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;486567;P 530 NSG Hohentwiel, Hegau, Baden-W?emberg;5290308 Hieracium lactucella;actual measurement (following LEDA data standards);no leaf rehydration;114.46;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7271;adult;with petiole and rachis;114.8;130.01;98.81;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Hieracium maculatum;actual measurement (following LEDA data standards);no leaf rehydration;173.01;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16770;adult;with petiole and rachis;173.97;196.01;143.3;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684186;P 411a/b Jenzig(berg) closely to Jena (Thüringen);5646244 Hieracium maculatum;actual measurement (following LEDA data standards);no leaf rehydration;171.59;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16770;adult;without petiole and rachis;173.61;198.47;140.57;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684186;P 411a/b Jenzig(berg) closely to Jena (Thüringen);5646244 Hieracium murorum;actual measurement (following LEDA data standards);no leaf rehydration;123.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14443;adult;with petiole and rachis;124.27;136.94;113.63;2;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;E5 - Woodland fringes and clearings and tall forb habitats;GERMANY;32;619971;P 290 Wendland, Biosphärenreservat Niedersächsische Elbtalaue (Lower Saxony);5892741 Hieracium murorum;actual measurement (following LEDA data standards);no leaf rehydration;124.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14443;adult;without petiole and rachis;126.56;139.97;113.16;2;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;E5 - Woodland fringes and clearings and tall forb habitats;GERMANY;32;619971;P 290 Wendland, Biosphärenreservat Niedersächsische Elbtalaue (Lower Saxony);5892741 Hieracium pilosella;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6658;adult;without petiole and rachis;188;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Hieracium piloselloides;actual measurement (following LEDA data standards);no leaf rehydration;197.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6837;adult;with petiole and rachis;200;236.57;173.57;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449177.3372;P6 NSG Krusenbusch (Oldenburg);5883138.803 Hieracium piloselloides;actual measurement (following LEDA data standards);no leaf rehydration;219.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6837;adult;without petiole and rachis;216.51;252.89;187.4;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449177.3372;P6 NSG Krusenbusch (Oldenburg);5883138.803 Hieracium sabaudum;actual measurement (following LEDA data standards);no leaf rehydration;112;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44218;adult;with petiole and rachis;113.47;124.53;103.8;2;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;E5 - Woodland fringes and clearings and tall forb habitats;GERMANY;32;619971;P 290 Wendland, Biosphärenreservat Niedersächsische Elbtalaue (Lower Saxony);5892741 Hieracium umbellatum;actual measurement (following LEDA data standards);no leaf rehydration;173.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7093;adult;with petiole and rachis;169.95;184.96;144.99;1;;;0;2003-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;SWEDEN;33;534337.2596;P1 Sweden, Blekinge;6251697.32 Hieracium vulgatum;actual measurement (following LEDA data standards);no leaf rehydration;95.01;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17779;adult;with petiole and rachis;94.47;102.36;85.9;2;;;1;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;NETHERLANDS;;;De Strubben; Hieracium x floribundum;actual measurement (following LEDA data standards);no leaf rehydration;144.97;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8859;adult;with petiole and rachis;146.75;165.06;132.8;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. determinated as Hieracium floribundum;;J2.6 - Disused rural constructions;GERMANY;;;O-8 disused rail network Munich city (Bavaria); Hierochloe odorata;actual measurement (following LEDA data standards);no leaf rehydration;190.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42519;adult;with petiole and rachis;193.33;233.5;151.33;1;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;352486;P 270 Borkum (NO), National park Niedersächsiches Wattenmeer;5941614 Himantoglossum hircinum;actual measurement (following LEDA data standards);no leaf rehydration;109.33;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39644;adult;with petiole and rachis;110.4;117.73;104.15;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Hippocrepis comosa;actual measurement (following LEDA data standards);no leaf rehydration;235.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21868;adult;with petiole and rachis;241.29;280.15;229.67;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Hippocrepis comosa;actual measurement (following LEDA data standards);no leaf rehydration;238.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21868;adult;without petiole and rachis;244.5;293.96;228.23;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Hippocrepis comosa;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21868;adult;without petiole and rachis;225;;;1;;;;1997-09-13 00:00:00.0;;;;UNITED KINGDOM;;;Topley Pike; Hippophae rhamnoides;actual measurement;leaf rehydration;231;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19002;adult;without petiole and rachis;231;;;5;9.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Hippuris vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;112.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24425;adult;with petiole and rachis;113.59;122.83;105.35;2;;;0;2004-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;401699;P 279 NSG Flumm-Niederung, Ostfriesland;5916785 Hippuris vulgaris;actual measurement;leaf rehydration;98;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24425;adult;without petiole and rachis;98;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Hippuris vulgaris;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24425;adult;without petiole and rachis;110;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell Crags; Hirschfeldia incana;laboratory/greenhouse/garden experiment;no leaf rehydration;128.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14011;adult;with petiole and rachis;124.81;137.1;104.03;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hirschfeldia incana;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14011;adult;without petiole and rachis;165;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Holcus lanatus;actual measurement (following LEDA data standards);no leaf rehydration;203.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;42613;adult;without petiole and rachis;204.22;213.29;196.87;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Holcus lanatus;actual measurement;leaf rehydration;246;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42613;adult;without petiole and rachis;246;;;2;;;;;;;;UNITED KINGDOM;;;; Holcus lanatus;actual measurement;leaf rehydration;253.37;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;42613;adult;without petiole and rachis;259.45;325.49;226.45;2;;;0;2003-06-15 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349631;national park Müritz;5924067 Holcus lanatus;actual measurement;leaf rehydration;218;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42613;adult;without petiole and rachis;218;;;2;;;;;;;;UNITED KINGDOM;;;; Holcus mollis;actual measurement;leaf rehydration;230;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42614;adult;without petiole and rachis;230;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Holcus mollis;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42614;adult;without petiole and rachis;202;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Holosteum umbellatum;actual measurement (following LEDA data standards);no leaf rehydration;154.25;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17010;adult;with petiole and rachis;154.54;204.6;111.88;2;;;0;2005-05-05 00:00:00.0;Preaggregated data obtained from single record. ;;I1.5 - Bare tilled. fallow or recently abandoned arable land;GERMANY;;;P-494 car park beside A2, eastern of Burg (Sachsen-Anhalt); Homogyne alpina;actual measurement (following LEDA data standards);no leaf rehydration;127.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9177;adult;with petiole and rachis;127.68;143;108.59;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.1 - [Abies] and [Picea] woodland;GERMANY;;;MK-1 Gr. Arber-Gipfel (south), Bavarian Forest, Bavaria; Honkenya peploides;actual measurement (following LEDA data standards);no leaf rehydration;148.93;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16523;adult;with petiole and rachis;169.52;271.19;106.93;2;;;0;2004-09-09 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;DENMARK;;;Skallingen; Honkenya peploides;actual measurement (following LEDA data standards);no leaf rehydration;246.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16523;adult;with petiole and rachis;244.45;276.1;207.77;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;622547.8761;P4 NSG Dummersdorfer Ufer (Lübeck/ near Baltic Sea);5975957.297 Hordelymus europaeus;actual measurement (following LEDA data standards);leaf rehydration;186.79;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42617;adult;with petiole and rachis;180.18;200.13;135.66;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;544300;MK 9, Schwäbische Alb, Katzenbuckel;5379100 Hordelymus europaeus;actual measurement;leaf rehydration;215;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42617;adult;without petiole and rachis;215;;;1;;;;1997-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Linacre; Hordeum distichon;laboratory/greenhouse/garden experiment;no leaf rehydration;177.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43701;adult;with petiole and rachis;175.85;192.42;135.81;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hordeum jubatum;actual measurement;leaf rehydration;249;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43702;adult;without petiole and rachis;249;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Hordeum marinum;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43180;adult;without petiole and rachis;221;;;2;;;;;;;;SPAIN;;;Borja; Hordeum murinum;laboratory/greenhouse/garden experiment;no leaf rehydration;212.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42447;adult;with petiole and rachis;234.03;338.89;139.52;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hordeum murinum;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42447;adult;without petiole and rachis;202;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Hordeum murinum;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42447;adult;without petiole and rachis;177;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Hordeum secalinum;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43182;adult;without petiole and rachis;254;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Hordeum secalinum;actual measurement;leaf rehydration;226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43182;adult;without petiole and rachis;226;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Bicester, Bucks; Hordeum vulgare;laboratory/greenhouse/garden experiment;no leaf rehydration;175.29;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42448;adult;with petiole and rachis;178.63;185.58;175.01;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hornungia petraea;actual measurement;leaf rehydration;143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14530;adult;without petiole and rachis;143;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Hottonia palustris;actual measurement (following LEDA data standards);no leaf rehydration;46.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;28918;adult;without petiole and rachis;46.9;52.54;42.25;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Humulus lupulus;actual measurement;leaf rehydration;323;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14697;adult;without petiole and rachis;323;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Humulus lupulus;actual measurement;leaf rehydration;262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14697;adult;without petiole and rachis;262;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Clowne; Huperzia selago;actual measurement (following LEDA data standards);no leaf rehydration;340.22;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;464;adult;with petiole and rachis;342.66;381.11;311.53;10;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. leaves were measured;;G3.1 - [Abies] and [Picea] woodland;GERMANY;32;;P 376 NSG Feldberg, Teil Baldenweger Buck, Black forest, Baden-Württemberg; Hyacinthoides hispanica;actual measurement;leaf rehydration;72;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38119;adult;without petiole and rachis;72;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Hyacinthoides hispanica;actual measurement;leaf rehydration;59;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38119;adult;without petiole and rachis;59;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Hyacinthoides non-scripta;actual measurement;leaf rehydration;106;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38541;adult;without petiole and rachis;106;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Hyacinthoides non-scripta;actual measurement;leaf rehydration;70;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38541;adult;without petiole and rachis;70;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Hydrocharis morsus-ranae;actual measurement (following LEDA data standards);no leaf rehydration;79.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;36302;adult;without petiole and rachis;79.78;82.64;75.39;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Hydrocharis morsus-ranae;actual measurement (following LEDA data standards);no leaf rehydration;93.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36302;adult;with petiole and rachis;100.34;134.11;82.19;1;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;466296.4868;P2 Hiddward/Wesermarsch;5888617.61 Hydrocharis morsus-ranae;actual measurement (following LEDA data standards);no leaf rehydration;111.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36302;adult;without petiole and rachis;123.13;166.95;104.03;1;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;466296.4868;P2 Hiddward/Wesermarsch;5888617.61 Hydrocotyle vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;131.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;2206;adult;without petiole and rachis;132.31;139.51;126.01;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Hydrocotyle vulgaris;actual measurement;leaf rehydration;161;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2206;adult;without petiole and rachis;161;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Hydrocotyle vulgaris;actual measurement;leaf rehydration;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2206;adult;without petiole and rachis;111;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Hydrocotyle vulgaris;actual measurement;leaf rehydration;117.2;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;2206;adult;without petiole and rachis;117.37;144.12;105;2;;;0;2003-06-29 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348764;national park Müritz;5924907 Hydrocotyle vulgaris;actual measurement;leaf rehydration;96.3;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;2206;adult;with petiole and rachis;97.38;121.56;86.27;2;;;0;2003-06-29 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348764;national park Müritz;5924907 Hyoscyamus niger;laboratory/greenhouse/garden experiment;no leaf rehydration;121.05;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34956;adult;with petiole and rachis;121.3;125.55;117.29;2;;;0;2004-07-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hyoscyamus niger;laboratory/greenhouse/garden experiment;no leaf rehydration;121.85;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34956;adult;without petiole and rachis;121.5;126.66;116;2;;;0;2004-07-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hypericum calycinum;actual measurement;leaf rehydration;329;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23310;adult;without petiole and rachis;329;;;2;;;;1996-08-27 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Hypericum elodes;actual measurement (following LEDA data standards);no leaf rehydration;247.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23279;adult;with petiole and rachis;243.11;288.44;195.91;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;436870;P 318 mesotrophic pond, Landkreis Cloppenburg;5876414 Hypericum elodes;actual measurement (following LEDA data standards);no leaf rehydration;174.3;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23279;adult;with petiole and rachis;176.81;208.42;150.55;2;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Nieuwegein; Hypericum hirsutum;actual measurement;leaf rehydration;278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23250;adult;without petiole and rachis;278;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Hypericum hirsutum;actual measurement;leaf rehydration;273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23250;adult;without petiole and rachis;273;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell Crags; Hypericum humifusum;actual measurement (following LEDA data standards);no leaf rehydration;258.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23252;adult;with petiole and rachis;262.04;318.23;226.98;2;;;0;2004-08-26 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;608809;;5750271 Hypericum humifusum;laboratory/greenhouse/garden experiment;no leaf rehydration;291.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23252;adult;with petiole and rachis;289.94;334.38;233.92;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hypericum maculatum;actual measurement;leaf rehydration;265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23226;adult;without petiole and rachis;265;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Renishaw; Hypericum montanum;actual measurement;leaf rehydration;274;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23241;adult;without petiole and rachis;274;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Hypericum perforatum;actual measurement;leaf rehydration;321;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23212;adult;without petiole and rachis;321;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Treeton, S Yks; Hypericum perforatum;actual measurement;leaf rehydration;302;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23212;adult;without petiole and rachis;302;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Hypericum perforatum;actual measurement;leaf rehydration;286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23212;adult;without petiole and rachis;286;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Hypericum pulchrum;actual measurement;leaf rehydration;303;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23219;adult;without petiole and rachis;303;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Hypericum tetrapterum;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23203;adult;without petiole and rachis;225;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Hypericum tetrapterum;actual measurement;leaf rehydration;172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23203;adult;without petiole and rachis;172;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Hypochaeris glabra;laboratory/greenhouse/garden experiment;no leaf rehydration;88.13;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7007;adult;with petiole and rachis;88.13;88.13;88.13;2;;;0;2004-10-08 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hypochaeris glabra;laboratory/greenhouse/garden experiment;no leaf rehydration;84.78;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7007;adult;without petiole and rachis;84.78;84.78;84.78;2;;;0;2004-10-08 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Hypochaeris glabra;actual measurement;leaf rehydration;136;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7007;adult;without petiole and rachis;136;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Hypochaeris maculata;actual measurement (following LEDA data standards);no leaf rehydration;135.45;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;8386;adult;with petiole and rachis;131.65;144.52;111.41;2;;;0;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;SWEDEN;;;Fide, Gotland Sweden; Hypochaeris maculata;actual measurement (following LEDA data standards);no leaf rehydration;142.05;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);8386;adult;with petiole and rachis;143.1;159.96;128.56;1;;;;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;SWEDEN;34;351780;Gotland Lickershamn2;6412500 Hypochoeris radicata;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6499;adult;without petiole and rachis;130;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Hypochoeris radicata;actual measurement;leaf rehydration;92;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6499;adult;without petiole and rachis;92;;;2;;;;;;;;UNITED KINGDOM;;;; Hypochoeris radicata;actual measurement;leaf rehydration;126;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6499;adult;without petiole and rachis;126;;;2;;;;;;;;UNITED KINGDOM;;;; Hyssopus officinalis;actual measurement (following LEDA data standards);no leaf rehydration;194.35;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24658;adult;with petiole and rachis;198.95;224.51;181.95;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Iberis umbellata;laboratory/greenhouse/garden experiment;no leaf rehydration;149.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14042;adult;with petiole and rachis;149.7;192.64;116.73;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ilex aquifolium;actual measurement;leaf rehydration;274;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2439;adult;without petiole and rachis;274;;;5;10.1;;;1995-07-01 00:00:00.0;CURRENT YEARS REPRODUCTIVE GROWTH;;;UNITED KINGDOM;;;Hathersage; Ilex aquifolium;actual measurement;leaf rehydration;296;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2439;adult;without petiole and rachis;296;;;5;11.1;;;1995-07-01 00:00:00.0;PREVIOUS YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Peter Dale; Ilex aquifolium;actual measurement;leaf rehydration;298;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2439;adult;without petiole and rachis;298;;;5;18.6;;;1995-07-01 00:00:00.0;PREVIOUS YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Ilex aquifolium;actual measurement;leaf rehydration;242;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2439;adult;without petiole and rachis;242;;;5;9;;;1995-07-01 00:00:00.0;CURRENT YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Ilex aquifolium;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2439;adult;without petiole and rachis;238;;;5;7.3;;;1995-07-01 00:00:00.0;CURRENT YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Peter Dale; Ilex aquifolium;actual measurement;leaf rehydration;231;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2439;adult;without petiole and rachis;231;;;5;4.7;;;1995-07-01 00:00:00.0;CURRENT YEARS REPRODUCTIVE GROWTH;;;UNITED KINGDOM;;;Peter Dale; Ilex aquifolium;actual measurement;leaf rehydration;232;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2439;adult;without petiole and rachis;232;;;5;18.2;;;1995-07-01 00:00:00.0;CURRENT YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Hathersage; Ilex aquifolium;actual measurement;leaf rehydration;284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2439;adult;without petiole and rachis;284;;;5;20.3;;;1995-07-01 00:00:00.0;PREVIOUS YEARS VEGETATIVE GROWTH;;;UNITED KINGDOM;;;Hathersage; Illecebrum verticillatum;actual measurement (following LEDA data standards);no leaf rehydration;142.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17139;adult;with petiole and rachis;142.73;220.13;96.55;9;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;655402;P 292 unweit Laase, beside river Elbe, Biosphärenreservat Niedersächsische Elbtalaue;5881580 Impatiens glandulifera;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11749;adult;without petiole and rachis;137;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Impatiens glandulifera;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11749;adult;without petiole and rachis;137;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Impatiens noli-tangere;actual measurement;leaf rehydration;145;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11751;adult;without petiole and rachis;145;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Impatiens parviflora;actual measurement (following LEDA data standards);no leaf rehydration;77.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11752;adult;with petiole and rachis;75.47;81.81;63.85;2;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;G5.4 - Small coniferous anthropogenic woodlands;GERMANY;32;437398;P 325 Mansholt / Landkreis Ammerland;5897188 Impatiens parviflora;actual measurement (following LEDA data standards);no leaf rehydration;77.56;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11752;adult;without petiole and rachis;77.47;85.19;65.19;2;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;G5.4 - Small coniferous anthropogenic woodlands;GERMANY;32;437398;P 325 Mansholt / Landkreis Ammerland;5897188 Inula britannica;actual measurement (following LEDA data standards);no leaf rehydration;160.87;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8741;adult;with petiole and rachis;161.23;176.41;145.53;1;;;0;2003-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;584170.3184;P2 Unteres Elbtal bei Drage/ Ufer (Lower Saxony);5919082.419 Inula conyza;actual measurement;leaf rehydration;298;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8404;adult;without petiole and rachis;298;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Inula conyza;actual measurement;leaf rehydration;192;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;8404;adult;without petiole and rachis;192;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Inula helenium;actual measurement (following LEDA data standards);no leaf rehydration;199;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;7875;adult;with petiole and rachis;196.63;230.46;158.08;2;;;1;2005-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Inula helenium;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7875;adult;without petiole and rachis;254;;;1;;;;1997-09-13 00:00:00.0;;;;UNITED KINGDOM;;;Teversal; Inula salicina;actual measurement (following LEDA data standards);no leaf rehydration;195.6;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;6502;adult;with petiole and rachis;195.35;232.21;158.47;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;SWEDEN;;;Eke, Gotland Sweden; Inula salicina;actual measurement (following LEDA data standards);no leaf rehydration;278.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6502;adult;with petiole and rachis;280.04;305.52;257.96;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;323783;P 313 NSG Hohenauer See, Brandenburg;5838731 Iris foetidissima;actual measurement (following LEDA data standards);no leaf rehydration;277.2;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;36612;adult;with petiole and rachis;277.2;277.2;277.2;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Iris foetidissima;actual measurement;leaf rehydration;318;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36612;adult;without petiole and rachis;318;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Iris germanica;actual measurement (following LEDA data standards);no leaf rehydration;105.72;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36614;adult;with petiole and rachis;106.01;111.71;97.56;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.4 - Agricultural constructions;GERMANY;32;407673;P 233 NSG Ölberg bei Bollschweil;5307683 Iris pseudacorus;actual measurement (following LEDA data standards);no leaf rehydration;172.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;36664;adult;without petiole and rachis;164.45;181.85;141.9;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Iris pseudacorus;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36664;adult;without petiole and rachis;171;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Iris pseudacorus;actual measurement;leaf rehydration;199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36664;adult;without petiole and rachis;199;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Iris sibirica;actual measurement (following LEDA data standards);no leaf rehydration;231.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36687;adult;with petiole and rachis;233.25;257.32;205.68;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;494600;P 518 NSG Radolfzeller Aachried, Lake of Constance, Baden-W?emberg;5286922 Iris x lurida;actual measurement (following LEDA data standards);no leaf rehydration;144.75;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36640;adult;with petiole and rachis;145.09;151.32;137.98;2;;;0;2005-05-19 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;32;472553;P 500 S?ssen near Darmstadt, car park, upper Rhine valley;5515507 Isatis tinctoria;actual measurement (following LEDA data standards);no leaf rehydration;153.32;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14558;adult;with petiole and rachis;158.04;199.82;121.63;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Isatis tinctoria;actual measurement (following LEDA data standards);no leaf rehydration;155.73;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14558;adult;with petiole and rachis;157.67;168.65;149.77;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. rosette leaves;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;395157;P 241 NSG Burkheim, Kaiserstuhl / Baden-Württemberg;5328511 Iva xanthifolia;laboratory/greenhouse/garden experiment;no leaf rehydration;159.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8135;adult;with petiole and rachis;157.38;182.89;130.82;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Iva xanthifolia;laboratory/greenhouse/garden experiment;no leaf rehydration;177.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;8135;adult;without petiole and rachis;175.27;203.31;137.65;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Jasione montana;actual measurement (following LEDA data standards);no leaf rehydration;210;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14880;adult;without petiole and rachis;214.88;290.77;164.76;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P2 NSG Krusenbusch (Oldenburg);5883035.844 Juglans regia;actual measurement;leaf rehydration;240;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23153;adult;without petiole and rachis;240;;;5;5.6;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Juncus acutiflorus;actual measurement;leaf rehydration;220;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35974;adult;without petiole and rachis;220;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Juncus alpinus s. alpinus;actual measurement (following LEDA data standards);no leaf rehydration;237.03;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);35907;adult;with petiole and rachis;244.06;283.1;208.73;1;;;;2005-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;H5 - Miscellaneous inland habitats with very sparse or no vegetation;NORWAY;32;517722;Rindal 11;6995572 Juncus articulatus;actual measurement (following LEDA data standards);no leaf rehydration;250.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;35965;adult;without petiole and rachis;251.17;273.23;233.27;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Juncus articulatus;actual measurement;leaf rehydration;222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35965;adult;without petiole and rachis;222;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Juncus articulatus;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35965;adult;without petiole and rachis;177;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Juncus articulatus;actual measurement;leaf rehydration;162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35965;adult;without petiole and rachis;162;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Juncus atratus;actual measurement (following LEDA data standards);no leaf rehydration;235.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35939;adult;with petiole and rachis;235.23;297.46;168;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;;;P 302 Vehgast (Havel), Brandenburg; Juncus biglumis;actual measurement (following LEDA data standards);no leaf rehydration;265.82;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;35947;adult;with petiole and rachis;272.33;333.33;211.54;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608416;Hessdalen 16;6951840 Juncus bufonius;actual measurement;leaf rehydration;153;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36128;adult;without petiole and rachis;153;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Juncus bufonius;actual measurement;leaf rehydration;120;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36128;adult;without petiole and rachis;120;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Juncus bulbosus;actual measurement (following LEDA data standards);no leaf rehydration;196.86;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;36026;adult;with petiole and rachis;191.22;272.41;153.98;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;F4 - Temperate shrub heathland;NETHERLANDS;;;Terschelling; Juncus bulbosus;actual measurement (following LEDA data standards);no leaf rehydration;158.81;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36026;adult;with petiole and rachis;158.81;158.81;158.81;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;398434.5233;P3 NSG Haselünner Kuhweide (Emsland);5835077.409 Juncus bulbosus;actual measurement (following LEDA data standards);no leaf rehydration;271.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36026;adult;with petiole and rachis;272.27;326.63;237.16;1;;;0;2003-08-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449128.3568;P5 NSG Krusenbusch (Oldenburg);5883149.798 Juncus bulbosus;actual measurement (following LEDA data standards);no leaf rehydration;287.02;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36026;adult;with petiole and rachis;287.02;287.02;287.02;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ssp. kochii;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;617740.5081;P5 Kiesgrube im Dummersdorfer Hinterland (Lübeck/ near Baltic Sea);5975590.635 Juncus castaneus;actual measurement (following LEDA data standards);no leaf rehydration;223.5;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;35925;adult;with petiole and rachis;212.82;254.3;126.84;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608426;Hessdalen 17;6951823 Juncus compressus;actual measurement;leaf rehydration;321;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36003;adult;without petiole and rachis;321;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Juncus conglomeratus;actual measurement (following LEDA data standards);no leaf rehydration;284.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36007;adult;with petiole and rachis;269.76;296.7;164.55;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449848.0688;P14 Etzhorn (Oldenburg);5893436.682 Juncus effusus;actual measurement (following LEDA data standards);no leaf rehydration;281.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;36014;adult;without petiole and rachis;279.74;313.7;249.14;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Juncus effusus;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36014;adult;without petiole and rachis;254;;;1;;;;1997-06-04 00:00:00.0;;;;UNITED KINGDOM;;;Ashover; Juncus filiformis;actual measurement (following LEDA data standards);no leaf rehydration;249.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36023;adult;with petiole and rachis;250.45;292.69;203.37;1;;;0;2003-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;SWEDEN;33;534337.2596;P1 Sweden, Blekinge;6251697.32 Juncus gerardi;actual measurement (following LEDA data standards);no leaf rehydration;295.25;13;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;36081;adult;with petiole and rachis;294.46;369;182.28;1;;;0;2003-09-09 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;DENMARK;;;Skallingen; Juncus inflexus;actual measurement (following LEDA data standards);no leaf rehydration;322.41;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36061;adult;with petiole and rachis;311.05;325.79;284.95;1;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;J5.2 - Highly artificial saline and brackish running waters;GERMANY;;;P3 Huntekanal bei Berne; Juncus maritimus;actual measurement (following LEDA data standards);no leaf rehydration;405.7;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;36160;adult;with petiole and rachis;406.56;446.15;382.63;2;;;0;2005-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog; Juncus minutulus;actual measurement (following LEDA data standards);no leaf rehydration;313.46;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36164;adult;with petiole and rachis;310.26;400;213.33;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;617740.5081;P5 Kiesgrube im Dummersdorfer Hinterland (Lübeck/ near Baltic Sea);5975590.635 Juncus ranarius;actual measurement (following LEDA data standards);no leaf rehydration;176.47;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36052;adult;with petiole and rachis;195.63;237.19;165.09;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Juncus sphaerocarpus;laboratory/greenhouse/garden experiment;no leaf rehydration;360;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36141;adult;with petiole and rachis;360;360;360;1;;;0;2005-10-01 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;Schmiechener See, Bavaria; Juncus squarrosus;actual measurement (following LEDA data standards);no leaf rehydration;394.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36142;adult;with petiole and rachis;400.61;467.36;357.96;1;;;0;2003-08-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449128.3568;P5 NSG Krusenbusch (Oldenburg);5883149.798 Juncus subnodulosus;actual measurement;leaf rehydration;233;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36148;adult;without petiole and rachis;233;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Juncus subnodulosus;actual measurement;leaf rehydration;145;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36148;adult;without petiole and rachis;145;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Juncus tenageia;actual measurement (following LEDA data standards);no leaf rehydration;134.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36111;adult;with petiole and rachis;144.16;186.55;115.77;2;;;0;2005-07-14 00:00:00.0;Preaggregated data obtained from single record. stem leaves, #4+5: one ground leaf and one stem leaf;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;;;P 542 Heideweiher near Herzlake (same sample area as P 480), SW-Lower Saxony; Juncus tenuis;actual measurement (following LEDA data standards);no leaf rehydration;109.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36112;adult;with petiole and rachis;113.81;152.58;97.42;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449848.0688;P14 Etzhorn (Oldenburg);5893436.682 Juncus trifidus;actual measurement (following LEDA data standards);no leaf rehydration;429.1;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;36209;adult;without petiole and rachis;425.33;453.6;393.3;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 2-3 leaves per sample;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Juniperus communis;actual measurement;leaf rehydration;510.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;741;adult;without petiole and rachis;509.24;530.34;488.03;2;;;0;2004-04-08 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park M?z; Juniperus oxycedrus;field experiment;leaf rehydration;495;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;701;adult;without petiole and rachis;495;;;10;6;6;;1997-10-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Juniperus oxycedrus;field experiment;leaf rehydration;500;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;701;adult;without petiole and rachis;500;;;10;15;15;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Juniperus oxycedrus;field experiment;leaf rehydration;401;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;701;adult;without petiole and rachis;401;;;10;14;14;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Juniperus oxycedrus;field experiment;leaf rehydration;425;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;701;adult;without petiole and rachis;425;;;10;7;7;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Juniperus oxycedrus;field experiment;leaf rehydration;452;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;701;adult;without petiole and rachis;452;;;10;7;7;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Jurinea cyanoides;actual measurement (following LEDA data standards);no leaf rehydration;257.24;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6414;adult;with petiole and rachis;259.1;298.11;221.05;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;32;475305;P 403 NSG Sandhauser Dünen, Oberrheinebene (Upper Rhine valley), Baden-Württemberg;5464410 Kernera saxatilis;actual measurement (following LEDA data standards);no leaf rehydration;151.54;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14059;adult;with petiole and rachis;151.54;151.54;151.54;2;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;499419;P 525 Rock, Schwabian Donaualb near Beuron, Baden-W?emberg;5322615 Kickxia elatine;actual measurement;leaf rehydration;138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33123;adult;without petiole and rachis;138;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Varese; Kickxia elatine;actual measurement;leaf rehydration;207;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33123;adult;without petiole and rachis;207;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Kickxia spuria;field experiment;leaf rehydration;212;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;33129;adult;without petiole and rachis;212;;;10;10;10;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Kickxia spuria;field experiment;leaf rehydration;162;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;33129;adult;without petiole and rachis;162;;;10;3;3;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Kickxia spuria;field experiment;leaf rehydration;158;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;33129;adult;without petiole and rachis;158;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Knautia arvensis;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19058;adult;without petiole and rachis;194;;;2;;;;;;;;UNITED KINGDOM;;;; Knautia arvensis;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19058;adult;without petiole and rachis;186;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Knautia arvensis;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19058;adult;without petiole and rachis;171;;;2;;;;;;;;UNITED KINGDOM;;;; Koeleria glauca;actual measurement (following LEDA data standards);no leaf rehydration;365;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43022;adult;with petiole and rachis;365.09;417.44;328.44;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsiches Wattenmeer;5939106 Koeleria macrantha;actual measurement;leaf rehydration;327;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42831;adult;without petiole and rachis;327;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Laburnum anagyroides;actual measurement;leaf rehydration;226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20994;adult;without petiole and rachis;226;;;5;6.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Eyam; Laburnum anagyroides;actual measurement;leaf rehydration;233;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20994;adult;without petiole and rachis;233;;;5;12.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Laburnum anagyroides;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20994;adult;without petiole and rachis;212;;;5;8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Lactuca perennis;actual measurement (following LEDA data standards);no leaf rehydration;140.22;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6626;adult;with petiole and rachis;138.73;171.67;102.82;3;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;486559;P 529 (Hohenkr?n) und P 530 (Hohentwiel), Baden-W?emberg;5293869 Lactuca serriola;actual measurement;leaf rehydration;191;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6360;adult;without petiole and rachis;191;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Lactuca tatarica;actual measurement (following LEDA data standards);no leaf rehydration;160.95;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7416;adult;with petiole and rachis;160.27;172.18;144.7;2;;;0;2005-09-10 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;;;P 551 Untere Weser bei Brake, NW-Lower Saxony; Lactuca virosa;laboratory/greenhouse/garden experiment;no leaf rehydration;194.73;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7940;adult;with petiole and rachis;192.47;210.33;168.46;2;;;0;2005-06-14 00:00:00.0;Preaggregated data obtained from single record. collection date of #1 is 2004-10-08;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lactuca virosa;actual measurement (following LEDA data standards);no leaf rehydration;185.17;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7940;adult;with petiole and rachis;183.06;226.19;140.16;2;;;0;2004-08-26 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;608809;P 455 east of Bad Harzburg, Harz (Lower Saxony);5750271 Lactuca virosa;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7940;adult;without petiole and rachis;150;;;2;;;;1996-07-16 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Lactuca virosa;actual measurement;leaf rehydration;162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7940;adult;without petiole and rachis;162;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Shirebrook, Derbys; Lactuca virosa;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7940;adult;without petiole and rachis;176;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Lamiastrum galeobdolon;actual measurement;leaf rehydration;270;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24666;adult;without petiole and rachis;270;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Lamium album;actual measurement;leaf rehydration;191;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24182;adult;without petiole and rachis;191;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Lamium album;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24182;adult;without petiole and rachis;176;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Lamium album;actual measurement;leaf rehydration;128;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24182;adult;without petiole and rachis;128;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Lamium album;actual measurement;leaf rehydration;166;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24182;adult;without petiole and rachis;166;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Lamium album;actual measurement;leaf rehydration;189;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24182;adult;without petiole and rachis;189;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Lamium amplexicaule;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23573;adult;without petiole and rachis;135;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Lamium hybridum;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24187;adult;without petiole and rachis;140;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Lamium maculatum;actual measurement;leaf rehydration;206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24189;adult;without petiole and rachis;206;;;2;;;;1996-09-26 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Lamium maculatum;actual measurement;leaf rehydration;166;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24189;adult;without petiole and rachis;166;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Lamium maculatum;actual measurement;leaf rehydration;219;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24189;adult;without petiole and rachis;219;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Lamium purpureum;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25103;adult;without petiole and rachis;170;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Lamium purpureum;actual measurement;leaf rehydration;148;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25103;adult;without petiole and rachis;148;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Lamium purpureum;actual measurement;leaf rehydration;121;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25103;adult;without petiole and rachis;121;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Lamium purpureum;actual measurement;leaf rehydration;145;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25103;adult;without petiole and rachis;145;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Lamium purpureum;actual measurement;leaf rehydration;115;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25103;adult;without petiole and rachis;115;;;2;;;;2004-10-16 00:00:00.0;;;;ITALY;;;Varese; Lappula deflexa;laboratory/greenhouse/garden experiment;no leaf rehydration;142.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12048;adult;with petiole and rachis;143.13;171.7;114.75;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. one ground leaf and one spataceous bract measured per plant;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lappula deflexa;laboratory/greenhouse/garden experiment;no leaf rehydration;156.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12048;adult;without petiole and rachis;155.27;193.53;121.19;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. one ground leaf and one spataceous bract measured per plant;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lappula squarrosa;laboratory/greenhouse/garden experiment;no leaf rehydration;127.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12063;adult;with petiole and rachis;129.71;157.42;111.79;2;;;0;2004-06-30 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lapsana communis;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6629;adult;without petiole and rachis;135;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Lapsana communis;actual measurement;leaf rehydration;119;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6629;adult;without petiole and rachis;119;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Larix decidua;actual measurement;leaf rehydration;290;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;653;adult;without petiole and rachis;290;;;5;8.1;;;1995-07-01 00:00:00.0;SHORT SHOOTS;;;UNITED KINGDOM;;;Harpur Hill; Larix decidua;actual measurement;leaf rehydration;275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;653;adult;without petiole and rachis;275;;;5;6;;;1995-07-01 00:00:00.0;SHORT SHOOTS;;;UNITED KINGDOM;;;Peter Dale; Larix decidua;actual measurement;leaf rehydration;292;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;653;adult;without petiole and rachis;292;;;5;3.9;;;1995-07-01 00:00:00.0;SHORT SHOOTS;;;UNITED KINGDOM;;;Longshaw Estate; Larix decidua;actual measurement;leaf rehydration;262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;653;adult;without petiole and rachis;262;;;5;12.5;;;1995-07-01 00:00:00.0;BRANCH APEX;;;UNITED KINGDOM;;;Peter Dale; Laserpitium latifolium;actual measurement (following LEDA data standards);no leaf rehydration;225.73;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1705;adult;with petiole and rachis;246.04;314.18;204.92;1;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Laserpitium prutenicum;laboratory/greenhouse/garden experiment;no leaf rehydration;225.14;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1215;adult;with petiole and rachis;222.08;231.88;209.22;2;;;0;2005-06-20 00:00:00.0;Preaggregated data obtained from single record. # 1+2: ground leaves, #3: ground and stem leaf;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lathyrus cicera;actual measurement;leaf rehydration;228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20603;adult;without petiole and rachis;228;;;2;;;;;;;;SPAIN;;;Ambel; Lathyrus heterophyllus;actual measurement (following LEDA data standards);no leaf rehydration;224.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19830;adult;with petiole and rachis;221.99;261.43;187.19;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Lathyrus heterophyllus;actual measurement (following LEDA data standards);no leaf rehydration;214.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19830;adult;without petiole and rachis;212.74;255.49;179.53;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Lathyrus latifolius;actual measurement;leaf rehydration;220;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21002;adult;without petiole and rachis;220;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Lathyrus montanus;actual measurement;leaf rehydration;295;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20503;adult;without petiole and rachis;295;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Lathyrus montanus;actual measurement;leaf rehydration;232;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20503;adult;without petiole and rachis;232;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Lathyrus nissolia;laboratory/greenhouse/garden experiment;no leaf rehydration;183.09;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21360;adult;with petiole and rachis;183.09;183.09;183.09;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lathyrus nissolia;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21360;adult;without petiole and rachis;235;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Bicester, Bucks; Lathyrus nissolia;laboratory/greenhouse/garden experiment;no leaf rehydration;185.13;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21360;adult;without petiole and rachis;185.13;185.13;185.13;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lathyrus odoratus;laboratory/greenhouse/garden experiment;no leaf rehydration;194.97;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20506;adult;with petiole and rachis;207.26;252.37;185.86;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lathyrus odoratus;laboratory/greenhouse/garden experiment;no leaf rehydration;206.16;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20506;adult;without petiole and rachis;212.66;269.89;181.31;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lathyrus palustris;actual measurement (following LEDA data standards);no leaf rehydration;170.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21816;adult;with petiole and rachis;167.77;181.83;156.17;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;D5.1 - Reedbeds normally without free-standing water;GERMANY;32;;P 289 Wilseder Marsch near River Elbe; Lathyrus pratensis;actual measurement;leaf rehydration;291;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21355;adult;without petiole and rachis;291;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Lathyrus pratensis;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21355;adult;without petiole and rachis;254;;;2;;;;;;;;UNITED KINGDOM;;;; Lathyrus pratensis;actual measurement;leaf rehydration;276;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21355;adult;without petiole and rachis;276;;;2;;;;;;;;UNITED KINGDOM;;;; Lathyrus tuberosus;actual measurement (following LEDA data standards);no leaf rehydration;208.73;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19845;adult;with petiole and rachis;208.73;208.73;208.73;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;507089;P 385 weed communities in farmland, Bühleberge (Swabian Alb);5354408 Lathyrus tuberosus;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19845;adult;without petiole and rachis;188;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Doe Lea; Lathyrus vernus;laboratory/greenhouse/garden experiment;no leaf rehydration;213.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19847;adult;with petiole and rachis;214.97;233.27;202.52;2;;;0;2004-04-24 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Lathyrus vernus;laboratory/greenhouse/garden experiment;no leaf rehydration;213.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19847;adult;without petiole and rachis;215.78;233.23;201.46;2;;;0;2004-04-24 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Lathyrus vernus;actual measurement (following LEDA data standards);leaf rehydration;183.59;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19847;adult;with petiole and rachis;181.71;217.32;149.21;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Lathyrus vernus;actual measurement (following LEDA data standards);leaf rehydration;181.77;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19847;adult;without petiole and rachis;180.03;219.32;142.52;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Legousia hybrida;laboratory/greenhouse/garden experiment;no leaf rehydration;155.46;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14896;adult;with petiole and rachis;145.44;174.29;117.33;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Legousia hybrida;actual measurement;leaf rehydration;117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14896;adult;without petiole and rachis;117;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Legousia speculum-veneris;laboratory/greenhouse/garden experiment;no leaf rehydration;138.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14838;adult;with petiole and rachis;140.74;194.98;101.06;2;;;0;2004-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lembotropis nigricans;actual measurement (following LEDA data standards);no leaf rehydration;258.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21830;adult;without petiole and rachis;255.79;274.66;211.15;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flachsbühl closely to Trochtelfingen, Schwabian Alb;5352469 Lembotropis nigricans;actual measurement (following LEDA data standards);no leaf rehydration;257.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21830;adult;with petiole and rachis;255.77;272.71;214.08;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flachsbühl closely to Trochtelfingen, Schwabian Alb;5352469 Lemna gibba;actual measurement (following LEDA data standards);leaf rehydration;114.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36873;adult;with petiole and rachis;110.26;165.85;55.15;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;C1.3 - Permanent eutrophic lakes. ponds and pools;GERMANY;32;449848.0688;P14 Etzhorn (Oldenburg);5893436.682 Lemna minor;actual measurement;leaf rehydration;107;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36875;adult;without petiole and rachis;107;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Lemna trisulca;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36878;adult;without petiole and rachis;238;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Lemna trisulca;actual measurement;leaf rehydration;80;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36878;adult;without petiole and rachis;80;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Leontodon autumnalis;actual measurement (following LEDA data standards);no leaf rehydration;200;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7298;adult;with petiole and rachis;186.7;211.9;139.5;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Leontodon autumnalis;actual measurement;leaf rehydration;133;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7298;adult;without petiole and rachis;133;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Leontodon autumnalis;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7298;adult;without petiole and rachis;135;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Leontodon autumnalis;actual measurement;leaf rehydration;189;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;7298;adult;without petiole and rachis;189;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Leontodon autumnalis;actual measurement (following LEDA data standards);no leaf rehydration;160.2;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;7298;adult;with petiole and rachis;159.28;187.5;129.2;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Leontodon autumnalis;actual measurement;leaf rehydration;129.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;7298;adult;without petiole and rachis;131.82;168.67;110.14;2;;;0;2003-07-14 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER), rosette leaves;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349537;national park Müritz;5924270 Leontodon hispidus;actual measurement (following LEDA data standards);no leaf rehydration;196.99;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6638;adult;with petiole and rachis;196.19;202.97;187.83;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flachsbühl closely to Trochtelfingen, Schwabian Alb;5352469 Leontodon hispidus;actual measurement (following LEDA data standards);no leaf rehydration;148.11;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6638;adult;without petiole and rachis;146.27;158.78;125.98;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. determinated as Leontodon hispidus ssp. hyoseroides;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Leontodon hispidus;actual measurement (following LEDA data standards);no leaf rehydration;143.64;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6638;adult;with petiole and rachis;143.07;150.07;135.49;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. determinated as Leontodon hispidus ssp. hyoseroides;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Leontodon hispidus;actual measurement;leaf rehydration;102;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6638;adult;without petiole and rachis;102;;;2;;;;;;;;UNITED KINGDOM;;;; Leontodon hispidus;actual measurement;leaf rehydration;108;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;6638;adult;without petiole and rachis;108;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Leontodon incanus;actual measurement (following LEDA data standards);no leaf rehydration;157.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6757;adult;with petiole and rachis;160.25;183.63;143.33;2;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;499419;P 525 Rock, Schwabian Donaualb near Beuron, Baden-W?emberg;5322615 Leontodon pyrenaicus;actual measurement (following LEDA data standards);no leaf rehydration;139.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;6519;adult;with petiole and rachis;143.67;172.3;114.03;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E4.3 - Acid alpine and subalpine grassland;GERMANY;32;426365;P 374 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303435 Leontodon taraxacoides subsp. taraxacoides;actual measurement (following LEDA data standards);no leaf rehydration;155.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;7423;adult;with petiole and rachis;148.55;168.83;115.29;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2.2 - Small-scale ornamental and domestic garden areas;GERMANY;32;345591;P 277 Borkum Ort, National park Niedersächsiches Wattenmeer;5939513 Leonurus marrubiastrum;actual measurement (following LEDA data standards);no leaf rehydration;235.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24198;adult;with petiole and rachis;232.21;249.98;207.42;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;C3 - Littoral zone of inland surface waterbodies;GERMANY;;;P 304 Sandau /Elbe, Brandenburg; Leonurus marrubiastrum;actual measurement (following LEDA data standards);no leaf rehydration;246.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24198;adult;without petiole and rachis;246.3;263.88;226.25;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;C3 - Littoral zone of inland surface waterbodies;GERMANY;;;P 304 Sandau /Elbe, Brandenburg; Lepidium campestre;laboratory/greenhouse/garden experiment;no leaf rehydration;178.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13495;adult;with petiole and rachis;172.06;199.09;115.96;2;;;0;2004-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lepidium campestre;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13495;adult;without petiole and rachis;235;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Ranskill, Notts; Lepidium densiflorum;laboratory/greenhouse/garden experiment;no leaf rehydration;136.35;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14562;adult;with petiole and rachis;136.35;136.35;136.35;2;;;0;2004-09-25 00:00:00.0;Preaggregated data obtained from single record. plants of seed bank analysis experiment;;;GERMANY;;;O-18 greenhouse, University of Oldenburg, seed bank sample (from Munich); Lepidium densiflorum;laboratory/greenhouse/garden experiment;no leaf rehydration;133.95;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14562;adult;without petiole and rachis;133.95;133.95;133.95;2;;;0;2004-09-25 00:00:00.0;Preaggregated data obtained from single record. plants of seed bank analysis experiment;;;GERMANY;;;O-18 greenhouse, University of Oldenburg, seed bank sample (from Munich); Lepidium latifolium;actual measurement (following LEDA data standards);no leaf rehydration;163.23;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13501;adult;with petiole and rachis;170.41;206.9;141.39;2;;;0;2005-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;DENMARK;;;P 545a,b Nyord closely to M?n (DK); Lepidium latifolium;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13501;adult;without petiole and rachis;165;;;1;;;;1997-10-03 00:00:00.0;;;;UNITED KINGDOM;;;Shirebrook; Lepidium ruderale;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13947;adult;without petiole and rachis;174;;;2;;;;1996-08-03 00:00:00.0;;;;UNITED KINGDOM;;;Crystal Palace; Lepidium ruderale;actual measurement;leaf rehydration;143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13947;adult;without petiole and rachis;143;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Lepidium sativum;laboratory/greenhouse/garden experiment;no leaf rehydration;149.47;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13505;adult;with petiole and rachis;151.62;171.75;136.13;2;;;0;2005-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lepidium virginicum;laboratory/greenhouse/garden experiment;no leaf rehydration;178.96;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13952;adult;with petiole and rachis;179.74;228.64;124.34;2;;;0;2004-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Leucanthemum ircutianum;actual measurement (following LEDA data standards);no leaf rehydration;146.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;61197;adult;with petiole and rachis;152;207.34;120.9;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;E2.2 - Coarse permanent grassland and tall herbs. usually mown but little grazed;GERMANY;32;417434;P 231 Kappel/Freiburg i. Br., after pasture meadow, Black forest;5311710 Leucanthemum vulgare;actual measurement;leaf rehydration;155;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9651;adult;without petiole and rachis;155;;;2;;;;;;;;UNITED KINGDOM;;;; Leucanthemum vulgare;actual measurement;leaf rehydration;124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9651;adult;without petiole and rachis;124;;;2;;;;;;;;UNITED KINGDOM;;;; Leucanthemum vulgare;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9651;adult;without petiole and rachis;110;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Leucojum aestivum;actual measurement (following LEDA data standards);no leaf rehydration;82.52;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;35586;adult;with petiole and rachis;83.9;88.43;79.43;2;;;1;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Leucojum vernum;actual measurement (following LEDA data standards);no leaf rehydration;84.97;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35768;adult;with petiole and rachis;86.13;96.27;78.88;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;408171;P 232 NSG Ölberg bei Bollschweil;5308111 Levisticum officinale;actual measurement;leaf rehydration;196;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2151;adult;without petiole and rachis;196;;;1;;;;1998-04-16 00:00:00.0;;;;UNITED KINGDOM;;;White Rake; Leymus arenarius;actual measurement;leaf rehydration;348;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43033;adult;without petiole and rachis;348;;;2;;;;1996-08-24 00:00:00.0;;;;UNITED KINGDOM;;;Alnmouth; Ligusticum mutellina;actual measurement (following LEDA data standards);no leaf rehydration;158.78;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1224;adult;with petiole and rachis;158.9;171.73;148.56;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.1 - [Abies] and [Picea] woodland;GERMANY;;;MK-1 Gr. Arber-Gipfel (south), Bavarian Forest, Bavaria; Ligustrum vulgare;actual measurement;leaf rehydration;273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26363;adult;without petiole and rachis;273;;;5;14;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Aston; Lilium bulbiferum;actual measurement (following LEDA data standards);no leaf rehydration;140.52;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39057;adult;with petiole and rachis;144.44;170.09;133.29;2;;;0;2004-08-25 00:00:00.0;Preaggregated data obtained from single record. ;;E2.3 - Mountain hay meadows;GERMANY;32;605129;P 450 NSG Jordanshöhe/Bergwiesen, Harz (Lower Saxony);5731360 Lilium martagon;actual measurement;leaf rehydration;136;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39063;adult;without petiole and rachis;136;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Wilsic Hall ; Limonium binervosum;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28471;adult;without petiole and rachis;238;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Devon, UK; Limonium vulgare;actual measurement (following LEDA data standards);no leaf rehydration;195.44;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28293;adult;with petiole and rachis;195.86;241.6;164.84;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Limonium vulgare;actual measurement (following LEDA data standards);no leaf rehydration;189.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28293;adult;with petiole and rachis;190.77;211.23;167.25;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;353073;P 273 Borkum (NO), National park Niedersächsiches Wattenmeer;5941494 Limonium vulgare;actual measurement (following LEDA data standards);no leaf rehydration;188.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28293;adult;without petiole and rachis;189.74;213.27;167.36;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;353073;P 273 Borkum (NO), National park Niedersächsiches Wattenmeer;5941494 Limosella aquatica;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33604;adult;without petiole and rachis;135;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Linaria purpurea;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33748;adult;without petiole and rachis;198;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Linaria repens;actual measurement (following LEDA data standards);no leaf rehydration;149.14;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;33754;adult;with petiole and rachis;146.55;178.77;102.22;2;;;0;2005-05-15 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren, Bollandweg; Linaria vulgaris;actual measurement;leaf rehydration;199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33091;adult;without petiole and rachis;199;;;2;;;;1996-08-27 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Linaria vulgaris;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33091;adult;without petiole and rachis;182;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Linaria vulgaris;actual measurement;leaf rehydration;207;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33091;adult;without petiole and rachis;207;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Linaria vulgaris;actual measurement;leaf rehydration;169;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33091;adult;without petiole and rachis;169;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Linnaea borealis;actual measurement (following LEDA data standards);no leaf rehydration;252.42;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);15394;adult;with petiole and rachis;253.93;279.1;238.3;5;;;;2005-06-19 00:00:00.0;Preaggregated data obtained from single record. Based on 5 leaves per individual;;G3.B - [Pinus] taiga woodland;NORWAY;32;472891;Surnadal 01;6982452 Linum austriacum;actual measurement (following LEDA data standards);no leaf rehydration;195.1;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25949;adult;with petiole and rachis;198.38;235.09;137.64;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;J4.1 - Weed communities of transport networks and other constructed hard-surfaced areas;FRANCE;32;388222;P 259 Wolfgartzen, Alsace;5320875 Linum catharticum;actual measurement;leaf rehydration;223;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25925;adult;without petiole and rachis;223;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Linum catharticum;actual measurement;leaf rehydration;197;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25925;adult;without petiole and rachis;197;;;2;;;;;;;;UNITED KINGDOM;;;; Linum perenne;actual measurement (following LEDA data standards);no leaf rehydration;200.98;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25878;adult;with petiole and rachis;189.04;209;149.12;2;;;0;2005-05-20 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;32;476188;P 501 N?stenbach, Bergstrasse, poor pasture, same sample area as P 405 from 2005;5490931 Linum usitatissimum;actual measurement (following LEDA data standards);no leaf rehydration;143.59;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;25866;adult;with petiole and rachis;149.03;160.44;143.07;2;;;0;2005-07-19 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Dreischor; Linum usitatissimum;actual measurement (following LEDA data standards);no leaf rehydration;183.3;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;25866;adult;with petiole and rachis;187.26;232.21;157.89;2;;;0;2005-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Liparis loeselii;actual measurement (following LEDA data standards);no leaf rehydration;82.87;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;39943;adult;with petiole and rachis;84.37;90.8;80.77;2;;;0;2005-07-05 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog, vallei; Liparis loeselii;actual measurement (following LEDA data standards);no leaf rehydration;61.68;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;39943;adult;with petiole and rachis;63.27;85.71;50.11;1;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;NETHERLANDS;;;Terschelling; Listera cordata;actual measurement (following LEDA data standards);no leaf rehydration;114.18;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;39947;adult;with petiole and rachis;112.56;124.11;96.71;2;;;0;2005-05-29 00:00:00.0;Preaggregated data obtained from single record. ;;C1 - Surface standing waters;NETHERLANDS;;;Schiermonnikoog, bos; Listera cordata;actual measurement (following LEDA data standards);no leaf rehydration;153.01;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);39947;adult;with petiole and rachis;152.82;163.73;137.04;1;;;;2005-07-03 00:00:00.0;Preaggregated data obtained from single record. ;;G4.4 - Mixed [Pinus sylvestris] - [Betula] woodland;NORWAY;32;517706;Rindal 06;6995547 Listera ovata;actual measurement (following LEDA data standards);leaf rehydration;111.82;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39948;adult;without petiole and rachis;113.3;126;100.59;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Listera ovata;actual measurement;leaf rehydration;120;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39948;adult;without petiole and rachis;120;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Listera ovata;actual measurement;leaf rehydration;119;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39948;adult;without petiole and rachis;119;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Lithospermum arvense;actual measurement (following LEDA data standards);no leaf rehydration;177.41;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12012;adult;with petiole and rachis;175.35;209.15;138.71;2;;;0;2005-05-05 00:00:00.0;Preaggregated data obtained from single record. ;;I1.5 - Bare tilled. fallow or recently abandoned arable land;GERMANY;;;P-494 car park beside A2, eastern of Burg (Sachsen-Anhalt); Lithospermum officinale;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12411;adult;without petiole and rachis;244;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Creswell; Lithospermum officinale;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12411;adult;without petiole and rachis;183;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Littorella uniflora;actual measurement (following LEDA data standards);no leaf rehydration;119.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27852;adult;with petiole and rachis;117.82;131.71;97.68;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;436870;P 318 mesotrophic pond, Landkreis Cloppenburg;5876414 Littorella uniflora;actual measurement;leaf rehydration;125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27852;adult;without petiole and rachis;125;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Littorella uniflora;actual measurement;leaf rehydration;78;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27852;adult;without petiole and rachis;78;;;1;;;;1997-06-26 00:00:00.0;;;;UNITED KINGDOM;;;Linacre; Lobelia dortmanna;actual measurement (following LEDA data standards);leaf rehydration;89.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14841;adult;with petiole and rachis;92.34;108.73;83.83;1;;;0;2003-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;C1.1 - Permanent oligotrophic lakes. ponds and pools;SWEDEN;33;534337.2596;P1 Sweden, Blekinge;6251697.32 Logfia arvensis;actual measurement (following LEDA data standards);no leaf rehydration;224.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11506;adult;with petiole and rachis;223.18;245.94;195.9;2;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;I1.5 - Bare tilled. fallow or recently abandoned arable land;GERMANY;32;652773;P 291 Wendland, Niedersächsische Elbtalaue (Lower Saxony);5884491 Logfia minima;actual measurement (following LEDA data standards);no leaf rehydration;408.5;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11400;adult;with petiole and rachis;406.94;450.17;362.15;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449215.322;P11 NSG Krusenbusch (Oldenburg);5882857.915 Logfia minima;actual measurement (following LEDA data standards);no leaf rehydration;325.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11400;adult;with petiole and rachis;349.77;504.31;245.16;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P2 NSG Krusenbusch (Oldenburg);5883035.844 Loiseleuria procumbens;actual measurement (following LEDA data standards);no leaf rehydration;489.15;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19506;adult;with petiole and rachis;481.3;524.1;421.6;10;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 10-11 leaves per sample;;F - Heathland. scrub and tundra habitats;NORWAY;32;604700;Hessdalen;6958700 Loiseleuria procumbens;actual measurement (following LEDA data standards);no leaf rehydration;473.8;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19506;adult;with petiole and rachis;480.16;498.6;466.7;11;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 11-20 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Lolium multiflorum;actual measurement;leaf rehydration;265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43196;adult;without petiole and rachis;265;;;2;;;;;;;;UNITED KINGDOM;;;; Lolium perenne;actual measurement;leaf rehydration;219;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43540;adult;without petiole and rachis;219;;;2;;;;;;;;UNITED KINGDOM;;;; Lolium perenne;actual measurement;leaf rehydration;206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43540;adult;without petiole and rachis;206;;;2;;;;;;;;UNITED KINGDOM;;;; Lolium perenne;actual measurement;leaf rehydration;232.59;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;43540;adult;without petiole and rachis;238.65;302.45;182.95;2;;;0;2003-06-08 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;350231;national park Müritz;5924041 Lolium perenne;laboratory/greenhouse/garden experiment;no leaf rehydration;200;1;1;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;43540;adult;without petiole and rachis;200;;;8;;;;2004-02-11 00:00:00.0;;Arrendondo, J. Tulio(2003): Components of leaf elongation rate and their relationship to specific leaf area in ...;unknown from literature;Europe;;0;;0 Lolium remotum;laboratory/greenhouse/garden experiment;no leaf rehydration;169.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42844;adult;with petiole and rachis;170.13;183.01;146.34;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lolium temulentum;laboratory/greenhouse/garden experiment;no leaf rehydration;219.53;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43200;adult;with petiole and rachis;224.75;261.37;199.17;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lonicera alpigena;actual measurement (following LEDA data standards);no leaf rehydration;234.05;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15395;adult;with petiole and rachis;233.72;238.1;228.69;2;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;499419;P 525 Rock, Schwabian Donaualb near Beuron, Baden-W?emberg;5322615 Lonicera caprifolium;actual measurement (following LEDA data standards);no leaf rehydration;249.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15368;adult;with petiole and rachis;252.48;298.46;222.33;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;P 414 Golmsdorf (Thüringen); Lonicera caprifolium;actual measurement (following LEDA data standards);no leaf rehydration;251.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15368;adult;without petiole and rachis;254.63;301.86;223.25;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;P 414 Golmsdorf (Thüringen); Lonicera etrusca;field experiment;leaf rehydration;270;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;15370;adult;without petiole and rachis;270;;;10;6;6;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Lonicera etrusca;field experiment;leaf rehydration;287;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;15370;adult;without petiole and rachis;287;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Lonicera periclymenum;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15385;adult;without petiole and rachis;227;;;5;3.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Aston; Lotus corniculatus;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21886;adult;without petiole and rachis;188;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Lotus corniculatus;actual measurement;leaf rehydration;158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21886;adult;without petiole and rachis;158;;;2;;;;;;;;UNITED KINGDOM;;;; Lotus corniculatus;actual measurement;leaf rehydration;154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21886;adult;without petiole and rachis;154;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Lotus corniculatus;field experiment;leaf rehydration;242;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;21886;adult;without petiole and rachis;242;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Lotus corniculatus;field experiment;leaf rehydration;188;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;21886;adult;without petiole and rachis;188;;;10;28;28;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Lotus pedunculatus;actual measurement;leaf rehydration;180.44;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;21444;adult;without petiole and rachis;189.56;224.41;155.64;2;;;0;2003-06-17 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349631;national park Müritz;5924067 Lotus pedunculatus;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21444;adult;without petiole and rachis;225;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Lotus pedunculatus;actual measurement;leaf rehydration;218;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21444;adult;without petiole and rachis;218;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Lotus tenuis;actual measurement (following LEDA data standards);no leaf rehydration;151.31;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20976;adult;with petiole and rachis;152.34;195.6;103.09;2;;;0;2005-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;;;P 545a Nyord closely to M?n (DK); Ludwigia palustris;actual measurement (following LEDA data standards);no leaf rehydration;182.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26480;adult;with petiole and rachis;182.35;214.92;153.39;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;450153;P 392a NSG Fritschlach / Karlsruhe, Oberrheinebene (Rhine);5426634 Ludwigia palustris;laboratory/greenhouse/garden experiment;no leaf rehydration;209.73;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26480;adult;with petiole and rachis;208.84;225.57;188.12;2;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210a (cultivated in greenhouse); Ludwigia palustris;laboratory/greenhouse/garden experiment;no leaf rehydration;239.76;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26480;adult;without petiole and rachis;240.07;260.83;210.33;2;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210a (cultivated in greenhouse); Ludwigia palustris;actual measurement (following LEDA data standards);no leaf rehydration;188.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26480;adult;without petiole and rachis;188.36;226.26;151.33;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;450153;P 392a NSG Fritschlach / Karlsruhe, Oberrheinebene (Rhine);5426634 Lunaria annua;actual measurement (following LEDA data standards);no leaf rehydration;125.08;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13513;adult;with petiole and rachis;123.25;140.4;105.46;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Lunaria annua;actual measurement (following LEDA data standards);no leaf rehydration;104.65;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13513;adult;with petiole and rachis;116.88;160.37;94.46;2;;;1;2005-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren; Lunaria rediviva;actual measurement (following LEDA data standards);no leaf rehydration;138.31;3;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;13960;adult;with petiole and rachis;133.73;138.41;124.48;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Lunaria rediviva;actual measurement (following LEDA data standards);no leaf rehydration;116.54;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13960;adult;without petiole and rachis;116.96;138.55;102.12;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;426823;P 368a Höllental, Hirschsprung, Black forest;5309802 Lunaria rediviva;actual measurement (following LEDA data standards);no leaf rehydration;112.97;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13960;adult;with petiole and rachis;113.23;132.13;98.58;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;426823;P 368a Höllental, Hirschsprung, Black forest;5309802 Lupinus albus;laboratory/greenhouse/garden experiment;no leaf rehydration;112.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21901;adult;with petiole and rachis;112.08;119.97;104;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lupinus albus;laboratory/greenhouse/garden experiment;no leaf rehydration;115.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21901;adult;without petiole and rachis;114.14;122.51;103.34;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lupinus luteus;laboratory/greenhouse/garden experiment;no leaf rehydration;106.72;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22239;adult;with petiole and rachis;102.2;108.38;93.42;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lupinus luteus;laboratory/greenhouse/garden experiment;no leaf rehydration;113.94;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22239;adult;without petiole and rachis;110.38;116.72;101.08;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Lupinus polyphyllus;actual measurement (following LEDA data standards);no leaf rehydration;171.57;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22241;adult;with petiole and rachis;173.3;186.4;164.43;2;;;1;2005-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;SWEDEN;;;Gotland, Gärdstånga; Lupinus polyphyllus;actual measurement (following LEDA data standards);no leaf rehydration;158.78;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);22241;adult;without petiole and rachis;159.97;172.52;143.68;1;;;;2005-06-19 00:00:00.0;Preaggregated data obtained from single record. Leaflets;;J4.2 - Road networks;NORWAY;32;484855;Surnadal 04;6985510 Lupinus polyphyllus;actual measurement (following LEDA data standards);no leaf rehydration;131.9;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;22241;adult;with petiole and rachis;136.88;157.58;126.16;2;;;1;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Lupinus polyphyllus;actual measurement;leaf rehydration;257;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22241;adult;without petiole and rachis;257;;;1;;;;1997-06-06 00:00:00.0;;;;UNITED KINGDOM;;;Church Warsop; Luronium natans;actual measurement (following LEDA data standards);no leaf rehydration;168.73;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35649;adult;with petiole and rachis;167;170.18;162.1;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. swimleaves;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;398434.5233;P3 NSG Haselünner Kuhweide (Emsland);5835077.409 Luronium natans;actual measurement (following LEDA data standards);no leaf rehydration;180.84;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35649;adult;without petiole and rachis;182.17;196.84;168.82;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;398434.5233;P3 NSG Haselünner Kuhweide (Emsland);5835077.409 Luronium natans;actual measurement (following LEDA data standards);no leaf rehydration;183.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35649;adult;with petiole and rachis;177.22;228.54;128.05;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. land form;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;398434.5233;P3 NSG Haselünner Kuhweide (Emsland);5835077.409 Luronium natans;actual measurement (following LEDA data standards);no leaf rehydration;72.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35649;adult;with petiole and rachis;74.47;88.38;62.47;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. dyleaves;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;398725.526;P3 NSG Haselünner Kuhweide (Emsland);5835629.814 Luronium natans;actual measurement (following LEDA data standards);no leaf rehydration;136.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35649;adult;without petiole and rachis;139.49;167.58;111.88;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;398725.526;P3 NSG Haselünner Kuhweide (Emsland);5835629.814 Luronium natans;actual measurement (following LEDA data standards);no leaf rehydration;103.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35649;adult;with petiole and rachis;103.76;121.77;93.02;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. swimleaves;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;398725.526;P3 NSG Haselünner Kuhweide (Emsland);5835629.814 Luronium natans;actual measurement (following LEDA data standards);no leaf rehydration;170.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35649;adult;without petiole and rachis;168.09;228.14;123.07;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. land form;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;398434.5233;P3 NSG Haselünner Kuhweide (Emsland);5835077.409 Luzula campestris;actual measurement;leaf rehydration;284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36280;adult;without petiole and rachis;284;;;1;;;;1997-06-26 00:00:00.0;;;;UNITED KINGDOM;;;Long Dale; Luzula campestris;actual measurement;leaf rehydration;207.48;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;36280;adult;without petiole and rachis;206.98;222.84;186.27;2;;;0;2004-04-08 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Luzula multiflora;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36245;adult;without petiole and rachis;214;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Luzula pilosa;actual measurement;leaf rehydration;228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36230;adult;without petiole and rachis;228;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Luzula spicata;actual measurement (following LEDA data standards);no leaf rehydration;284.54;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;36240;adult;with petiole and rachis;284.56;368.78;163.72;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608372;Hessdalen 18;6951804 Luzula sudetica;actual measurement (following LEDA data standards);no leaf rehydration;190.75;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;36244;adult;with petiole and rachis;194.96;216;172.85;1;;;;2005-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;610647;Hessdalen 19;6956751 Luzula sudetica;actual measurement (following LEDA data standards);no leaf rehydration;149.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36244;adult;with petiole and rachis;148.92;162.07;133.05;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.D - Boreal bog conifer woodland;GERMANY;;;MK-2 Gr. Arber-Gipfel (south), Bavarian Forest, Bavaria; Luzula sylvatica;actual measurement;leaf rehydration;294;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36284;adult;without petiole and rachis;294;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Lychnis flos-cuculi;actual measurement;leaf rehydration;149;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16589;adult;without petiole and rachis;149;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Lychnis flos-cuculi;actual measurement;leaf rehydration;131;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16589;adult;without petiole and rachis;131;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Lycium barbarum;actual measurement (following LEDA data standards);no leaf rehydration;164.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35086;adult;with petiole and rachis;166;203.4;143.34;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;33;437432;P 461 Oderhänge near Gabow Ib, Biosphärenreservat Schorfheide-Chorin (Brandenburg);5852154 Lycium barbarum;actual measurement;leaf rehydration;163;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35086;adult;without petiole and rachis;163;;;1;;;;1997-09-18 00:00:00.0;;;;UNITED KINGDOM;;;Worksop; Lycopodiella inundata;actual measurement (following LEDA data standards);no leaf rehydration;139.71;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44369;adult;with petiole and rachis;132.74;153.01;105.49;1;;;0;2003-08-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449128.3568;P5 NSG Krusenbusch (Oldenburg);5883149.798 Lycopodium annotinum;actual measurement (following LEDA data standards);no leaf rehydration;363.64;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;476;adult;with petiole and rachis;365.09;393.26;338.38;1;;;0;2003-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.A - [Picea] taiga woodland;SWEDEN;33;535065.968;P4 Sweden, Blekinge;6251154.537 Lycopodium clavatum;actual measurement (following LEDA data standards);no leaf rehydration;380.73;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;479;adult;with petiole and rachis;379.11;419.23;340.43;10;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. leaves were measured;;F4.2 - Dry heaths;GERMANY;32;604788;P 447 Gr. Sonnenberg /National park Harz (Lower Saxony);5734997 Lycopus europaeus;actual measurement (following LEDA data standards);no leaf rehydration;103.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;24606;adult;without petiole and rachis;102.5;117.08;90.6;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Lysimachia nemorum;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28927;adult;without petiole and rachis;221;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Lysimachia nemorum;actual measurement;leaf rehydration;172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28927;adult;without petiole and rachis;172;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Lysimachia nummularia;actual measurement (following LEDA data standards);no leaf rehydration;197.95;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28922;adult;with petiole and rachis;195.55;223.27;173.41;2;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Nieuwegein; Lysimachia nummularia;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28922;adult;without petiole and rachis;181;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Lysimachia nummularia;actual measurement;leaf rehydration;304;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28922;adult;without petiole and rachis;304;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Lysimachia punctata;actual measurement;leaf rehydration;246;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28929;adult;without petiole and rachis;246;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Lysimachia thyrsiflora;actual measurement (following LEDA data standards);no leaf rehydration;200.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;28789;adult;without petiole and rachis;199.69;222.81;169.22;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Lysimachia vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;341.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;28980;adult;without petiole and rachis;329.5;359.97;287.04;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Lysimachia vulgaris;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28980;adult;without petiole and rachis;198;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr, Doncaster; Lysimachia vulgaris;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28980;adult;without petiole and rachis;188;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Lythrum hyssopifolia;actual measurement (following LEDA data standards);no leaf rehydration;218.27;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26029;adult;with petiole and rachis;218.08;237.6;198.38;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;I1.5 - Bare tilled. fallow or recently abandoned arable land;GERMANY;32;644382.5933;P5 Biophärenreservat Niedersächsische Elbtalaue, wechselfeuchte Ackerbrache;5888089.245 Lythrum portula;actual measurement;leaf rehydration;277;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26036;adult;without petiole and rachis;277;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Lythrum salicaria;actual measurement (following LEDA data standards);no leaf rehydration;202.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;26038;adult;without petiole and rachis;203.77;233.08;181.54;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Lythrum salicaria;actual measurement;leaf rehydration;157;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26038;adult;without petiole and rachis;157;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr, Doncaster; Mahonia aquifolium;actual measurement;leaf rehydration;432;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11687;adult;without petiole and rachis;432;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Maianthemum bifolium;actual measurement (following LEDA data standards);no leaf rehydration;230.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39069;adult;with petiole and rachis;229.33;246.98;203.94;1;;;0;2004-04-23 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;;P 211 Kallmünz/ Hammerschloss, Fränkische Schweiz, Bavaria; Maianthemum bifolium;actual measurement (following LEDA data standards);no leaf rehydration;251.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39069;adult;without petiole and rachis;247.82;264.33;219.58;1;;;0;2004-04-23 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;;P 211 Kallmünz/ Hammerschloss, Fränkische Schweiz, Bavaria; Malus sylvestris;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29369;adult;without petiole and rachis;227;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Malus sylvestris;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29369;adult;without petiole and rachis;177;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Malus sylvestris;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29369;adult;without petiole and rachis;263;;;5;29.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Malus sylvestris;actual measurement;leaf rehydration;285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29369;adult;without petiole and rachis;285;;;5;8.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Malus sylvestris;actual measurement;leaf rehydration;292;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29369;adult;without petiole and rachis;292;;;5;6.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Malva alcea;actual measurement (following LEDA data standards);no leaf rehydration;136.21;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;25705;adult;with petiole and rachis;133.41;165.41;108.07;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Malva moschata;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25717;adult;without petiole and rachis;227;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Catcliffe; Malva moschata;actual measurement;leaf rehydration;220;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25717;adult;without petiole and rachis;220;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Malva moschata;actual measurement;leaf rehydration;199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25717;adult;without petiole and rachis;199;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Malva neglecta;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25718;adult;without petiole and rachis;214;;;2;;;;1996-08-03 00:00:00.0;;;;UNITED KINGDOM;;;Crystal Palace; Malva pusilla;laboratory/greenhouse/garden experiment;no leaf rehydration;151.51;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25668;adult;with petiole and rachis;151.42;164.26;133.68;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Malva sylvestris;actual measurement (following LEDA data standards);no leaf rehydration;171.22;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;25674;adult;with petiole and rachis;170.01;186.75;148.66;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Malva verticillata;laboratory/greenhouse/garden experiment;no leaf rehydration;169.87;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25681;adult;with petiole and rachis;179.46;313.9;102.63;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Marrubium vulgare;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24614;adult;without petiole and rachis;221;;;1;;;;1997-07-27 00:00:00.0;;;;UNITED KINGDOM;;;Great Orme; Matricaria maritima;actual measurement (following LEDA data standards);no leaf rehydration;234.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9565;adult;with petiole and rachis;238.6;272.61;220.88;1;;;0;2003-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Matricaria maritima;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9565;adult;without petiole and rachis;212;;;1;;;;1997-07-14 00:00:00.0;;;;UNITED KINGDOM;;;Widnes; Matricaria perforata;actual measurement;leaf rehydration;121;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10535;adult;without petiole and rachis;121;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Matricaria perforata;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10535;adult;without petiole and rachis;183;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Matricaria perforata;actual measurement;leaf rehydration;133;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10535;adult;without petiole and rachis;133;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Matteuccia struthiopteris;actual measurement (following LEDA data standards);no leaf rehydration;173.42;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;57;adult;with petiole and rachis;156.77;175.4;64.45;2;;;10;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;600543;P 449 Gr. Lutter (near Bad Lauterberg), Harz (Lower Saxony);5723740 Matteuccia struthiopteris;actual measurement (following LEDA data standards);no leaf rehydration;230.77;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;57;adult;without petiole and rachis;227.72;263;202.06;2;;;10;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;600543;P 449 Gr. Lutter (near Bad Lauterberg), Harz (Lower Saxony);5723740 Matthiola incana;laboratory/greenhouse/garden experiment;no leaf rehydration;119.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13527;adult;with petiole and rachis;120.42;140.7;105.85;2;;;0;2004-08-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Meconopsis cambrica;actual measurement;leaf rehydration;195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25542;adult;without petiole and rachis;195;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Meconopsis cambrica;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25542;adult;without petiole and rachis;137;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Medicago arabica;laboratory/greenhouse/garden experiment;no leaf rehydration;185.24;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19824;adult;with petiole and rachis;170.61;233.14;73.43;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Medicago arabica;laboratory/greenhouse/garden experiment;no leaf rehydration;192.9;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19824;adult;without petiole and rachis;178.38;262.62;84.54;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Medicago lupulina;actual measurement;leaf rehydration;213;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20595;adult;without petiole and rachis;213;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Medicago lupulina;actual measurement;leaf rehydration;179;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20595;adult;without petiole and rachis;179;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Medicago minima;actual measurement;leaf rehydration;286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21911;adult;without petiole and rachis;286;;;2;;;;;;;;SPAIN;;;Ambel; Medicago minima;field experiment;leaf rehydration;192;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;21911;adult;without petiole and rachis;192;;;10;4;4;;1997-10-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Medicago minima;field experiment;leaf rehydration;195;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;21911;adult;without petiole and rachis;195;;;10;5;5;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Medicago minima;field experiment;leaf rehydration;296;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;21911;adult;without petiole and rachis;296;;;10;10;10;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Medicago minima;field experiment;leaf rehydration;260;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;21911;adult;without petiole and rachis;260;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Medicago minima;field experiment;leaf rehydration;274;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;21911;adult;without petiole and rachis;274;;;10;6;6;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Medicago polymorpha;laboratory/greenhouse/garden experiment;no leaf rehydration;224.79;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20650;adult;with petiole and rachis;224.79;224.79;224.79;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Medicago polymorpha;laboratory/greenhouse/garden experiment;no leaf rehydration;223.34;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20650;adult;without petiole and rachis;223.34;223.34;223.34;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Medicago sativa;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21975;adult;without petiole and rachis;252;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Medicago sativa;actual measurement;leaf rehydration;191;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21975;adult;without petiole and rachis;191;;;1;;;;1997-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Kirkby in Ashfield; Medicago sativa;actual measurement;leaf rehydration;213;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21975;adult;without petiole and rachis;213;;;1;;;;1997-09-04 00:00:00.0;;;;UNITED KINGDOM;;;Whitwell; Melampyrum arvense;actual measurement (following LEDA data standards);leaf rehydration;180.65;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34460;adult;with petiole and rachis;176.68;199.18;145.76;1;;;0;2003-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;MK20 Feißneck, Mecklenburg-Vorpommern; Melampyrum cristatum;actual measurement (following LEDA data standards);no leaf rehydration;184.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33028;adult;with petiole and rachis;183.67;200.99;169.64;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;; FA.3 - Species-rich hedgerows of native species;GERMANY;32;;P 295 Eichenallee bei Gartow, Biosphärenreservat Niedersächsische Elbtalaue (Lower Saxony); Melampyrum nemorosum;actual measurement (following LEDA data standards);no leaf rehydration;156.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33034;adult;with petiole and rachis;158.17;184.72;130.28;1;;;0;2003-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;SWEDEN;33;534337.2596;P1 Sweden, Blekinge;6251697.32 Melampyrum nemorosum;actual measurement (following LEDA data standards);no leaf rehydration;156.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33034;adult;without petiole and rachis;158.07;183.12;128.91;1;;;0;2003-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;SWEDEN;33;534337.2596;P1 Sweden, Blekinge;6251697.32 Melampyrum pratense;actual measurement;leaf rehydration;205;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33526;adult;without petiole and rachis;205;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Melampyrum sylvaticum;actual measurement (following LEDA data standards);no leaf rehydration;153.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33044;adult;with petiole and rachis;156.49;174.68;142.48;1;;;0;2003-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.A - [Picea] taiga woodland;SWEDEN;33;535065.968;P4 Sweden, Blekinge;6251154.537 Melica ciliata;actual measurement (following LEDA data standards);no leaf rehydration;506.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42479;adult;with petiole and rachis;521.82;618.65;454.99;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;684138;P 412 Jenzig(berg) closely to Jena (Thüringen);5646239 Melica nutans;actual measurement;leaf rehydration;347;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43206;adult;without petiole and rachis;347;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Melica nutans;actual measurement;leaf rehydration;333;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43206;adult;without petiole and rachis;333;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Water-cum-Jolly Dale; Melilotus alba;actual measurement (following LEDA data standards);no leaf rehydration;159.25;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;21420;adult;with petiole and rachis;158.99;170;136.27;2;;;0;2004-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Melilotus altissima;actual measurement;leaf rehydration;230;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22213;adult;without petiole and rachis;230;;;2;;;;1996-09-04 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Melilotus indica;actual measurement;leaf rehydration;230;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20556;adult;without petiole and rachis;230;;;2;;;;1996-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Melilotus officinalis;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22218;adult;without petiole and rachis;255;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Melilotus officinalis;actual measurement;leaf rehydration;245;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22218;adult;without petiole and rachis;245;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Catcliffe; Melilotus officinalis;actual measurement;leaf rehydration;213;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22218;adult;without petiole and rachis;213;;;2;;;;1996-09-04 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Melittis melissophyllum;actual measurement (following LEDA data standards);no leaf rehydration;146.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24619;adult;with petiole and rachis;147.28;165.87;131.69;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;407785;P 235 NSG Ölberg bei Bollschweil;5307850 Melittis melissophyllum;actual measurement (following LEDA data standards);no leaf rehydration;149.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24619;adult;without petiole and rachis;150.32;171.1;135.11;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;407785;P 235 NSG Ölberg bei Bollschweil;5307850 Mentha aquatica;actual measurement (following LEDA data standards);no leaf rehydration;115.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;24622;adult;without petiole and rachis;114.75;123.63;96.89;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Mentha aquatica;actual measurement;leaf rehydration;134;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24622;adult;without petiole and rachis;134;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Mentha aquatica;actual measurement;leaf rehydration;175;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24622;adult;without petiole and rachis;175;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Mentha aquatica;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24622;adult;without petiole and rachis;183;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Mentha aquatica;actual measurement;leaf rehydration;235.71;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;24622;adult;without petiole and rachis;243;272.62;222.45;2;;;0;2003-07-10 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348640;national park Müritz;5924311 Mentha aquatica;actual measurement;leaf rehydration;234.69;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;24622;adult;with petiole and rachis;242.08;271.04;220.46;2;;;0;2003-07-10 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348640;national park Müritz;5924311 Mentha arvensis;actual measurement (following LEDA data standards);no leaf rehydration;174.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23905;adult;without petiole and rachis;174.36;189.61;163.03;2;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. determinated as Mentha x verticillata L. (M. aquatica x M. arvensis) s. str.;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;32;593952;P 445 Nasser-Teich, Harz (Lower Saxony);5738108 Mentha arvensis;actual measurement (following LEDA data standards);no leaf rehydration;173.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23905;adult;with petiole and rachis;172.57;186.51;162.62;2;;;0;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. determinated as Mentha x verticillata L. (M. aquatica x M. arvensis) s. str.;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;32;593952;P 445 Nasser-Teich, Harz (Lower Saxony);5738108 Mentha arvensis;actual measurement (following LEDA data standards);no leaf rehydration;181.71;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23905;adult;with petiole and rachis;191.54;286.05;106.85;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;398972.4272;P3 NSG Haselünner Kuhweide (Emsland);5835245.967 Mentha arvensis;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23905;adult;without petiole and rachis;170;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Pebley Reservoir; Mentha arvensis;actual measurement;leaf rehydration;192;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23905;adult;without petiole and rachis;192;;;2;;;;2004-10-17 00:00:00.0;;;;ITALY;;;Varese; Mentha arvensis;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23905;adult;without petiole and rachis;165;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Varese; Mentha arvensis;actual measurement (following LEDA data standards);no leaf rehydration;166.7;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23905;adult;without petiole and rachis;177.73;269.68;96.82;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;398972.4272;P3 NSG Haselünner Kuhweide (Emsland);5835245.967 Mentha longifolia;actual measurement (following LEDA data standards);no leaf rehydration;194.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24632;adult;with petiole and rachis;193.99;231.01;163.28;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;621038.8111;P12 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5974188.366 Mentha longifolia;actual measurement (following LEDA data standards);no leaf rehydration;194.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24632;adult;without petiole and rachis;187.36;231.54;108.8;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;621038.8111;P12 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5974188.366 Mentha pulegium;actual measurement (following LEDA data standards);no leaf rehydration;158.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24284;adult;with petiole and rachis;162.43;219.95;120.67;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;;;P 303 Sandau /Elbe, Brandenburg; Mentha pulegium;actual measurement;leaf rehydration;200;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24284;adult;without petiole and rachis;200;;;1;;;;1997-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Mentha spicata;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24289;adult;without petiole and rachis;170;;;1;;;;1998-09-10 00:00:00.0;;;;UNITED KINGDOM;;;Teversal; Mentha spicata;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24289;adult;without petiole and rachis;190;;;1;;;;1997-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Ashford; Mentha spicata;actual measurement;leaf rehydration;296;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24289;adult;without petiole and rachis;296;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Mentha spicata;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24289;adult;without petiole and rachis;256;;;2;;;;1996-09-26 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Mentha spicata;actual measurement;leaf rehydration;260;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24289;adult;without petiole and rachis;260;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Mentha suaveolens;actual measurement (following LEDA data standards);no leaf rehydration;181.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23642;adult;with petiole and rachis;184.97;239.8;157.87;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;612888;P 435 east of Walkenried (Harzvorland, Lower Saxony);5715609 Mentha suaveolens;actual measurement (following LEDA data standards);no leaf rehydration;182.48;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23642;adult;with petiole and rachis;191.32;271.72;147.57;2;;;0;2004-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Menyanthes trifoliata;actual measurement (following LEDA data standards);no leaf rehydration;184.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26352;adult;with petiole and rachis;183.05;207.1;150.9;2;;;0;2004-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;D2 - Valley mires. poor fens and transition mires;GERMANY;32;399155;P 281 NSG Fentjer Tief (north), Ostfriesland;5915297 Menyanthes trifoliata;actual measurement (following LEDA data standards);no leaf rehydration;193.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26352;adult;without petiole and rachis;190.95;212.56;168.38;2;;;0;2004-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;D2 - Valley mires. poor fens and transition mires;GERMANY;32;399155;P 281 NSG Fentjer Tief (north), Ostfriesland;5915297 Menyanthes trifoliata;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26352;adult;without petiole and rachis;203;;;1;;;;1997-08-12 00:00:00.0;;;;UNITED KINGDOM;;;Norfolk; Mercurialis annua;actual measurement (following LEDA data standards);no leaf rehydration;163.03;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20019;adult;with petiole and rachis;162.55;207.58;130.99;2;;;0;2004-07-25 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;MK-5 Münzesheim i. Kraichgau, Baden-Württemberg; Mercurialis annua;actual measurement (following LEDA data standards);no leaf rehydration;167.74;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20019;adult;without petiole and rachis;166.9;213.88;130.33;2;;;0;2004-07-25 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;MK-5 Münzesheim i. Kraichgau, Baden-Württemberg; Mercurialis perennis;actual measurement;leaf rehydration;258;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19987;adult;without petiole and rachis;258;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Mercurialis perennis;actual measurement;leaf rehydration;191;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19987;adult;without petiole and rachis;191;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Mespilus germanica;actual measurement (following LEDA data standards);no leaf rehydration;374.23;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;30357;adult;with petiole and rachis;374.23;374.23;374.23;14;;;0;2005-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Mespilus germanica;actual measurement (following LEDA data standards);no leaf rehydration;276.86;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30357;adult;with petiole and rachis;276.86;276.86;276.86;3;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;32;409555;P 512 Ebringen, Sch?rg, NSG Jennetal (Baden-W?emberg);5312993 Milium effusum;actual measurement;leaf rehydration;258;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43212;adult;without petiole and rachis;258;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Milium effusum;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43212;adult;without petiole and rachis;244;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Mimulus guttatus;actual measurement;leaf rehydration;153;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34136;adult;without petiole and rachis;153;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Mimulus guttatus;actual measurement;leaf rehydration;132;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34136;adult;without petiole and rachis;132;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Yorkshire Bridge; Mimulus guttatus;actual measurement (following LEDA data standards);no leaf rehydration;126.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34136;adult;with petiole and rachis;124.16;160.84;95.43;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;;;P 381 Zastlertal, Black forest, Baden-Württemberg; Mimulus guttatus;actual measurement (following LEDA data standards);no leaf rehydration;129.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34136;adult;without petiole and rachis;125.55;164.18;93.2;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;;;P 381 Zastlertal, Black forest, Baden-Württemberg; Mimulus moschatus;actual measurement;leaf rehydration;131;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34076;adult;without petiole and rachis;131;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Mimulus moschatus;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34076;adult;without petiole and rachis;129;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Minuartia hybrida;actual measurement (following LEDA data standards);no leaf rehydration;321.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16496;adult;with petiole and rachis;331.68;385.57;292.91;10;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;397565;P 224 gravel pit near Oberrimsingen, Oberrheinebene (upper Rhine valley);5316827 Minuartia verna;actual measurement (following LEDA data standards);no leaf rehydration;319.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17060;adult;with petiole and rachis;319.54;392;262.01;10;;;0;2004-08-26 00:00:00.0;Preaggregated data obtained from single record. ;;E1.B - Heavy-metal grassland;GERMANY;32;595451;P 457 at the Wartberg, Astfeld/Jerstedt, Harzvorland (Lower Saxony);5754355 Minuartia verna;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17060;adult;without petiole and rachis;186;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Misopates orontium;laboratory/greenhouse/garden experiment;no leaf rehydration;148.42;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34219;adult;with petiole and rachis;148.42;148.42;148.42;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Misopates orontium;actual measurement (following LEDA data standards);no leaf rehydration;120.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34219;adult;with petiole and rachis;118.11;154.99;80.6;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;C3.6 - Unvegetated or sparsely vegetated shores with soft or mobile sediments;GERMANY;;;P 244 Rheinwald, Rheinufer south of Hartheim (upper Rhine); Moehringia trinervia;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16247;adult;without petiole and rachis;203;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell Crags; Moehringia trinervia;actual measurement;leaf rehydration;161;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16247;adult;without petiole and rachis;161;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Moehringia trinervia;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16247;adult;without petiole and rachis;174;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Molinia caerulea;actual measurement (following LEDA data standards);no leaf rehydration;414.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;42495;adult;without petiole and rachis;411.22;435.95;375.61;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Molinia caerulea;actual measurement;leaf rehydration;314;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42495;adult;without petiole and rachis;314;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Molinia caerulea;actual measurement;leaf rehydration;380.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;42495;adult;without petiole and rachis;368.74;409.28;224.54;2;;;0;2003-07-08 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348556;national park Müritz;5924616 Moneses uniflora;actual measurement (following LEDA data standards);no leaf rehydration;273.56;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28798;adult;with petiole and rachis;256.12;331.43;176.01;2;;;0;2005-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;SWEDEN;;;Ronehamn, Gotland Sweden; Montia fontana;actual measurement (following LEDA data standards);no leaf rehydration;61.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27478;adult;with petiole and rachis;61.36;65.44;55.31;5;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;32;433614;P 511b Haslach - Obersimonsw?er Tal, Black forest;5330732 Montia fontana;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27478;adult;without petiole and rachis;156;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Montia fontana subsp. chondrosperma;actual measurement (following LEDA data standards);no leaf rehydration;143.96;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27489;adult;with petiole and rachis;142.74;171.21;112.24;2;;;0;2004-04-20 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;GERMANY;32;;P 209 University of Oldenburg Wechloy; Muscari botryoides;actual measurement (following LEDA data standards);no leaf rehydration;94.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38961;adult;with petiole and rachis;89.26;96.66;55.02;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;398325;P 222 Teiler-Wald, Oberrimsingen, Oberrheinebene (upper Rhine valley);5316161 Myagrum perfoliatum;laboratory/greenhouse/garden experiment;no leaf rehydration;114.64;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14601;adult;with petiole and rachis;110.52;144.54;72.39;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Myosotis arvensis;actual measurement;leaf rehydration;139;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12027;adult;without petiole and rachis;139;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Myosotis arvensis;actual measurement;leaf rehydration;107;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12027;adult;without petiole and rachis;107;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Myosotis discolor;actual measurement (following LEDA data standards);no leaf rehydration;133.44;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11975;adult;with petiole and rachis;132.57;154.91;109.36;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;32;417434;P 231 Kappel, after pasture meadow, Black forest;5311710 Myosotis discolor;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11975;adult;without petiole and rachis;221;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Myosotis discolor;actual measurement;leaf rehydration;125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11975;adult;without petiole and rachis;125;;;2;;;;1996-05-05 00:00:00.0;;;;UNITED KINGDOM;;;Freshfield Dunes, Lancs; Myosotis discolor;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11975;adult;without petiole and rachis;198;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Myosotis laxa;actual measurement (following LEDA data standards);no leaf rehydration;122.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11988;adult;with petiole and rachis;123.14;152.8;106.77;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;;P 296 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue ; Myosotis laxa;laboratory/greenhouse/garden experiment;no leaf rehydration;108.41;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11988;adult;with petiole and rachis;105.74;112.96;93.19;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Myosotis laxa;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11988;adult;without petiole and rachis;181;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Myosotis laxa;actual measurement;leaf rehydration;78;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11988;adult;without petiole and rachis;78;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Myosotis ramosissima;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11938;adult;without petiole and rachis;190;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Myosotis ramosissima;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11938;adult;without petiole and rachis;171;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Myosotis ramosissima;actual measurement;leaf rehydration;79;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11938;adult;without petiole and rachis;79;;;2;;;;1996-05-05 00:00:00.0;;;;UNITED KINGDOM;;;Freshfield Dunes, Lancs; Myosotis rehsteineri;actual measurement (following LEDA data standards);no leaf rehydration;165.5;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11945;adult;with petiole and rachis;176.41;241.77;145.11;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;32;507195;P 519 Hegne, Lake of Constance, Baden-W?emberg;5283391 Myosotis scorpioides;actual measurement (following LEDA data standards);no leaf rehydration;156.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;11951;adult;without petiole and rachis;158.06;171.77;147.6;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Myosotis scorpioides;actual measurement;leaf rehydration;120;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11951;adult;without petiole and rachis;120;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Myosotis scorpioides;actual measurement;leaf rehydration;146;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11951;adult;without petiole and rachis;146;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr, Doncaster; Myosotis scorpioides;actual measurement;leaf rehydration;148;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11951;adult;without petiole and rachis;148;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Myosotis stricta;actual measurement (following LEDA data standards);no leaf rehydration;181.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11964;adult;with petiole and rachis;177.2;196.92;126.57;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J4.2 - Road networks;GERMANY;;;P 245 b Wegrand auf Kies, unweit Bremgarten/Oberrheinebene (upper Rhine valley); Myosotis sylvatica;actual measurement;leaf rehydration;163;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11966;adult;without petiole and rachis;163;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Myosotis sylvatica;actual measurement;leaf rehydration;124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11966;adult;without petiole and rachis;124;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Myosotis sylvatica;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11966;adult;without petiole and rachis;151;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Myosoton aquaticum;actual measurement (following LEDA data standards);no leaf rehydration;121.56;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15865;adult;with petiole and rachis;121.29;133.71;108.37;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;33;312609;P 312 NSG Gülper See (western), Brandenburg;5847138 Myosoton aquaticum;actual measurement;leaf rehydration;91;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15865;adult;without petiole and rachis;91;;;1;;;;1999-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Bawtry; Myosurus minimus;laboratory/greenhouse/garden experiment;no leaf rehydration;123.16;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27104;adult;with petiole and rachis;121.91;167.89;79.64;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;GERMANY;32;;P 210 University of Oldenburg, Botanical Garden; Myrica gale;actual measurement;leaf rehydration;345;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25316;adult;without petiole and rachis;345;;;2;;;;1996-08-02 00:00:00.0;;;;UNITED KINGDOM;;;Cairngorm mountains; Myriophyllum alterniflorum;actual measurement (following LEDA data standards);no leaf rehydration;203.81;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25228;adult;with petiole and rachis;205.81;258.82;156.71;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;456398.4476;P3 NSG Poggenpohler Moor (Landkreis Oldenburg);5867393.103 Myriophyllum spicatum;actual measurement (following LEDA data standards);no leaf rehydration;379.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;25232;adult;without petiole and rachis;364.21;401.2;301.38;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Myriophyllum spicatum;actual measurement;leaf rehydration;195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25232;adult;without petiole and rachis;195;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Myriophyllum spicatum;actual measurement;leaf rehydration;173;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25232;adult;without petiole and rachis;173;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Myriophyllum spicatum;actual measurement;leaf rehydration;213;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25232;adult;without petiole and rachis;213;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Myrrhis odorata;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1152;adult;without petiole and rachis;238;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Najas marina;actual measurement (following LEDA data standards);no leaf rehydration;60.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39411;adult;with petiole and rachis;61.01;85.58;48.57;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;450270;P 394 NSG Mörsch-Dreispitz, Oberrheinebene (Rhine);5423284 Najas minor;actual measurement (following LEDA data standards);no leaf rehydration;96.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39413;adult;with petiole and rachis;94.67;120.48;68.77;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;455675;P 400 near NSG Germersheimer Gräben, Oberrheinebene (Rhine), Rheinland-Pfalz;5452412 Narcissus poeticus;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35706;adult;without petiole and rachis;127;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Middleton, Derbys; Narcissus pseudonarcissus;actual measurement;leaf rehydration;147;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35717;adult;without petiole and rachis;147;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Narcissus pseudonarcissus;actual measurement;leaf rehydration;128;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35717;adult;without petiole and rachis;128;;;2;;;;1996-05-12 00:00:00.0;;;;UNITED KINGDOM;;;Ashover, Derbys; Nardus stricta;actual measurement;leaf rehydration;399;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43217;adult;without petiole and rachis;399;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Nardus stricta;actual measurement;leaf rehydration;377;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43217;adult;without petiole and rachis;377;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Nardus stricta;actual measurement (following LEDA data standards);no leaf rehydration;474;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;43217;adult;with petiole and rachis;479.35;500;469.4;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 2-3 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Narthecium ossifragum;actual measurement;leaf rehydration;159;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38170;adult;without petiole and rachis;159;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Nasturtium microphyllum;actual measurement;leaf rehydration;86;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12669;adult;without petiole and rachis;86;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Nasturtium microphyllum;actual measurement;leaf rehydration;73;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12669;adult;without petiole and rachis;73;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell Crags; Nasturtium officinale;actual measurement;leaf rehydration;117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14602;adult;without petiole and rachis;117;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Nasturtium officinale;actual measurement;leaf rehydration;78;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14602;adult;without petiole and rachis;78;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Castleton; Nepeta cataria;actual measurement (following LEDA data standards);no leaf rehydration;189.9;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24784;adult;with petiole and rachis;193.56;229.04;159.94;2;;;0;2005-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren; Nicandra physalodes;laboratory/greenhouse/garden experiment;no leaf rehydration;180.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34982;adult;with petiole and rachis;160.6;191.02;107.11;2;;;0;2004-07-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Nicandra physalodes;laboratory/greenhouse/garden experiment;no leaf rehydration;188.93;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34982;adult;without petiole and rachis;171.91;198.11;118.39;2;;;0;2004-07-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Nicotiana rustica;laboratory/greenhouse/garden experiment;no leaf rehydration;150.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34935;adult;with petiole and rachis;148.15;174.46;130.98;2;;;0;2005-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Nigella arvensis;laboratory/greenhouse/garden experiment;no leaf rehydration;174.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27106;adult;with petiole and rachis;179.32;243.81;148.64;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Nigella damascena;laboratory/greenhouse/garden experiment;no leaf rehydration;179.6;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27114;adult;with petiole and rachis;181.19;192.75;169.47;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Nonea pulla;actual measurement (following LEDA data standards);no leaf rehydration;137.18;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11903;adult;with petiole and rachis;147.27;189.46;123.53;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;476513;P 404 NSG Schafhof-Teufelsloch, Odenwald, Baden-Württemberg;5493475 Nuphar lutea;actual measurement (following LEDA data standards);no leaf rehydration;195.11;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;25253;adult;without petiole and rachis;197.68;208.65;184.25;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Nuphar lutea;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25253;adult;without petiole and rachis;142;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Nymphaea alba;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25260;adult;without petiole and rachis;181;;;1;;;;1997-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Hardwick Hall; Nymphoides peltata;actual measurement;leaf rehydration;69;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26354;adult;without petiole and rachis;69;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Odontites lutea;actual measurement (following LEDA data standards);no leaf rehydration;212.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33000;adult;with petiole and rachis;217.71;256.73;189.59;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;32;475305;P 403 NSG Sandhauser Dünen, Oberrheinebene (Upper Rhine valley), Baden-Württemberg;5464410 Odontites verna;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33007;adult;without petiole and rachis;238;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Odontites verna;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33007;adult;without petiole and rachis;188;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Bradwell; Odontites verna;actual measurement;leaf rehydration;184;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33007;adult;without petiole and rachis;184;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Odontites verna subsp. litoralis;actual measurement (following LEDA data standards);no leaf rehydration;136.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33008;adult;with petiole and rachis;140.09;169.31;130.67;2;;;0;2005-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;DENMARK;;;P 545b Nyord closely to M?n (DK); Oenanthe aquatica;actual measurement (following LEDA data standards);no leaf rehydration;117.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;1156;adult;without petiole and rachis;117.05;127.93;97.97;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Oenanthe aquatica;actual measurement;leaf rehydration;155;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1156;adult;without petiole and rachis;155;;;1;;;;1997-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Bentley Common; Oenanthe crocata;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1659;adult;without petiole and rachis;142;;;2;;;;1996-08-24 00:00:00.0;;;;UNITED KINGDOM;;;Alnmouth; Oenanthe fistulosa;actual measurement (following LEDA data standards);no leaf rehydration;118.75;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1660;adult;with petiole and rachis;115.11;126.39;99.24;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;311636;P 309 NSG Untere Havel Nord, Brandenburg;584610 Oenanthe fistulosa;actual measurement;leaf rehydration;147;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1660;adult;without petiole and rachis;147;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Oenanthe lachenalii;actual measurement (following LEDA data standards);no leaf rehydration;151.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2104;adult;with petiole and rachis;150.98;172;132.09;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;353073;P 273 Borkum (NO), National park Niedersächsiches Wattenmeer;5941494 Oenanthe lachenalii;actual measurement;leaf rehydration;230;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2104;adult;without petiole and rachis;230;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Oenothera ammophila;laboratory/greenhouse/garden experiment;no leaf rehydration;126.27;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26491;adult;without petiole and rachis;128.33;158.64;109.8;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Oenothera ammophila;laboratory/greenhouse/garden experiment;no leaf rehydration;102.41;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26491;adult;with petiole and rachis;102.84;140.12;76.03;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Oenothera erythrosepala;laboratory/greenhouse/garden experiment;no leaf rehydration;123.86;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26448;adult;with petiole and rachis;131.56;161.11;112.04;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Oenothera erythrosepala;laboratory/greenhouse/garden experiment;no leaf rehydration;126.54;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26448;adult;without petiole and rachis;132.81;162.52;112.65;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Oenothera parviflora;actual measurement (following LEDA data standards);no leaf rehydration;158.01;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;26459;adult;with petiole and rachis;163.95;211.79;149.82;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Oenothera parviflora;laboratory/greenhouse/garden experiment;no leaf rehydration;198.95;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26459;adult;with petiole and rachis;199.38;263.77;121.26;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Oenothera rosea;laboratory/greenhouse/garden experiment;no leaf rehydration;203.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26462;adult;with petiole and rachis;201.88;231.89;167.09;2;;;0;2004-10-13 00:00:00.0;Preaggregated data obtained from single record. collection date #1-3: 2005-06-14;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Oenothera rosea;laboratory/greenhouse/garden experiment;no leaf rehydration;199.89;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26462;adult;without petiole and rachis;195.42;210.66;171.09;2;;;0;2004-10-13 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Omalotheca norvegica;actual measurement (following LEDA data standards);no leaf rehydration;244.7;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;11511;adult;with petiole and rachis;245.83;255.3;237.5;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Omalotheca norvegica;actual measurement (following LEDA data standards);no leaf rehydration;229.2;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;11511;adult;with petiole and rachis;230.68;257.1;204.1;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Omalotheca norvegica;actual measurement (following LEDA data standards);no leaf rehydration;185.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11511;adult;with petiole and rachis;186.03;220.12;161.39;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;F4.2 - Dry heaths;GERMANY;32;426444;P 375 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303165 Omalotheca supina;actual measurement (following LEDA data standards);no leaf rehydration;216;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;10537;adult;without petiole and rachis;302;495.2;194.8;8;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 8-11 leaves per sample;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Omalotheca supina;actual measurement (following LEDA data standards);no leaf rehydration;268.4;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;10537;adult;without petiole and rachis;246.48;300;166.7;6;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 6-9 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Omphalodes verna;actual measurement (following LEDA data standards);no leaf rehydration;203.41;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11923;adult;with petiole and rachis;206.65;235.87;186.64;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Onobrychis viciifolia;actual measurement (following LEDA data standards);no leaf rehydration;260.05;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21874;adult;without petiole and rachis;264.6;281.38;248.38;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Onobrychis viciifolia;actual measurement;leaf rehydration;261;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21874;adult;without petiole and rachis;261;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Onobrychis viciifolia;actual measurement (following LEDA data standards);no leaf rehydration;255.92;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21874;adult;with petiole and rachis;258.1;277.78;244.58;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Onobrychis viciifolia;actual measurement;leaf rehydration;200;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21874;adult;without petiole and rachis;200;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Ononis repens;actual measurement (following LEDA data standards);no leaf rehydration;257.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20645;adult;with petiole and rachis;252.08;315.13;201.66;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;620350.5168;P13 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5973641.915 Ononis repens;actual measurement;leaf rehydration;223;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20645;adult;without petiole and rachis;223;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Ononis repens;actual measurement;leaf rehydration;218;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20645;adult;without petiole and rachis;218;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Devon, UK; Ononis repens;actual measurement;leaf rehydration;226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20645;adult;without petiole and rachis;226;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Onopordum acanthium;laboratory/greenhouse/garden experiment;no leaf rehydration;214.68;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9350;adult;with petiole and rachis;214.68;214.68;214.68;2;;;0;2005-07-11 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ophioglossum vulgatum;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;283;adult;without petiole and rachis;110;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Ophioglossum vulgatum;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;283;adult;without petiole and rachis;110;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Ophrys apifera;actual measurement;leaf rehydration;148;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39669;adult;without petiole and rachis;148;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Ophrys apifera;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39669;adult;without petiole and rachis;130;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Ophrys fuciflora;actual measurement (following LEDA data standards);no leaf rehydration;104.87;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39685;adult;with petiole and rachis;104.01;106.9;100.26;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;389290;P 504 NSG Kapellengrien, upper Rhine, Bad Bellingen - Rheinweiler (Baden-W?emberg);5284787 Ophrys insectifera;actual measurement;leaf rehydration;122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39703;adult;without petiole and rachis;122;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Ophrys sphegodes;actual measurement (following LEDA data standards);no leaf rehydration;101.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39719;adult;with petiole and rachis;100.6;115.27;85.58;2;;;0;2004-05-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;404784;P 262 NSG Taubergießen / Oberrheinebene (upper Rhine);5349351 Orchis mascula;actual measurement (following LEDA data standards);no leaf rehydration;129.07;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39755;adult;with petiole and rachis;125.25;136.06;106.53;2;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;433296;P 511 Haslach - Obersimonsw?er Tal, Black forest;5330362 Orchis mascula;actual measurement;leaf rehydration;118;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39755;adult;without petiole and rachis;118;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Orchis mascula;actual measurement;leaf rehydration;121;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39755;adult;without petiole and rachis;121;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Orchis militaris;actual measurement (following LEDA data standards);no leaf rehydration;111.96;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40042;adult;with petiole and rachis;113.08;117.04;110.25;2;;;0;2004-05-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;404784;P 262 NSG Taubergießen / Oberrheinebene (upper Rhine);5349351 Orchis morio;actual measurement (following LEDA data standards);no leaf rehydration;127.84;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39762;adult;with petiole and rachis;120.71;140.09;90.24;2;;;0;2004-05-16 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;32;420610;P 255 Attental (Black forest) near Freiburg;5317112 Orchis purpurea;actual measurement (following LEDA data standards);no leaf rehydration;65.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40052;adult;with petiole and rachis;66.11;73.58;61.45;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;32;407711;P 234 NSG Ölberg bei Bollschweil;5307743 Orchis simia;actual measurement (following LEDA data standards);no leaf rehydration;102.5;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;40058;adult;with petiole and rachis;100.83;109.36;89.94;2;;;0;2005-05-20 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;402856;P 503a Kaiserstuhl, near Schelingen, Baden-W?emberg;5328967 Orchis ustulata;actual measurement (following LEDA data standards);no leaf rehydration;121.29;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39783;adult;with petiole and rachis;120.57;135.62;105.23;2;;;0;2004-05-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;404784;P 262 NSG Taubergießen / Oberrheinebene (upper Rhine);5349351 Orchis ustulata;actual measurement;leaf rehydration;144;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39783;adult;without petiole and rachis;144;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Oreopteris limbosperma;actual measurement;leaf rehydration;289;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;315;adult;without petiole and rachis;289;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Origanum vulgare;actual measurement;leaf rehydration;233;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23973;adult;without petiole and rachis;233;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Orlaya grandiflora;laboratory/greenhouse/garden experiment;no leaf rehydration;168.19;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2113;adult;with petiole and rachis;169.06;198.87;143.15;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ornithogalum umbellatum;actual measurement;leaf rehydration;83;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39006;adult;without petiole and rachis;83;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Serlby, Notts; Ornithopus perpusillus;actual measurement;leaf rehydration;222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19964;adult;without petiole and rachis;222;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Ornithopus perpusillus;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19964;adult;without petiole and rachis;194;;;1;;;;1997-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Ornithopus perpusillus;actual measurement;leaf rehydration;164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19964;adult;without petiole and rachis;164;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Orthilia secunda;actual measurement (following LEDA data standards);no leaf rehydration;334.59;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28809;adult;with petiole and rachis;327.19;339.57;303.86;1;;;0;2003-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.A - [Picea] taiga woodland;SWEDEN;33;535065.968;P4 Sweden, Blekinge;6251154.537 Orthilia secunda;actual measurement (following LEDA data standards);no leaf rehydration;345.87;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28809;adult;without petiole and rachis;338.86;353.4;319.85;1;;;0;2003-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;G3.A - [Picea] taiga woodland;SWEDEN;33;535065.968;P4 Sweden, Blekinge;6251154.537 Osmunda regalis;actual measurement (following LEDA data standards);no leaf rehydration;262.65;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;295;adult;with petiole and rachis;260.43;270.96;245.46;2;;;10;2004-08-18 00:00:00.0;Preaggregated data obtained from single record. ;; FA.3 - Species-rich hedgerows of native species;GERMANY;32;394187;P 439 near Bangstede, Ostfriesland;5918667 Osmunda regalis;actual measurement (following LEDA data standards);no leaf rehydration;293.4;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;295;adult;without petiole and rachis;290.87;299.7;277;2;;;10;2004-08-18 00:00:00.0;Preaggregated data obtained from single record. ;; FA.3 - Species-rich hedgerows of native species;GERMANY;32;394187;P 439 near Bangstede, Ostfriesland;5918667 Oxalis acetosella;actual measurement;leaf rehydration;134;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25842;adult;without petiole and rachis;134;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Oxalis acetosella;actual measurement;leaf rehydration;125.57;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;25842;adult;without petiole and rachis;122.8;145.53;93.17;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Oxalis corniculata;actual measurement (following LEDA data standards);no leaf rehydration;149.72;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25840;adult;with petiole and rachis;147.45;168.8;113.14;2;;;0;2005-10-08 00:00:00.0;Preaggregated data obtained from single record. ;;I2.1 - Large-scale ornamental garden areas;GERMANY;;;P 552 Petkum (graveyard near Emden), NW-Lower Saxony; Oxyria digyna;actual measurement (following LEDA data standards);no leaf rehydration;94.89;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;27715;adult;with petiole and rachis;96.02;132.16;75.79;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608097;Hessdalen 20;6954547 Papaver argemone;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25500;adult;without petiole and rachis;160;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Papaver dubium;actual measurement;leaf rehydration;223;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25513;adult;without petiole and rachis;223;;;2;;;;1996-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Papaver dubium;actual measurement;leaf rehydration;162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25513;adult;without petiole and rachis;162;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook; Papaver dubium;actual measurement;leaf rehydration;155;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25513;adult;without petiole and rachis;155;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Papaver dubium;actual measurement;leaf rehydration;163;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25513;adult;without petiole and rachis;163;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Papaver rhoeas;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25577;adult;without petiole and rachis;151;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Papaver rhoeas;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25577;adult;without petiole and rachis;135;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Papaver somniferum;actual measurement (following LEDA data standards);no leaf rehydration;177.78;1;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;25589;adult;with petiole and rachis;177.78;177.78;177.78;6;;;1;2005-07-20 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Stadskanaal, garden fam. Pras; Parapholis strigosa;actual measurement (following LEDA data standards);no leaf rehydration;236.99;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;42872;adult;with petiole and rachis;240.29;291.89;208.42;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog, far east; Parapholis strigosa;actual measurement (following LEDA data standards);no leaf rehydration;279.3;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42872;adult;with petiole and rachis;290.57;333.82;269.87;3;;;0;2005-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;NETHERLANDS;32;;MK-6 Schiermonikoog (NL); Parietaria judaica;actual measurement;leaf rehydration;189;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44662;adult;without petiole and rachis;189;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton Priory; Parietaria judaica;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44662;adult;without petiole and rachis;182;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell Crags; Parietaria officinalis;actual measurement (following LEDA data standards);no leaf rehydration;142.99;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35137;adult;with petiole and rachis;144.89;164.61;125.66;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;407894;P 237 NSG Ölberg bei Bollschweil;5307945 Parietaria officinalis;actual measurement (following LEDA data standards);no leaf rehydration;152.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35137;adult;without petiole and rachis;153.37;173.46;132.39;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;407894;P 237 NSG Ölberg bei Bollschweil;5307945 Paris quadrifolia;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;38073;adult;without petiole and rachis;176;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia; Parnassia palustris;actual measurement (following LEDA data standards);no leaf rehydration;133.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25636;adult;with petiole and rachis;137.52;158.39;125.37;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Parnassia palustris;actual measurement;leaf rehydration;210;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25636;adult;without petiole and rachis;210;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Parnassia palustris;actual measurement;leaf rehydration;193;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25636;adult;without petiole and rachis;193;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Parnassia palustris;actual measurement;leaf rehydration;144;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25636;adult;without petiole and rachis;144;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Buxton Country Park; Parnassia palustris;actual measurement (following LEDA data standards);no leaf rehydration;136.79;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25636;adult;without petiole and rachis;139.69;163.28;127.92;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Parthenocissus inserta;actual measurement (following LEDA data standards);no leaf rehydration;212.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34510;adult;with petiole and rachis;213.38;235.67;188.18;1;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. ;;B1.6 - Coastal dune scrub;GERMANY;32;352280;P 269 Borkum (NO), National park Niedersächsiches Wattenmeer;5941596 Parthenocissus inserta;actual measurement (following LEDA data standards);no leaf rehydration;228.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34510;adult;without petiole and rachis;231.12;253.3;212.82;1;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. ;;B1.6 - Coastal dune scrub;GERMANY;32;352280;P 269 Borkum (NO), National park Niedersächsiches Wattenmeer;5941596 Pastinaca sativa;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1183;adult;without petiole and rachis;225;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Pastinaca sativa;actual measurement;leaf rehydration;79;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1183;adult;without petiole and rachis;79;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Pedicularis lapponica;actual measurement (following LEDA data standards);no leaf rehydration;185.03;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;33481;adult;with petiole and rachis;193.61;247.41;155.34;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608356;Hessdalen 21;6952096 Pedicularis oederi;actual measurement (following LEDA data standards);no leaf rehydration;142.3;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;33763;adult;with petiole and rachis;156.74;217.1;132.6;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Pedicularis palustris;actual measurement (following LEDA data standards);no leaf rehydration;190.8;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;33771;adult;with petiole and rachis;194.59;275.84;164.8;2;;;0;2005-05-29 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog; Pedicularis palustris;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33771;adult;without petiole and rachis;151;;;1;;;;1997-06-26 00:00:00.0;;;;UNITED KINGDOM;;;Norfolk; Pedicularis palustris;actual measurement (following LEDA data standards);no leaf rehydration;108.43;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;33771;adult;with petiole and rachis;111.91;151.84;83.03;2;;;0;2004-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Pedicularis palustris;actual measurement (following LEDA data standards);no leaf rehydration;156.28;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33771;adult;with petiole and rachis;154.2;164.96;143.52;2;;;0;2005-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;NETHERLANDS;32;;MK-6 Schiermonikoog (NL); Pedicularis palustris;actual measurement (following LEDA data standards);no leaf rehydration;157.49;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);33771;adult;with petiole and rachis;150.23;164.89;117.08;1;;;;2005-07-03 00:00:00.0;Preaggregated data obtained from single record. ;;D2 - Valley mires. poor fens and transition mires;NORWAY;32;517928;Rindal 05;6995268 Pedicularis sylvatica;actual measurement;leaf rehydration;162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32992;adult;without petiole and rachis;162;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Pentaglottis sempervirens;actual measurement (following LEDA data standards);no leaf rehydration;93.71;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11832;adult;with petiole and rachis;92.69;104.98;75.61;2;;;1;2005-08-03 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Petasites albus;actual measurement (following LEDA data standards);no leaf rehydration;137.09;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11005;adult;with petiole and rachis;136.66;164.48;103.98;1;;;1;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Petasites albus;actual measurement (following LEDA data standards);no leaf rehydration;111.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11005;adult;with petiole and rachis;110.73;114.6;102.54;2;;;10;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G3.1 - [Abies] and [Picea] woodland;GERMANY;32;431028;P 350 Ravennaschlucht, Black forest (Baden-Württemberg);5307908 Petasites albus;actual measurement (following LEDA data standards);no leaf rehydration;114.36;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11005;adult;without petiole and rachis;116.02;127.03;107.89;2;;;10;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G3.1 - [Abies] and [Picea] woodland;GERMANY;32;431028;P 350 Ravennaschlucht, Black forest (Baden-Württemberg);5307908 Petasites fragrans;actual measurement;leaf rehydration;158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11574;adult;without petiole and rachis;158;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Petasites hybridus;actual measurement;leaf rehydration;222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10476;adult;without petiole and rachis;222;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Petasites hybridus;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10476;adult;without petiole and rachis;181;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton Village; Petasites spurius;actual measurement (following LEDA data standards);no leaf rehydration;182.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9658;adult;without petiole and rachis;186.26;207.56;170.01;2;;;10;2004-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;;P 264 Kieler Förde, Falkensteiner Strand, Baltic sea; Petasites spurius;actual measurement (following LEDA data standards);no leaf rehydration;158.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9658;adult;with petiole and rachis;154.19;170.36;118.9;2;;;10;2004-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;;P 264 Kieler Förde, Falkensteiner Strand, Baltic sea; Petrorhagia prolifera;actual measurement (following LEDA data standards);no leaf rehydration;231.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16636;adult;with petiole and rachis;231.23;271.19;210.33;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;401461;P 360 NSG Badberg (Kaiserstuhl) / Baden-Württemberg;5327607 Petrorhagia saxifraga;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15566;adult;without petiole and rachis;237;;;2;;;;;;;;SPAIN;;;Ambel; Peucedanum cervaria;actual measurement (following LEDA data standards);no leaf rehydration;288.12;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1621;adult;with petiole and rachis;273.68;310.16;221.65;1;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Peucedanum officinale;actual measurement (following LEDA data standards);no leaf rehydration;291.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1112;adult;with petiole and rachis;298.86;357.01;267.07;2;;;10;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;455686;P 396 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Rheinland-Pfalz;5449370 Peucedanum officinale;actual measurement (following LEDA data standards);no leaf rehydration;267.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1112;adult;without petiole and rachis;273.25;336.67;217.99;2;;;10;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;455686;P 396 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Rheinland-Pfalz;5449370 Peucedanum oreoselinum;actual measurement (following LEDA data standards);leaf rehydration;251.23;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2070;adult;with petiole and rachis;251.18;264.69;238.23;1;;;0;2003-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;MK20 Feißneck, Mecklenburg-Vorpommern; Peucedanum oreoselinum;actual measurement (following LEDA data standards);leaf rehydration;267.41;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2070;adult;without petiole and rachis;270.73;293.06;253.6;1;;;0;2003-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;MK20 Feißneck, Mecklenburg-Vorpommern; Peucedanum palustre;actual measurement (following LEDA data standards);no leaf rehydration;288.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;2071;adult;without petiole and rachis;292.78;327.58;260.06;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Peucedanum palustre;actual measurement (following LEDA data standards);no leaf rehydration;191.26;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2071;adult;with petiole and rachis;180.44;231.6;42.2;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453852.4664;P 16 Mooriemer Kanal/Gräben (Oldenburg/Hunte-Wiesen);5891016.65 Peucedanum palustre;actual measurement (following LEDA data standards);no leaf rehydration;194.62;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2071;adult;without petiole and rachis;176.97;274.57;54.08;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453852.4664;P 16 Mooriemer Kanal/Gräben (Oldenburg/Hunte-Wiesen);5891016.65 Peucedanum palustre;actual measurement (following LEDA data standards);no leaf rehydration;182.91;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2071;adult;with petiole and rachis;231.92;483.59;160.73;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. rosette leaves;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453852.4664;P 16 Mooriemer Kanal/Gräben (Oldenburg/Hunte-Wiesen);5891016.65 Peucedanum palustre;actual measurement (following LEDA data standards);no leaf rehydration;222.23;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2071;adult;with petiole and rachis;221.9;256.53;172.47;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. floral bracts;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453852.4664;P 16 Mooriemer Kanal/Gräben (Oldenburg/Hunte-Wiesen);5891016.65 Peucedanum palustre;actual measurement (following LEDA data standards);no leaf rehydration;185.47;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2071;adult;without petiole and rachis;230.46;435.14;164.61;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. rosette leaves;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453852.4664;P 16 Mooriemer Kanal/Gräben (Oldenburg/Hunte-Wiesen);5891016.65 Peucedanum palustre;actual measurement (following LEDA data standards);no leaf rehydration;225.35;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2071;adult;without petiole and rachis;228.73;312.63;140.37;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. floral bracts;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453852.4664;P 16 Mooriemer Kanal/Gräben (Oldenburg/Hunte-Wiesen);5891016.65 Phacelia tanacetifolia;laboratory/greenhouse/garden experiment;no leaf rehydration;131.55;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25220;adult;with petiole and rachis;130.86;139.85;120.25;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Phalaris arundinacea;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42396;adult;without petiole and rachis;263;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Phalaris canariensis;laboratory/greenhouse/garden experiment;no leaf rehydration;223.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42881;adult;with petiole and rachis;227.35;261.3;195.75;2;;;0;2004-08-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Phaseolus vulgaris;laboratory/greenhouse/garden experiment;no leaf rehydration;219.58;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22039;adult;with petiole and rachis;222.08;239.46;208.48;2;;;0;2004-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Phaseolus vulgaris;laboratory/greenhouse/garden experiment;no leaf rehydration;230.18;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22039;adult;without petiole and rachis;234.01;252.46;218.03;2;;;0;2004-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Phegopteris connectilis;actual measurement (following LEDA data standards);no leaf rehydration;190.94;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44452;adult;with petiole and rachis;188.02;237.49;142.85;1;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Phegopteris connectilis;actual measurement (following LEDA data standards);no leaf rehydration;188.36;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44452;adult;without petiole and rachis;186.1;237.15;146.4;1;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G4.6 - Mixed [Abies] - [Picea] - [Fagus] woodland;GERMANY;32;430823;P 352 Ravennaschlucht, Black forest (Baden-Württemberg);5307557 Phillyrea latifolia;field experiment;leaf rehydration;446;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;26370;adult;without petiole and rachis;446;;;10;7;7;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Phillyrea latifolia;field experiment;leaf rehydration;389;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;26370;adult;without petiole and rachis;389;;;10;11;11;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Phleum alpinum;actual measurement (following LEDA data standards);no leaf rehydration;367.45;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;42401;adult;with petiole and rachis;377.41;440.4;326.9;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Phleum phleoides;actual measurement (following LEDA data standards);no leaf rehydration;319.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43239;adult;with petiole and rachis;333.13;473.6;286.89;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Phleum pratense;actual measurement;leaf rehydration;336;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42408;adult;without petiole and rachis;336;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Phleum pratense;actual measurement;leaf rehydration;257;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42408;adult;without petiole and rachis;257;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Head; Phleum pratense;actual measurement;leaf rehydration;249;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42408;adult;without petiole and rachis;249;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Phleum pratense;actual measurement;leaf rehydration;217;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42408;adult;without petiole and rachis;217;;;2;;;;;;;;UNITED KINGDOM;;;; Phleum pratense;field experiment;leaf rehydration;272;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;42408;adult;without petiole and rachis;272;;;10;6;6;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Phleum pratense;field experiment;leaf rehydration;311;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;42408;adult;without petiole and rachis;311;;;10;8;8;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Phleum pratense;field experiment;leaf rehydration;291;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;42408;adult;without petiole and rachis;291;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Phragmites australis;actual measurement;leaf rehydration;428.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;42412;adult;without petiole and rachis;432.35;463.85;416.18;2;;;0;2003-07-28 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348640;national park Müritz;5924311 Phragmites australis;actual measurement (following LEDA data standards);no leaf rehydration;437.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;42412;adult;without petiole and rachis;440.74;494.37;403.56;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Phragmites australis;actual measurement;leaf rehydration;343;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42412;adult;without petiole and rachis;343;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Phyllodoce caerulea;actual measurement (following LEDA data standards);no leaf rehydration;460.7;13;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19512;adult;with petiole and rachis;456.64;543.3;312.1;14;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 14-23 leaves per sample;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Phyteuma nigrum;actual measurement (following LEDA data standards);no leaf rehydration;124.34;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14815;adult;with petiole and rachis;126.71;166.01;107.08;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ground and stem leaves;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437116;P 215 Gristede (Landkreis Ammerland);5898398 Phyteuma nigrum;actual measurement (following LEDA data standards);no leaf rehydration;132.31;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14815;adult;without petiole and rachis;151.66;229.63;126.84;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ground and stem leaves;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437116;P 215 Gristede (Landkreis Ammerland);5898398 Phyteuma spicatum;actual measurement (following LEDA data standards);leaf rehydration;127.8;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14784;adult;without petiole and rachis;125.37;150.85;103.15;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Phytolacca esculenta;actual measurement (following LEDA data standards);no leaf rehydration;92.28;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27873;adult;with petiole and rachis;92.28;92.28;92.28;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;J2.3 - Rural industrial and commercial sites still in active use;GERMANY;32;411265.508;P1 Löningen (Emsland);5842255.163 Phytolacca esculenta;actual measurement (following LEDA data standards);no leaf rehydration;97.22;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27873;adult;without petiole and rachis;97.22;97.22;97.22;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;J2.3 - Rural industrial and commercial sites still in active use;GERMANY;32;411265.508;P1 Löningen (Emsland);5842255.163 Picea sitchensis;actual measurement;leaf rehydration;270;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;691;adult;without petiole and rachis;270;;;5;2.9;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Ladybower Reservoir; Picea sitchensis;actual measurement;leaf rehydration;279;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;691;adult;without petiole and rachis;279;;;5;6.7;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Ladybower Reservoir; Picris echioides;actual measurement (following LEDA data standards);no leaf rehydration;133;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10896;adult;with petiole and rachis;133;133;133;1;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;456626;P 395 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Baden-Württemberg;5449077 Picris echioides;actual measurement;leaf rehydration;125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10896;adult;without petiole and rachis;125;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Picris hieracioides;laboratory/greenhouse/garden experiment;no leaf rehydration;185.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9660;adult;with petiole and rachis;188.9;214.28;167.67;2;;;0;2005-07-05 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Picris hieracioides;actual measurement (following LEDA data standards);no leaf rehydration;249.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9660;adult;with petiole and rachis;258;324.24;209.09;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;J4.1 - Weed communities of transport networks and other constructed hard-surfaced areas;GERMANY;;;P 421 Apolda, beside railway station (Thüringen); Picris hieracioides;actual measurement;leaf rehydration;187;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9660;adult;without petiole and rachis;187;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Picris hieracioides;actual measurement;leaf rehydration;117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9660;adult;without petiole and rachis;117;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Picris hieracioides;actual measurement (following LEDA data standards);no leaf rehydration;173.9;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9660;adult;with petiole and rachis;167.19;193.64;139.34;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;P 415 north of Golmsdorf (Thüringen); Pilularia globulifera;actual measurement (following LEDA data standards);no leaf rehydration;129.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;12;adult;with petiole and rachis;129.66;174.03;90.15;2;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. ;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;;;P 475 Freren (Landkreis Osnabrück); Pimpinella major;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1134;adult;without petiole and rachis;212;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Pimpinella major;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1134;adult;without petiole and rachis;202;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Pimpinella saxifraga;actual measurement;leaf rehydration;294;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1643;adult;without petiole and rachis;294;;;2;;;;;;;;UNITED KINGDOM;;;; Pimpinella saxifraga;actual measurement;leaf rehydration;277;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1643;adult;without petiole and rachis;277;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Pinguicula alpina;actual measurement (following LEDA data standards);no leaf rehydration;73.81;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;26120;adult;with petiole and rachis;70.09;80.64;55.51;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608349;Hessdalen 22;6951814 Pinguicula vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;73.6;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;26085;adult;without petiole and rachis;73.12;118.2;29.7;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Pinguicula vulgaris;actual measurement;leaf rehydration;93;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26085;adult;without petiole and rachis;93;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Pinus sylvestris;actual measurement (following LEDA data standards);no leaf rehydration;555.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;624;adult;with petiole and rachis;555.08;589.98;532.77;2;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;432992;P 515 NSG Horbacher Moor, Hotzenwald (Baden-W?emberg);5287560 Pinus sylvestris;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;624;adult;without petiole and rachis;203;;;5;5.4;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Pinus sylvestris;actual measurement;leaf rehydration;284;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;624;adult;without petiole and rachis;284;;;5;6.2;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Peter Dale; Pinus sylvestris;actual measurement;leaf rehydration;286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;624;adult;without petiole and rachis;286;;;5;10.8;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Pinus sylvestris;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;624;adult;without petiole and rachis;235;;;5;7.1;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Pinus sylvestris;actual measurement;leaf rehydration;229;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;624;adult;without petiole and rachis;229;;;5;2.8;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Peter Dale; Pinus sylvestris;actual measurement;leaf rehydration;301;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;624;adult;without petiole and rachis;301;;;5;11;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Plantago arenaria;actual measurement (following LEDA data standards);no leaf rehydration;180.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27863;adult;with petiole and rachis;178.97;226.81;132.62;2;;;0;2004-09-12 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-17 Munich disused railway network, Bavaria; Plantago arenaria;laboratory/greenhouse/garden experiment;no leaf rehydration;149.08;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27863;adult;with petiole and rachis;143.4;171.93;116.08;2;;;0;2004-10-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Plantago coronopus;laboratory/greenhouse/garden experiment;no leaf rehydration;72.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27899;adult;with petiole and rachis;71.63;86.88;61.99;2;;;0;2004-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Plantago coronopus;actual measurement (following LEDA data standards);no leaf rehydration;162.97;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27899;adult;with petiole and rachis;162.97;162.97;162.97;1;;;0;2003-09-27 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;;;P1 Mellum, Nationalpark Niedersächsiches Wattenmeer (Northsea / Lower Saxony); Plantago coronopus;actual measurement;leaf rehydration;99;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27899;adult;without petiole and rachis;99;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Devon, UK; Plantago coronopus;laboratory/greenhouse/garden experiment;no leaf rehydration;76.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27899;adult;without petiole and rachis;75.96;90.8;64.32;2;;;0;2004-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Plantago lanceolata;actual measurement;leaf rehydration;158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27860;adult;without petiole and rachis;158;;;2;;;;;;;;UNITED KINGDOM;;;; Plantago lanceolata;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27860;adult;without petiole and rachis;156;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Plantago lanceolata;field experiment;leaf rehydration;257;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;27860;adult;without petiole and rachis;257;;;10;8;8;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Plantago lanceolata;field experiment;leaf rehydration;166;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;27860;adult;without petiole and rachis;166;;;10;9;9;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;6.35;Les Agros;43.25 Plantago lanceolata;actual measurement;leaf rehydration;125.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;27860;adult;with petiole and rachis;124.11;149.91;101.11;2;;;0;2003-06-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349147;national park Müritz;5924593 Plantago lanceolata;actual measurement;leaf rehydration;124;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;27860;adult;without petiole and rachis;122.5;150.72;99.74;2;;;0;2003-06-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349147;national park Müritz;5924593 Plantago lanceolata;field experiment;leaf rehydration;174;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;27860;adult;without petiole and rachis;174;;;10;9;9;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Plantago lanceolata;field experiment;leaf rehydration;175;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;27860;adult;without petiole and rachis;175;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Plantago major;actual measurement;leaf rehydration;107;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27829;adult;without petiole and rachis;107;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Plantago major subsp. intermedia;actual measurement (following LEDA data standards);no leaf rehydration;118.36;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27835;adult;with petiole and rachis;118.36;132.12;104.6;2;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352188;P 268 Borkum (NO), National park Niedersächsiches Wattenmeer;5941821 Plantago major subsp. intermedia;actual measurement (following LEDA data standards);no leaf rehydration;116.76;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27835;adult;without petiole and rachis;116.76;130.22;103.29;2;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352188;P 268 Borkum (NO), National park Niedersächsiches Wattenmeer;5941821 Plantago maritima;actual measurement (following LEDA data standards);no leaf rehydration;93.83;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;27843;adult;with petiole and rachis;92.68;106.48;67.78;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Plantago maritima;actual measurement;leaf rehydration;77;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27843;adult;without petiole and rachis;77;;;1;;;;1997-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Maldon, Essex; Plantago maritima;actual measurement;leaf rehydration;96;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27843;adult;without petiole and rachis;96;;;1;;;;1997-06-09 00:00:00.0;;;;UNITED KINGDOM;;;Widnes; Plantago maritima;actual measurement (following LEDA data standards);no leaf rehydration;191.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27843;adult;with petiole and rachis;183.36;218.39;128.91;1;;;0;2003-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;622547.8761;P4 NSG Dummersdorfer Ufer (Lübeck/ near Baltic Sea);5975957.297 Plantago media;actual measurement;leaf rehydration;169;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27756;adult;without petiole and rachis;169;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Buxton Country Park; Plantago media;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27756;adult;without petiole and rachis;137;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Plantago media;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27756;adult;without petiole and rachis;130;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Platanthera bifolia;actual measurement (following LEDA data standards);no leaf rehydration;121.84;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;39786;adult;with petiole and rachis;121.52;136.78;109.11;2;;;0;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;SWEDEN;;;Sundre, Gotland Sweden; Platanthera bifolia;actual measurement (following LEDA data standards);no leaf rehydration;102.74;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39786;adult;with petiole and rachis;102.74;107.66;97.81;1;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;409555;P 512 Ebringen, Sch?rg, NSG Jennetal (Baden-W?emberg);5312993 Platanthera chlorantha;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;39789;adult;without petiole and rachis;142;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Poa alpina;actual measurement (following LEDA data standards);no leaf rehydration;299.16;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;42327;adult;with petiole and rachis;282.99;345.69;218.94;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608905;Hessdalen 23;6951947 Poa angustifolia;actual measurement;leaf rehydration;443;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42678;adult;without petiole and rachis;443;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Poa angustifolia;actual measurement;leaf rehydration;406;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42678;adult;without petiole and rachis;406;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Poa annua;actual measurement;leaf rehydration;227;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;43060;adult;without petiole and rachis;232.06;304.09;172.04;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Poa annua;actual measurement;leaf rehydration;275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43060;adult;without petiole and rachis;275;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Poa annua;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43060;adult;without petiole and rachis;221;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Poa annua;actual measurement;leaf rehydration;242;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43060;adult;without petiole and rachis;242;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Poa bulbosa;actual measurement (following LEDA data standards);no leaf rehydration;215.06;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42340;adult;with petiole and rachis;210.9;235.8;178.3;3;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Poa compressa;actual measurement;leaf rehydration;308;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42683;adult;without petiole and rachis;308;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Poa compressa;actual measurement;leaf rehydration;299;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42683;adult;without petiole and rachis;299;;;2;;;;1996-09-04 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Poa compressa;actual measurement;leaf rehydration;240;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42683;adult;without petiole and rachis;240;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Treeton, S Yks; Poa glauca;actual measurement (following LEDA data standards);no leaf rehydration;249.51;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;43601;adult;with petiole and rachis;249.39;273.9;219.09;1;;;;2005-07-06 00:00:00.0;Preaggregated data obtained from single record. ;;G4.4 - Mixed [Pinus sylvestris] - [Betula] woodland;NORWAY;32;570500;Trondheim 07;7034500 Poa nemoralis;actual measurement;leaf rehydration;393;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42334;adult;without petiole and rachis;393;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Poa nemoralis;actual measurement;leaf rehydration;245;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42334;adult;without petiole and rachis;245;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Poa palustris;actual measurement (following LEDA data standards);no leaf rehydration;334.45;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43610;adult;with petiole and rachis;378.14;476.19;323.79;1;;;0;2003-07-29 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Poa pratensis;actual measurement;leaf rehydration;342;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42677;adult;without petiole and rachis;342;;;2;;;;;;;;UNITED KINGDOM;;;; Poa pratensis;actual measurement;leaf rehydration;299;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42677;adult;without petiole and rachis;299;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Poa pratensis;actual measurement;leaf rehydration;283.36;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;42677;adult;without petiole and rachis;282.08;351.69;246.18;2;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348358;national park Müritz;5924824 Poa pratensis;actual measurement;leaf rehydration;310;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42677;adult;without petiole and rachis;310;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Doe Lea; Poa trivialis;actual measurement (following LEDA data standards);no leaf rehydration;407.08;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43077;adult;with petiole and rachis;407.08;407.08;407.08;1;;;0;2003-07-29 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Poa trivialis;actual measurement;leaf rehydration;226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43077;adult;without petiole and rachis;226;;;2;;;;;;;;UNITED KINGDOM;;;; Poa trivialis;actual measurement;leaf rehydration;124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43077;adult;without petiole and rachis;124;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Polemonium caeruleum;actual measurement;leaf rehydration;172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28181;adult;without petiole and rachis;172;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Polemonium caeruleum;actual measurement;leaf rehydration;158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28181;adult;without petiole and rachis;158;;;1;;;;1997-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Polygala amarella;actual measurement (following LEDA data standards);no leaf rehydration;229.28;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);28146;adult;with petiole and rachis;226.36;254.26;203.68;1;;;;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. Rosette leaves;;E1.2 - Perennial calcareous grassland and basic steppes;SWEDEN;34;366797;Gotland, Boge;6396734 Polygala amarella;actual measurement (following LEDA data standards);no leaf rehydration;143.82;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28146;adult;with petiole and rachis;149.42;171.27;138.77;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Polygala amarella;actual measurement (following LEDA data standards);no leaf rehydration;195.49;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);28146;adult;with petiole and rachis;194.15;219.22;166.09;1;;;;2005-06-11 00:00:00.0;Preaggregated data obtained from single record. Stem leaves;;E1.2 - Perennial calcareous grassland and basic steppes;SWEDEN;34;366797;Gotland, Boge;6396734 Polygala serpyllifolia;actual measurement (following LEDA data standards);no leaf rehydration;195.59;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28082;adult;with petiole and rachis;201.32;229.58;184.51;5;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;433296;P 511 Haslach - Obersimonsw?er Tal, Black forest;5330362 Polygala serpyllifolia;actual measurement (following LEDA data standards);no leaf rehydration;180.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28082;adult;with petiole and rachis;173.95;198.8;132.5;2;;;0;2004-06-02 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;425825;"P 265 NSG Grundmoränensee ""Schwarzes Moor"" / Landkreis Wittmund";5918639 Polygala serpyllifolia;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28082;adult;without petiole and rachis;221;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Polygala vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;173.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28062;adult;with petiole and rachis;173.63;196.34;152.85;2;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. determinated as Polygala vulgaris ssp. collina;;B1.8 - Moist and wet dune slacks;GERMANY;32;352188;P 268 Borkum (NO), National park Niedersächsiches Wattenmeer;5941821 Polygala vulgaris;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28062;adult;without petiole and rachis;255;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Polygala vulgaris;actual measurement;leaf rehydration;235;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28062;adult;without petiole and rachis;235;;;1;;;;1997-07-17 00:00:00.0;;;;UNITED KINGDOM;;;Long Dale; Polygonatum multiflorum;laboratory/greenhouse/garden experiment;no leaf rehydration;148.21;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38075;adult;with petiole and rachis;148.12;168.68;132.44;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Polygonatum odoratum;actual measurement (following LEDA data standards);no leaf rehydration;167.22;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38076;adult;with petiole and rachis;164.98;175.69;148.93;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Polygonatum verticillatum;laboratory/greenhouse/garden experiment;no leaf rehydration;147.63;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38518;adult;with petiole and rachis;150.02;169.48;139.11;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Polygonum amphibium;actual measurement (following LEDA data standards);no leaf rehydration;257.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;27725;adult;without petiole and rachis;256.88;275.96;237.77;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Polygonum amphibium;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27725;adult;without petiole and rachis;244;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Bradwell; Polygonum amphibium;actual measurement;leaf rehydration;233;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27725;adult;without petiole and rachis;233;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Polygonum amphibium;actual measurement;leaf rehydration;234;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27725;adult;without petiole and rachis;234;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Polygonum aviculare;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27740;adult;without petiole and rachis;221;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Polygonum aviculare;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27740;adult;without petiole and rachis;194;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Polygonum bistorta;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27743;adult;without petiole and rachis;156;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Wormhill, Derbys; Polygonum hydropiper;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27636;adult;without petiole and rachis;221;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Polygonum hydropiper;actual measurement;leaf rehydration;146;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27636;adult;without petiole and rachis;146;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Polygonum hydropiper;actual measurement;leaf rehydration;161;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27636;adult;without petiole and rachis;161;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Polygonum lapathifolium;actual measurement;leaf rehydration;206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27747;adult;without petiole and rachis;206;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Polygonum lapathifolium;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27747;adult;without petiole and rachis;256;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Polygonum lapathifolium;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27747;adult;without petiole and rachis;221;;;1;;;;1997-07-25 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Polygonum lapathifolium;actual measurement;leaf rehydration;226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27747;adult;without petiole and rachis;226;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Polygonum minus;actual measurement (following LEDA data standards);no leaf rehydration;233.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;27653;adult;without petiole and rachis;231.03;247.48;213.47;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Polygonum minus;actual measurement;leaf rehydration;175;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27653;adult;without petiole and rachis;175;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Polygonum minus;actual measurement (following LEDA data standards);no leaf rehydration;127.17;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;27653;adult;with petiole and rachis;131.11;151.61;115.85;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;NETHERLANDS;;;Gasterse Duinen; Polygonum minus;actual measurement (following LEDA data standards);no leaf rehydration;180.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27653;adult;with petiole and rachis;192.31;310.58;156.11;2;;;0;2004-09-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;442302;P 483 NSG Ahlhorner Fischteiche, Landkreis Oldenburg;5864940 Polygonum mite;actual measurement (following LEDA data standards);no leaf rehydration;154.07;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;27654;adult;with petiole and rachis;147.78;176.42;119.22;2;;;0;2005-08-27 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;NETHERLANDS;;;Eelde; Polygonum mite;actual measurement;leaf rehydration;192;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27654;adult;without petiole and rachis;192;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Polygonum persicaria;actual measurement;leaf rehydration;215;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27673;adult;without petiole and rachis;215;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Polygonum persicaria;actual measurement;leaf rehydration;191;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27673;adult;without petiole and rachis;191;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Polygonum viviparum;actual measurement (following LEDA data standards);no leaf rehydration;241.8;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;27573;adult;with petiole and rachis;245.38;269.8;228.1;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Polygonum viviparum;actual measurement (following LEDA data standards);no leaf rehydration;219.1;12;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;27573;adult;with petiole and rachis;233.41;336.7;102.3;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Polypodium interjectum;actual measurement (following LEDA data standards);no leaf rehydration;299.87;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;86;adult;with petiole and rachis;299.09;323.11;269.11;1;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. one frond per plant;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;;P 238 NSG Ölberg bei Bollschweil/ limestone rock; Polypodium interjectum;actual measurement (following LEDA data standards);no leaf rehydration;295.6;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;86;adult;without petiole and rachis;296.48;326.31;264.72;1;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. one frond per plant;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;;P 238 NSG Ölberg bei Bollschweil/ limestone rock; Polypodium vulgare;actual measurement;leaf rehydration;290;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;71;adult;without petiole and rachis;290;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Hassop; Polypodium vulgare;actual measurement;leaf rehydration;288;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;71;adult;without petiole and rachis;288;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Polystichum aculeatum;actual measurement (following LEDA data standards);no leaf rehydration;273.46;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;337;adult;without petiole and rachis;272.52;307.66;235.5;2;;;10;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;430878;P 351 Ravennaschlucht, Fuss der alten Eisenbahnbrücke, Black forest;5307517 Polystichum aculeatum;actual measurement (following LEDA data standards);no leaf rehydration;267.71;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;337;adult;with petiole and rachis;264.84;292.46;231.46;2;;;10;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;430878;P 351 Ravennaschlucht, Fuss der alten Eisenbahnbrücke, Black forest;5307517 Polystichum aculeatum;actual measurement;leaf rehydration;356;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;337;adult;without petiole and rachis;356;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Polystichum lonchitis;actual measurement (following LEDA data standards);no leaf rehydration;307.8;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);326;adult;with petiole and rachis;304.19;325.68;262.11;1;;;;2005-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;G4.2 - Mixed taiga woodland with [Betula];NORWAY;32;518307;Rindal 09;6993761 Pontederia cordata;actual measurement (following LEDA data standards);no leaf rehydration;133.46;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;44064;adult;with petiole and rachis;130.63;139.26;111.76;2;;;1;2005-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;C1 - Surface standing waters;NETHERLANDS;;;Assen, garden Manja/Joop; Populus nigra;actual measurement (following LEDA data standards);no leaf rehydration;306.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32673;adult;with petiole and rachis;309.79;353.65;273.94;2;;;0;2004-09-10 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-14 Munich disused railway network, Bavaria; Populus nigra;actual measurement (following LEDA data standards);no leaf rehydration;303.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32673;adult;without petiole and rachis;305.61;347.85;267.76;2;;;0;2004-09-10 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-14 Munich disused railway network, Bavaria; Populus tremula;actual measurement (following LEDA data standards);no leaf rehydration;348.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32680;adult;with petiole and rachis;349.52;388.44;302.13;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;G5.2 - Small broadleaved deciduous anthropogenic woodlands;GERMANY;32;571308;P 287 NSG Unteres Seevetal, near river Elbe (Lower Saxony);5918300 Populus tremula;actual measurement (following LEDA data standards);no leaf rehydration;357.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32680;adult;without petiole and rachis;359.59;412.98;304.62;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;G5.2 - Small broadleaved deciduous anthropogenic woodlands;GERMANY;32;571308;P 287 NSG Unteres Seevetal, near river Elbe (Lower Saxony);5918300 Populus tremula;actual measurement (following LEDA data standards);no leaf rehydration;390.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32680;adult;without petiole and rachis;387.98;425.41;334.38;2;;;0;2004-09-08 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-12 Munich disused railway network, Bavaria; Populus tremula;actual measurement (following LEDA data standards);no leaf rehydration;382.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32680;adult;with petiole and rachis;383.55;431.41;350.9;2;;;0;2004-09-08 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-12 Munich disused railway network, Bavaria; Portulaca oleracea;actual measurement (following LEDA data standards);no leaf rehydration;109.57;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27501;adult;with petiole and rachis;107.63;120.08;93.24;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Portulaca oleracea;actual measurement (following LEDA data standards);no leaf rehydration;108.27;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27501;adult;without petiole and rachis;104.28;115.87;88.69;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Potamogeton acutifolius;actual measurement (following LEDA data standards);no leaf rehydration;288.57;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43950;adult;with petiole and rachis;288.57;288.57;288.57;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;617740.5081;P5 Kiesgrube im Dummersdorfer Hinterland (Lübeck/ near Baltic Sea);5975590.635 Potamogeton alpinus;actual measurement (following LEDA data standards);no leaf rehydration;162.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43951;adult;with petiole and rachis;165.07;227.93;127.66;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;455832.674;P3 NSG Poggenpohler Moor (Landkreis Oldenburg);5867526.05 Potamogeton alpinus;actual measurement (following LEDA data standards);no leaf rehydration;170.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43951;adult;with petiole and rachis;170.35;199.08;127.52;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;404150.3552;P2 Südradde (Emsland);5838871.517 Potamogeton berchtoldii;actual measurement;leaf rehydration;100;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43955;adult;without petiole and rachis;100;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Potamogeton berchtoldii;actual measurement;leaf rehydration;184;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43955;adult;without petiole and rachis;184;;;1;;;;1997-08-11 00:00:00.0;;;;UNITED KINGDOM;;;Shirebrook; Potamogeton compressus;actual measurement (following LEDA data standards);no leaf rehydration;171.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43962;adult;with petiole and rachis;161.79;201.6;104.66;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;457848;P 315 Landkreis Wesermarsch;5894399 Potamogeton crispus;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43966;adult;without petiole and rachis;181;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Potamogeton crispus;actual measurement;leaf rehydration;158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43966;adult;without petiole and rachis;158;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Potamogeton crispus;actual measurement;leaf rehydration;109;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43966;adult;without petiole and rachis;109;;;2;;;;1996-09-26 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Potamogeton gramineus;actual measurement (following LEDA data standards);no leaf rehydration;208.16;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43975;adult;with petiole and rachis;208.45;253.03;156.12;4;;;0;2005-07-14 00:00:00.0;Preaggregated data obtained from single record. submersed leaves without petioles;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;;;P 544 Ahlder Bach near Engden/Drievorden, closely to Nordhorn, SW - Lower Saxony; Potamogeton gramineus;actual measurement (following LEDA data standards);no leaf rehydration;170.74;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43975;adult;with petiole and rachis;166.55;183.17;148.63;2;;;0;2005-07-14 00:00:00.0;Preaggregated data obtained from single record. floating leaves;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;;;P 544 Ahlder Bach near Engden/Drievorden, closely to Nordhorn, SW - Lower Saxony; Potamogeton gramineus;actual measurement (following LEDA data standards);no leaf rehydration;191.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43975;adult;with petiole and rachis;188.22;222.64;124.7;4;;;0;2005-07-14 00:00:00.0;Preaggregated data obtained from single record. submersed leaves with petioles;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;;;P 544 Ahlder Bach near Engden/Drievorden, closely to Nordhorn, SW - Lower Saxony; Potamogeton lucens;actual measurement (following LEDA data standards);no leaf rehydration;182.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43923;adult;with petiole and rachis;180.36;202.12;162.86;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;455962;P 401 NSG Germersheimer Gräben, Oberrheinebene (Rhine), Rheinland-Pfalz;5452418 Potamogeton natans;actual measurement (following LEDA data standards);no leaf rehydration;205.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;43926;adult;without petiole and rachis;202.05;219.51;176.41;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Potamogeton natans;actual measurement;leaf rehydration;260;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43926;adult;without petiole and rachis;260;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Stony Middleton; Potamogeton natans;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43926;adult;without petiole and rachis;151;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Renishaw; Potamogeton nodosus;actual measurement (following LEDA data standards);no leaf rehydration;169.57;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43933;adult;with petiole and rachis;176.62;240.46;122.12;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;450270;P 394 NSG Mörsch-Dreispitz, Oberrheinebene (Rhine);5423284 Potamogeton nodosus;actual measurement (following LEDA data standards);no leaf rehydration;169.93;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43933;adult;without petiole and rachis;177.29;233.43;125.11;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;450270;P 394 NSG Mörsch-Dreispitz, Oberrheinebene (Rhine);5423284 Potamogeton nodosus;actual measurement (following LEDA data standards);no leaf rehydration;116.9;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43933;adult;with petiole and rachis;112.5;122.47;99.93;2;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;;;P 477 Emsschleife near Lingen; Potamogeton nodosus;actual measurement (following LEDA data standards);no leaf rehydration;124.86;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43933;adult;without petiole and rachis;122.99;134.79;112.13;2;;;0;2004-09-07 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;;;P 477 Emsschleife near Lingen; Potamogeton obtusifolius;actual measurement (following LEDA data standards);leaf rehydration;254.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43936;adult;with petiole and rachis;241.19;274.76;124;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453798.488;P 15 Bornhorster Wiesen/ Gräben (Oldenburg/Hunte-Wiesen);5891054.635 Potamogeton pectinatus;actual measurement (following LEDA data standards);leaf rehydration;240.83;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43938;adult;with petiole and rachis;218.99;250;166.15;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453798.488;P 15 Bornhorster Wiesen/ Gräben (Oldenburg/Hunte-Wiesen);5891054.635 Potamogeton pectinatus;actual measurement;leaf rehydration;156;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43938;adult;without petiole and rachis;156;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Potamogeton perfoliatus;actual measurement (following LEDA data standards);no leaf rehydration;184.81;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43943;adult;with petiole and rachis;189.12;208.26;173.95;1;;;0;2003-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;583214.7008;P1 Unteres Elbtal, Angelteich;5916354.511 Potamogeton polygonifolius;actual measurement (following LEDA data standards);no leaf rehydration;129.21;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43944;adult;with petiole and rachis;130.27;146.05;116.6;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;455832.674;P3 NSG Poggenpohler Moor (Landkreis Oldenburg);5867526.05 Potamogeton polygonifolius;actual measurement (following LEDA data standards);no leaf rehydration;156.45;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43944;adult;without petiole and rachis;151.73;165.59;128.45;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;455832.674;P3 NSG Poggenpohler Moor (Landkreis Oldenburg);5867526.05 Potamogeton polygonifolius;actual measurement;leaf rehydration;224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43944;adult;without petiole and rachis;224;;;1;;;;1997-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Bretton Clough; Potamogeton pusillus;actual measurement (following LEDA data standards);no leaf rehydration;304.69;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43890;adult;with petiole and rachis;345.35;438.1;293.27;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;617740.5081;P5 Kiesgrube im Dummersdorfer Hinterland (Lübeck/ near Baltic Sea);5975590.635 Potamogeton pusillus;actual measurement (following LEDA data standards);no leaf rehydration;334.37;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43890;adult;with petiole and rachis;334.37;334.37;334.37;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;452517.0008;P4 a ditch closed to NSG Gellner Torfmöorte / Landkreis Oldenburg ;5892134.203 Potamogeton trichoides;actual measurement (following LEDA data standards);no leaf rehydration;234.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43903;adult;with petiole and rachis;237.13;318.18;147.29;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;451161.5432;P2 Kl. Bornhorster See (Oldenburg);5892748.957 Potentilla alba;actual measurement (following LEDA data standards);no leaf rehydration;310.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30128;adult;with petiole and rachis;310.6;331.14;298.98;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;504761;P 388 Höhebühl closely to Bitz/ Truchtelfingen-Albstadt, Schwabian Alb;5343207 Potentilla alba;actual measurement (following LEDA data standards);no leaf rehydration;348.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30128;adult;without petiole and rachis;351.15;387.6;332.86;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;504761;P 388 Höhebühl closely to Bitz/ Truchtelfingen-Albstadt, Schwabian Alb;5343207 Potentilla anglica;actual measurement (following LEDA data standards);no leaf rehydration;234.76;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31198;adult;with petiole and rachis;241.51;300.95;200.53;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;32;409027;P 532 Bagbander Tief, NW - Lower Saxony;5912192 Potentilla anserina;actual measurement;leaf rehydration;293;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29712;adult;without petiole and rachis;293;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Potentilla anserina;actual measurement;leaf rehydration;269;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29712;adult;without petiole and rachis;269;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Potentilla anserina;actual measurement;leaf rehydration;187.99;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;29712;adult;without petiole and rachis;187.62;222.41;149.04;2;;;0;2003-06-11 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349631;national park Müritz;5924067 Potentilla anserina;actual measurement;leaf rehydration;178.71;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;29712;adult;with petiole and rachis;174.87;215.41;133.11;2;;;0;2003-06-11 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349631;national park Müritz;5924067 Potentilla argentea;actual measurement;leaf rehydration;262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30642;adult;without petiole and rachis;262;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Potentilla aurea;actual measurement (following LEDA data standards);no leaf rehydration;248.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29716;adult;with petiole and rachis;250.7;269.67;221.49;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E4.3 - Acid alpine and subalpine grassland;GERMANY;32;426794;P 373 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303639 Potentilla cinerea;actual measurement (following LEDA data standards);no leaf rehydration;357.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30603;adult;with petiole and rachis;362.26;409.26;333.78;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Potentilla cinerea;actual measurement (following LEDA data standards);no leaf rehydration;366.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30603;adult;without petiole and rachis;369.9;419.08;341.6;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Potentilla cinerea;actual measurement (following LEDA data standards);no leaf rehydration;357.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30603;adult;with petiole and rachis;362.26;409.26;333.78;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Potentilla cinerea;actual measurement (following LEDA data standards);no leaf rehydration;366.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30603;adult;without petiole and rachis;369.9;419.08;341.6;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Potentilla crantzii;actual measurement (following LEDA data standards);no leaf rehydration;326.8;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;29387;adult;with petiole and rachis;318;405.5;228.8;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Potentilla erecta;actual measurement;leaf rehydration;325;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30927;adult;without petiole and rachis;325;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Potentilla erecta;actual measurement;leaf rehydration;311;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30927;adult;without petiole and rachis;311;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Potentilla erecta;actual measurement;leaf rehydration;275.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;30927;adult;without petiole and rachis;296.94;498.42;259.49;2;;;0;2003-06-13 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349623;national park Müritz;5923964 Potentilla heptaphylla;actual measurement (following LEDA data standards);no leaf rehydration;368.36;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29728;adult;with petiole and rachis;375.25;389.14;368.26;2;;;0;2005-05-20 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;402856;P 503a Kaiserstuhl, near Schelingen, Baden-W?emberg;5328967 Potentilla intermedia;actual measurement (following LEDA data standards);no leaf rehydration;310.4;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30887;adult;with petiole and rachis;317.78;363.32;301.93;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449135.354;x, P8 NSG Krusenbusch (Oldenburg);5883496.659 Potentilla intermedia;actual measurement (following LEDA data standards);no leaf rehydration;266.75;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30887;adult;without petiole and rachis;264.96;288.46;237.88;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P2 NSG Krusenbusch (Oldenburg);5883035.844 Potentilla intermedia;actual measurement (following LEDA data standards);no leaf rehydration;267.58;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30887;adult;with petiole and rachis;268.99;283.75;257.06;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P2 NSG Krusenbusch (Oldenburg);5883035.844 Potentilla intermedia;actual measurement (following LEDA data standards);no leaf rehydration;307.74;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30887;adult;without petiole and rachis;310.73;329.57;295.77;1;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449135.354;x, P8 NSG Krusenbusch (Oldenburg);5883496.659 Potentilla norvegica;laboratory/greenhouse/garden experiment;no leaf rehydration;244.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29685;adult;with petiole and rachis;242.38;266.64;205.48;2;;;0;2004-10-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Potentilla norvegica;laboratory/greenhouse/garden experiment;no leaf rehydration;252.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29685;adult;without petiole and rachis;257.85;292.21;212.05;2;;;0;2004-10-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Potentilla palustris;actual measurement (following LEDA data standards);no leaf rehydration;264.86;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;30328;adult;without petiole and rachis;263.54;293.56;219.68;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Potentilla recta;actual measurement (following LEDA data standards);no leaf rehydration;329.86;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29349;adult;with petiole and rachis;328.64;353.05;304.3;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P1 NSG Krusenbusch (Oldenburg);5883035.844 Potentilla recta;actual measurement (following LEDA data standards);no leaf rehydration;319.08;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29349;adult;without petiole and rachis;321;340.66;300.12;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P1 NSG Krusenbusch (Oldenburg);5883035.844 Potentilla recta;actual measurement (following LEDA data standards);no leaf rehydration;349.39;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29349;adult;with petiole and rachis;358.55;384.54;339.14;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P2 NSG Krusenbusch (Oldenburg);5883035.844 Potentilla recta;actual measurement;leaf rehydration;208;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29349;adult;without petiole and rachis;208;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Potentilla recta;actual measurement;leaf rehydration;278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29349;adult;without petiole and rachis;278;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Potentilla recta;actual measurement (following LEDA data standards);no leaf rehydration;329.56;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29349;adult;without petiole and rachis;329.73;347.47;308.13;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P2 NSG Krusenbusch (Oldenburg);5883035.844 Potentilla reptans;actual measurement;leaf rehydration;246;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30622;adult;without petiole and rachis;246;;;2;;;;;;;;UNITED KINGDOM;;;; Potentilla reptans;actual measurement;leaf rehydration;241;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30622;adult;without petiole and rachis;241;;;2;;;;;;;;UNITED KINGDOM;;;; Potentilla reptans;actual measurement;leaf rehydration;230.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;30622;adult;with petiole and rachis;232.54;266.01;191.19;2;;;0;2003-06-11 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E1 - Dry grasslands;GERMANY;33;349886;national park Müritz;5924209 Potentilla reptans;actual measurement;leaf rehydration;245.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;30622;adult;without petiole and rachis;246.39;281.09;205.92;2;;;0;2003-06-11 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E1 - Dry grasslands;GERMANY;33;349886;national park Müritz;5924209 Potentilla rupestris;actual measurement (following LEDA data standards);no leaf rehydration;305.06;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29693;adult;with petiole and rachis;302.84;359.12;250.1;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1 - Dry grasslands;FRANCE;32;387073;P 258 Trockenrasen im Mittelwald (Wolfgartzen/Alsace);5321569 Potentilla rupestris;actual measurement (following LEDA data standards);no leaf rehydration;306.24;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29693;adult;with petiole and rachis;307.59;372.62;245.84;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1 - Dry grasslands;FRANCE;32;387073;P 258 Trockenrasen im Mittelwald (Wolfgartzen/Alsace);5321569 Potentilla sterilis;actual measurement;leaf rehydration;250;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30583;adult;without petiole and rachis;250;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Potentilla tabernaemontani;actual measurement;leaf rehydration;334;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30295;adult;without petiole and rachis;334;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Potentilla tabernaemontani;actual measurement;leaf rehydration;302;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30295;adult;without petiole and rachis;302;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Potentilla tabernaemontani;actual measurement;leaf rehydration;315;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30295;adult;without petiole and rachis;315;;;1;;;;1997-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Monks Dale; Prenanthes purpurea;actual measurement (following LEDA data standards);no leaf rehydration;123.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9532;adult;with petiole and rachis;124.26;135.94;113.91;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;G3.1 - [Abies] and [Picea] woodland;GERMANY;32;431028;P 350 Ravennaschlucht, Black forest (Baden-Württemberg);5307908 Primula auricula;actual measurement (following LEDA data standards);no leaf rehydration;75.74;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28913;adult;with petiole and rachis;77.45;89.57;67.04;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;426823;P 368 Höllental, Hirschsprung, Black forest;5309802 Primula elatior;actual measurement (following LEDA data standards);no leaf rehydration;134.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29086;adult;with petiole and rachis;134.15;165.64;114.67;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437164;P 216 Gristede (Landkreis Ammerland);5898308 Primula elatior;actual measurement (following LEDA data standards);no leaf rehydration;143.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29086;adult;without petiole and rachis;144.68;171.96;124.53;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437164;P 216 Gristede (Landkreis Ammerland);5898308 Primula farinosa;actual measurement (following LEDA data standards);no leaf rehydration;172.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28915;adult;with petiole and rachis;174.21;224.1;147.94;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;503124;P 521 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5288687 Primula veris;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28858;adult;without petiole and rachis;225;;;2;;;;;;;;UNITED KINGDOM;;;; Primula veris;actual measurement;leaf rehydration;222;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28858;adult;without petiole and rachis;222;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Primula veris;actual measurement;leaf rehydration;197;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28858;adult;without petiole and rachis;197;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Primula vulgaris;actual measurement;leaf rehydration;154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28981;adult;without petiole and rachis;154;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Prunella grandiflora;laboratory/greenhouse/garden experiment;no leaf rehydration;174.37;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23985;adult;with petiole and rachis;179.07;201.91;164.21;2;;;0;2005-07-05 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Prunella vulgaris;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24350;adult;without petiole and rachis;165;;;2;;;;;;;;UNITED KINGDOM;;;; Prunella vulgaris;actual measurement;leaf rehydration;147;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24350;adult;without petiole and rachis;147;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Prunella vulgaris;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24350;adult;without petiole and rachis;142;;;2;;;;;;;;UNITED KINGDOM;;;; Prunella vulgaris;actual measurement;leaf rehydration;187.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;24350;adult;without petiole and rachis;181.94;202.35;148.58;2;;;0;2003-06-28 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348957;national park Müritz;5924696 Prunella vulgaris;actual measurement;leaf rehydration;180.75;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;24350;adult;with petiole and rachis;178.06;204.45;147.61;2;;;0;2003-06-28 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348957;national park Müritz;5924696 Prunus cerasus;actual measurement (following LEDA data standards);no leaf rehydration;314.47;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29305;adult;with petiole and rachis;317.59;346.98;268.17;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;32;399869;P 367 Lößhohlweg Eichgasse (Kaiserstuhl) / Baden-Württemberg;5325963 Prunus cerasus;actual measurement (following LEDA data standards);no leaf rehydration;322.23;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29305;adult;without petiole and rachis;326.86;365.56;276.69;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;32;399869;P 367 Lößhohlweg Eichgasse (Kaiserstuhl) / Baden-Württemberg;5325963 Prunus laurocerasus;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29962;adult;without petiole and rachis;263;;;5;3.4;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Hathersage; Prunus laurocerasus;actual measurement;leaf rehydration;297;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29962;adult;without petiole and rachis;297;;;5;7.2;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Hathersage; Prunus laurocerasus;actual measurement;leaf rehydration;279;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29962;adult;without petiole and rachis;279;;;5;10.5;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Peter Dale; Prunus laurocerasus;actual measurement;leaf rehydration;231;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29962;adult;without petiole and rachis;231;;;5;10.7;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Peter Dale; Prunus lusitanica;actual measurement;leaf rehydration;322;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29971;adult;without petiole and rachis;322;;;5;5.5;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Prunus lusitanica;actual measurement;leaf rehydration;298;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29971;adult;without petiole and rachis;298;;;5;5;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Prunus lusitanica;actual measurement;leaf rehydration;312;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29971;adult;without petiole and rachis;312;;;5;8.5;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Prunus lusitanica;actual measurement;leaf rehydration;301;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29971;adult;without petiole and rachis;301;;;5;4.8;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Prunus mahaleb;actual measurement (following LEDA data standards);no leaf rehydration;230.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29650;adult;with petiole and rachis;232.63;262.18;214.58;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;395240;P 245 a gravel pit, old, abandonded, closely to Bremgarten/Oberrheinebene (upper Rhine valley);5305679 Prunus mahaleb;actual measurement (following LEDA data standards);no leaf rehydration;229.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29650;adult;without petiole and rachis;230.26;260.86;200.71;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;395240;P 245 a gravel pit, old, abandonded, closely to Bremgarten/Oberrheinebene (upper Rhine valley);5305679 Prunus mahaleb;field experiment;leaf rehydration;326;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29650;adult;without petiole and rachis;326;;;10;5;5;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Prunus mahaleb;field experiment;leaf rehydration;354;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29650;adult;without petiole and rachis;354;;;10;7;7;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Prunus mahaleb;field experiment;leaf rehydration;304;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29650;adult;without petiole and rachis;304;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Prunus padus;actual measurement (following LEDA data standards);no leaf rehydration;267.64;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;30306;adult;with petiole and rachis;265.9;287.05;246.39;1;;;;2005-06-20 00:00:00.0;Preaggregated data obtained from single record. ;;G1.1 - Riparian [Salix]. [Alnus] and [Betula] woodland;NORWAY;32;572830;Trondheim 08;7033302 Prunus padus;actual measurement (following LEDA data standards);no leaf rehydration;366.17;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30306;adult;without petiole and rachis;367.81;392.17;347.26;2;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;440514;P 327 Mansholter Forst / Landkreis Ammerland;5897734 Prunus padus;actual measurement (following LEDA data standards);no leaf rehydration;340.84;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;30306;adult;with petiole and rachis;342.13;364.65;309.13;1;;;1;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;NETHERLANDS;;;Vosbergen; Prunus padus;actual measurement (following LEDA data standards);no leaf rehydration;362.62;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30306;adult;with petiole and rachis;364.03;386.66;345.17;2;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;440514;P 327 Mansholter Forst / Landkreis Ammerland;5897734 Prunus serotina;actual measurement (following LEDA data standards);no leaf rehydration;327.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29315;adult;with petiole and rachis;327.86;377.69;272.17;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;G5.2 - Small broadleaved deciduous anthropogenic woodlands;GERMANY;32;571308;P 287 NSG Unteres Seevetal, near river Elbe (Lower Saxony);5918300 Prunus serotina;actual measurement (following LEDA data standards);no leaf rehydration;339.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29315;adult;without petiole and rachis;337.12;389.03;276.27;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. ;;G5.2 - Small broadleaved deciduous anthropogenic woodlands;GERMANY;32;571308;P 287 NSG Unteres Seevetal, near river Elbe (Lower Saxony);5918300 Prunus serotina;actual measurement (following LEDA data standards);no leaf rehydration;257.55;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;29315;adult;with petiole and rachis;249.21;273.75;209.01;2;;;1;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;NETHERLANDS;;;Vosbergen; Prunus spinosa;actual measurement;leaf rehydration;240;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29316;adult;without petiole and rachis;240;;;5;7.9;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Prunus spinosa;actual measurement;leaf rehydration;268;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29316;adult;without petiole and rachis;268;;;5;8.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Prunus spinosa;field experiment;leaf rehydration;382;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29316;adult;without petiole and rachis;382;;;10;13;13;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Prunus spinosa;field experiment;leaf rehydration;364;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29316;adult;without petiole and rachis;364;;;10;14;14;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Pseudofumaria lutea;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;45589;adult;without petiole and rachis;170;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Pseudorchis albida;actual measurement (following LEDA data standards);no leaf rehydration;123.79;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;39803;adult;with petiole and rachis;128.96;146.82;114.2;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E4.3 - Acid alpine and subalpine grassland;GERMANY;32;426365;P 374 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303435 Pteridium aquilinum;actual measurement;leaf rehydration;338;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;250;adult;without petiole and rachis;338;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Pteridium aquilinum;actual measurement;leaf rehydration;258;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;250;adult;without petiole and rachis;258;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Puccinellia distans;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42706;adult;without petiole and rachis;198;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Puccinellia distans;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42706;adult;without petiole and rachis;160;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Ringinglow; Puccinellia distans s. borealis;actual measurement (following LEDA data standards);no leaf rehydration;193.55;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;43427;adult;with petiole and rachis;194.24;224.68;175.93;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Lauwersmeer; Puccinellia maritima;actual measurement (following LEDA data standards);no leaf rehydration;203.78;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;43436;adult;with petiole and rachis;197.65;231.11;159.66;2;;;0;2003-09-09 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;DENMARK;;;Skallingen; Puccinellia maritima;actual measurement;leaf rehydration;193;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43436;adult;without petiole and rachis;193;;;1;;;;1997-06-06 00:00:00.0;;;;UNITED KINGDOM;;;Widnes; Puccinellia rupestris;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42933;adult;without petiole and rachis;255;;;1;;;;1997-09-01 00:00:00.0;;;;UNITED KINGDOM;;;Maldon, Essex; Pulicaria dysenterica;actual measurement;leaf rehydration;147;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9613;adult;without petiole and rachis;147;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Laughton Common; Pulicaria dysenterica;actual measurement;leaf rehydration;138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9613;adult;without petiole and rachis;138;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Pulicaria vulgaris;laboratory/greenhouse/garden experiment;no leaf rehydration;139.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10384;adult;with petiole and rachis;142.71;161.96;124.77;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Pulmonaria obscura;actual measurement (following LEDA data standards);no leaf rehydration;140.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11795;adult;with petiole and rachis;141.72;161.2;128.47;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 240 Ölberg; Pulmonaria obscura;actual measurement (following LEDA data standards);no leaf rehydration;144.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11795;adult;without petiole and rachis;146.03;163.64;137.08;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 240 Ölberg; Pulmonaria officinalis;actual measurement (following LEDA data standards);no leaf rehydration;114.2;6;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;11796;adult;with petiole and rachis;118.97;146.63;109.58;2;;;1;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Pulsatilla pratensis;actual measurement (following LEDA data standards);no leaf rehydration;321.13;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27054;adult;with petiole and rachis;330.02;379.42;292.85;2;;;0;2004-08-31 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;33;418407;P 459 Kaakstedt Biosphärenreservat Schorfheide-Chorin (Brandenburg);5891984 Pulsatilla vernalis;actual measurement (following LEDA data standards);no leaf rehydration;260.65;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;27063;adult;with petiole and rachis;258.81;282.07;232.77;1;;;;2005-06-26 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;531207;Dovre;6907736 Pulsatilla vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;220.36;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;27065;adult;with petiole and rachis;223.95;247.68;204.76;2;;;1;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Pulsatilla vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;234.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27065;adult;with petiole and rachis;237.21;265.6;219.32;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;401334;P 359 NSG Badberg (Kaiserstuhl) / Baden-Württemberg;5327521 Pulsatilla vulgaris;actual measurement;leaf rehydration;234;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27065;adult;without petiole and rachis;234;;;1;;;;1997-09-03 00:00:00.0;;;;UNITED KINGDOM;;;Barnack, Northhants; Pulsatilla vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;246.79;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;27065;adult;with petiole and rachis;248.29;261.1;233.61;2;;;0;2005-06-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;SWEDEN;;;Gotland; Pyrola minor;actual measurement (following LEDA data standards);no leaf rehydration;267.55;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;28775;adult;with petiole and rachis;275.98;337.5;231.3;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Pyrola minor;actual measurement (following LEDA data standards);no leaf rehydration;310;14;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;28775;adult;with petiole and rachis;307.63;358.8;259;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Pyrola minor;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28775;adult;without petiole and rachis;255;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Pyrola minor;actual measurement (following LEDA data standards);no leaf rehydration;267.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28775;adult;with petiole and rachis;276.94;331.79;244.01;2;;;0;2004-05-10 00:00:00.0;Preaggregated data obtained from single record. ;;G1.9 - Non-riverine woodland with [Betula]. [Populus tremula]. [Sorbus aucuparia] or [Corylus avellana];GERMANY;32;;P 219 Sauerland (Nordrhein-Westfalen); Pyrola rotundifolia;actual measurement (following LEDA data standards);no leaf rehydration;250.29;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;28777;adult;with petiole and rachis;245.05;274.63;207.98;2;;;0;2003-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;NETHERLANDS;;;Terschelling; Quercus cerris;actual measurement;leaf rehydration;306;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22497;adult;without petiole and rachis;306;;;5;8.8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Dinnington; Quercus ilex;actual measurement;no leaf rehydration;557.38;20;1;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];22435;unknown;without petiole and rachis;557.38;;;5;9.034;2.02;;;;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];unknown from literature;FRANCE;31;0;eight location in Provence, altitude: 90-450m;0 Quercus ilex;actual measurement;leaf rehydration;316;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22435;adult;without petiole and rachis;316;;;5;5.6;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Quercus ilex;actual measurement;leaf rehydration;325;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22435;adult;without petiole and rachis;325;;;5;10.6;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Quercus ilex;field experiment;leaf rehydration;530;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22435;adult;without petiole and rachis;530;;;10;11;11;;1997-10-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus ilex;field experiment;leaf rehydration;522;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22435;adult;without petiole and rachis;522;;;10;6;6;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus ilex;field experiment;leaf rehydration;511;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22435;adult;without petiole and rachis;511;;;10;6;6;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus ilex;field experiment;leaf rehydration;446;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22435;adult;without petiole and rachis;446;;;10;3;3;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Quercus ilex;field experiment;leaf rehydration;471;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22435;adult;without petiole and rachis;471;;;10;9;9;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus ilex;field experiment;leaf rehydration;340;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22435;adult;without petiole and rachis;340;;;10;20;20;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus petraea;actual measurement;leaf rehydration;281;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22445;adult;without petiole and rachis;281;;;5;13.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Coombs Dale; Quercus petraea;actual measurement;leaf rehydration;279;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22445;adult;without petiole and rachis;279;;;5;6.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Padley Gorge; Quercus petraea;actual measurement;leaf rehydration;271;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22445;adult;without petiole and rachis;271;;;5;11.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Quercus petraea;actual measurement;leaf rehydration;294;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22445;adult;without petiole and rachis;294;;;5;5.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Smeekley Wood; Quercus pubescens;actual measurement;no leaf rehydration;484.4;20;1;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];22449;unknown;without petiole and rachis;484.4;;;5;9.615;2.15;;;;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];unknown from literature;FRANCE;31;0;eight location in Provence, altitude: 90-450m;0 Quercus pubescens;actual measurement (following LEDA data standards);no leaf rehydration;419.19;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22449;adult;with petiole and rachis;430.47;494.49;410.46;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;G1.7 - Thermophilous deciduous woodland;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Quercus pubescens;actual measurement (following LEDA data standards);no leaf rehydration;421.03;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22449;adult;without petiole and rachis;434.02;499.4;413.67;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;G1.7 - Thermophilous deciduous woodland;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Quercus pubescens;field experiment;leaf rehydration;448;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22449;adult;without petiole and rachis;448;;;10;3;3;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Quercus pubescens;field experiment;leaf rehydration;536;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22449;adult;without petiole and rachis;536;;;10;27;27;;1997-10-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus pubescens;field experiment;leaf rehydration;417;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22449;adult;without petiole and rachis;417;;;10;12;12;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;6.35;Les Agros;43.25 Quercus pubescens;field experiment;leaf rehydration;450;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22449;adult;without petiole and rachis;450;;;10;9;9;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus pubescens;field experiment;leaf rehydration;439;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22449;adult;without petiole and rachis;439;;;10;5;5;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus pubescens;field experiment;leaf rehydration;470;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22449;adult;without petiole and rachis;470;;;10;8;8;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Quercus robur;actual measurement;leaf rehydration;277;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22457;adult;without petiole and rachis;277;;;5;12.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Quercus robur;actual measurement;leaf rehydration;283;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22457;adult;without petiole and rachis;283;;;5;9.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Quercus rubra;actual measurement;leaf rehydration;285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22466;adult;without petiole and rachis;285;;;5;6.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Radiola linoides;laboratory/greenhouse/garden experiment;no leaf rehydration;227.39;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25873;adult;with petiole and rachis;219.83;296.3;150;4;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Radiola linoides;actual measurement (following LEDA data standards);leaf rehydration;237.8;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25873;adult;with petiole and rachis;237.58;305.56;184.93;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P2 NSG Krusenbusch (Oldenburg);5883035.844 Ranunculus aconitifolius;actual measurement (following LEDA data standards);no leaf rehydration;95.57;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26864;adult;with petiole and rachis;97.03;107.73;87.8;2;;;0;2004-07-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;;;P 354 Ravennaschlucht, Black forest, Baden-Württemberg; Ranunculus aconitifolius;actual measurement (following LEDA data standards);no leaf rehydration;117.87;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26864;adult;without petiole and rachis;116.3;132.23;98.79;2;;;0;2004-07-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;;;P 354 Ravennaschlucht, Black forest, Baden-Württemberg; Ranunculus acris;actual measurement (following LEDA data standards);no leaf rehydration;197.15;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;26865;adult;with petiole and rachis;190.67;217.8;160.5;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Ranunculus acris;actual measurement;leaf rehydration;195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26865;adult;without petiole and rachis;195;;;2;;;;;;;;UNITED KINGDOM;;;; Ranunculus acris;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26865;adult;without petiole and rachis;171;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Ranunculus acris;actual measurement;leaf rehydration;208;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26865;adult;without petiole and rachis;208;;;2;;;;;;;;UNITED KINGDOM;;;; Ranunculus acris;actual measurement (following LEDA data standards);no leaf rehydration;199.65;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;26865;adult;with petiole and rachis;200.26;229.1;162.5;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Ranunculus acris;actual measurement;leaf rehydration;206.02;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;26865;adult;without petiole and rachis;204.45;232.79;163.73;2;;;0;2003-06-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349633;national park Müritz;5924167 Ranunculus acris;actual measurement;leaf rehydration;202.53;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;26865;adult;with petiole and rachis;182.55;218.2;0;2;;;0;2003-06-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349633;national park Müritz;5924167 Ranunculus aquatilis;actual measurement (following LEDA data standards);no leaf rehydration;70.09;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;27005;adult;without petiole and rachis;70.37;78.75;62.56;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Ranunculus aquatilis;actual measurement;leaf rehydration;100;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27005;adult;without petiole and rachis;100;;;1;;;;1997-08-10 00:00:00.0;;;;UNITED KINGDOM;;;Conies Dale; Ranunculus aquatilis;actual measurement;leaf rehydration;163;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27005;adult;without petiole and rachis;163;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Stony Middleton; Ranunculus aquatilis;actual measurement (following LEDA data standards);no leaf rehydration;134.77;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27005;adult;without petiole and rachis;135.16;144.37;126.34;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;;P 298 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Ranunculus aquatilis;actual measurement (following LEDA data standards);no leaf rehydration;125.37;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27005;adult;with petiole and rachis;126.51;135.54;118.63;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;;P 298 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Ranunculus arvensis;actual measurement;leaf rehydration;139;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27014;adult;without petiole and rachis;139;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Ranunculus auricomus;actual measurement;leaf rehydration;168;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27000;adult;without petiole and rachis;168;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Via Gellia ; Ranunculus auricomus;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27000;adult;without petiole and rachis;137;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Ranunculus bulbosus;actual measurement;leaf rehydration;205;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26809;adult;without petiole and rachis;205;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Ranunculus bulbosus;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26809;adult;without petiole and rachis;177;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Ranunculus bulbosus;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26809;adult;without petiole and rachis;183;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Ranunculus circinatus;actual measurement (following LEDA data standards);no leaf rehydration;63.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;26945;adult;without petiole and rachis;63.39;65.68;60.72;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Ranunculus circinatus;actual measurement (following LEDA data standards);no leaf rehydration;161.1;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26945;adult;with petiole and rachis;167.21;213.05;137.24;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;451051.5872;P1 Kl. Bornhorster See (Oldenburg);5892735.962 Ranunculus circinatus;actual measurement (following LEDA data standards);no leaf rehydration;169.25;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26945;adult;without petiole and rachis;180.68;221.94;145.8;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;451051.5872;P1 Kl. Bornhorster See (Oldenburg);5892735.962 Ranunculus ficaria;actual measurement;leaf rehydration;121;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26860;adult;without petiole and rachis;121;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Ranunculus ficaria;actual measurement;leaf rehydration;114;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26860;adult;without petiole and rachis;114;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Ranunculus flammula;actual measurement (following LEDA data standards);no leaf rehydration;214.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;26624;adult;without petiole and rachis;212.49;222.72;198.13;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Ranunculus flammula;actual measurement;leaf rehydration;173;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26624;adult;without petiole and rachis;173;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Ranunculus flammula;actual measurement;leaf rehydration;134;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26624;adult;without petiole and rachis;134;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Ranunculus fluitans;actual measurement (following LEDA data standards);no leaf rehydration;101.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26881;adult;with petiole and rachis;94.85;143.8;43.89;2;;;0;2004-05-18 00:00:00.0;Preaggregated data obtained from single record. ;;C2.2 - Permanent non-tidal. fast. turbulent watercourses;GERMANY;32;402549;P 261 Elz, bei Weisweil / Rust, Oberrheinebene (upper Rhine);5340690 Ranunculus hederaceus;actual measurement;leaf rehydration;116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26758;adult;without petiole and rachis;116;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Ranunculus lanuginosus;actual measurement (following LEDA data standards);no leaf rehydration;144.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26737;adult;with petiole and rachis;145.76;180.29;123.1;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;614139;P 427 FFH Wolfsbachschlucht (Harz, Lower Saxony);5724245 Ranunculus lanuginosus;actual measurement (following LEDA data standards);no leaf rehydration;163.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26737;adult;without petiole and rachis;164.68;209.44;145.3;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;614139;P 427 FFH Wolfsbachschlucht (Harz, Lower Saxony);5724245 Ranunculus lingua;laboratory/greenhouse/garden experiment;no leaf rehydration;196.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26743;adult;with petiole and rachis;195.66;212.48;174.65;2;;;0;2005-07-05 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Ranunculus peltatus;actual measurement (following LEDA data standards);no leaf rehydration;99.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26695;adult;with petiole and rachis;100.99;126.77;72.66;2;;;0;2004-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;398836;P 282 NSG Fentjer Tief (north), Ostfriesland;5915489 Ranunculus peltatus;actual measurement (following LEDA data standards);no leaf rehydration;109.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26695;adult;without petiole and rachis;117.19;145.65;89.66;2;;;0;2004-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;398836;P 282 NSG Fentjer Tief (north), Ostfriesland;5915489 Ranunculus peltatus;actual measurement;leaf rehydration;98;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26695;adult;without petiole and rachis;98;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Pebley Reservoir; Ranunculus peltatus s. baudotii;actual measurement (following LEDA data standards);no leaf rehydration;71.7;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45465;adult;with petiole and rachis;71.7;71.7;71.7;2;;;0;2005-08-06 00:00:00.0;Preaggregated data obtained from single record. submersed leaf;;C1.5 - Permanent inland saline and brackish lakes. ponds and pools;GERMANY;32;498738;P 549 Tideeider NSG Oldenw?er Deichvorland (SH), Schleswig-Holstein;6020444 Ranunculus peltatus s. baudotii;actual measurement (following LEDA data standards);no leaf rehydration;134.47;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45465;adult;with petiole and rachis;134.47;152.18;116.75;2;;;0;2005-08-06 00:00:00.0;Preaggregated data obtained from single record. land form;;C1.5 - Permanent inland saline and brackish lakes. ponds and pools;GERMANY;32;498738;P 549 Tideeider NSG Oldenw?er Deichvorland (SH), Schleswig-Holstein;6020444 Ranunculus penicillatus;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;45469;adult;without petiole and rachis;110;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Bradwell; Ranunculus platanifolius;actual measurement (following LEDA data standards);no leaf rehydration;168.32;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;26778;adult;with petiole and rachis;163.43;186.12;126.71;1;;;;2005-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;G4.2 - Mixed taiga woodland with [Betula];NORWAY;32;611612;Hessdalen 24;6965329 Ranunculus platanifolius;actual measurement (following LEDA data standards);no leaf rehydration;137.66;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26778;adult;with petiole and rachis;139.59;163.35;120.87;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. ;;H3.1 - Acid siliceous inland cliffs;GERMANY;;;MK-4 Gipfel Kl. Arber, Bavarian forest, Bavaria; Ranunculus polyanthemos;actual measurement (following LEDA data standards);no leaf rehydration;142.58;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26780;adult;with petiole and rachis;142.58;142.58;142.58;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. determinated as Ranunculus polyanthemophyllos;;E5.2 - Thermophile woodland fringes;GERMANY;32;613911;P 433 Elsbachtal b. Hundertmorgenwiese (Harz, Lower Saxony);5720594 Ranunculus polyanthemos;actual measurement (following LEDA data standards);no leaf rehydration;144.36;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26780;adult;without petiole and rachis;144.36;144.36;144.36;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. determinated as Ranunculus polyanthemophyllos;;E5.2 - Thermophile woodland fringes;GERMANY;32;613911;P 433 Elsbachtal b. Hundertmorgenwiese (Harz, Lower Saxony);5720594 Ranunculus repens;actual measurement;leaf rehydration;196;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26770;adult;without petiole and rachis;196;;;2;;;;;;;;UNITED KINGDOM;;;; Ranunculus repens;actual measurement;leaf rehydration;158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26770;adult;without petiole and rachis;158;;;2;;;;;;;;UNITED KINGDOM;;;; Ranunculus repens;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26770;adult;without petiole and rachis;160;;;2;;;;;;;;UNITED KINGDOM;;;; Ranunculus repens;actual measurement;leaf rehydration;200.96;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;26770;adult;without petiole and rachis;191.77;231.27;142.74;1;;;0;2003-06-04 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349779;national park Müritz;5924010 Ranunculus repens;actual measurement;leaf rehydration;190.56;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;26770;adult;with petiole and rachis;183.3;225.42;135.4;1;;;0;2003-06-04 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349779;national park Müritz;5924010 Ranunculus reptans;actual measurement (following LEDA data standards);no leaf rehydration;219.61;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26623;adult;with petiole and rachis;212.3;257.41;181.9;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;32;507195;P 519 Hegne, Lake of Constance, Baden-W?emberg;5283391 Ranunculus sardous;actual measurement (following LEDA data standards);no leaf rehydration;125.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26637;adult;with petiole and rachis;126.11;141.86;114.77;2;;;0;2004-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;E2.2 - Coarse permanent grassland and tall herbs. usually mown but little grazed;GERMANY;;;P 473 Steinhöfel Biophärenreservat Schorfheide-Chorin (Brandenburg); Ranunculus sceleratus;actual measurement (following LEDA data standards);no leaf rehydration;61.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;26717;adult;without petiole and rachis;60.82;67.29;54.99;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Ranunculus sceleratus;actual measurement;leaf rehydration;185;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26717;adult;without petiole and rachis;185;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Ranunculus serpens;actual measurement (following LEDA data standards);no leaf rehydration;157.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26706;adult;with petiole and rachis;155.03;172.88;133.17;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426814;P 372 NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;8303722 Ranunculus serpens;actual measurement (following LEDA data standards);no leaf rehydration;166.19;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26706;adult;without petiole and rachis;164.19;185.25;139.32;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426814;P 372 NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;8303722 Ranunculus trichophyllus;actual measurement (following LEDA data standards);no leaf rehydration;171.35;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26588;adult;with petiole and rachis;171.71;175.22;168.57;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;617740.5081;P5 Kiesgrube im Dummersdorfer Hinterland (Lübeck/ near Baltic Sea);5975590.635 Ranunculus trichophyllus;actual measurement (following LEDA data standards);no leaf rehydration;169.32;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26588;adult;without petiole and rachis;170.9;177.11;166.27;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;617740.5081;P5 Kiesgrube im Dummersdorfer Hinterland (Lübeck/ near Baltic Sea);5975590.635 Ranunculus trichophyllus;actual measurement;leaf rehydration;143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26588;adult;without petiole and rachis;143;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Raphanus raphanistrum;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13549;adult;without petiole and rachis;129;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Raphanus raphanistrum;actual measurement;leaf rehydration;118;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13549;adult;without petiole and rachis;118;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Catcliffe; Raphanus raphanistrum;actual measurement;leaf rehydration;113;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13549;adult;without petiole and rachis;113;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Raphanus sativus;laboratory/greenhouse/garden experiment;no leaf rehydration;118.12;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13125;adult;with petiole and rachis;117.51;128.36;105.42;2;;;0;2005-07-11 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Rapistrum rugosum;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13886;adult;without petiole and rachis;177;;;2;;;;1996-08-03 00:00:00.0;;;;UNITED KINGDOM;;;Crystal Palace; Reseda alba;laboratory/greenhouse/garden experiment;no leaf rehydration;156.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27957;adult;with petiole and rachis;155.43;200.41;129.5;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Reseda alba;actual measurement;leaf rehydration;99;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27957;adult;without petiole and rachis;99;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Reseda lutea;actual measurement;leaf rehydration;184;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27974;adult;without petiole and rachis;184;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Reseda lutea;actual measurement;leaf rehydration;143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27974;adult;without petiole and rachis;143;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Reseda lutea;actual measurement;leaf rehydration;139;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27974;adult;without petiole and rachis;139;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Reseda luteola;laboratory/greenhouse/garden experiment;no leaf rehydration;157.77;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27977;adult;with petiole and rachis;157.43;169.23;145.33;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Reseda luteola;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27977;adult;without petiole and rachis;150;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Reseda luteola;actual measurement;leaf rehydration;148;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27977;adult;without petiole and rachis;148;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Reseda luteola;actual measurement;leaf rehydration;210;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27977;adult;without petiole and rachis;210;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Reynoutria japonica;actual measurement;leaf rehydration;280;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27574;adult;without petiole and rachis;280;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Reynoutria japonica;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27574;adult;without petiole and rachis;244;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Reynoutria sachalinensis;actual measurement;leaf rehydration;162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27578;adult;without petiole and rachis;162;;;1;;;;1997-06-24 00:00:00.0;;;;IRELAND;;;Killarney; Rhamnus catharticus;actual measurement;leaf rehydration;234;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28012;adult;without petiole and rachis;234;;;5;14.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Markland Grips; Rhamnus catharticus;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;28012;adult;without petiole and rachis;238;;;5;4.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Rhinanthus minor;actual measurement;leaf rehydration;204;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32892;adult;without petiole and rachis;204;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Rhinanthus minor;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32892;adult;without petiole and rachis;150;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Rhinanthus minor;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32892;adult;without petiole and rachis;182;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Rhodiola rosea;actual measurement (following LEDA data standards);no leaf rehydration;104.9;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;18168;adult;with petiole and rachis;102.95;110.17;86.73;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;609381;Hessdalen 25;6951960 Rhododendron ponticum;actual measurement;leaf rehydration;232;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19459;adult;without petiole and rachis;232;;;5;10;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Rhododendron ponticum;actual measurement;leaf rehydration;315;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19459;adult;without petiole and rachis;315;;;5;9.9;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Rhododendron ponticum;actual measurement;leaf rehydration;318;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19459;adult;without petiole and rachis;318;;;5;2.8;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Smeekley Wood; Rhododendron ponticum;actual measurement;leaf rehydration;285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19459;adult;without petiole and rachis;285;;;5;9.9;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Smeekley Wood; Rhynchospora alba;actual measurement (following LEDA data standards);no leaf rehydration;334.91;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37156;adult;with petiole and rachis;333.39;348.01;315.55;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;453759.5036;P6 NSG Gellner Torfmöorte / Landkreis Oldenburg;5893339.721 Rhynchospora fusca;actual measurement (following LEDA data standards);no leaf rehydration;280.99;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37574;adult;with petiole and rachis;282.84;304.1;256.13;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;F4 - Temperate shrub heathland;NETHERLANDS;;;Mosbeek; Rhynchospora fusca;actual measurement (following LEDA data standards);no leaf rehydration;331.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37574;adult;with petiole and rachis;330.43;347.39;309.04;2;;;0;2005-07-14 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;;;P 543 NSG Gildehauser Venn, SW- Lower Saxony; Ribes nigrum;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23122;adult;without petiole and rachis;256;;;5;7.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Ribes rubrum;actual measurement (following LEDA data standards);no leaf rehydration;266.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23126;adult;with petiole and rachis;260.94;314.68;190.24;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437361;P 213 Gristede (Landkreis Ammerland);5897992 Ribes rubrum;actual measurement (following LEDA data standards);no leaf rehydration;271.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23126;adult;without petiole and rachis;267.51;318.01;203.49;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437361;P 213 Gristede (Landkreis Ammerland);5897992 Ribes uva-crispa;actual measurement (following LEDA data standards);no leaf rehydration;235.58;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23138;adult;with petiole and rachis;240.96;252.84;234.45;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Ribes uva-crispa;actual measurement (following LEDA data standards);no leaf rehydration;234.28;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23138;adult;without petiole and rachis;239.72;252.69;232.2;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Ribes uva-crispa;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23138;adult;without petiole and rachis;225;;;5;9.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Ribes uva-crispa;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;23138;adult;without petiole and rachis;212;;;5;6.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Robinia pseudacacia;actual measurement;leaf rehydration;248;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22045;adult;without petiole and rachis;248;;;5;9;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Rorippa amphibia;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13138;adult;without petiole and rachis;110;;;1;;;;1997-08-10 00:00:00.0;;;;UNITED KINGDOM;;;Cromford Meadows; Rorippa palustris;actual measurement (following LEDA data standards);no leaf rehydration;130.99;18;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;14626;adult;with petiole and rachis;146.96;463.5;42.5;1;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;NETHERLANDS;;;Terschelling; Rorippa palustris;actual measurement (following LEDA data standards);no leaf rehydration;60.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;14626;adult;without petiole and rachis;60.43;62.57;56.85;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Rorippa palustris;actual measurement;leaf rehydration;132;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14626;adult;without petiole and rachis;132;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Rorippa palustris;actual measurement;leaf rehydration;95;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14626;adult;without petiole and rachis;95;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Rorippa palustris;actual measurement;leaf rehydration;92;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;14626;adult;without petiole and rachis;92;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Rorippa palustris;actual measurement (following LEDA data standards);no leaf rehydration;150.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14626;adult;with petiole and rachis;157.46;202.92;123.87;1;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. stem leaves;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;P1 Holle/Landkreis Oldenburg bei Hude; Rorippa palustris;actual measurement (following LEDA data standards);no leaf rehydration;84.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14626;adult;with petiole and rachis;89.78;114.97;68.09;1;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. rosette leaves;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;P1 Holle/Landkreis Oldenburg bei Hude; Rorippa sylvestris;actual measurement;leaf rehydration;108;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13910;adult;without petiole and rachis;108;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Rorippa sylvestris;actual measurement;leaf rehydration;105;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13910;adult;without petiole and rachis;105;;;2;;;;1996-07-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Rosa agrestis;actual measurement (following LEDA data standards);no leaf rehydration;342.6;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29667;adult;with petiole and rachis;342.6;345.47;339.72;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;622329.2601;P8 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5975330.663 Rosa agrestis;actual measurement (following LEDA data standards);no leaf rehydration;402.32;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29667;adult;without petiole and rachis;402.32;402.32;402.32;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. first determination as Rosa micrantha;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;P9 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea); Rosa agrestis;actual measurement (following LEDA data standards);no leaf rehydration;402.05;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29667;adult;with petiole and rachis;402.05;402.05;402.05;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. first determination as Rosa micrantha;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;P9 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea); Rosa agrestis;actual measurement (following LEDA data standards);no leaf rehydration;357.45;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29667;adult;without petiole and rachis;357.45;369.98;344.91;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;622329.2601;P8 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5975330.663 Rosa arvensis;actual measurement;leaf rehydration;265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31158;adult;without petiole and rachis;265;;;5;11.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Rosa arvensis;actual measurement;leaf rehydration;257;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31158;adult;without petiole and rachis;257;;;5;11.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Rosa arvensis;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31158;adult;without petiole and rachis;256;;;5;24;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Rosa dumalis;actual measurement (following LEDA data standards);no leaf rehydration;492.22;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60797;adult;with petiole and rachis;474.85;536.33;396.01;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;;;P 462 Gabower Hänge FFH, Biosphärenreservat Schorfheide-Chorin (Brandenburg); Rosa elliptica;actual measurement (following LEDA data standards);no leaf rehydration;399.17;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30050;adult;with petiole and rachis;404.52;435.9;389.96;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;684002;P 410a/b Jenzig(berg) closely to Jena (Thüringen);5646183 Rosa jundzillii;actual measurement (following LEDA data standards);no leaf rehydration;411.64;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31124;adult;with petiole and rachis;409.24;444.48;369.22;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;; FA.3 - Species-rich hedgerows of native species;GERMANY;;;Regensburg, hedgerow, Bavaria; Rosa micrantha;field experiment;leaf rehydration;393;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;30571;adult;without petiole and rachis;393;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Rosa micrantha;field experiment;leaf rehydration;381;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;30571;adult;without petiole and rachis;381;;;10;12;12;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Rosa multiflora;actual measurement (following LEDA data standards);no leaf rehydration;280.23;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;29985;adult;with petiole and rachis;280.05;299.85;259.91;2;;;1;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Rosa pendulina;actual measurement (following LEDA data standards);no leaf rehydration;336.22;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30578;adult;with petiole and rachis;339.89;377.56;292.04;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;F2.3 - Subalpine deciduous scrub;GERMANY;32;426444;P 375 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303165 Rosa pimpinellifolia;actual measurement;leaf rehydration;417;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29288;adult;without petiole and rachis;417;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Rosa rubiginosa;actual measurement (following LEDA data standards);no leaf rehydration;448.63;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29291;adult;with petiole and rachis;457.77;494.16;439.67;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;;;P 462 Gabower Hänge FFH, Biosphärenreservat Schorfheide-Chorin (Brandenburg); Rosa rugosa;actual measurement (following LEDA data standards);no leaf rehydration;322.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30857;adult;without petiole and rachis;322.69;348.28;300.96;2;;;0;2004-09-11 00:00:00.0;Preaggregated data obtained from single record. ;;B1.6 - Coastal dune scrub;GERMANY;;;P 481b Wangerooge West, Nationalpark Niedersächsisches Wattenmeer; Rosa rugosa;actual measurement (following LEDA data standards);no leaf rehydration;318.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30857;adult;with petiole and rachis;317.08;338.54;296.19;2;;;0;2004-09-11 00:00:00.0;Preaggregated data obtained from single record. ;;B1.6 - Coastal dune scrub;GERMANY;;;P 481b Wangerooge West, Nationalpark Niedersächsisches Wattenmeer; Rosa rugosa;actual measurement (following LEDA data standards);no leaf rehydration;282.38;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;30857;adult;with petiole and rachis;285.08;298.27;276.28;2;;;1;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Pieterburen, Domies Toen; Rubia peregrina;actual measurement;no leaf rehydration;303.68;20;1;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];31737;unknown;without petiole and rachis;303.68;;;5;8.989;2.01;;;;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];unknown from literature;FRANCE;31;0;eight location in Provence, altitude: 90-450m;0 Rubia peregrina;actual measurement;leaf rehydration;211;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31737;adult;without petiole and rachis;211;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Devon, UK; Rubia peregrina;field experiment;leaf rehydration;195;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;31737;adult;without petiole and rachis;195;;;10;11;11;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Rubia peregrina;field experiment;leaf rehydration;213;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;31737;adult;without petiole and rachis;213;;;10;11;11;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;6.35;Les Agros;43.25 Rubia peregrina;field experiment;leaf rehydration;211;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;31737;adult;without petiole and rachis;211;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Rubia peregrina;field experiment;leaf rehydration;228;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;31737;adult;without petiole and rachis;228;;;10;6;6;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Rubia tinctorium;actual measurement (following LEDA data standards);no leaf rehydration;173.08;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;32061;adult;with petiole and rachis;175.28;195.32;164.49;2;;;0;2005-07-19 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Dreischor; Rubus caesius;actual measurement;leaf rehydration;421;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30108;adult;without petiole and rachis;421;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Rubus caesius;actual measurement;leaf rehydration;331;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30108;adult;without petiole and rachis;331;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Rubus caesius;actual measurement;leaf rehydration;408;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30108;adult;without petiole and rachis;408;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Rubus chamaemorus;actual measurement (following LEDA data standards);no leaf rehydration;270.82;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;30071;adult;with petiole and rachis;275.26;293.73;260.4;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608507;Hessdalen 26;6951670 Rubus chamaemorus;actual measurement;leaf rehydration;286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30071;adult;without petiole and rachis;286;;;1;;;;1997-06-06 00:00:00.0;;;;UNITED KINGDOM;;;Bleaklow; Rubus chamaemorus;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30071;adult;without petiole and rachis;237;;;1;;;;1997-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Blackden, Kinder; Rubus fruticosus;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30807;adult;without petiole and rachis;263;;;5;7.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Rubus fruticosus;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30807;adult;without petiole and rachis;252;;;5;15.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Rubus fruticosus;actual measurement;leaf rehydration;273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30807;adult;without petiole and rachis;273;;;5;14.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Rubus idaeus;actual measurement;leaf rehydration;289.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;29604;adult;without petiole and rachis;282.63;328.68;238.6;2;;;0;2003-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348957;national park Müritz;5924696 Rubus idaeus;actual measurement;leaf rehydration;278.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;29604;adult;with petiole and rachis;272.89;311.07;230.79;2;;;0;2003-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348957;national park Müritz;5924696 Rubus saxatilis;actual measurement;leaf rehydration;318;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29888;adult;without petiole and rachis;318;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Rumex acetosa;actual measurement (following LEDA data standards);no leaf rehydration;116.55;14;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;27593;adult;with petiole and rachis;115.56;140.2;95.9;1;;;;2003-09-19 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;;6958700 Rumex acetosa;actual measurement;leaf rehydration;113;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27593;adult;without petiole and rachis;113;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Rumex acetosa;actual measurement;leaf rehydration;102;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27593;adult;without petiole and rachis;102;;;2;;;;1996-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Rumex acetosa;actual measurement;leaf rehydration;85;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27593;adult;without petiole and rachis;85;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Rumex acetosa;actual measurement;leaf rehydration;94;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27593;adult;without petiole and rachis;94;;;2;;;;;;;;UNITED KINGDOM;;;; Rumex acetosella;actual measurement;leaf rehydration;141;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27601;adult;without petiole and rachis;141;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Rumex acetosella;actual measurement;leaf rehydration;98;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27601;adult;without petiole and rachis;98;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Surprise view; Rumex acetosella;actual measurement;leaf rehydration;117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27601;adult;without petiole and rachis;117;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Rumex acetosella;actual measurement;leaf rehydration;105.23;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;27601;adult;without petiole and rachis;118.05;241.95;88.71;2;;;0;2003-06-04 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E1 - Dry grasslands;GERMANY;33;350137;national park M?z;5924294 Rumex acetosella;actual measurement;leaf rehydration;108.43;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;27601;adult;with petiole and rachis;115.37;176.22;91.48;2;;;0;2003-06-04 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E1 - Dry grasslands;GERMANY;33;350137;national park M?z;5924294 Rumex alpestris;actual measurement (following LEDA data standards);no leaf rehydration;135.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44762;adult;with petiole and rachis;131.35;143.31;107.62;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. four leaf pairs without any petioles, others with only one leaf bearing a petiole;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426936;P 371 NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;5303951 Rumex alpestris;actual measurement (following LEDA data standards);no leaf rehydration;128.8;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;44762;adult;without petiole and rachis;125.99;141.59;107.39;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. four leaf pairs without any petioles, others with only one leaf bearing a petiole;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;426936;P 371 NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;5303951 Rumex alpinus;actual measurement (following LEDA data standards);no leaf rehydration;151.02;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27602;adult;with petiole and rachis;155.18;192.98;125.75;2;;;10;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;427038;P 377 NSG Feldberg, closely to Rinken, Black forest, Baden-Württemberg;5304017 Rumex alpinus;actual measurement (following LEDA data standards);no leaf rehydration;183.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27602;adult;without petiole and rachis;181.89;230.61;149.7;2;;;10;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;427038;P 377 NSG Feldberg, closely to Rinken, Black forest, Baden-Württemberg;5304017 Rumex aquaticus;actual measurement (following LEDA data standards);no leaf rehydration;141.65;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27607;adult;with petiole and rachis;132.14;146.64;108.13;2;;;10;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;32;594006;P 446 Nasser-Teich, Harz (Lower Saxony);5738282 Rumex aquaticus;actual measurement (following LEDA data standards);no leaf rehydration;146.62;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27607;adult;without petiole and rachis;143.82;162.75;121.92;2;;;10;2004-08-24 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;32;594006;P 446 Nasser-Teich, Harz (Lower Saxony);5738282 Rumex conglomeratus;actual measurement;leaf rehydration;179;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27623;adult;without petiole and rachis;179;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Rumex crispus;actual measurement;leaf rehydration;113;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27506;adult;without petiole and rachis;113;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton Village; Rumex crispus;actual measurement;leaf rehydration;97;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27506;adult;without petiole and rachis;97;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Rumex hydrolapathum;actual measurement (following LEDA data standards);no leaf rehydration;157.23;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27528;adult;with petiole and rachis;158.01;172.85;145.28;2;;;10;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;;;P 534 NSG Fentjer Tief, NW - Lower Saxony; Rumex hydrolapathum;actual measurement;leaf rehydration;144;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27528;adult;without petiole and rachis;144;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Rumex maritimus;actual measurement (following LEDA data standards);no leaf rehydration;120.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;27537;adult;without petiole and rachis;121.8;130.58;116.47;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Rumex maritimus;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27537;adult;without petiole and rachis;151;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Rumex obtusifolius;actual measurement (following LEDA data standards);no leaf rehydration;99.29;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;27542;adult;without petiole and rachis;102.2;112.83;90.71;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Rumex obtusifolius;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27542;adult;without petiole and rachis;188;;;2;;;;1996-06-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Rumex obtusifolius;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27542;adult;without petiole and rachis;150;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Rumex palustris;laboratory/greenhouse/garden experiment;no leaf rehydration;171.1;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27549;adult;with petiole and rachis;181.21;223.58;153.51;2;;;0;2004-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Rumex palustris;laboratory/greenhouse/garden experiment;no leaf rehydration;185.11;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27549;adult;without petiole and rachis;193.86;241.62;166.93;2;;;0;2004-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Rumex sanguineus;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;27450;adult;without petiole and rachis;202;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Rumex stenophyllus;actual measurement (following LEDA data standards);no leaf rehydration;149.97;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27453;adult;with petiole and rachis;152.52;168.36;139.22;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Rumex stenophyllus;actual measurement (following LEDA data standards);no leaf rehydration;148.61;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27453;adult;without petiole and rachis;151.9;168.28;138.82;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Rumex stenophyllus;actual measurement (following LEDA data standards);no leaf rehydration;128.03;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27453;adult;with petiole and rachis;128.03;128.13;127.93;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Rumex stenophyllus;actual measurement (following LEDA data standards);no leaf rehydration;128.58;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27453;adult;without petiole and rachis;128.58;129.66;127.5;1;;;0;2003-08-19 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;646162.8498;P3 Biophärenreservat Niedersächsiche Elbtalaue b. Damnatz, Altarme, Überflutungsräume;5888614.18 Rumex thyrsiflorus;actual measurement (following LEDA data standards);no leaf rehydration;126.7;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27457;adult;with petiole and rachis;120.86;137.54;94.06;1;;;0;2003-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;J2.5 - Constructed field boundaries;GERMANY;32;583214.7008;P1 Unteres Elbtal, Damm;5916354.511 Rumex thyrsiflorus;actual measurement (following LEDA data standards);no leaf rehydration;134.34;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;27457;adult;without petiole and rachis;123.45;145.87;96.89;1;;;0;2003-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;J2.5 - Constructed field boundaries;GERMANY;32;583214.7008;P1 Unteres Elbtal, Damm;5916354.511 Ruppia cirrhosa;actual measurement (following LEDA data standards);no leaf rehydration;195.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43915;adult;with petiole and rachis;203.48;309.09;140.12;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;A2.7 - Littoral sediments dominated by aquatic angiosperms;GERMANY;32;622547.8761;P4 NSG Dummersdorfer Ufer (Lübeck/ near Baltic Sea);5975957.297 Ruppia maritima;actual measurement (following LEDA data standards);no leaf rehydration;186.13;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;43869;adult;with petiole and rachis;204.07;317.22;146.68;2;;;0;2005-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog; Ruscus aculeatus;field experiment;leaf rehydration;309;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;38080;adult;without petiole and rachis;309;;;10;34;34;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Ruscus aculeatus;field experiment;leaf rehydration;187;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;38080;adult;without petiole and rachis;187;;;10;13;13;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Sagina apetala;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17028;adult;without petiole and rachis;252;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sagina apetala;actual measurement;leaf rehydration;250;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17028;adult;without petiole and rachis;250;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Sagina apetala;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17028;adult;without petiole and rachis;214;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Sagina maritima;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17033;adult;without petiole and rachis;194;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Doe Lea; Sagina nodosa;actual measurement (following LEDA data standards);no leaf rehydration;160.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16644;adult;with petiole and rachis;163.67;191.7;129.11;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;314450;P 305 NSG Gülper See (Südufer), Brandenburg;5846124 Sagina nodosa;actual measurement;leaf rehydration;317;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16644;adult;without petiole and rachis;317;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Sagina procumbens;actual measurement;leaf rehydration;233;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16230;adult;without petiole and rachis;233;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Sagina procumbens;actual measurement;leaf rehydration;201;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16230;adult;without petiole and rachis;201;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sagittaria sagittifolia;actual measurement (following LEDA data standards);no leaf rehydration;72.41;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35605;adult;with petiole and rachis;68.04;79.84;53.59;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. f. vallisneriifolia, submerged leaves /rosette leaves;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;451051.5872;P1 Kl. Bornhorster See (Oldenburg);5892735.962 Sagittaria sagittifolia;actual measurement (following LEDA data standards);leaf rehydration;141.17;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35605;adult;without petiole and rachis;134.97;147.16;98.11;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. swim leaves without petiole;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453798.488;P 15 Bornhorster Wiesen/ Gräben (Oldenburg/Hunte-Wiesen);5891054.635 Sagittaria sagittifolia;actual measurement (following LEDA data standards);leaf rehydration;154.36;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35605;adult;without petiole and rachis;145.2;162.53;113.08;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. airborne leaves without petiole;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453798.488;P 15 Bornhorster Wiesen/ Gräben (Oldenburg/Hunte-Wiesen);5891054.635 Sagittaria sagittifolia;actual measurement (following LEDA data standards);leaf rehydration;72.34;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35605;adult;with petiole and rachis;72.51;89.68;56.05;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. airborne leaves with;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453798.488;P 15 Bornhorster Wiesen/ Gräben (Oldenburg/Hunte-Wiesen);5891054.635 Sagittaria sagittifolia;actual measurement (following LEDA data standards);leaf rehydration;90.39;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35605;adult;with petiole and rachis;83.24;111.71;50.61;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. swim leaves with;;J5.4 - Highly artificial non-saline running waters;GERMANY;32;453798.488;P 15 Bornhorster Wiesen/ Gräben (Oldenburg/Hunte-Wiesen);5891054.635 Salicornia europaea;actual measurement (following LEDA data standards);no leaf rehydration;198.76;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18012;adult;with petiole and rachis;205.57;227.62;190.34;1;;;0;2003-09-27 00:00:00.0;Preaggregated data obtained from single record. ssp. brachystachya;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;;;P1 Mellum, Nationalpark Niedersächsiches Wattenmeer (Northsea / Lower Saxony); Salicornia europaea;actual measurement (following LEDA data standards);no leaf rehydration;190.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18012;adult;without petiole and rachis;197.01;215.42;185.26;1;;;0;2003-09-27 00:00:00.0;Preaggregated data obtained from single record. ssp. brachystachya;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;;;P1 Mellum, Nationalpark Niedersächsiches Wattenmeer (Northsea / Lower Saxony); Salicornia procumbens;actual measurement;leaf rehydration;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18022;adult;without petiole and rachis;111;;;1;;;;1997-06-21 00:00:00.0;;;;UNITED KINGDOM;;;Maldon, Essex; Salicornia stricta;actual measurement (following LEDA data standards);no leaf rehydration;273.47;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18033;adult;with petiole and rachis;273.47;273.47;273.47;1;;;0;2003-09-27 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;;;P1 Mellum, Nationalpark Niedersächsiches Wattenmeer (Northsea / Lower Saxony); Salicornia stricta;actual measurement (following LEDA data standards);no leaf rehydration;271.97;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18033;adult;without petiole and rachis;271.97;271.97;271.97;1;;;0;2003-09-27 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;;;P1 Mellum, Nationalpark Niedersächsiches Wattenmeer (Northsea / Lower Saxony); Salix alba;actual measurement (following LEDA data standards);no leaf rehydration;294.97;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32638;adult;with petiole and rachis;283.77;301.41;243.72;2;;;0;2004-09-11 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-14 Munich disused railway network, Bavaria; Salix alba;actual measurement (following LEDA data standards);no leaf rehydration;302.26;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32638;adult;without petiole and rachis;307.58;319.28;301.21;2;;;0;2004-09-11 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;;;O-14 Munich disused railway network, Bavaria; Salix appendiculata;actual measurement (following LEDA data standards);no leaf rehydration;316.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32649;adult;with petiole and rachis;326.96;390.18;264.79;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;F2.3 - Subalpine deciduous scrub;GERMANY;32;426444;P 375 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303165 Salix appendiculata;actual measurement (following LEDA data standards);no leaf rehydration;328.69;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32649;adult;without petiole and rachis;341.74;414.42;280.58;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;F2.3 - Subalpine deciduous scrub;GERMANY;32;426444;P 375 NSG Feldberg (Schwarzwald), Baden-Württemberg;5303165 Salix caprea;actual measurement;leaf rehydration;275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32596;adult;without petiole and rachis;275;;;5;4.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Coombs Dale; Salix caprea;actual measurement;leaf rehydration;218;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32596;adult;without petiole and rachis;218;;;5;12.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Salix caprea;actual measurement;leaf rehydration;273;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32596;adult;without petiole and rachis;273;;;5;5.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Salix cinerea;actual measurement (following LEDA data standards);no leaf rehydration;434.18;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32565;adult;with petiole and rachis;420.18;442.19;384.17;1;;;0;2003-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;F9.1 - Riverine and lakeshore [Salix] scrub;GERMANY;;;P1 Haarle b. Carolinensiel, Friesland; Salix cinerea;actual measurement (following LEDA data standards);no leaf rehydration;443.35;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32565;adult;without petiole and rachis;431.37;456.9;393.85;1;;;0;2003-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;F9.1 - Riverine and lakeshore [Salix] scrub;GERMANY;;;P1 Haarle b. Carolinensiel, Friesland; Salix glauca;actual measurement (following LEDA data standards);no leaf rehydration;360.65;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;32573;adult;with petiole and rachis;361.31;385.7;345;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Salix lanata;actual measurement (following LEDA data standards);no leaf rehydration;305.01;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;32548;adult;with petiole and rachis;304.99;328.58;284.9;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608357;Hessdalen 27;6951813 Salix lapponum;actual measurement (following LEDA data standards);no leaf rehydration;357.65;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;32550;adult;with petiole and rachis;374.3;459.3;334.1;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Salix myrsinites;actual measurement (following LEDA data standards);no leaf rehydration;323.04;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;32555;adult;with petiole and rachis;330.39;367.65;282.48;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;D4 - Base-rich fens;NORWAY;32;608338;Hessdalen 28;6951965 Salix pentandra;actual measurement (following LEDA data standards);no leaf rehydration;250.47;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;32567;adult;with petiole and rachis;249.59;270.36;215.88;2;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog, Berkenweg; Salix repens;actual measurement;leaf rehydration;385;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32533;adult;without petiole and rachis;385;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Salix repens;actual measurement;leaf rehydration;385;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32533;adult;without petiole and rachis;385;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Buxton Country Park; Salix repens;actual measurement;leaf rehydration;391.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;32533;adult;without petiole and rachis;403.57;487.83;341.46;2;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348759;national park M?z;5924806 Salix repens;actual measurement;leaf rehydration;390.5;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;32533;adult;with petiole and rachis;399.3;435.1;373.28;2;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348759;national park M?z;5924806 Salix reticulata;actual measurement (following LEDA data standards);no leaf rehydration;356.3;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;32535;adult;with petiole and rachis;358.83;387.5;335.2;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Salix starkeana;actual measurement (following LEDA data standards);no leaf rehydration;392.66;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32511;adult;with petiole and rachis;388.96;423.19;345.74;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;504761;P 388 Höhebühl closely to Bitz/ Truchtelfingen-Albstadt, Schwabian Alb;5343207 Salix starkeana;actual measurement (following LEDA data standards);no leaf rehydration;398.47;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32511;adult;without petiole and rachis;396.79;435.22;354.51;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;504761;P 388 Höhebühl closely to Bitz/ Truchtelfingen-Albstadt, Schwabian Alb;5343207 Salix triandra;actual measurement (following LEDA data standards);no leaf rehydration;398.03;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32478;adult;without petiole and rachis;394.76;432.73;363.11;1;;;0;2003-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;F9.1 - Riverine and lakeshore [Salix] scrub;GERMANY;;;P1 Haarle b. Carolinensiel, Friesland; Salix triandra;actual measurement (following LEDA data standards);no leaf rehydration;395.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32478;adult;with petiole and rachis;379.88;427.96;276.05;1;;;0;2003-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;F9.1 - Riverine and lakeshore [Salix] scrub;GERMANY;;;P1 Haarle b. Carolinensiel, Friesland; Salsola kali;actual measurement (following LEDA data standards);no leaf rehydration;86.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18036;adult;with petiole and rachis;105.44;175.57;64.58;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.2 - Sand beaches above the driftline;GERMANY;32;347731;P 275 Borkum (SW), National park Niedersächsiches Wattenmeer;5937923 Salvia glutinosa;actual measurement (following LEDA data standards);no leaf rehydration;102.89;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23588;adult;with petiole and rachis;103.72;109.75;98.43;2;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;486676;P 528 NSG Hohenkr?n, Hegau, Baden-W?emberg;5294016 Salvia nemorosa;actual measurement (following LEDA data standards);no leaf rehydration;179.25;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;24767;adult;with petiole and rachis;178.85;208.42;142.51;2;;;1;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Salvia officinalis;actual measurement (following LEDA data standards);no leaf rehydration;292.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23945;adult;with petiole and rachis;296.43;326.96;273.44;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;P 417 Golmsdorf (north.), Thüringen; Salvia officinalis;actual measurement (following LEDA data standards);no leaf rehydration;126.67;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23945;adult;with petiole and rachis;126.15;136.13;120.31;2;;;1;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Salvia officinalis;actual measurement (following LEDA data standards);no leaf rehydration;298.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23945;adult;without petiole and rachis;302.76;334.27;277.61;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;P 417 Golmsdorf (north.), Thüringen; Salvia pratensis;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24299;adult;without petiole and rachis;171;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Salvia verticillata;actual measurement (following LEDA data standards);no leaf rehydration;227.29;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23952;adult;with petiole and rachis;203.47;238.31;144.8;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684186;P 411a/b Jenzig(berg) closely to Jena (Thüringen);5646244 Salvia verticillata;actual measurement (following LEDA data standards);no leaf rehydration;225.92;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23952;adult;without petiole and rachis;207.92;238.08;159.77;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684186;P 411a/b Jenzig(berg) closely to Jena (Thüringen);5646244 Salvinia natans;actual measurement (following LEDA data standards);no leaf rehydration;41.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17;adult;with petiole and rachis;41.52;54.11;28.14;4;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;C1.3 - Permanent eutrophic lakes. ponds and pools;GERMANY;32;456544;P 398 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Baden-Württemberg;5450820 Sambucus ebulus;actual measurement (following LEDA data standards);no leaf rehydration;167.7;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15361;adult;with petiole and rachis;168.13;177.32;159.38;2;;;10;2005-05-20 00:00:00.0;Preaggregated data obtained from single record. ;;G5.8 - Recently felled areas;GERMANY;32;402960;P 502 Kaiserstuhl, near Schelingen, Baden-W?emberg;5329543 Sambucus ebulus;actual measurement;leaf rehydration;180;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15361;adult;without petiole and rachis;180;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Ashford, Derbys; Sambucus nigra;actual measurement;leaf rehydration;204;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15363;adult;without petiole and rachis;204;;;5;8.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Sambucus nigra;actual measurement;leaf rehydration;188;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15363;adult;without petiole and rachis;188;;;5;7.3;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Smeekley Wood; Sambucus nigra;actual measurement;leaf rehydration;197;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15363;adult;without petiole and rachis;197;;;5;8.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Sambucus nigra;actual measurement;leaf rehydration;215;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15363;adult;without petiole and rachis;215;;;5;6.8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Sambucus racemosa;actual measurement (following LEDA data standards);no leaf rehydration;172.15;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15364;adult;with petiole and rachis;177.99;226.09;149.48;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;F2.3 - Subalpine deciduous scrub;GERMANY;32;426823;P 368a Höllental, Hirschsprung, Black forest;5309802 Sambucus racemosa;actual measurement (following LEDA data standards);no leaf rehydration;178.06;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15364;adult;without petiole and rachis;182.16;231.23;150.64;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. ;;F2.3 - Subalpine deciduous scrub;GERMANY;32;426823;P 368a Höllental, Hirschsprung, Black forest;5309802 Samolus valerandi;actual measurement (following LEDA data standards);no leaf rehydration;162.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28974;adult;with petiole and rachis;166.39;216.61;131.59;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Samolus valerandi;actual measurement (following LEDA data standards);no leaf rehydration;177.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28974;adult;without petiole and rachis;182.03;236.09;141.28;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352666;P 271 Borkum (NO), National park Niedersächsiches Wattenmeer;5942122 Sanguisorba minor;actual measurement;no leaf rehydration;292.92;20;1;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];29153;unknown;without petiole and rachis;292.92;;;5;9.615;2.15;;;;Roche, Philip(2004): Congruency analysis of species ranking based on leaf traits: which traits are the more reliable? [174];unknown from literature;FRANCE;31;0;eight location in Provence, altitude: 90-450m;0 Sanguisorba minor;actual measurement;leaf rehydration;179;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29153;adult;without petiole and rachis;179;;;1;;;;1997-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Ashover; Sanguisorba minor;actual measurement;leaf rehydration;286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29153;adult;without petiole and rachis;286;;;2;;;;1996-09-26 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sanguisorba minor;actual measurement;leaf rehydration;335;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29153;adult;without petiole and rachis;335;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Sanguisorba minor;actual measurement;leaf rehydration;344;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29153;adult;without petiole and rachis;344;;;2;;;;;;;;UNITED KINGDOM;;;; Sanguisorba minor;actual measurement;leaf rehydration;358;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29153;adult;without petiole and rachis;358;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Sanguisorba minor;field experiment;leaf rehydration;356;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29153;adult;without petiole and rachis;356;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Sanguisorba minor;field experiment;leaf rehydration;331;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29153;adult;without petiole and rachis;331;;;10;8;8;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Sanguisorba minor;field experiment;leaf rehydration;318;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;29153;adult;without petiole and rachis;318;;;10;5;5;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Sanguisorba officinalis;actual measurement;leaf rehydration;303;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30139;adult;without petiole and rachis;303;;;2;;;;;;;;UNITED KINGDOM;;;; Sanguisorba officinalis;actual measurement;leaf rehydration;223;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30139;adult;without petiole and rachis;223;;;2;;;;;;;;UNITED KINGDOM;;;; Sanguisorba officinalis;actual measurement;leaf rehydration;289;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;30139;adult;without petiole and rachis;289;;;2;;;;;;;;UNITED KINGDOM;;;; Sanicula europaea;actual measurement;leaf rehydration;198;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2102;adult;without petiole and rachis;198;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Saponaria officinalis;actual measurement;leaf rehydration;242;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17539;adult;without petiole and rachis;242;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Saponaria officinalis;actual measurement;leaf rehydration;157;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17539;adult;without petiole and rachis;157;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Sarracenia purpurea;actual measurement (following LEDA data standards);no leaf rehydration;204.04;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31302;adult;with petiole and rachis;206.63;242.87;179.43;2;;;10;2005-07-14 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;;;P 543 NSG Gildehauser Venn, SW- Lower Saxony; Satureja hortensis;laboratory/greenhouse/garden experiment;no leaf rehydration;171.4;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25007;adult;with petiole and rachis;171.29;178.45;163.91;2;;;0;2004-08-17 00:00:00.0;Preaggregated data obtained from single record. spataceous bracts;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Satureja hortensis;laboratory/greenhouse/garden experiment;no leaf rehydration;126.01;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25007;adult;with petiole and rachis;126.01;131.26;120.77;2;;;0;2004-08-17 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Saussurea alpina;actual measurement (following LEDA data standards);no leaf rehydration;188;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;9535;adult;with petiole and rachis;206.23;268.3;151.4;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Saussurea alpina;actual measurement (following LEDA data standards);no leaf rehydration;188.45;12;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;9535;adult;with petiole and rachis;208.68;317;142.9;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Saxifraga aizoides;actual measurement (following LEDA data standards);no leaf rehydration;187.03;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;31321;adult;with petiole and rachis;193.39;229.41;159.81;5;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. 5 leaves per individual;;D4 - Base-rich fens;NORWAY;32;608427;Hessdalen 29;6951859 Saxifraga aizoides;actual measurement;leaf rehydration;116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31321;adult;without petiole and rachis;116;;;1;;;;1997-05-09 00:00:00.0;;;;UNITED KINGDOM;;;Beinn Ime, Scotland; Saxifraga cotyledon;actual measurement (following LEDA data standards);no leaf rehydration;202.24;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;31403;adult;with petiole and rachis;190.48;241.47;103.26;1;;;;2005-07-23 00:00:00.0;Preaggregated data obtained from single record. ;;H3.6 - Weathered rock and outcrop habitats;NORWAY;32;610954;Hessdalen 30;6975579 Saxifraga granulata;actual measurement;leaf rehydration;88;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31381;adult;without petiole and rachis;88;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Saxifraga granulata;actual measurement;leaf rehydration;79;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31381;adult;without petiole and rachis;79;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney; Saxifraga hypnoides;actual measurement;leaf rehydration;178;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31390;adult;without petiole and rachis;178;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Saxifraga hypnoides;actual measurement;leaf rehydration;154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31390;adult;without petiole and rachis;154;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Saxifraga hypnoides;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31390;adult;without petiole and rachis;130;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Saxifraga paniculata;actual measurement (following LEDA data standards);no leaf rehydration;248.23;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31528;adult;with petiole and rachis;244.53;297.79;165.57;2;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;499419;P 525 Rock, Schwabian Donaualb near Beuron, Baden-W?emberg;5322615 Saxifraga stellaris;actual measurement (following LEDA data standards);no leaf rehydration;158.08;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;31429;adult;with petiole and rachis;159.9;227.73;119.58;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608905;Hessdalen 31;6951947 Saxifraga tridactylites;actual measurement (following LEDA data standards);no leaf rehydration;128.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;31616;adult;with petiole and rachis;135.23;175.56;115.87;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;Munich City (Bavaria); Saxifraga tridactylites;actual measurement;leaf rehydration;107;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31616;adult;without petiole and rachis;107;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Scabiosa atropurpurea;field experiment;leaf rehydration;193;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;19064;adult;without petiole and rachis;193;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.52;Camp Redon;43.38 Scabiosa atropurpurea;field experiment;leaf rehydration;217;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;19064;adult;without petiole and rachis;217;;;10;6;6;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Scabiosa atropurpurea;field experiment;leaf rehydration;213;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;19064;adult;without petiole and rachis;213;;;10;4;4;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Scabiosa atropurpurea;field experiment;leaf rehydration;222;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;19064;adult;without petiole and rachis;222;;;10;9;9;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;6.35;Les Agros;43.25 Scabiosa atropurpurea;laboratory/greenhouse/garden experiment;no leaf rehydration;141.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19064;adult;with petiole and rachis;146.35;195.29;108.71;2;;;0;2004-07-26 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Scabiosa canescens;actual measurement (following LEDA data standards);no leaf rehydration;211.56;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19427;adult;with petiole and rachis;210.92;239.45;183.05;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;E1.9 - Dry. open perennial and annual siliceous grassland. including inland dune grassland;GERMANY;32;475305;P 403 NSG Sandhauser Dünen, Oberrheinebene (Upper Rhine valley), Baden-Württemberg;5464410 Scabiosa columbaria;actual measurement;leaf rehydration;183;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19381;adult;without petiole and rachis;183;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Scabiosa columbaria;actual measurement;leaf rehydration;180;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19381;adult;without petiole and rachis;180;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Scabiosa columbaria;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19381;adult;without petiole and rachis;151;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick; Scabiosa ochroleuca;actual measurement (following LEDA data standards);no leaf rehydration;248.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19228;adult;with petiole and rachis;253.52;301.39;214.28;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;P 420 Sonnenberg /Bad Salza (Thüringen); Scandix pecten-veneris;actual measurement (following LEDA data standards);no leaf rehydration;128.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1087;adult;with petiole and rachis;128.07;141.57;115.41;2;;;0;2005-06-04 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;563497;Hiel?r, NW Frankershausen (Werra-Mei?er-Kreis), Hessen;5676264 Scheuchzeria palustris;actual measurement (following LEDA data standards);no leaf rehydration;376.74;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;43986;adult;with petiole and rachis;350.85;434.23;154.11;2;;;0;2003-09-06 00:00:00.0;Preaggregated data obtained from single record. ;;D5 - Sedge and reedbeds. normally without free-standing water;NETHERLANDS;;;Bethmenerven; Scheuchzeria palustris;actual measurement (following LEDA data standards);no leaf rehydration;209.09;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);43986;adult;with petiole and rachis;211.71;231.16;195.08;1;;;;2005-07-18 00:00:00.0;Preaggregated data obtained from single record. ;;D2.3 - Transition mires and quaking bogs;NORWAY;32;519862;Rindal 08;6993781 Schoenus ferrugineus;actual measurement (following LEDA data standards);no leaf rehydration;276.36;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37576;adult;with petiole and rachis;276.36;300.68;252.03;3;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ground leaves, determined as Schoenus x intermedius (Schoenus ferrugineus x S. nigricans) ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;500828;P 520 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5289577 Schoenus ferrugineus;actual measurement (following LEDA data standards);no leaf rehydration;335.85;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37576;adult;with petiole and rachis;335.85;346.08;325.62;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. stem was measured, determined as Schoenus x intermedius (Schoenus ferrugineus x S. nigricans) ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;500828;P 520 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5289577 Schoenus ferrugineus;actual measurement (following LEDA data standards);no leaf rehydration;339.06;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37576;adult;with petiole and rachis;345.58;372.09;333.33;3;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;500828;P 520 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5289577 Schoenus ferrugineus;actual measurement (following LEDA data standards);no leaf rehydration;291.38;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37576;adult;with petiole and rachis;295.35;314.15;276.73;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. stem was measured;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;500828;P 520 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5289577 Schoenus nigricans;actual measurement (following LEDA data standards);no leaf rehydration;411.55;8;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;37577;adult;with petiole and rachis;405.48;446.67;368.85;2;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Schoenus nigricans;actual measurement (following LEDA data standards);no leaf rehydration;361.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37577;adult;with petiole and rachis;364.13;407.9;320.09;2;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;352486;P 270 Borkum (NO), National park Niedersächsiches Wattenmeer;5941614 Schoenus nigricans;actual measurement;leaf rehydration;378;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37577;adult;without petiole and rachis;378;;;1;;;;1997-10-01 00:00:00.0;;;;UNITED KINGDOM;;;Norfolk; Scilla autumnalis;actual measurement (following LEDA data standards);no leaf rehydration;118.41;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38085;adult;with petiole and rachis;118.41;118.7;118.12;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;370995;P 260 Strangenberg/Westhalten, Alsace;5313962 Scilla bifolia;actual measurement (following LEDA data standards);no leaf rehydration;78.61;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38937;adult;with petiole and rachis;76.01;91.84;61.15;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;398325;P 222 Teiler-Wald, Oberrimsingen, Oberrheinebene (upper Rhine valley);5316161 Scilla sibirica;laboratory/greenhouse/garden experiment;no leaf rehydration;103.88;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38091;adult;with petiole and rachis;103.3;114.17;91.51;2;;;0;2004-04-08 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Scirpus cespitosus subsp. cespitosus;actual measurement (following LEDA data standards);no leaf rehydration;277.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37034;adult;with petiole and rachis;289.29;360.22;240.41;1;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;432992;P 515 NSG Horbacher Moor, Hotzenwald (Baden-W?emberg);5287560 Scirpus fluitans;actual measurement (following LEDA data standards);no leaf rehydration;206.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37478;adult;with petiole and rachis;216.77;262.77;194.25;5;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;C1.2 - Permanent mesotrophic lakes. ponds and pools;GERMANY;32;436870;P 318 mesotrophic pond, Landkreis Cloppenburg;5876414 Scirpus hudsonianus;actual measurement (following LEDA data standards);no leaf rehydration;327.58;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);37482;adult;with petiole and rachis;313.64;351.17;221.43;1;;;;2005-07-03 00:00:00.0;Preaggregated data obtained from single record. ;;D2 - Valley mires. poor fens and transition mires;NORWAY;32;517928;Rindal 04;6995268 Scirpus lacustris;actual measurement;leaf rehydration;219;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37486;adult;without petiole and rachis;219;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell; Scirpus lacustris;actual measurement;leaf rehydration;154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37486;adult;without petiole and rachis;154;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Scirpus lacustris s. tabernaemontani;actual measurement (following LEDA data standards);no leaf rehydration;115.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37488;adult;with petiole and rachis;120.69;147.32;99.5;1;;;0;2005-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;NETHERLANDS;32;;MK-6 Schiermonikoog (NL); Scirpus maritimus;actual measurement (following LEDA data standards);no leaf rehydration;278.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37054;adult;with petiole and rachis;283.29;331.4;224.38;2;;;0;2004-06-06 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352768;P 272 Borkum (NO), National park Niedersächsiches Wattenmeer;5941967 Scirpus setaceus;actual measurement (following LEDA data standards);no leaf rehydration;172.09;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37063;adult;with petiole and rachis;169.48;190.96;143.86;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. infructescence leaves;;H5.6 - Trampled areas;GERMANY;;;P 380 Zastlertal, Black forest, Baden-Württemberg; Scirpus sylvaticus;actual measurement (following LEDA data standards);no leaf rehydration;245.02;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;37067;adult;without petiole and rachis;244.98;251.91;234.92;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Scirpus sylvaticus;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;37067;adult;without petiole and rachis;186;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Scirpus triqueter;actual measurement (following LEDA data standards);no leaf rehydration;149.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;37508;adult;with petiole and rachis;149.79;179.22;122.04;1;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;J5.2 - Highly artificial saline and brackish running waters;GERMANY;;;P3 Huntekanal bei Berne; Scleranthus annuus;laboratory/greenhouse/garden experiment;no leaf rehydration;133.69;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17086;adult;with petiole and rachis;139;191.21;107.45;3;;;0;2004-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Scleranthus annuus;actual measurement (following LEDA data standards);leaf rehydration;137.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17086;adult;with petiole and rachis;139.58;165;116.4;1;;;0;2003-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;H5.6 - Trampled areas;GERMANY;;;MK21 Wooster Teerofen, Mecklenburg-Vorpommern; Scleranthus annuus subsp. polycarpos;actual measurement (following LEDA data standards);no leaf rehydration;220.85;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17542;adult;with petiole and rachis;220.85;220.85;220.85;31;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;;P 300 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Scleranthus perennis;actual measurement (following LEDA data standards);no leaf rehydration;215.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17092;adult;with petiole and rachis;214.1;240.51;186.52;3;;;0;2004-04-03 00:00:00.0;Preaggregated data obtained from single record. ;;B1 - Coastal dune and sand habitats;GERMANY;;;P 203 Spiekeroog, National park Niedersächsisches Wattenmeer; Scorzonera hispanica;actual measurement (following LEDA data standards);no leaf rehydration;216.83;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9619;adult;with petiole and rachis;223.17;254.38;207.74;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;P 416 c/b Golmsdorf northern forest slope (Thüringen); Scorzonera humilis;actual measurement (following LEDA data standards);no leaf rehydration;127.18;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;9541;adult;with petiole and rachis;125.74;138.21;116.42;2;;;1;2005-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;SWEDEN;;;Gotland, Eke; Scorzonera humilis;actual measurement (following LEDA data standards);no leaf rehydration;196.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9541;adult;without petiole and rachis;198.32;232.65;173.2;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;504761;P 388 Höhebühl closely to Bitz/ Truchtelfingen-Albstadt, Schwabian Alb;5343207 Scorzonera humilis;actual measurement (following LEDA data standards);no leaf rehydration;180.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9541;adult;with petiole and rachis;179.98;212.11;155.62;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;504761;P 388 Höhebühl closely to Bitz/ Truchtelfingen-Albstadt, Schwabian Alb;5343207 Scorzonera laciniata;actual measurement (following LEDA data standards);no leaf rehydration;194.05;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10007;adult;with petiole and rachis;192.01;209.5;171.62;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;625944;P 444 abandonded potash mine Beiersole, Harzvorland, Lower Saxony;5794830 Scorzonera laciniata;actual measurement (following LEDA data standards);no leaf rehydration;204.26;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10007;adult;without petiole and rachis;203.74;217.59;189.54;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;625944;P 444 abandonded potash mine Beiersole, Harzvorland, Lower Saxony;5794830 Scrophularia auriculata;actual measurement;leaf rehydration;158;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33429;adult;without petiole and rachis;158;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Scrophularia auriculata;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33429;adult;without petiole and rachis;142;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Rother Valley Country Park; Scrophularia auriculata;actual measurement;leaf rehydration;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33429;adult;without petiole and rachis;111;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell; Scrophularia canina;actual measurement (following LEDA data standards);no leaf rehydration;163.21;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32910;adult;with petiole and rachis;164.18;174.57;158.23;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;395240;P 245 a gravel pit, old, abandonded, closely to Bremgarten/Oberrheinebene (upper Rhine valley);5305679 Scrophularia canina;actual measurement (following LEDA data standards);no leaf rehydration;167.21;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32910;adult;without petiole and rachis;168.89;179.53;162.43;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;395240;P 245 a gravel pit, old, abandonded, closely to Bremgarten/Oberrheinebene (upper Rhine valley);5305679 Scrophularia nodosa;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32862;adult;without petiole and rachis;182;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Scrophularia umbrosa;actual measurement (following LEDA data standards);no leaf rehydration;189.14;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;34372;adult;with petiole and rachis;182.54;217.08;140.26;2;;;0;2005-07-06 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Kornwerderzand; Scrophularia umbrosa;actual measurement (following LEDA data standards);no leaf rehydration;107.93;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34372;adult;with petiole and rachis;107.67;119.31;96.22;2;;;0;2005-06-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;606131;P 536 wet grassland beside river Trave near L?k, Schleswig-Holstein;5967320 Scrophularia vernalis;laboratory/greenhouse/garden experiment;no leaf rehydration;175.87;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33383;adult;with petiole and rachis;172.3;189.68;149.74;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Scrophularia vernalis;laboratory/greenhouse/garden experiment;no leaf rehydration;188.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33383;adult;without petiole and rachis;186.05;203.31;166.59;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Scutellaria galericulata;actual measurement (following LEDA data standards);no leaf rehydration;227.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;24386;adult;without petiole and rachis;231.39;260.78;207.73;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Scutellaria galericulata;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24386;adult;without petiole and rachis;160;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr, Doncaster; Scutellaria galericulata;actual measurement;leaf rehydration;246;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24386;adult;without petiole and rachis;246;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Killamarsh; Scutellaria hastifolia;actual measurement (following LEDA data standards);no leaf rehydration;216.84;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23966;adult;with petiole and rachis;219.64;239.12;208.73;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;323783;P 313 NSG Hohenauer See, Brandenburg;5838731 Scutellaria minor;actual measurement (following LEDA data standards);no leaf rehydration;235.52;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;23967;adult;with petiole and rachis;238.08;285.22;215.87;2;;;0;2005-07-11 00:00:00.0;Preaggregated data obtained from single record. ;;E - Grassland and tall forb habitats;NETHERLANDS;;;Westerholt; Sedum acre;actual measurement;leaf rehydration;64;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18178;adult;without petiole and rachis;64;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Sedum album;actual measurement (following LEDA data standards);no leaf rehydration;49.96;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18182;adult;with petiole and rachis;49.7;56.72;41.58;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Sedum annuum;actual measurement (following LEDA data standards);no leaf rehydration;56.54;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);18195;adult;with petiole and rachis;57.28;77.33;38.72;1;;;;2005-08-04 00:00:00.0;Preaggregated data obtained from single record. ;;G4.2 - Mixed taiga woodland with [Betula];NORWAY;32;518307;Rindal 10;6993761 Sedum cepaea;laboratory/greenhouse/garden experiment;no leaf rehydration;53.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18212;adult;with petiole and rachis;54.03;66.37;45.68;3;;;0;2005-06-20 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Sedum dasyphyllum;actual measurement (following LEDA data standards);no leaf rehydration;25.24;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18216;adult;with petiole and rachis;25.24;29.37;21.11;3;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;486567;P 530 NSG Hohentwiel, Hegau, Baden-W?emberg;5290308 Sedum rubens;laboratory/greenhouse/garden experiment;no leaf rehydration;34.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18260;adult;with petiole and rachis;38.24;57.51;21.85;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Sedum rupestre;actual measurement (following LEDA data standards);no leaf rehydration;85.16;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18224;adult;with petiole and rachis;80.63;95.59;58.98;3;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;;P 300 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Sedum rupestre;actual measurement;leaf rehydration;60;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18224;adult;without petiole and rachis;60;;;1;;;;1998-09-10 00:00:00.0;;;;UNITED KINGDOM;;;Mansfield Woodhouse; Sedum sexangulare;actual measurement (following LEDA data standards);no leaf rehydration;108.18;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18275;adult;with petiole and rachis;108.93;120.48;97.83;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;397565;P 224 gravel pit near Oberrimsingen, Oberrheinebene (upper Rhine valley);5316827 Sedum spurium;actual measurement (following LEDA data standards);no leaf rehydration;77.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18278;adult;with petiole and rachis;76.79;92.43;55.05;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;J2.5 - Constructed field boundaries;GERMANY;32;430693;P 357b Höllsteig/Höllental, Black forest;5307522 Sedum telephium;actual measurement;leaf rehydration;63;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18283;adult;without petiole and rachis;63;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Sedum telephium s. maximum;actual measurement (following LEDA data standards);no leaf rehydration;64.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18293;adult;with petiole and rachis;65.65;75.67;60.58;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;E1.7 - Non-Mediterranean dry acid and neutral closed grassland;GERMANY;32;620059.5441;P14 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5973920.772 Selinum carvifolia;actual measurement (following LEDA data standards);no leaf rehydration;216.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1092;adult;with petiole and rachis;212.91;246.78;156.98;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;608745;P 436 Steinbruchwiese b. NSG Priorteich/Sachsenstein (Harzvorland, Lower Saxony);5717002 Selinum carvifolia;actual measurement (following LEDA data standards);no leaf rehydration;237.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1092;adult;without petiole and rachis;232.85;272.61;185.29;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;32;608745;P 436 Steinbruchwiese b. NSG Priorteich/Sachsenstein (Harzvorland, Lower Saxony);5717002 Sempervivum tectorum;actual measurement (following LEDA data standards);no leaf rehydration;37.94;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;18351;adult;with petiole and rachis;39.17;46.22;31.17;2;;;0;2005-07-02 00:00:00.0;Preaggregated data obtained from single record. ;;------ No Vegetation;NETHERLANDS;;;Haren; Sempervivum tectorum;actual measurement (following LEDA data standards);no leaf rehydration;49.45;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;18351;adult;with petiole and rachis;52.96;66.5;44.26;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;I2.3 - Weed communities of recently abandoned garden areas;GERMANY;;;P 406 east of Hemsbach/Odenwald (Bergstrasse), Baden-Württemberg; Senecio aquaticus;actual measurement;leaf rehydration;148;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9544;adult;without petiole and rachis;148;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Senecio aquaticus;actual measurement;leaf rehydration;97;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9544;adult;without petiole and rachis;97;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Senecio aquaticus;actual measurement;leaf rehydration;116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9544;adult;without petiole and rachis;116;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Pebley Reservoir; Senecio aquaticus s. barbareifolius;actual measurement (following LEDA data standards);no leaf rehydration;133.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11409;adult;with petiole and rachis;134.01;162.37;109.8;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;33;449254;P 464 National park Unteres Odertal, Brandenburg;5873799 Senecio aquaticus s. barbareifolius;actual measurement (following LEDA data standards);no leaf rehydration;132.56;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11409;adult;without petiole and rachis;132.15;164.06;112.55;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;33;449254;P 464 National park Unteres Odertal, Brandenburg;5873799 Senecio bicolor;actual measurement;leaf rehydration;220;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9624;adult;without petiole and rachis;220;;;1;;;;1997-10-06 00:00:00.0;;;;UNITED KINGDOM;;;Kiverton Park Colliery; Senecio erucifolius;actual measurement;leaf rehydration;206;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11230;adult;without petiole and rachis;206;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Laughton Common; Senecio erucifolius;actual measurement;leaf rehydration;168;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11230;adult;without petiole and rachis;168;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Senecio germanicus;actual measurement (following LEDA data standards);no leaf rehydration;103.52;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60251;adult;with petiole and rachis;104.41;109.22;101.37;2;;;0;2004-07-10 00:00:00.0;Preaggregated data obtained from single record. determinated as S. germanicus ssp. g.;;E5.5 - Subalpine moist or wet tall-herb and fern habitats;GERMANY;32;462220;P 382a Zastlertal, Black forest, Baden-Württemberg;5305664 Senecio inaequidens;actual measurement (following LEDA data standards);no leaf rehydration;164.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9629;adult;with petiole and rachis;163.32;188.13;143.29;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. leaf mass not measured oven dry but at room temperature;;J2.6 - Disused rural constructions;GERMANY;32;449141.3516;P1 NSG Krusenbusch (Oldenburg);5883035.844 Senecio inaequidens;actual measurement (following LEDA data standards);no leaf rehydration;204.38;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9629;adult;with petiole and rachis;211.26;265.44;174.17;1;;;0;2003-07-02 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Senecio jacobaea;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10452;adult;without petiole and rachis;140;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Senecio jacobaea;actual measurement;leaf rehydration;109;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10452;adult;without petiole and rachis;109;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Senecio jacobaea;actual measurement;leaf rehydration;94;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10452;adult;without petiole and rachis;94;;;2;;;;;;;;UNITED KINGDOM;;;; Senecio jacobaea;actual measurement;leaf rehydration;155.97;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;10452;adult;without petiole and rachis;158.21;171.23;147.08;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park M?z; Senecio nemorensis subsp. fuchsii;actual measurement (following LEDA data standards);no leaf rehydration;134.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9810;adult;with petiole and rachis;133.36;151.3;120.97;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. determinated as S. ovatus;;G3.1 - [Abies] and [Picea] woodland;GERMANY;32;431028;P 350 Ravennaschlucht, Black forest (Baden-Württemberg);5307908 Senecio paludosus;actual measurement (following LEDA data standards);no leaf rehydration;131.97;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11419;adult;with petiole and rachis;136.46;153.3;124.1;2;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;499964;P 517 NSG Mettnau, Lake of Constance, Baden-W?emberg;5285800 Senecio paludosus;actual measurement (following LEDA data standards);no leaf rehydration;182.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11419;adult;with petiole and rachis;182.27;197.64;165.2;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;323783;P 313 NSG Hohenauer See, Brandenburg;5838731 Senecio squalidus;laboratory/greenhouse/garden experiment;no leaf rehydration;109.2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9306;adult;with petiole and rachis;109.85;132.8;90.85;2;;;0;2004-06-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Senecio squalidus;actual measurement;leaf rehydration;128;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9306;adult;without petiole and rachis;128;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Senecio squalidus;actual measurement;leaf rehydration;106;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9306;adult;without petiole and rachis;106;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Stony Middleton; Senecio squalidus;actual measurement;leaf rehydration;117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9306;adult;without petiole and rachis;117;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Worksop; Senecio sylvaticus;actual measurement;leaf rehydration;114;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9889;adult;without petiole and rachis;114;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Senecio vernalis;actual measurement (following LEDA data standards);no leaf rehydration;88.92;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11179;adult;with petiole and rachis;91.11;108.62;80.08;2;;;0;2005-05-05 00:00:00.0;Preaggregated data obtained from single record. ;;I1.5 - Bare tilled. fallow or recently abandoned arable land;GERMANY;;;P-494 car park beside A2, eastern of Burg (Sachsen-Anhalt); Senecio viscosus;actual measurement;leaf rehydration;144;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10121;adult;without petiole and rachis;144;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Senecio viscosus;actual measurement;leaf rehydration;131;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10121;adult;without petiole and rachis;131;;;2;;;;1996-07-16 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Senecio viscosus;actual measurement;leaf rehydration;85;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10121;adult;without petiole and rachis;85;;;2;;;;1996-07-17 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Senecio vulgaris;actual measurement;leaf rehydration;94;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10456;adult;without petiole and rachis;94;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Senecio vulgaris;actual measurement;leaf rehydration;74;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10456;adult;without petiole and rachis;74;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Serratula tinctoria;actual measurement (following LEDA data standards);no leaf rehydration;171.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10123;adult;with petiole and rachis;175.13;200.62;156.56;3;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;;;P 301 NSG Untere Havel Nord, Brandenburg; Serratula tinctoria;actual measurement (following LEDA data standards);no leaf rehydration;175.49;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10123;adult;without petiole and rachis;180.17;206.89;165.79;3;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E3.5 - Moist or wet oligotrophic grassland;GERMANY;;;P 301 NSG Untere Havel Nord, Brandenburg; Serratula tinctoria;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10123;adult;without petiole and rachis;225;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Seseli libanotis;actual measurement (following LEDA data standards);no leaf rehydration;172.47;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1044;juvenile;with petiole and rachis;173.7;197.17;152.29;1;;;0;2005-05-26 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;G1.6 - [Fagus] woodland;GERMANY;32;499419;P 525 Rock, Schwabian Donaualb near Beuron, Baden-W?emberg;5322615 Sesleria albicans;actual measurement (following LEDA data standards);leaf rehydration;296.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43301;adult;with petiole and rachis;287.79;307.83;262.26;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Setaria italica;laboratory/greenhouse/garden experiment;no leaf rehydration;206.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42741;adult;with petiole and rachis;208.31;229.23;194.04;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Setaria pumila;laboratory/greenhouse/garden experiment;no leaf rehydration;216.37;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43456;adult;with petiole and rachis;216.37;219.89;212.85;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Setaria viridis;laboratory/greenhouse/garden experiment;no leaf rehydration;231.22;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42743;adult;with petiole and rachis;227.47;238.19;209.15;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Setaria viridis;actual measurement;leaf rehydration;318;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42743;adult;without petiole and rachis;318;;;1;;;;1999-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Retford; Sherardia arvensis;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31967;adult;without petiole and rachis;203;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Sherardia arvensis;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31967;adult;without petiole and rachis;174;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Sibbaldia procumbens;actual measurement (following LEDA data standards);no leaf rehydration;355.15;14;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;30472;adult;with petiole and rachis;359.36;430;310;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Sibbaldia procumbens;actual measurement (following LEDA data standards);no leaf rehydration;373;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;30472;adult;with petiole and rachis;376.6;435;325.4;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Sigesbeckia orientalis;laboratory/greenhouse/garden experiment;no leaf rehydration;127.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11602;adult;with petiole and rachis;128.55;142.36;118.64;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Silaum silaus;actual measurement;leaf rehydration;292;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;993;adult;without petiole and rachis;292;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Silaum silaus;actual measurement;leaf rehydration;285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;993;adult;without petiole and rachis;285;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Laughton Common; Silaum silaus;actual measurement;leaf rehydration;285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;993;adult;without petiole and rachis;285;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Silene armeria;actual measurement (following LEDA data standards);no leaf rehydration;148.65;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17110;adult;with petiole and rachis;148.67;173.02;121.95;2;;;0;2005-07-20 00:00:00.0;Preaggregated data obtained from single record. ;;H - Inland unvegetated or sparsely vegetated habitats;NETHERLANDS;;;Stadskanaal, garden fam. Pras; Silene chlorantha;actual measurement (following LEDA data standards);no leaf rehydration;229.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15554;adult;with petiole and rachis;230.68;253.05;208.48;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;P 462 Gabower Hänge FFH, Biosphärenreservat Schorfheide-Chorin (Brandenburg); Silene cretica;laboratory/greenhouse/garden experiment;no leaf rehydration;137.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16289;adult;with petiole and rachis;137.21;158.75;108.16;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Silene dichotoma;laboratory/greenhouse/garden experiment;no leaf rehydration;123.01;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15776;adult;with petiole and rachis;119.9;159.34;88.79;2;;;0;2004-06-22 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Silene dioica;actual measurement;leaf rehydration;112;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17578;adult;without petiole and rachis;112;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Bradwell; Silene gallica;laboratory/greenhouse/garden experiment;no leaf rehydration;131.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16298;adult;with petiole and rachis;131.99;153.71;109.93;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Silene latifolia;actual measurement;leaf rehydration;145;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17283;adult;without petiole and rachis;145;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Silene latifolia;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17283;adult;without petiole and rachis;140;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Silene linicola;laboratory/greenhouse/garden experiment;no leaf rehydration;129.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17593;adult;with petiole and rachis;128.71;150.62;108.39;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Silene noctiflora;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17252;adult;without petiole and rachis;176;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Silene noctiflora;actual measurement;leaf rehydration;169;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17252;adult;without petiole and rachis;169;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Silene nutans;actual measurement;leaf rehydration;168;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16673;adult;without petiole and rachis;168;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Silene otites;actual measurement (following LEDA data standards);no leaf rehydration;221.59;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15749;adult;with petiole and rachis;220.67;246.2;194.21;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsiches Wattenmeer;5939106 Silene otites;actual measurement (following LEDA data standards);no leaf rehydration;233.02;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15749;adult;without petiole and rachis;229.87;260.34;196.26;2;;;0;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsiches Wattenmeer;5939106 Silene rupestris;actual measurement (following LEDA data standards);no leaf rehydration;184.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17622;adult;with petiole and rachis;181.59;225.86;128.82;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;H3.1 - Acid siliceous inland cliffs;GERMANY;32;413813;P 353 upside Ravennaschlucht, Black forest;5307897 Silene uniflora;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17634;adult;without petiole and rachis;130;;;2;;;;1996-08-24 00:00:00.0;;;;UNITED KINGDOM;;;Alnmouth; Silene vulgaris;actual measurement;leaf rehydration;193;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16657;adult;without petiole and rachis;193;;;2;;;;1996-09-26 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Silene vulgaris;actual measurement;leaf rehydration;139;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16657;adult;without petiole and rachis;139;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Treeton, S Yks; Sinapis alba;laboratory/greenhouse/garden experiment;no leaf rehydration;160.19;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13450;adult;with petiole and rachis;157.51;178.95;134.82;2;;;0;2005-07-04 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Sinapis alba;actual measurement;leaf rehydration;122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13450;adult;without petiole and rachis;122;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sinapis arvensis;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13454;adult;without petiole and rachis;129;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black rock, Derbys; Sinapis arvensis;actual measurement;leaf rehydration;122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13454;adult;without petiole and rachis;122;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Doe Lea; Sinapis arvensis;actual measurement;leaf rehydration;78;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13454;adult;without petiole and rachis;78;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sison amomum;actual measurement;leaf rehydration;210;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;995;adult;without petiole and rachis;210;;;1;;;;1997-08-10 00:00:00.0;;;;UNITED KINGDOM;;;Ramsden Bellhouse, Essex; Sisymbrium altissimum;laboratory/greenhouse/garden experiment;no leaf rehydration;113.94;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13034;adult;with petiole and rachis;113.94;119.76;108.12;2;;;0;2004-07-14 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Sisymbrium altissimum;actual measurement;leaf rehydration;132;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13034;adult;without petiole and rachis;132;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Sisymbrium altissimum;actual measurement;leaf rehydration;132;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13034;adult;without petiole and rachis;132;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sisymbrium loeselii;laboratory/greenhouse/garden experiment;no leaf rehydration;183.56;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13930;adult;with petiole and rachis;183.56;183.56;183.56;2;;;0;2004-10-13 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Sisymbrium loeselii;laboratory/greenhouse/garden experiment;no leaf rehydration;192.33;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13930;adult;without petiole and rachis;192.33;192.33;192.33;2;;;0;2004-10-13 00:00:00.0;Preaggregated data obtained from single record. ground leaves;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Sisymbrium loeselii;laboratory/greenhouse/garden experiment;no leaf rehydration;210.85;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13930;adult;with petiole and rachis;199.9;255.21;140.35;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. spathaceous bracts. collection date of #1 is 2004-10-13;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Sisymbrium loeselii;laboratory/greenhouse/garden experiment;no leaf rehydration;209.2;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13930;adult;without petiole and rachis;205.8;250.2;140.4;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. spathaceous bracts. collection date of #1 is 2004-10-13;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Sisymbrium loeselii;actual measurement;leaf rehydration;177;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13930;adult;without petiole and rachis;177;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sisymbrium officinale;actual measurement;leaf rehydration;143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13041;adult;without petiole and rachis;143;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Bradwell; Sisymbrium officinale;actual measurement;leaf rehydration;133;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13041;adult;without petiole and rachis;133;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Sisymbrium officinale;actual measurement;leaf rehydration;141;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13041;adult;without petiole and rachis;141;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sisymbrium orientale;actual measurement;leaf rehydration;125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13042;adult;without petiole and rachis;125;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Sisymbrium orientale;actual measurement;leaf rehydration;116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13042;adult;without petiole and rachis;116;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sium latifolium;actual measurement (following LEDA data standards);no leaf rehydration;171.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;1536;adult;without petiole and rachis;171.79;183.5;156.53;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Sium latifolium;actual measurement (following LEDA data standards);no leaf rehydration;149.22;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1536;adult;without petiole and rachis;149.22;149.22;149.22;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;D - Mire. bog and fen habitats;GERMANY;;;Px NSG Poggenpohler Moor (Landkreis Oldenburg); Sium latifolium;actual measurement (following LEDA data standards);no leaf rehydration;135.9;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1536;adult;with petiole and rachis;135.9;135.9;135.9;1;;;0;2003-09-23 00:00:00.0;Preaggregated data obtained from single record. ;;D - Mire. bog and fen habitats;GERMANY;;;Px NSG Poggenpohler Moor (Landkreis Oldenburg); Smyrnium olusatrum;actual measurement;leaf rehydration;155;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1000;adult;without petiole and rachis;155;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Smyrnium perfoliatum;actual measurement (following LEDA data standards);no leaf rehydration;249.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2032;adult;with petiole and rachis;253.14;294.45;208.33;2;;;0;2004-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;B1 - Coastal dune and sand habitats;GERMANY;32;;P 264 Kieler Förde, Falkensteiner Strand, Baltic sea; Solanum dulcamara;actual measurement (following LEDA data standards);no leaf rehydration;150.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;35041;adult;without petiole and rachis;150.53;171.94;136.72;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Solanum dulcamara;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35041;adult;without petiole and rachis;171;;;5;7.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Calver Sough; Solanum dulcamara;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35041;adult;without petiole and rachis;174;;;5;8.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Solanum dulcamara;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35041;adult;without petiole and rachis;129;;;5;12.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Solanum dulcamara;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35041;adult;without petiole and rachis;181;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Solanum dulcamara;actual measurement;leaf rehydration;218;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35041;adult;without petiole and rachis;218;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Solanum nigrum;actual measurement;leaf rehydration;154;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34958;adult;without petiole and rachis;154;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Solanum nigrum;actual measurement;leaf rehydration;109;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34958;adult;without petiole and rachis;109;;;2;;;;1996-09-22 00:00:00.0;;;;UNITED KINGDOM;;;Stockport; Solanum tuberosum;actual measurement (following LEDA data standards);no leaf rehydration;125.94;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;34915;adult;with petiole and rachis;126.87;132.65;121.94;2;;;1;2005-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Schuilingsoord; Soleirolia soleirolii;actual measurement;leaf rehydration;243;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35142;adult;without petiole and rachis;243;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Solidago canadensis;actual measurement;leaf rehydration;221;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9491;adult;without petiole and rachis;221;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton Village; Solidago gigantea;actual measurement;leaf rehydration;308;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10023;adult;without petiole and rachis;308;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Solidago virgaurea;actual measurement;leaf rehydration;261;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9820;adult;without petiole and rachis;261;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Solidago virgaurea;actual measurement;leaf rehydration;193;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9820;adult;without petiole and rachis;193;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Sonchus arvensis;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10586;adult;without petiole and rachis;151;;;2;;;;1996-07-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Sonchus arvensis;actual measurement;leaf rehydration;130;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10586;adult;without petiole and rachis;130;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Taddington; Sonchus arvensis;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10586;adult;without petiole and rachis;135;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Sonchus asper;actual measurement;leaf rehydration;138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9413;adult;without petiole and rachis;138;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Sonchus asper;actual measurement;leaf rehydration;109;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9413;adult;without petiole and rachis;109;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Sonchus asper;actual measurement;leaf rehydration;124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9413;adult;without petiole and rachis;124;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Sonchus oleraceus;actual measurement;leaf rehydration;123;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10587;adult;without petiole and rachis;123;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Sonchus oleraceus;actual measurement;leaf rehydration;114;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10587;adult;without petiole and rachis;114;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Calver, Derbys; Sonchus palustris;actual measurement (following LEDA data standards);no leaf rehydration;180.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9894;adult;with petiole and rachis;186.17;229.61;154.82;1;;;0;2003-09-03 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;621038.8111;P12 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5974188.366 Sorbus aria;actual measurement (following LEDA data standards);no leaf rehydration;236.01;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30087;adult;with petiole and rachis;236.01;236.01;236.01;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;32;407711;P 234 NSG Ölberg bei Bollschweil;5307743 Sorbus aria;actual measurement (following LEDA data standards);no leaf rehydration;216.69;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30087;adult;without petiole and rachis;216.69;216.69;216.69;2;;;0;2004-05-12 00:00:00.0;Preaggregated data obtained from single record. ;;F3.1 - Temperate thickets and scrub;GERMANY;32;407711;P 234 NSG Ölberg bei Bollschweil;5307743 Sorbus aria;actual measurement (following LEDA data standards);leaf rehydration;357.83;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30087;adult;with petiole and rachis;341.02;377.28;292.86;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Sorbus aria;actual measurement (following LEDA data standards);leaf rehydration;360.34;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;30087;adult;without petiole and rachis;342.25;378.64;293.38;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Sorbus aucuparia;actual measurement;leaf rehydration;277;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29162;adult;without petiole and rachis;277;;;5;13.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Sorbus aucuparia;actual measurement;leaf rehydration;256;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29162;adult;without petiole and rachis;256;;;5;8.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Sorbus aucuparia;actual measurement;leaf rehydration;272;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29162;adult;without petiole and rachis;272;;;5;6.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Sorbus aucuparia;actual measurement;leaf rehydration;270;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;29162;adult;without petiole and rachis;270;;;5;7.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Smeekley Wood; Sorbus intermedia;actual measurement (following LEDA data standards);no leaf rehydration;235.72;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;30014;adult;with petiole and rachis;236.01;247.55;224.74;1;;;;2005-06-10 00:00:00.0;Preaggregated data obtained from single record. ;;G5.1 - Lines of trees;NORWAY;32;573177;Trondheim 09;7033567 Sorbus torminalis;actual measurement (following LEDA data standards);no leaf rehydration;247.87;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29551;adult;with petiole and rachis;252.35;300.05;216.24;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;G1.7 - Thermophilous deciduous woodland;GERMANY;32;389536;P 252 NSG Eichholz-Buchholz, Baden-Württemberg;5282872 Sorbus torminalis;actual measurement (following LEDA data standards);no leaf rehydration;245.96;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29551;adult;without petiole and rachis;251.16;298.87;213.98;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;G1.7 - Thermophilous deciduous woodland;GERMANY;32;389536;P 252 NSG Eichholz-Buchholz, Baden-Württemberg;5282872 Sparganium emersum;actual measurement;leaf rehydration;105;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43992;adult;without petiole and rachis;105;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Sparganium erectum;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43993;adult;without petiole and rachis;186;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Sparganium erectum;actual measurement;leaf rehydration;108;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43993;adult;without petiole and rachis;108;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Sparganium erectum;actual measurement (following LEDA data standards);no leaf rehydration;147.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;43993;adult;without petiole and rachis;147.7;160.68;129.86;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Sparganium minimum;actual measurement (following LEDA data standards);no leaf rehydration;126.78;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43999;adult;with petiole and rachis;131.74;173.61;92.23;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. water form;;C1.1 - Permanent oligotrophic lakes. ponds and pools;GERMANY;32;610222;P 432 Moortümpel b. Lausenbuche (Harz, Lower Saxony);5728729 Sparganium minimum;actual measurement (following LEDA data standards);no leaf rehydration;152.55;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43999;adult;with petiole and rachis;155.98;190.29;135.77;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. land form;;C1.1 - Permanent oligotrophic lakes. ponds and pools;GERMANY;32;610222;P 432 Moortümpel b. Lausenbuche (Harz, Lower Saxony);5728729 Spartina anglica;actual measurement (following LEDA data standards);no leaf rehydration;361.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43117;adult;with petiole and rachis;360.17;391.12;334.13;2;;;0;2004-09-11 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;;;P 482 Wangerooge Ost, Nationalpark Niedersächsiches Wattenmeer; Spergula arvensis;actual measurement;leaf rehydration;146;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16731;adult;without petiole and rachis;146;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Spergula arvensis;actual measurement;leaf rehydration;144;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16731;adult;without petiole and rachis;144;;;2;;;;1996-08-05 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Spergula morisonii;actual measurement (following LEDA data standards);no leaf rehydration;138.59;14;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17638;adult;with petiole and rachis;140.95;196.51;94.46;3;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;;P 300 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Spergularia echinosperma;actual measurement (following LEDA data standards);no leaf rehydration;138.55;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15958;adult;with petiole and rachis;137.95;162.71;116.22;1;;;0;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;C3.5 - Pioneer and ephemeral vegetation of periodically inundated shores;GERMANY;32;645939.1681;P4 Biosphärenreservat Niedersächsiche Elbtalaue bei Damnatz, Buhnen u. Sandflächen;5889271.272 Spergularia marina;laboratory/greenhouse/garden experiment;no leaf rehydration;100.75;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17645;adult;with petiole and rachis;101.81;109.97;93.47;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Spergularia marina;actual measurement;leaf rehydration;89;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17645;adult;without petiole and rachis;89;;;1;;;;1997-10-06 00:00:00.0;;;;UNITED KINGDOM;;;Widnes; Spergularia marina;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17645;adult;without petiole and rachis;129;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Spergularia marina;actual measurement;leaf rehydration;99;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17645;adult;without petiole and rachis;99;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Doe Lea; Spergularia media;actual measurement (following LEDA data standards);no leaf rehydration;128.49;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16741;adult;with petiole and rachis;129.47;137.92;121.99;1;;;0;2003-09-27 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;;;P1 Mellum, Nationalpark Niedersächsiches Wattenmeer (Northsea / Lower Saxony); Spergularia media;actual measurement (following LEDA data standards);no leaf rehydration;88.82;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;16741;adult;with petiole and rachis;86.67;100.25;67.29;1;;;0;2003-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;B1.1 - Angiosperm communities of sand beach driftlines;GERMANY;32;622346.0808;P7 NSG Dummersdorfer Ufer (Lübeck, near Baltic Sea);5975382.406 Spergularia rubra;actual measurement;leaf rehydration;135;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17650;adult;without petiole and rachis;135;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Spergularia rupicola;actual measurement;leaf rehydration;78;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17651;adult;without petiole and rachis;78;;;2;;;;1996-08-31 00:00:00.0;;;;UNITED KINGDOM;;;Devon, UK; Spiraea salicifolia;actual measurement (following LEDA data standards);no leaf rehydration;404.05;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;29508;adult;with petiole and rachis;407.34;430.03;383.71;2;;;0;2004-08-18 00:00:00.0;Preaggregated data obtained from single record. determinated as S. billardii;;FA - Hedgerows;GERMANY;;;P 441a/b NSG Fehntjer Tief, Ostfriesland; Stachys arvensis;actual measurement;leaf rehydration;148;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24369;adult;without petiole and rachis;148;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Stachys arvensis;actual measurement;leaf rehydration;194;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24369;adult;without petiole and rachis;194;;;1;;;;1997-08-10 00:00:00.0;;;;UNITED KINGDOM;;;Bawtry; Stachys officinalis;actual measurement (following LEDA data standards);leaf rehydration;216.14;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24916;adult;with petiole and rachis;212.17;228.49;187.57;1;;;0;2003-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;545000;MK 2, Schwäbische Alb;5375900 Stachys officinalis;actual measurement (following LEDA data standards);leaf rehydration;218.41;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24916;adult;without petiole and rachis;213.58;228.46;191.84;1;;;0;2003-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;545000;MK 2, Schwäbische Alb;5375900 Stachys officinalis;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24916;adult;without petiole and rachis;237;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Stachys officinalis;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24916;adult;without petiole and rachis;247;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Stachys officinalis;field experiment;leaf rehydration;277;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;24916;adult;without petiole and rachis;277;;;10;5;5;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Stachys officinalis;field experiment;leaf rehydration;264;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;24916;adult;without petiole and rachis;264;;;10;4;4;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Stachys palustris;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24921;adult;without petiole and rachis;174;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Stachys palustris;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24921;adult;without petiole and rachis;190;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Stachys recta;actual measurement (following LEDA data standards);leaf rehydration;209.92;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24800;adult;with petiole and rachis;214.79;245.81;200.16;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Stachys recta;actual measurement (following LEDA data standards);leaf rehydration;211.69;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24800;adult;without petiole and rachis;217.39;241.1;205.09;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Stachys sylvatica;actual measurement;leaf rehydration;228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24023;adult;without petiole and rachis;228;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Pebley Reservoir; Stachys sylvatica;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24023;adult;without petiole and rachis;186;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Staphylea pinnata;actual measurement (following LEDA data standards);no leaf rehydration;216.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34660;adult;with petiole and rachis;218.88;303.97;184.06;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;G1.7 - Thermophilous deciduous woodland;GERMANY;32;389536;P 252 NSG Eichholz-Buchholz, Baden-Württemberg;5282872 Staphylea pinnata;actual measurement (following LEDA data standards);no leaf rehydration;227.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34660;adult;without petiole and rachis;227.6;247.81;199.94;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;G1.7 - Thermophilous deciduous woodland;GERMANY;32;389536;P 252 NSG Eichholz-Buchholz, Baden-Württemberg;5282872 Stellaria graminea;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17658;adult;without petiole and rachis;203;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Stellaria graminea;actual measurement;leaf rehydration;171;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17658;adult;without petiole and rachis;171;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Stellaria graminea;actual measurement;leaf rehydration;162;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17658;adult;without petiole and rachis;162;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Stellaria graminea;actual measurement;leaf rehydration;146.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;17658;adult;without petiole and rachis;162.63;211.18;112.05;2;;;0;2003-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;348957;national park Müritz;5924696 Stellaria holostea;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16753;adult;without petiole and rachis;182;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Stellaria holostea;actual measurement;leaf rehydration;173;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16753;adult;without petiole and rachis;173;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Bretton, Derbys; Stellaria media;actual measurement;leaf rehydration;99;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16755;adult;without petiole and rachis;99;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Stellaria media;actual measurement;leaf rehydration;69;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16755;adult;without petiole and rachis;69;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Stellaria neglecta;actual measurement;leaf rehydration;112;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16759;adult;without petiole and rachis;112;;;2;;;;1996-04-30 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Stellaria neglecta;actual measurement;leaf rehydration;56;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;16759;adult;without petiole and rachis;56;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Stanton in Peak, Derbys; Stellaria nemorum;actual measurement (following LEDA data standards);no leaf rehydration;172.61;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;16761;adult;with petiole and rachis;173.86;196.65;141.66;2;;;0;2005-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren, garden Renee Bekker; Stellaria nemorum subsp. nemorum;actual measurement (following LEDA data standards);no leaf rehydration;119.22;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17299;adult;with petiole and rachis;122.11;139.93;107.67;2;;;0;2005-05-22 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;32;433679;P 511c Haslach - Obersimonsw?er Tal, Black forest;5330432 Stellaria pallida;actual measurement;leaf rehydration;138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17302;adult;without petiole and rachis;138;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Stellaria pallida;actual measurement;leaf rehydration;100;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17302;adult;without petiole and rachis;100;;;2;;;;1996-05-05 00:00:00.0;;;;UNITED KINGDOM;;;Freshfield Dunes, Lancs; Stellaria uliginosa;actual measurement;leaf rehydration;161;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17654;adult;without petiole and rachis;161;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Stellaria uliginosa;actual measurement;leaf rehydration;149;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17654;adult;without petiole and rachis;149;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Stipa capillata;actual measurement (following LEDA data standards);no leaf rehydration;635.49;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42956;adult;with petiole and rachis;638.33;690.1;606.59;2;;;0;2004-08-10 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;;;P 420 Sonnenberg /Bad Salza (Thüringen); Stipa pulcherrima;actual measurement (following LEDA data standards);no leaf rehydration;565.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;42556;adult;with petiole and rachis;570.25;612.2;484.25;2;;;0;2004-05-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;395157;P 241 NSG Burkheim/Kaiserstuhl;5328511 Stratiotes aloides;actual measurement (following LEDA data standards);no leaf rehydration;87.14;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36308;adult;with petiole and rachis;82.38;91.82;64.91;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;463618;P 317 Wesermarsch beside Hunte;5896094 Suaeda maritima;actual measurement (following LEDA data standards);no leaf rehydration;76.88;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;17972;adult;with petiole and rachis;75.02;86.17;57.17;2;;;0;2003-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Suaeda maritima;actual measurement;leaf rehydration;74;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17972;adult;without petiole and rachis;74;;;1;;;;1997-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Widnes; Suaeda maritima;actual measurement;leaf rehydration;70;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;17972;adult;without petiole and rachis;70;;;1;;;;1997-07-17 00:00:00.0;;;;UNITED KINGDOM;;;Maldon, Essex; Suaeda maritima;actual measurement (following LEDA data standards);no leaf rehydration;116.13;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;17972;adult;with petiole and rachis;132.36;198.79;96.93;2;;;0;2004-08-23 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;625944;P 444 abandonded potash mine Beiersole, Harzvorland, Lower Saxony;5794830 Succisa pratensis;actual measurement;leaf rehydration;165;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19186;adult;without petiole and rachis;165;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Succisa pratensis;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19186;adult;without petiole and rachis;190;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Symphoricarpos albus;actual measurement (following LEDA data standards);no leaf rehydration;322.49;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15329;adult;with petiole and rachis;321.1;352.35;294.06;2;;;0;2005-08-02 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;BC Haren; Symphoricarpos albus;actual measurement (following LEDA data standards);no leaf rehydration;395.52;4;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;15329;adult;with petiole and rachis;396.19;407.52;386.18;5;;;0;2005-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren; Symphytum officinale;actual measurement (following LEDA data standards);no leaf rehydration;81.73;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11757;adult;with petiole and rachis;86.27;123.66;61.53;2;;;0;2004-06-15 00:00:00.0;Preaggregated data obtained from single record. data are variable, as some leaves had petioles and others did not;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;572383;P 286 NSG Unteres Seevetal, near river Elbe (Lower Saxony);5918439 Symphytum orientale;actual measurement;leaf rehydration;124;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;12215;adult;without petiole and rachis;124;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Symphytum tuberosum;actual measurement (following LEDA data standards);no leaf rehydration;113.18;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11764;adult;with petiole and rachis;114.88;121.13;110.32;2;;;0;2004-04-23 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;5451273;P 209 Fränkische Schweiz, Kallmünz (Regensburg/Bavaria);714571 Symphytum tuberosum;actual measurement;leaf rehydration;116;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11764;adult;without petiole and rachis;116;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Wilsic Hall; Symphytum tuberosum;actual measurement (following LEDA data standards);no leaf rehydration;116.93;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;11764;adult;without petiole and rachis;118.21;124.94;112.77;2;;;0;2004-04-23 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;5451273;P 209 Fränkische Schweiz, Kallmünz (Regensburg/Bavaria);714571 Syringa vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;328.59;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26377;adult;with petiole and rachis;326.88;388.52;282.02;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684186;P 411a/b Jenzig(berg) closely to Jena (Thüringen);5646244 Syringa vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;325.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26377;adult;without petiole and rachis;324.74;387.75;279.7;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;684186;P 411a/b Jenzig(berg) closely to Jena (Thüringen);5646244 Tamus communis;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36357;adult;without petiole and rachis;151;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Tanacetum corymbosum;actual measurement (following LEDA data standards);no leaf rehydration;201.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9823;adult;with petiole and rachis;201.43;220.26;172.6;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Tanacetum corymbosum;actual measurement (following LEDA data standards);no leaf rehydration;199.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9823;adult;without petiole and rachis;199.89;218.47;167.51;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Tanacetum parthenium;actual measurement;leaf rehydration;172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;11451;adult;without petiole and rachis;172;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Tanacetum vulgare;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10128;adult;without petiole and rachis;237;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Tanacetum vulgare;actual measurement;leaf rehydration;205;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10128;adult;without petiole and rachis;205;;;2;;;;1996-08-27 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Taraxacum Sec. Erythrosperma;actual measurement (following LEDA data standards);no leaf rehydration;164.94;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9235;adult;with petiole and rachis;166.46;181.47;150.49;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;E1 - Dry grasslands;GERMANY;32;392790;P 249 Grißheim, Trockenwald/Oberrhein (upper Rhine);5303571 Taraxacum species;actual measurement;leaf rehydration;168;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9261;adult;without petiole and rachis;168;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Taraxacum species;actual measurement;leaf rehydration;137;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9261;adult;without petiole and rachis;137;;;2;;;;;;;;UNITED KINGDOM;;;; Taraxacum species;actual measurement;leaf rehydration;125;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9261;adult;without petiole and rachis;125;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Taxus baccata;actual measurement;leaf rehydration;241;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;835;adult;without petiole and rachis;241;;;5;3.4;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Taxus baccata;actual measurement;leaf rehydration;253;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;835;adult;without petiole and rachis;253;;;5;9.2;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Peter Dale; Taxus baccata;actual measurement;leaf rehydration;261;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;835;adult;without petiole and rachis;261;;;5;2.4;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Taxus baccata;actual measurement;leaf rehydration;278;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;835;adult;without petiole and rachis;278;;;5;3.9;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Taxus baccata;actual measurement;leaf rehydration;276;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;835;adult;without petiole and rachis;276;;;5;6.1;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Peter Dale; Taxus baccata;actual measurement;leaf rehydration;294;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;835;adult;without petiole and rachis;294;;;5;2;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Teesdalia nudicaulis;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13470;adult;without petiole and rachis;176;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Teesdalia nudicaulis;actual measurement;leaf rehydration;97;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13470;adult;without petiole and rachis;97;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Tellima grandiflora;actual measurement;leaf rehydration;200;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;31626;adult;without petiole and rachis;200;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Tetragonolobus maritimus;actual measurement (following LEDA data standards);no leaf rehydration;183.13;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21564;adult;with petiole and rachis;193.09;228.07;168.06;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang closely to Jungingen (Swabian Alb);5354495 Tetragonolobus maritimus;actual measurement (following LEDA data standards);no leaf rehydration;209.48;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21564;adult;without petiole and rachis;209.48;209.48;209.48;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;H5.6 - Trampled areas;GERMANY;32;392850;P 250 Grißheim, Trockenwald, auf Kiesweg/Oberrhein (upper Rhine);5303646 Tetragonolobus maritimus;actual measurement (following LEDA data standards);no leaf rehydration;208.81;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21564;adult;with petiole and rachis;208.81;208.81;208.81;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;H5.6 - Trampled areas;GERMANY;32;392850;P 250 Grißheim, Trockenwald, auf Kiesweg/Oberrhein (upper Rhine);5303646 Teucrium botrys;actual measurement (following LEDA data standards);no leaf rehydration;130.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23469;adult;with petiole and rachis;130.21;160.66;116.95;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J3.3 - Recently abandoned above-ground spaces of extractive industrial sites;GERMANY;32;395240;P 245 a gravel pit, old, abandonded, closely to Bremgarten/Oberrheinebene (upper Rhine valley);5305679 Teucrium chamaedrys;actual measurement (following LEDA data standards);leaf rehydration;270.84;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24813;adult;with petiole and rachis;274.92;315.46;229.55;1;;;0;2003-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;545000;MK 2, Schwäbische Alb;5375900 Teucrium chamaedrys;field experiment;leaf rehydration;368;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;24813;adult;without petiole and rachis;368;;;10;5;5;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Teucrium chamaedrys;field experiment;leaf rehydration;300;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;24813;adult;without petiole and rachis;300;;;10;6;6;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;6.35;Les Agros;43.25 Teucrium chamaedrys;field experiment;leaf rehydration;284;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;24813;adult;without petiole and rachis;284;;;10;11;11;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Teucrium montanum;actual measurement (following LEDA data standards);no leaf rehydration;264.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;23362;adult;with petiole and rachis;265.03;313.43;227.07;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;401334;P 359 NSG Badberg (Kaiserstuhl) / Baden-Württemberg;5327521 Teucrium scordium;actual measurement (following LEDA data standards);no leaf rehydration;162.91;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24902;adult;with petiole and rachis;171.68;223.42;130.32;2;;;0;2004-06-18 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;314450;P 305 NSG Gülper See (Südufer), Brandenburg;5846124 Teucrium scorodonia;actual measurement;leaf rehydration;422;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24460;adult;without petiole and rachis;422;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Teucrium scorodonia;actual measurement;leaf rehydration;335;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24460;adult;without petiole and rachis;335;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Thalictrum alpinum;actual measurement (following LEDA data standards);no leaf rehydration;348;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;26671;adult;with petiole and rachis;356.8;381.2;341.2;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Thalictrum alpinum;actual measurement (following LEDA data standards);no leaf rehydration;376.6;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;26671;adult;with petiole and rachis;393.93;464.3;337.8;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Thalictrum aquilegiifolium;actual measurement (following LEDA data standards);no leaf rehydration;205.36;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26672;adult;with petiole and rachis;206.22;244.48;181.48;1;;;10;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;389290;P 504 NSG Kapellengrien, upper Rhine, Bad Bellingen - Rheinweiler (Baden-W?emberg);5284787 Thalictrum flavum;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26674;adult;without petiole and rachis;254;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby; Thalictrum flavum;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26674;adult;without petiole and rachis;238;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Bicester, Bucks; Thalictrum minus;actual measurement (following LEDA data standards);no leaf rehydration;295.15;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26547;adult;with petiole and rachis;301.29;337.52;267.39;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Thalictrum minus;actual measurement (following LEDA data standards);no leaf rehydration;288.67;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26547;adult;without petiole and rachis;292.15;327.69;257.33;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Thalictrum minus;actual measurement (following LEDA data standards);no leaf rehydration;307.04;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26547;adult;with petiole and rachis;307.48;316.41;301.98;2;;;10;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsiches Wattenmeer;5939106 Thalictrum minus;actual measurement (following LEDA data standards);no leaf rehydration;298.57;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26547;adult;without petiole and rachis;301.32;315.22;285.95;2;;;10;2004-06-07 00:00:00.0;Preaggregated data obtained from single record. ;;B1.4 - Coastal stable dune grassland (grey dunes);GERMANY;32;345758;P 276 Borkum Sanddünen, National park Niedersächsiches Wattenmeer;5939106 Thalictrum minus;actual measurement;leaf rehydration;253;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26547;adult;without petiole and rachis;253;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Thelypteris palustris;actual measurement (following LEDA data standards);no leaf rehydration;143.72;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;299;adult;with petiole and rachis;149.69;195.09;124.62;1;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;D2.3 - Transition mires and quaking bogs;GERMANY;32;502534;P 523a, Erlenbruch closely to Winterried, Bodan, Baden-W?emberg;5287359 Thelypteris palustris;actual measurement;leaf rehydration;301;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;299;adult;without petiole and rachis;301;;;1;;;;1999-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Norfolk; Thesium bavarum;actual measurement (following LEDA data standards);no leaf rehydration;286.21;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32443;adult;with petiole and rachis;281.84;298.97;254.56;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;H2.6 - Calcareous and ultra-basic screes of warm exposures;GERMANY;32;503813;P 383 Kalkschutthang near Jungingen (Schwabian Alb);5354495 Thesium linophyllon;actual measurement (following LEDA data standards);no leaf rehydration;186.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32439;adult;with petiole and rachis;186.88;204.28;163.64;3;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Thesium pyrenaicum;actual measurement (following LEDA data standards);no leaf rehydration;225.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32417;adult;with petiole and rachis;249.66;384.72;181.12;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Thesium pyrenaicum;actual measurement (following LEDA data standards);leaf rehydration;162.78;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32417;adult;with petiole and rachis;162.78;165.07;160.49;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Thesium pyrenaicum;actual measurement (following LEDA data standards);leaf rehydration;167.5;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32417;adult;with petiole and rachis;167.94;209.12;134.39;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Thlaspi alliaceum;laboratory/greenhouse/garden experiment;no leaf rehydration;118.72;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13472;adult;with petiole and rachis;115.93;132.86;99.58;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Thlaspi alliaceum;laboratory/greenhouse/garden experiment;no leaf rehydration;134.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;13472;adult;without petiole and rachis;130.9;151.82;103.76;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Thlaspi arvense;actual measurement;leaf rehydration;202;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13825;adult;without petiole and rachis;202;;;2;;;;1996-07-03 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Thlaspi arvense;actual measurement;leaf rehydration;122;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13825;adult;without petiole and rachis;122;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Thlaspi arvense;actual measurement;leaf rehydration;173;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;13825;adult;without petiole and rachis;173;;;2;;;;1996-06-25 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Thlaspi caerulescens;actual measurement;leaf rehydration;149;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;45966;adult;without petiole and rachis;149;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Thlaspi montanum;actual measurement (following LEDA data standards);no leaf rehydration;153.81;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;14668;adult;with petiole and rachis;151.68;160.44;135.22;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flachsbühl closely to Trochtelfingen, Schwabian Alb;5352469 Thymus praecox;actual measurement (following LEDA data standards);no leaf rehydration;271.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24924;adult;with petiole and rachis;269.3;296.68;240.44;3;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;609650;P 437 NSG Sachsenstein, Harzvorland, Lower Saxony;5715895 Thymus praecox;actual measurement;leaf rehydration;223;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24924;adult;without petiole and rachis;223;;;5;11.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Thymus praecox;actual measurement;leaf rehydration;224;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24924;adult;without petiole and rachis;224;;;5;15.5;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Thymus praecox;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;24924;adult;without petiole and rachis;244;;;5;18;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Markland Grips; Thymus serpyllum;actual measurement (following LEDA data standards);no leaf rehydration;251;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;24928;adult;with petiole and rachis;249.52;270.44;230.56;5;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;;P 300 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue; Thymus vulgaris;field experiment;leaf rehydration;366;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;23794;adult;without petiole and rachis;366;;;10;10;10;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Thymus vulgaris;field experiment;leaf rehydration;327;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;23794;adult;without petiole and rachis;327;;;10;11;11;;1997-10-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Thymus vulgaris;field experiment;leaf rehydration;292;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;23794;adult;without petiole and rachis;292;;;10;7;7;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Thymus vulgaris;field experiment;leaf rehydration;382;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;23794;adult;without petiole and rachis;382;;;10;8;8;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Thymus vulgaris;field experiment;leaf rehydration;292;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;23794;adult;without petiole and rachis;292;;;10;7;7;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Tilia platyphyllos;actual measurement (following LEDA data standards);no leaf rehydration;204.61;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34634;adult;with petiole and rachis;204.93;246.33;161.88;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;;;P 221 Teiler-Wald/ Oberrimsingen, Oberrheinebene (upper Rhine valley); Tilia platyphyllos;actual measurement (following LEDA data standards);no leaf rehydration;207.78;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34634;adult;without petiole and rachis;209.37;250.56;167.04;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;;;P 221 Teiler-Wald/ Oberrimsingen, Oberrheinebene (upper Rhine valley); Tofieldia calyculata;actual measurement (following LEDA data standards);no leaf rehydration;231.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;38841;adult;with petiole and rachis;230.38;284.85;175.76;2;;;0;2005-05-25 00:00:00.0;Preaggregated data obtained from single record. ;;D4.1 - Rich fens. including eutrophic tall-herb fens and calcareous flushes and soaks;GERMANY;32;503124;P 521 NSG Mindelsee, Bodan, near Lake of Constance, Baden-W?emberg;5288687 Tofieldia pusilla;actual measurement (following LEDA data standards);no leaf rehydration;267.3;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;38843;adult;without petiole and rachis;272.1;286.5;262.5;3;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 3-7 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Tofieldia pusilla;actual measurement (following LEDA data standards);no leaf rehydration;290.3;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;38843;adult;without petiole and rachis;293.87;326.3;271.8;4;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 4-5 leaves per sample;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Tordylium maximum;laboratory/greenhouse/garden experiment;no leaf rehydration;221.46;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1545;adult;with petiole and rachis;220.95;272.59;168.28;2;;;0;2005-06-22 00:00:00.0;Preaggregated data obtained from single record. collection date of #1+2 is 2004-10-13;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Tordylium maximum;laboratory/greenhouse/garden experiment;no leaf rehydration;223.05;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1545;adult;without petiole and rachis;223.05;236.61;209.48;2;;;0;2004-10-13 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Torilis arvensis;actual measurement (following LEDA data standards);no leaf rehydration;196.49;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1012;adult;with petiole and rachis;197.18;219.77;182.09;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;401207;P 358 closely to NSG Badberg, Kaiserstuhl / Baden-Württemberg;5327428 Torilis japonica;actual measurement;leaf rehydration;300;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1552;adult;without petiole and rachis;300;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Potteric Carr, Doncaster; Torilis japonica;actual measurement;leaf rehydration;266;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1552;adult;without petiole and rachis;266;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby ; Torilis japonica;actual measurement;leaf rehydration;276;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1552;adult;without petiole and rachis;276;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Torilis nodosa;actual measurement (following LEDA data standards);no leaf rehydration;459.4;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;1554;adult;with petiole and rachis;436.3;485.31;368.6;2;;;0;2005-07-06 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Zwarte Haan, Friesland; Torilis nodosa;actual measurement;leaf rehydration;204;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;1554;adult;without petiole and rachis;204;;;1;;;;1997-09-13 00:00:00.0;;;;UNITED KINGDOM;;;Ramsden Bellhouse, Essex; Tragopogon dubius;actual measurement (following LEDA data standards);no leaf rehydration;198.33;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9874;adult;with petiole and rachis;209.84;292.26;173.49;1;;;0;2003-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Tragopogon porrifolius;laboratory/greenhouse/garden experiment;no leaf rehydration;155.17;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;9289;adult;with petiole and rachis;156.38;169.85;149.02;2;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Tragopogon pratensis;actual measurement;leaf rehydration;225;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9791;adult;without petiole and rachis;225;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Tragopogon pratensis;actual measurement;leaf rehydration;152;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9791;adult;without petiole and rachis;152;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Tragopogon pratensis s. orientalis;actual measurement (following LEDA data standards);no leaf rehydration;141.76;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10571;adult;with petiole and rachis;141.36;142.82;139.51;2;;;0;2005-05-23 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;409555;P 512 Ebringen, Sch?rg, NSG Jennetal (Baden-W?emberg);5312993 Trapa natans;actual measurement (following LEDA data standards);no leaf rehydration;157.04;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34689;adult;with petiole and rachis;142.57;184.19;103.71;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;C1.3 - Permanent eutrophic lakes. ponds and pools;GERMANY;32;455804;P 402 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Rheinland-Pfalz;5451446 Trapa natans;actual measurement (following LEDA data standards);no leaf rehydration;302.28;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34689;adult;without petiole and rachis;321.1;366.45;279.98;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;C1.3 - Permanent eutrophic lakes. ponds and pools;GERMANY;32;455804;P 402 NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Rheinland-Pfalz;5451446 Trientalis europaea;actual measurement (following LEDA data standards);no leaf rehydration;153.37;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;28871;adult;with petiole and rachis;152.87;183.38;120.61;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G3.F - Highly artificial coniferous plantations;GERMANY;32;437374;P 217 Gristede (Landkreis Ammerland);5898525 Trifolium alpestre;actual measurement (following LEDA data standards);no leaf rehydration;341.58;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21116;adult;with petiole and rachis;339.12;367.44;306.17;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;401475;P 363 NSG Badberg (Kaiserstuhl) / Baden-Württemberg;5327784 Trifolium alpestre;actual measurement (following LEDA data standards);no leaf rehydration;341.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21116;adult;without petiole and rachis;339.59;369.21;304.32;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;401475;P 363 NSG Badberg (Kaiserstuhl) / Baden-Württemberg;5327784 Trifolium angustifolium;field experiment;leaf rehydration;276;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22108;adult;without petiole and rachis;276;;;10;5;5;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Trifolium angustifolium;field experiment;leaf rehydration;288;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;22108;adult;without petiole and rachis;288;;;10;7;7;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Trifolium arvense;actual measurement;leaf rehydration;335.28;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;19943;adult;without petiole and rachis;327.65;361.7;243.41;2;;;0;2004-06-24 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Trifolium arvense;actual measurement;leaf rehydration;361;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19943;adult;without petiole and rachis;361;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Shirebrook, Derbys; Trifolium arvense;actual measurement;leaf rehydration;247;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19943;adult;without petiole and rachis;247;;;2;;;;1996-07-16 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Trifolium arvense;actual measurement;leaf rehydration;241;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19943;adult;without petiole and rachis;241;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Trifolium aureum;laboratory/greenhouse/garden experiment;no leaf rehydration;222.2;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21992;adult;with petiole and rachis;222.2;222.96;221.44;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trifolium aureum;actual measurement (following LEDA data standards);no leaf rehydration;193.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21992;adult;with petiole and rachis;205;259.25;158.66;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;613911;P 433 Elsbachtal b. Hundertmorgenwiese (Harz, Lower Saxony);5720594 Trifolium aureum;actual measurement (following LEDA data standards);no leaf rehydration;195.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21992;adult;without petiole and rachis;205.31;259.45;157.88;2;;;0;2004-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;613911;P 433 Elsbachtal b. Hundertmorgenwiese (Harz, Lower Saxony);5720594 Trifolium aureum;laboratory/greenhouse/garden experiment;no leaf rehydration;219.83;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21992;adult;without petiole and rachis;219.83;221.59;218.07;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trifolium campestre;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21008;adult;without petiole and rachis;263;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Trifolium campestre;actual measurement;leaf rehydration;211;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21008;adult;without petiole and rachis;211;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Trifolium campestre;actual measurement;leaf rehydration;252;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21008;adult;without petiole and rachis;252;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Trifolium campestre;actual measurement;leaf rehydration;275;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21008;adult;without petiole and rachis;275;;;2;;;;;;;;SPAIN;;;Ambel; Trifolium dubium;actual measurement;leaf rehydration;212;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21100;adult;without petiole and rachis;212;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Trifolium dubium;actual measurement;leaf rehydration;187;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21100;adult;without petiole and rachis;187;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Trifolium fragiferum;actual measurement;leaf rehydration;215;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22005;adult;without petiole and rachis;215;;;2;;;;1996-08-03 00:00:00.0;;;;UNITED KINGDOM;;;Crystal Palace; Trifolium fragiferum;actual measurement;leaf rehydration;224.8;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22005;adult;with petiole and rachis;220.72;252.37;197.07;2;;;0;2004-07-14 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park M?z; Trifolium fragiferum;actual measurement;leaf rehydration;229.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22005;adult;without petiole and rachis;224.42;253.68;167.89;2;;;0;2004-07-14 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park M?z; Trifolium hybridum;laboratory/greenhouse/garden experiment;no leaf rehydration;189.35;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21107;adult;with petiole and rachis;182.15;205.51;144.39;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trifolium hybridum;laboratory/greenhouse/garden experiment;no leaf rehydration;205.2;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21107;adult;without petiole and rachis;211.71;235.35;201.07;2;;;0;2004-08-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trifolium hybridum;actual measurement;leaf rehydration;262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21107;adult;without petiole and rachis;262;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Trifolium hybridum;actual measurement;leaf rehydration;269;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21107;adult;without petiole and rachis;269;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Treeton, S Yks; Trifolium hybridum;actual measurement;leaf rehydration;274;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21107;adult;without petiole and rachis;274;;;2;;;;1996-07-17 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Trifolium incarnatum;laboratory/greenhouse/garden experiment;no leaf rehydration;140.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21571;adult;with petiole and rachis;140.64;181.73;108.89;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trifolium incarnatum;laboratory/greenhouse/garden experiment;no leaf rehydration;232.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21571;adult;without petiole and rachis;235.72;317.95;155.93;2;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trifolium medium;actual measurement;leaf rehydration;263;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22081;adult;without petiole and rachis;263;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Trifolium micranthum;actual measurement (following LEDA data standards);no leaf rehydration;212.02;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;19621;adult;with petiole and rachis;214.51;230.35;205.42;2;;;0;2005-06-08 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;SWEDEN;;;Grötlingbo, Gotland Sweden; Trifolium micranthum;actual measurement;leaf rehydration;187;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19621;adult;without petiole and rachis;187;;;1;;;;1997-09-30 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Trifolium montanum;actual measurement (following LEDA data standards);no leaf rehydration;253.36;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21547;adult;with petiole and rachis;249.15;270.02;214.56;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Trifolium montanum;actual measurement (following LEDA data standards);no leaf rehydration;266.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21547;adult;without petiole and rachis;266.46;303.75;223.88;1;;;0;2003-06-21 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;547000;MK 7, Schwäbische Alb, Redeberg NSG Sterneck / Wiesensteig;5380000 Trifolium pratense;actual measurement;leaf rehydration;208;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22096;adult;without petiole and rachis;208;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Trifolium pratense;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22096;adult;without petiole and rachis;190;;;2;;;;;;;;UNITED KINGDOM;;;; Trifolium pratense;actual measurement;leaf rehydration;253.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22096;adult;without petiole and rachis;244.38;272.07;195.47;2;;;0;2003-06-04 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349929;national park Müritz;5924056 Trifolium pratense;actual measurement;leaf rehydration;242.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22096;adult;with petiole and rachis;230.34;275.18;167.91;2;;;0;2003-06-04 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349929;national park Müritz;5924056 Trifolium repens;actual measurement;leaf rehydration;205.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22101;adult;without petiole and rachis;209.43;270.43;173.56;2;;;0;2003-06-03 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;350131;national park Müritz;5924046 Trifolium repens;actual measurement;leaf rehydration;180.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22101;adult;with petiole and rachis;178.1;245.3;96.2;2;;;0;2003-06-03 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;350131;national park Müritz;5924046 Trifolium repens;actual measurement;leaf rehydration;185;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22101;adult;without petiole and rachis;185;;;2;;;;;;;;UNITED KINGDOM;;;; Trifolium repens;actual measurement;leaf rehydration;172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22101;adult;without petiole and rachis;172;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Trifolium resupinatum;laboratory/greenhouse/garden experiment;no leaf rehydration;155.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20696;adult;with petiole and rachis;159.85;193.42;129.44;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trifolium resupinatum;laboratory/greenhouse/garden experiment;no leaf rehydration;181.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20696;adult;without petiole and rachis;186.92;219.84;157.34;2;;;0;2004-09-02 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trifolium rubens;actual measurement (following LEDA data standards);no leaf rehydration;273.97;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19602;adult;with petiole and rachis;273.12;279.63;265.5;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flachsbühl closely to Trochtelfingen, Schwabian Alb;5352469 Trifolium rubens;actual measurement (following LEDA data standards);no leaf rehydration;274.16;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19602;adult;without petiole and rachis;275.09;286.26;266.88;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flachsbühl closely to Trochtelfingen, Schwabian Alb;5352469 Trifolium spadiceum;actual measurement (following LEDA data standards);no leaf rehydration;212.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20366;adult;with petiole and rachis;209.43;220.05;173.98;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;D2.2 - Poor fens;GERMANY;;;P 370 near Rinken (NSG Feldberg), Black forest (Baden-Württemberg); Trifolium striatum;actual measurement (following LEDA data standards);no leaf rehydration;348.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21076;adult;with petiole and rachis;357.36;485.42;281.43;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. ;;J4.2 - Road networks;GERMANY;;;P 245 a gravel pit, old, abandonded, closely to Bremgarten/Oberrheinebene (upper Rhine valley); Trifolium striatum;actual measurement;leaf rehydration;285;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21076;adult;without petiole and rachis;285;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Trifolium striatum;actual measurement;leaf rehydration;276;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21076;adult;without petiole and rachis;276;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Trifolium striatum;actual measurement;leaf rehydration;282;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21076;adult;without petiole and rachis;282;;;2;;;;1996-07-16 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Triglochin maritima;actual measurement (following LEDA data standards);no leaf rehydration;114.37;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;36323;adult;with petiole and rachis;114.97;129.19;93.26;2;;;0;2003-08-13 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Terschelling; Triglochin maritima;actual measurement (following LEDA data standards);no leaf rehydration;126.95;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36323;adult;with petiole and rachis;132.6;158;115.47;2;;;0;2004-08-18 00:00:00.0;Preaggregated data obtained from single record. ;;A2.6 - Coastal saltmarshes and saline reedbeds;GERMANY;32;384877;P 438 Ems-Mündung, Dollart (Lower Saxony);5910484 Triglochin maritima;actual measurement (following LEDA data standards);no leaf rehydration;153.32;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;36323;adult;with petiole and rachis;152.28;174.79;130.84;2;;;0;2005-05-28 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog, Westerplas; Triglochin palustris;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36324;adult;without petiole and rachis;182;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Triglochin palustris;actual measurement;leaf rehydration;155;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36324;adult;without petiole and rachis;155;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Trigonella foenum-graecum;laboratory/greenhouse/garden experiment;no leaf rehydration;179.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21525;adult;with petiole and rachis;178.3;227.76;127.46;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trigonella foenum-graecum;laboratory/greenhouse/garden experiment;no leaf rehydration;179.78;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21525;adult;without petiole and rachis;180.09;232.8;127.5;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trinia glauca;actual measurement (following LEDA data standards);no leaf rehydration;227.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;966;adult;with petiole and rachis;235.99;265.86;215.86;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Trinia glauca;actual measurement (following LEDA data standards);no leaf rehydration;218.88;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;966;adult;without petiole and rachis;216.94;239.38;200.02;2;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Trisetum flavescens;actual measurement;leaf rehydration;345;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42564;adult;without petiole and rachis;345;;;2;;;;;;;;UNITED KINGDOM;;;; Trisetum flavescens;actual measurement;leaf rehydration;314;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42564;adult;without petiole and rachis;314;;;2;;;;1996-06-25 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Trisetum flavescens;actual measurement;leaf rehydration;264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42564;adult;without petiole and rachis;264;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Triticum aestivum;laboratory/greenhouse/garden experiment;no leaf rehydration;234.48;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;43825;adult;with petiole and rachis;224.76;285.67;149.4;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Trollius europaeus;actual measurement;leaf rehydration;190;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26598;adult;without petiole and rachis;190;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Cressbrook Dale; Trollius europaeus;actual measurement;leaf rehydration;217;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26598;adult;without petiole and rachis;217;;;1;;;;1997-06-09 00:00:00.0;;;;UNITED KINGDOM;;;Monks Dale; Trollius europaeus;actual measurement;leaf rehydration;172;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;26598;adult;without petiole and rachis;172;;;1;;;;1997-08-10 00:00:00.0;;;;UNITED KINGDOM;;;Taddington Dale; Tropaeolum majus;laboratory/greenhouse/garden experiment;no leaf rehydration;187.83;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34544;adult;without petiole and rachis;186.42;214.28;143.51;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Tropaeolum majus;laboratory/greenhouse/garden experiment;no leaf rehydration;118.91;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34544;adult;with petiole and rachis;113.24;142.48;71.9;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Turgenia latifolia;laboratory/greenhouse/garden experiment;no leaf rehydration;137.46;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1998;adult;with petiole and rachis;139.23;157.51;120.54;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Tussilago farfara;actual measurement;leaf rehydration;168;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9608;adult;without petiole and rachis;168;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Langold; Tussilago farfara;actual measurement;leaf rehydration;110;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;9608;adult;without petiole and rachis;110;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Typha angustifolia;actual measurement (following LEDA data standards);no leaf rehydration;271.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;44027;adult;without petiole and rachis;272.22;285.07;264.39;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Typha angustifolia;actual measurement;leaf rehydration;260;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44027;adult;without petiole and rachis;260;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Worksop; Typha latifolia;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44041;adult;without petiole and rachis;203;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Typha latifolia;actual measurement;leaf rehydration;169;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;44041;adult;without petiole and rachis;169;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Typha latifolia;actual measurement (following LEDA data standards);no leaf rehydration;224.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;44041;adult;without petiole and rachis;224.16;240.65;212.24;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Ulex europaeus;actual measurement (following LEDA data standards);no leaf rehydration;515.97;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21090;adult;with petiole and rachis;552.34;782.05;255.6;2;;;0;2004-04-03 00:00:00.0;Preaggregated data obtained from single record. ;;B1.6 - Coastal dune scrub;GERMANY;;;P 202 Spiekeroog, National park Niedersächsisches Wattenmeer; Ulex europaeus;actual measurement;leaf rehydration;267;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21090;adult;without petiole and rachis;267;;;5;10;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Ulex europaeus;actual measurement;leaf rehydration;195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21090;adult;without petiole and rachis;195;;;5;9.5;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Roche Abbey; Ulex europaeus;actual measurement;leaf rehydration;230;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21090;adult;without petiole and rachis;230;;;5;16.8;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Ulex gallii;actual measurement;leaf rehydration;262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19611;adult;without petiole and rachis;262;;;5;8.3;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Smeekley Wood; Ulex gallii;actual measurement;leaf rehydration;287;2;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19611;adult;without petiole and rachis;287;;;4;10.9;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Smeekley Wood; Ulmus glabra;actual measurement (following LEDA data standards);no leaf rehydration;234.44;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35180;adult;with petiole and rachis;232.25;242.52;216.05;2;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437164;P 216 Gristede (Landkreis Ammerland);5898308 Ulmus glabra;actual measurement;leaf rehydration;254;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35180;adult;without petiole and rachis;254;;;5;13.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Ulmus glabra;actual measurement;leaf rehydration;261;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35180;adult;without petiole and rachis;261;;;5;8.8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Ulmus glabra;actual measurement;leaf rehydration;292;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35180;adult;without petiole and rachis;292;;;5;11.4;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Ulmus glabra;actual measurement (following LEDA data standards);no leaf rehydration;228.91;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35180;adult;without petiole and rachis;227.81;236.4;217.01;1;;;0;2004-05-04 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;437164;P 216 Gristede (Landkreis Ammerland);5898308 Ulmus laevis;actual measurement (following LEDA data standards);no leaf rehydration;211.21;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35184;adult;with petiole and rachis;208.95;229.43;184.78;2;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;440514;P 327 Mansholter Forst / Landkreis Ammerland;5897734 Ulmus laevis;actual measurement (following LEDA data standards);no leaf rehydration;226.18;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35184;adult;without petiole and rachis;215.71;234.53;187.43;2;;;0;2004-06-29 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;440514;P 327 Mansholter Forst / Landkreis Ammerland;5897734 Ulmus minor;actual measurement (following LEDA data standards);no leaf rehydration;244.58;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35187;adult;with petiole and rachis;242.06;254.56;217.85;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;399327;P 229 Gündlinger Wald, Oberrheinebene (upper Rhine valley);5318128 Ulmus minor;actual measurement (following LEDA data standards);no leaf rehydration;248.23;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35187;adult;without petiole and rachis;244.79;258.47;221.42;2;;;0;2004-05-11 00:00:00.0;Preaggregated data obtained from single record. ;;G1.A - Meso- and eutrophic [Quercus]. [Carpinus]. [Fraxinus]. [Acer]. [Tilia]. [Ulmus] and related woodland;GERMANY;32;399327;P 229 Gündlinger Wald, Oberrheinebene (upper Rhine valley);5318128 Umbilicus rupestris;actual measurement;leaf rehydration;48;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;18389;adult;without petiole and rachis;48;;;1;;;;1997-06-16 00:00:00.0;;;;UNITED KINGDOM;;;Devon; Urtica dioica;actual measurement;leaf rehydration;226;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35149;adult;without petiole and rachis;226;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Urtica dioica;actual measurement;leaf rehydration;199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35149;adult;without petiole and rachis;199;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Urtica kioviensis;laboratory/greenhouse/garden experiment;no leaf rehydration;177.92;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35156;adult;with petiole and rachis;178.43;194.36;164.02;2;;;0;2004-10-08 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Urtica kioviensis;laboratory/greenhouse/garden experiment;no leaf rehydration;186.75;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35156;adult;without petiole and rachis;183.59;203.08;161.81;2;;;0;2004-10-08 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Urtica kioviensis;actual measurement (following LEDA data standards);no leaf rehydration;185.33;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35156;adult;without petiole and rachis;193.2;239.66;145.3;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;33;312609;P 312 NSG Gülper See (western), Brandenburg;5847138 Urtica kioviensis;actual measurement (following LEDA data standards);no leaf rehydration;172.54;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35156;adult;with petiole and rachis;179.03;222.23;134.72;2;;;0;2004-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;33;312609;P 312 NSG Gülper See (western), Brandenburg;5847138 Urtica urens;actual measurement;leaf rehydration;214;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35160;adult;without petiole and rachis;214;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Utricularia australis;actual measurement (following LEDA data standards);no leaf rehydration;61.37;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26089;adult;with petiole and rachis;60.75;74.97;45.52;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;456758.3036;P8 Eckfleth/Wesermarsch;5897142.199 Utricularia vulgaris;actual measurement (following LEDA data standards);no leaf rehydration;44.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;26103;adult;without petiole and rachis;45.1;49.19;42.79;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Utricularia vulgaris;actual measurement (following LEDA data standards);leaf rehydration;50.44;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;26103;adult;without petiole and rachis;50.57;59.26;42.13;1;;;0;2003-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;J5.3 - Highly artificial non-saline standing waters;GERMANY;32;453852.4664;P 16 Mooriemer Kanal/Gräben (Oldenburg/Hunte-Wiesen);5891016.65 Vaccaria hispanica;laboratory/greenhouse/garden experiment;no leaf rehydration;162.61;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;45231;adult;with petiole and rachis;168.46;243.12;119.13;2;;;0;2004-07-28 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Vaccinium corymbosum;actual measurement (following LEDA data standards);no leaf rehydration;344.25;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19467;adult;with petiole and rachis;331.77;365.48;271.71;2;;;0;2004-09-20 00:00:00.0;Preaggregated data obtained from single record. determinated as Vaccinium angustifolium x corymbosum;;D1.1 - Raised bogs;GERMANY;;;P 487 Benthullener Moor, Landkreis Oldenburg; Vaccinium myrtillus;actual measurement (following LEDA data standards);no leaf rehydration;465.5;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19475;adult;with petiole and rachis;457.23;481.6;426.8;3;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 3-4 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Vaccinium myrtillus;actual measurement;leaf rehydration;282;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19475;adult;without petiole and rachis;282;;;5;8.9;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Vaccinium myrtillus;actual measurement;leaf rehydration;248;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19475;adult;without petiole and rachis;248;;;5;10.7;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Longshaw Estate; Vaccinium oxycoccos;actual measurement (following LEDA data standards);no leaf rehydration;389.34;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19476;adult;with petiole and rachis;365.27;411.76;304.84;1;;;0;2003-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;D1.1 - Raised bogs;GERMANY;32;455279.8952;P7 NSG Rockenmoor / Landkreis Wesermarsch;5895592.819 Vaccinium oxycoccos;actual measurement;leaf rehydration;265;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19476;adult;without petiole and rachis;265;;;5;15.8;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Bucka Hill; Vaccinium uliginosum;actual measurement (following LEDA data standards);no leaf rehydration;401.05;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19479;adult;with petiole and rachis;419.25;483;391.9;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 2-5 leaves per sample;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Vaccinium uliginosum;actual measurement (following LEDA data standards);no leaf rehydration;365.9;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19479;adult;with petiole and rachis;361.46;370.7;349;3;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 3-4 leaves per sample;;D2 - Valley mires. poor fens and transition mires;NORWAY;32;604700;Hessdalen;6958700 Vaccinium uliginosum;actual measurement;leaf rehydration;303;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19479;adult;without petiole and rachis;303;;;2;;;;1996-08-02 00:00:00.0;;;;UNITED KINGDOM;;;Cairngorm mountains; Vaccinium uliginosum;actual measurement (following LEDA data standards);no leaf rehydration;427.98;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19479;adult;without petiole and rachis;443.8;564.79;362.14;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;32;426519;P 376a NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;5302837 Vaccinium uliginosum;actual measurement (following LEDA data standards);no leaf rehydration;422.11;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19479;adult;with petiole and rachis;440.64;566.9;358.92;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;F4.2 - Dry heaths;GERMANY;32;426519;P 376a NSG Feldberg (Schwarzwald), Black forest, Baden-Württemberg;5302837 Vaccinium vitis-idaea;actual measurement (following LEDA data standards);no leaf rehydration;440;11;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19439;adult;with petiole and rachis;432.16;467.7;384.4;3;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 3-4 leaves per sample;;F2 - Arctic. alpine and subalpine scrub habitats;NORWAY;32;604700;Hessdalen;6958700 Vaccinium vitis-idaea;actual measurement;leaf rehydration;260;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19439;adult;without petiole and rachis;260;;;5;16;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Vaccinium vitis-idaea;actual measurement;leaf rehydration;292;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19439;adult;without petiole and rachis;292;;;5;6.4;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Longshaw Estate; Vaccinium vitis-idaea;actual measurement;leaf rehydration;287;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19439;adult;without petiole and rachis;287;;;5;7.8;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Bucka Hill; Vaccinium vitis-idaea;actual measurement;leaf rehydration;264;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;19439;adult;without petiole and rachis;264;;;5;19.8;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Bucka Hill; Vaccinium vitis-idaea;actual measurement (following LEDA data standards);no leaf rehydration;459.6;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;19439;adult;with petiole and rachis;469.13;502.3;445.5;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Valeriana dioica;actual measurement;leaf rehydration;199;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34884;adult;without petiole and rachis;199;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Comon; Valeriana dioica;actual measurement;leaf rehydration;147;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34884;adult;without petiole and rachis;147;;;2;;;;1996-08-28 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Valeriana dioica;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34884;adult;without petiole and rachis;160;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Warsop Vale; Valeriana officinalis;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34832;adult;without petiole and rachis;142;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Dale; Valeriana officinalis;actual measurement;leaf rehydration;138;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34832;adult;without petiole and rachis;138;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Valeriana pratensis;actual measurement (following LEDA data standards);no leaf rehydration;146.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34760;adult;with petiole and rachis;139.57;169.19;79.46;2;;;0;2005-05-21 00:00:00.0;Preaggregated data obtained from single record. ;;E5.4 - Moist or wet tall-herb and fern fringes and meadows;GERMANY;32;389290;P 504 NSG Kapellengrien, upper Rhine, Bad Bellingen - Rheinweiler (Baden-W?emberg);5284787 Valeriana tripteris;actual measurement (following LEDA data standards);no leaf rehydration;150.52;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34810;adult;with petiole and rachis;144.58;157.66;118.84;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;426823;P 368 Höllental, Hirschsprung, Black forest;5309802 Valeriana tripteris;actual measurement (following LEDA data standards);no leaf rehydration;151.79;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34810;adult;without petiole and rachis;144.75;155.53;123.21;2;;;0;2004-07-09 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;426823;P 368 Höllental, Hirschsprung, Black forest;5309802 Valerianella carinata;actual measurement;leaf rehydration;109;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34818;adult;without petiole and rachis;109;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monsal Head; Valerianella carinata;actual measurement;leaf rehydration;108;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34818;adult;without petiole and rachis;108;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Valerianella carinata;actual measurement;leaf rehydration;102;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34818;adult;without petiole and rachis;102;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Monk's Dale; Valerianella coronata;laboratory/greenhouse/garden experiment;no leaf rehydration;109.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34784;adult;with petiole and rachis;105.58;154.75;69.07;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Valerianella dentata;actual measurement (following LEDA data standards);no leaf rehydration;157.73;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34825;adult;with petiole and rachis;157.61;171.97;135.85;2;;;0;2004-07-25 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;;;MK-5 Münzesheim i. Kraichgau, Baden-Württemberg; Valerianella dentata;actual measurement (following LEDA data standards);no leaf rehydration;281.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34825;adult;with petiole and rachis;289.81;410.34;170.76;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;I1.3 - Arable land with unmixed crops grown by low-intensity agricultural methods;GERMANY;32;507089;P 385 weed communities in farmland, Bühleberge (Swabian Alb);5354408 Valerianella locusta;actual measurement;leaf rehydration;103;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34776;adult;without petiole and rachis;103;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Valerianella rimosa;laboratory/greenhouse/garden experiment;no leaf rehydration;112.16;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34795;adult;with petiole and rachis;112.16;116.21;108.1;2;;;0;2004-10-12 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Vallisneria spiralis;actual measurement;leaf rehydration;77;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;36310;adult;without petiole and rachis;77;;;2;;;;2004-10-18 00:00:00.0;;;;ITALY;;;Nr Pavia; Verbascum densiflorum;laboratory/greenhouse/garden experiment;no leaf rehydration;205.89;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33851;adult;with petiole and rachis;212.06;258.94;171.34;2;;;0;2004-08-17 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Verbascum densiflorum;laboratory/greenhouse/garden experiment;no leaf rehydration;179.29;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33851;adult;without petiole and rachis;179.29;179.29;179.29;2;;;0;2004-08-17 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Verbascum densiflorum;actual measurement (following LEDA data standards);leaf rehydration;180.22;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33851;adult;with petiole and rachis;177.39;196.33;159.45;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449101.3676;P4/P5 NSG Krusenbusch (Oldenburg);5883235.764 Verbascum densiflorum;actual measurement (following LEDA data standards);leaf rehydration;196.07;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33851;adult;without petiole and rachis;202.15;220;190.37;1;;;0;2003-06-25 00:00:00.0;Preaggregated data obtained from single record. ;;J2.6 - Disused rural constructions;GERMANY;32;449150.348;P4/P5 NSG Krusenbusch (Oldenburg);5883129.806 Verbascum lychnitis;laboratory/greenhouse/garden experiment;no leaf rehydration;205.68;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33779;adult;with petiole and rachis;204.88;237.32;177.94;2;;;10;2005-06-30 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Verbascum nigrum;actual measurement;leaf rehydration;164;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32834;adult;without petiole and rachis;164;;;2;;;;1996-09-23 00:00:00.0;;;;UNITED KINGDOM;;;Miller's Dale; Verbascum phlomoides;laboratory/greenhouse/garden experiment;no leaf rehydration;219.76;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32841;adult;with petiole and rachis;218.96;246.68;199.59;2;;;0;2005-07-04 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Verbascum pulverulentum;actual measurement;leaf rehydration;174;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33747;adult;without petiole and rachis;174;;;1;;;;1997-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Verbascum thapsus;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32859;adult;without petiole and rachis;237;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Treeton, S Yks; Verbascum thapsus;actual measurement;leaf rehydration;217;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32859;adult;without petiole and rachis;217;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Verbascum thapsus;actual measurement;leaf rehydration;187;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32859;adult;without petiole and rachis;187;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Verbascum virgatum;actual measurement;leaf rehydration;178;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33376;adult;without petiole and rachis;178;;;2;;;;1996-09-05 00:00:00.0;;;;UNITED KINGDOM;;;Grindleford; Verbena officinalis;actual measurement (following LEDA data standards);no leaf rehydration;236.95;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35092;adult;with petiole and rachis;234.53;262.93;210.65;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;E5.6 - Lowland habitats colonised by tall nitrophilous herbs;GERMANY;32;401207;P 358 closely to NSG Badberg, Kaiserstuhl / Baden-Württemberg;5327428 Veronica agrestis;actual measurement;leaf rehydration;117;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;34127;adult;without petiole and rachis;117;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Veronica alpina;actual measurement (following LEDA data standards);no leaf rehydration;212.5;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;33325;adult;with petiole and rachis;217.74;278.6;157.5;2;;;;2003-08-20 00:00:00.0;Preaggregated data obtained from single record. 2-5 leaves per sample;;E4 - Alpine and subalpine grasslands;NORWAY;32;604700;Hessdalen;6958700 Veronica anagallis-aquatica;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32774;adult;without petiole and rachis;129;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Veronica anagallis-aquatica;actual measurement;leaf rehydration;84;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32774;adult;without petiole and rachis;84;;;2;;;;1996-07-11 00:00:00.0;;;;UNITED KINGDOM;;;Lathkill Dale; Veronica anagallis-aquatica;actual measurement;leaf rehydration;109;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32774;adult;without petiole and rachis;109;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Creswell Crags; Veronica anagalloides;laboratory/greenhouse/garden experiment;no leaf rehydration;245.41;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34184;adult;with petiole and rachis;252.65;301.96;226.43;2;;;0;2004-07-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Veronica arvensis;actual measurement;leaf rehydration;157;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33302;adult;without petiole and rachis;157;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Veronica arvensis;actual measurement;leaf rehydration;111;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33302;adult;without petiole and rachis;111;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Veronica arvensis;actual measurement;leaf rehydration;127;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33302;adult;without petiole and rachis;127;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Veronica arvensis;actual measurement;leaf rehydration;143.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;33302;adult;without petiole and rachis;142.7;164.51;104.09;2;;;0;2004-06-25 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Veronica austriaca;actual measurement (following LEDA data standards);no leaf rehydration;232.48;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;32781;adult;with petiole and rachis;231.96;261.56;203.14;2;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Schiermonnikoog, Westerplas; Veronica austriaca;actual measurement (following LEDA data standards);no leaf rehydration;200.52;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32781;adult;with petiole and rachis;198.87;203.72;190.71;3;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;FRANCE;32;370995;P 260 Strangenberg/Westhalten/Alsace;5313962 Veronica austriaca s. teucrium;actual measurement (following LEDA data standards);no leaf rehydration;188.23;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33306;adult;with petiole and rachis;189.18;195.67;184.61;2;;;0;2004-07-12 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;507273;P 384 Bühleberge, upside Ringingen (Schw. Alb);5354485 Veronica austriaca s. teucrium;actual measurement (following LEDA data standards);no leaf rehydration;169.31;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33306;adult;with petiole and rachis;181.06;210.42;163.71;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;517995;P 387 ND Flächste near Trochtelfingen;5352469 Veronica beccabunga;actual measurement;leaf rehydration;150;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33863;adult;without petiole and rachis;150;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Veronica beccabunga;actual measurement;leaf rehydration;118;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33863;adult;without petiole and rachis;118;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Veronica beccabunga;actual measurement;leaf rehydration;142;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33863;adult;without petiole and rachis;142;;;2;;;;1996-06-23 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Veronica catenata;actual measurement;leaf rehydration;105;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33875;adult;without petiole and rachis;105;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Pebley Reservoir; Veronica catenata;actual measurement;leaf rehydration;100;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33875;adult;without petiole and rachis;100;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Doncaster; Veronica catenata;actual measurement;leaf rehydration;163;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33875;adult;without petiole and rachis;163;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Shireoaks, Notts; Veronica catenata;actual measurement (following LEDA data standards);no leaf rehydration;126.52;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33875;adult;with petiole and rachis;129.18;163.35;97.96;1;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;J5.2 - Highly artificial saline and brackish running waters;GERMANY;;;P3 Huntekanal bei Berne; Veronica chamaedrys;actual measurement;leaf rehydration;215.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;32792;adult;without petiole and rachis;227.99;274.75;185.19;2;;;0;2003-06-26 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Veronica chamaedrys;actual measurement;leaf rehydration;393;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32792;adult;without petiole and rachis;393;;;2;;;;;;;;UNITED KINGDOM;;;; Veronica chamaedrys;actual measurement;leaf rehydration;203;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32792;adult;without petiole and rachis;203;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Winnats Pass; Veronica filiformis;actual measurement;leaf rehydration;200;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33807;adult;without petiole and rachis;200;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Veronica filiformis;actual measurement;leaf rehydration;133;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33807;adult;without petiole and rachis;133;;;2;;;;1996-09-26 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Veronica fruticans;actual measurement (following LEDA data standards);no leaf rehydration;244.79;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;34175;adult;with petiole and rachis;238.76;352.27;157.42;1;;;;2005-07-22 00:00:00.0;Preaggregated data obtained from single record. ;;H3.6 - Weathered rock and outcrop habitats;NORWAY;32;609372;Hessdalen 33;6951951 Veronica hederifolia;actual measurement (following LEDA data standards);no leaf rehydration;66.55;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;33317;adult;with petiole and rachis;68.3;82.46;61.28;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;G - Woodland and forest habitats and other wooded land;SWEDEN;;;Eke, Gotland Sweden; Veronica hederifolia;actual measurement;leaf rehydration;88;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33317;adult;without petiole and rachis;88;;;2;;;;1996-05-10 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Veronica hederifolia;actual measurement;leaf rehydration;99;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33317;adult;without petiole and rachis;99;;;2;;;;1996-05-19 00:00:00.0;;;;UNITED KINGDOM;;;Bradbury; Veronica hederifolia;actual measurement;leaf rehydration;114;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33317;adult;without petiole and rachis;114;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Manton; Veronica longifolia;actual measurement (following LEDA data standards);no leaf rehydration;220;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32803;adult;with petiole and rachis;223.14;242.11;204.72;2;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;655454;P 293 Elb-Altarme near Laase, river Elbe, Biosphärenreservat Niedersächsische Elbtalaue;5881919 Veronica longifolia;actual measurement (following LEDA data standards);no leaf rehydration;222.5;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;32803;adult;without petiole and rachis;225.14;246.46;207.23;2;;;0;2004-06-16 00:00:00.0;Preaggregated data obtained from single record. ;;C3.2 - Water-fringing reedbeds and tall helophytes other than canes;GERMANY;32;655454;P 293 Elb-Altarme near Laase, river Elbe, Biosphärenreservat Niedersächsische Elbtalaue;5881919 Veronica longifolia;actual measurement (following LEDA data standards);no leaf rehydration;188.85;9;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;32803;adult;with petiole and rachis;191.8;280;147.74;2;;;0;2004-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Assen, garden Manja/Joop; Veronica montana;actual measurement;leaf rehydration;272;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33758;adult;without petiole and rachis;272;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Veronica officinalis;actual measurement;leaf rehydration;280;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33764;adult;without petiole and rachis;280;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Veronica peregrina;actual measurement (following LEDA data standards);no leaf rehydration;101.12;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;33270;adult;with petiole and rachis;100.58;118.52;84.24;2;;;0;2005-07-06 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Stiens; Veronica peregrina;actual measurement (following LEDA data standards);no leaf rehydration;145.38;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33270;adult;with petiole and rachis;149.33;161.89;140.72;4;;;0;2005-05-24 00:00:00.0;Preaggregated data obtained from single record. ;;C3.4 - Species-poor beds of low-growing water-fringing or amphibious vegetation;GERMANY;32;507195;P 519 Hegne, Lake of Constance, Baden-W?emberg;5283391 Veronica peregrina;actual measurement (following LEDA data standards);no leaf rehydration;146.52;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33270;adult;with petiole and rachis;144.27;148.11;138.19;2;;;0;2005-10-08 00:00:00.0;Preaggregated data obtained from single record. ;;I2.1 - Large-scale ornamental garden areas;GERMANY;;;P 552 Petkum (graveyard near Emden), NW-Lower Saxony; Veronica persica;actual measurement;leaf rehydration;140;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33737;adult;without petiole and rachis;140;;;2;;;;1996-05-22 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Veronica persica;actual measurement;leaf rehydration;129;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33737;adult;without petiole and rachis;129;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Veronica persica;actual measurement;leaf rehydration;92;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33737;adult;without petiole and rachis;92;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Veronica polita;actual measurement;leaf rehydration;152;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33745;adult;without petiole and rachis;152;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Veronica polita;actual measurement;leaf rehydration;139;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33745;adult;without petiole and rachis;139;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Veronica polita;actual measurement;leaf rehydration;143;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;33745;adult;without petiole and rachis;143;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;King's Wood; Veronica prostrata s. prostrata;actual measurement (following LEDA data standards);no leaf rehydration;191.06;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34100;adult;with petiole and rachis;191.06;191.06;191.06;3;;;0;2004-05-17 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;32;370995;P 260 Strangenberg/Westhalten, Alsace;5313962 Veronica scutellata;actual measurement (following LEDA data standards);no leaf rehydration;268.41;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34347;adult;with petiole and rachis;259.13;303.39;176.15;1;;;0;2003-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;P1 Holle/Landkreis Oldenburg bei Hude; Veronica scutellata;actual measurement (following LEDA data standards);no leaf rehydration;163.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34347;adult;with petiole and rachis;162.83;167.52;157.63;1;;;0;2003-09-16 00:00:00.0;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;32;398434.5233;P3 NSG Haselünner Kuhweide (Emsland);5835077.409 Veronica serpyllifolia;actual measurement;leaf rehydration;175;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32740;adult;without petiole and rachis;175;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Abney Clough; Veronica spicata;actual measurement;leaf rehydration;341;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;32745;adult;without petiole and rachis;341;;;1;;;;1997-07-14 00:00:00.0;;;;UNITED KINGDOM;;;Great Orme; Veronica spicata s. spicata;actual measurement (following LEDA data standards);no leaf rehydration;272.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33276;adult;with petiole and rachis;272.28;317.74;226.17;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E1.2 - Perennial calcareous grassland and basic steppes;GERMANY;33;437398;P 460 Oderhänge near Gabow I, Biosphärenreservat Schorfheide-Chorin (Brandenburg);5852165 Veronica spicata s. spicata;actual measurement (following LEDA data standards);no leaf rehydration;270.2;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33276;adult;without petiole and rachis;271.67;321.23;225.72;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;33;437398;P 460 Oderhänge near Gabow I, Biosphärenreservat Schorfheide-Chorin (Brandenburg);5852165 Veronica triphyllos;actual measurement (following LEDA data standards);no leaf rehydration;165.79;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;33282;adult;with petiole and rachis;164.74;212.67;114.29;2;;;0;2005-05-05 00:00:00.0;Preaggregated data obtained from single record. ;;I1.5 - Bare tilled. fallow or recently abandoned arable land;GERMANY;;;P-494 car park beside A2, eastern of Burg (Sachsen-Anhalt); Viburnum lantana;actual measurement (following LEDA data standards);leaf rehydration;234.01;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15334;adult;with petiole and rachis;234.11;266.05;206.28;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Viburnum lantana;actual measurement (following LEDA data standards);leaf rehydration;235.78;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;15334;adult;without petiole and rachis;236.71;268.95;209.6;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Viburnum opulus;actual measurement;leaf rehydration;255;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15336;adult;without petiole and rachis;255;;;5;4.2;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Peter Dale; Viburnum opulus;actual measurement;leaf rehydration;246;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15336;adult;without petiole and rachis;246;;;5;9.1;;;1995-07-01 00:00:00.0;;;;UNITED KINGDOM;;;Roche Abbey; Viburnum tinus;actual measurement;leaf rehydration;286;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15337;adult;without petiole and rachis;286;;;5;4.5;;;1995-07-01 00:00:00.0;CURRENT YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Viburnum tinus;actual measurement;leaf rehydration;282;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;15337;adult;without petiole and rachis;282;;;5;7.4;;;1995-07-01 00:00:00.0;PREVIOUS YEARS GROWTH;;;UNITED KINGDOM;;;Sheffield; Vicia articulata;laboratory/greenhouse/garden experiment;no leaf rehydration;161.32;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22076;adult;with petiole and rachis;167.87;224.71;129.02;2;;;0;2004-07-13 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Vicia cassubica;actual measurement (following LEDA data standards);no leaf rehydration;350.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19692;adult;with petiole and rachis;360.24;409.62;308.06;2;;;0;2005-07-08 00:00:00.0;Preaggregated data obtained from single record. collected by J?n Dengler;;E5.2 - Thermophile woodland fringes;GERMANY;32;599560;P 540 L?urg, Steinh? NE - Lower Saxony;5902138 Vicia cracca;actual measurement;leaf rehydration;250;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22128;adult;without petiole and rachis;250;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Tideswell Dale; Vicia cracca;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22128;adult;without petiole and rachis;227;;;2;;;;1996-08-29 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Vicia cracca;actual measurement;leaf rehydration;203.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22128;adult;without petiole and rachis;197.52;228.31;134.74;2;;;0;2003-06-23 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349147;national park Müritz;5924593 Vicia cracca;actual measurement;leaf rehydration;211.98;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;22128;adult;with petiole and rachis;213.55;252.72;176.84;2;;;0;2003-06-23 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;33;349147;national park Müritz;5924593 Vicia ervilia;laboratory/greenhouse/garden experiment;no leaf rehydration;180.11;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;20343;adult;with petiole and rachis;178.03;204.32;148.19;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Vicia faba;actual measurement (following LEDA data standards);no leaf rehydration;114.95;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;20755;adult;with petiole and rachis;116.63;120.77;113.21;2;;;0;2005-06-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Midlaren, garden fam. Otto; Vicia grandiflora;actual measurement (following LEDA data standards);no leaf rehydration;228.9;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21610;adult;with petiole and rachis;231.42;252.29;216.31;2;;;0;2004-09-01 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;;;P 462 Gabower Hänge FFH, Biosphärenreservat Schorfheide-Chorin (Brandenburg); Vicia hirsuta;actual measurement;leaf rehydration;262;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20346;adult;without petiole and rachis;262;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Vicia hirsuta;actual measurement;leaf rehydration;231;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20346;adult;without petiole and rachis;231;;;2;;;;1996-06-20 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Vicia hirsuta;actual measurement;leaf rehydration;228;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20346;adult;without petiole and rachis;228;;;2;;;;1996-07-08 00:00:00.0;;;;UNITED KINGDOM;;;Pleasley, Derbys; Vicia lathyroides;actual measurement;leaf rehydration;217;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;21160;adult;without petiole and rachis;217;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Vicia sativa;actual measurement;leaf rehydration;234;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22143;adult;without petiole and rachis;234;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Litton Mill, Derbys; Vicia sativa;actual measurement;leaf rehydration;201;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22143;adult;without petiole and rachis;201;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Vicia sativa s. nigra;actual measurement (following LEDA data standards);no leaf rehydration;300.11;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19593;adult;without petiole and rachis;300.11;332.62;267.59;1;;;0;2003-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Vicia sativa s. nigra;actual measurement (following LEDA data standards);no leaf rehydration;316.29;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;19593;adult;with petiole and rachis;316.29;365.16;267.42;1;;;0;2003-07-07 00:00:00.0;Preaggregated data obtained from single record. ;;J - Constructed. industrial and other artificial habitats;GERMANY;32;482811;Bremen, NW-Germany;5883875 Vicia sepium;actual measurement;leaf rehydration;186;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20357;adult;without petiole and rachis;186;;;2;;;;1996-06-11 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Vicia sylvatica;actual measurement;leaf rehydration;208;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;20360;adult;without petiole and rachis;208;;;2;;;;1996-09-02 00:00:00.0;;;;UNITED KINGDOM;;;Anston Stones Wood; Vicia tenuifolia;actual measurement (following LEDA data standards);no leaf rehydration;179.92;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;22123;adult;with petiole and rachis;178.64;212.52;137.76;2;;;0;2005-05-27 00:00:00.0;Preaggregated data obtained from single record. ;;E5.2 - Thermophile woodland fringes;GERMANY;32;486559;P 529 NSG Hohenkr?n, Hegau, Baden-W?emberg;5293869 Vicia tenuifolia;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22123;adult;without petiole and rachis;238;;;2;;;;1996-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Vicia tenuifolia;actual measurement;leaf rehydration;204;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22123;adult;without petiole and rachis;204;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Vicia tetrasperma;actual measurement;leaf rehydration;281;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;22147;adult;without petiole and rachis;281;;;1;;;;1999-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Sheepbridge; Vicia villosa subsp. villosa;actual measurement (following LEDA data standards);no leaf rehydration;166.65;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;21628;adult;with petiole and rachis;161.95;178.67;139.37;2;;;0;2005-05-20 00:00:00.0;Preaggregated data obtained from single record. ;;E2.1 - Permanent mesotrophic pastures and aftermath-grazed meadows;GERMANY;32;476188;P 501 N?stenbach, Bergstrasse, poor pasture, same sample area as P 405 from 2007;5490931 Vinca major;actual measurement;leaf rehydration;238;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2533;adult;without petiole and rachis;238;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Beeley, Derbys; Vinca minor;actual measurement;leaf rehydration;195;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;2536;adult;without petiole and rachis;195;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage; Vincetoxicum hirundinaria;actual measurement (following LEDA data standards);leaf rehydration;168.05;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2467;adult;without petiole and rachis;169.55;177.8;162.81;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Vincetoxicum hirundinaria;actual measurement (following LEDA data standards);leaf rehydration;150.33;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2467;adult;without petiole and rachis;152.76;179.5;121.75;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Vincetoxicum hirundinaria;actual measurement (following LEDA data standards);leaf rehydration;169.28;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2467;adult;with petiole and rachis;170.47;178.68;163.44;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK3, Schwäbische Alb, Katzenbuckel;5379100 Vincetoxicum hirundinaria;actual measurement (following LEDA data standards);leaf rehydration;150;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2467;adult;with petiole and rachis;152.49;178.9;121.74;1;;;0;2003-06-19 00:00:00.0;Preaggregated data obtained from single record. ;;H3.2 - Basic and ultra-basic inland cliffs;GERMANY;32;544300;MK 4, Schwäbische Alb, Katzenbuckel;5379100 Viola alba;field experiment;leaf rehydration;284;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;35426;adult;without petiole and rachis;284;;;10;7;7;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Viola alba;field experiment;leaf rehydration;240;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;35426;adult;without petiole and rachis;240;;;10;9;9;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Viola arvensis;actual measurement;leaf rehydration;184;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35403;adult;without petiole and rachis;184;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Viola arvensis;actual measurement;leaf rehydration;151;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35403;adult;without petiole and rachis;151;;;2;;;;1996-05-21 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Viola biflora;actual measurement (following LEDA data standards);no leaf rehydration;134.1;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;35415;adult;with petiole and rachis;132.93;161.22;97.15;1;;;;2005-07-21 00:00:00.0;Preaggregated data obtained from single record. ;;E4 - Alpine and subalpine grasslands;NORWAY;32;608127;Hessdalen 34;6952883 Viola canina;actual measurement;leaf rehydration;245;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35384;adult;without petiole and rachis;245;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Clumber, Derbys; Viola hirta;actual measurement;leaf rehydration;244;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35355;adult;without petiole and rachis;244;;;2;;;;1996-08-16 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Viola hirta;actual measurement;leaf rehydration;229;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35355;adult;without petiole and rachis;229;;;2;;;;1996-07-15 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Common; Viola lutea;actual measurement;leaf rehydration;181;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35331;adult;without petiole and rachis;181;;;2;;;;1996-06-10 00:00:00.0;;;;UNITED KINGDOM;;;Bretton, Derbys; Viola lutea;actual measurement;leaf rehydration;170;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35331;adult;without petiole and rachis;170;;;2;;;;1996-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Black Rock, Derbys; Viola mirabilis;actual measurement (following LEDA data standards);no leaf rehydration;164.9;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35297;adult;with petiole and rachis;165.78;180.03;152.87;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;684457;P 413a/b Jenzig(berg) closely to Jena (Thüringen);5646509 Viola mirabilis;actual measurement (following LEDA data standards);no leaf rehydration;168.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35297;adult;without petiole and rachis;169.15;180.89;158.49;2;;;0;2004-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;32;684457;P 413a/b Jenzig(berg) closely to Jena (Thüringen);5646509 Viola odorata;actual measurement;leaf rehydration;280;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35309;adult;without petiole and rachis;280;;;2;;;;1996-08-08 00:00:00.0;;;;UNITED KINGDOM;;;Maltby Lower Common; Viola odorata;actual measurement;leaf rehydration;160;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35309;adult;without petiole and rachis;160;;;1;;;;1997-05-09 00:00:00.0;;;;UNITED KINGDOM;;;Sprotbrough; Viola palustris;actual measurement (following LEDA data standards);no leaf rehydration;182.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Krüger), Correspondig address: michael.kleyer@uni-oldenburg.de;35276;adult;without petiole and rachis;181.19;191.76;169.57;2;;;;;Preaggregated data obtained from single record. ;;C1.6 - Temporary lakes. ponds and pools (wet phase);GERMANY;;;Mecklenburg-Vorpommern; Viola palustris;actual measurement;leaf rehydration;155;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35276;adult;without petiole and rachis;155;;;2;;;;1996-09-09 00:00:00.0;;;;UNITED KINGDOM;;;Stanage Edge; Viola palustris;actual measurement;leaf rehydration;176;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35276;adult;without petiole and rachis;176;;;2;;;;1996-09-24 00:00:00.0;;;;UNITED KINGDOM;;;Ladybower; Viola persicifolia;actual measurement (following LEDA data standards);no leaf rehydration;140;5;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;35285;adult;with petiole and rachis;144.97;171.82;128.18;2;;;0;2004-07-08 00:00:00.0;Preaggregated data obtained from single record. ;;D5 - Sedge and reedbeds. normally without free-standing water;NETHERLANDS;;;Kienveen; Viola persicifolia;actual measurement (following LEDA data standards);no leaf rehydration;200.62;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35285;adult;with petiole and rachis;202.33;223.66;181.91;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;;P 296 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue ; Viola persicifolia;actual measurement (following LEDA data standards);no leaf rehydration;202.79;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35285;adult;without petiole and rachis;205.32;229.78;184.7;2;;;0;2004-06-17 00:00:00.0;Preaggregated data obtained from single record. ;;E3.4 - Moist or wet eutrophic and mesotrophic grassland;GERMANY;32;;P 296 NSG Seegeniederung, Biosphärenreservat Niedersächsische Elbtalaue ; Viola reichenbachiana;laboratory/greenhouse/garden experiment;no leaf rehydration;216.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35262;adult;with petiole and rachis;212.29;242.32;168.9;2;;;0;2004-04-24 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Viola reichenbachiana;laboratory/greenhouse/garden experiment;no leaf rehydration;234.74;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35262;adult;without petiole and rachis;227.94;259.9;181.65;2;;;0;2004-04-24 00:00:00.0;Preaggregated data obtained from single record. ;;G1.6 - [Fagus] woodland;GERMANY;;;P 205 University of Oldenburg, Botanical Garden, bowery of Fagus forest; Viola riviniana;actual measurement;leaf rehydration;296;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35267;adult;without petiole and rachis;296;;;2;;;;1996-08-14 00:00:00.0;;;;UNITED KINGDOM;;;Harpur Hill; Viola tricolor;actual measurement;leaf rehydration;184;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35219;adult;without petiole and rachis;184;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Everton, Notts; Viola tricolor;actual measurement;leaf rehydration;182;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;35219;adult;without petiole and rachis;182;;;2;;;;1996-05-30 00:00:00.0;;;;UNITED KINGDOM;;;Scaftworth; Viola tricolor;actual measurement;leaf rehydration;139.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: Tonia.Heider@uni-oldenburg.de;35219;adult;without petiole and rachis;144.48;181.41;129.58;2;;;0;2004-05-26 00:00:00.0;Preaggregated data obtained from single record. rehydration (GARNIER);;;GERMANY;;;national park Müritz; Viola tricolor s. curtisii;actual measurement (following LEDA data standards);no leaf rehydration;142.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;35223;adult;with petiole and rachis;145.83;160.73;129.99;2;;;0;2004-06-05 00:00:00.0;Preaggregated data obtained from single record. ;;B1.8 - Moist and wet dune slacks;GERMANY;32;352188;P 268 Borkum (NO), National park Niedersächsiches Wattenmeer;5941821 Viscum album;actual measurement (following LEDA data standards);no leaf rehydration;268.14;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;25275;adult;with petiole and rachis;273.66;312.21;248.97;2;;;0;2004-07-27 00:00:00.0;Preaggregated data obtained from single record. ;;G1.1 - Riparian [Salix]. [Alnus] and [Betula] woodland;GERMANY;32;456544;P 398a NSG Rußheimer Altrhein, Oberrheinebene (Rhine), Baden-Württemberg;5450820 Viscum album;actual measurement;leaf rehydration;208;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;25275;adult;without petiole and rachis;208;;;1;;;;1997-09-13 00:00:00.0;;;;UNITED KINGDOM;;;Sandbeck; Vitis vinifera;actual measurement (following LEDA data standards);no leaf rehydration;174.4;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34500;adult;without petiole and rachis;173.2;196.41;149.77;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. determinated as Vitis vinifera ssp. sylvestris (native plant);;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;394285;P 243 Rheinwald, Rheinufer south of Hartheim (upper Rhine);5307068 Vitis vinifera;actual measurement (following LEDA data standards);no leaf rehydration;145.2;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;34500;adult;with petiole and rachis;146.63;171.05;126.89;2;;;0;2004-05-14 00:00:00.0;Preaggregated data obtained from single record. determinated as Vitis vinifera ssp. sylvestris (native plant);;G1.2 - Fluvial [Fraxinus] - [Alnus] and [Quercus] - [Ulmus] - [Fraxinus] woodland;GERMANY;32;394285;P 243 Rheinwald, Rheinufer south of Hartheim (upper Rhine);5307068 Vulpia bromoides;actual measurement;leaf rehydration;306;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42790;adult;without petiole and rachis;306;;;2;;;;1996-05-23 00:00:00.0;;;;UNITED KINGDOM;;;Lindrick quarry; Vulpia bromoides;actual measurement;leaf rehydration;232;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42790;adult;without petiole and rachis;232;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Vulpia bromoides;actual measurement;leaf rehydration;249;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42790;adult;without petiole and rachis;249;;;1;;;;1997-06-24 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Vulpia myuros;actual measurement;leaf rehydration;307;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42798;adult;without petiole and rachis;307;;;2;;;;1996-06-19 00:00:00.0;;;;UNITED KINGDOM;;;Sheffield; Vulpia myuros;actual measurement;leaf rehydration;237;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;42798;adult;without petiole and rachis;237;;;2;;;;1996-06-18 00:00:00.0;;;;UNITED KINGDOM;;;Rowsley sidings, Derbys; Wolffia arrhiza;actual measurement (following LEDA data standards);no leaf rehydration;101.69;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;36885;adult;with petiole and rachis;103.43;171.97;27.52;10;;;0;2004-06-23 00:00:00.0;Preaggregated data obtained from single record. leaf size calculated with slide rule;;C2.3 - Permanent non-tidal. slow. smooth-flowing watercourses;GERMANY;32;457848;P 315 Landkreis Wesermarsch;5894399 Xanthium albinum s.lat.;laboratory/greenhouse/garden experiment;no leaf rehydration;169.2;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;61703;adult;with petiole and rachis;169.2;169.2;169.2;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Xanthium albinum s.lat.;laboratory/greenhouse/garden experiment;no leaf rehydration;203.76;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;61703;adult;without petiole and rachis;203.76;203.76;203.76;2;;;0;2004-08-05 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Xanthium orientale;laboratory/greenhouse/garden experiment;no leaf rehydration;213.83;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60681;adult;with petiole and rachis;213.83;213.83;213.83;2;;;0;2005-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Xanthium strumarium;laboratory/greenhouse/garden experiment;no leaf rehydration;189.77;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10168;adult;with petiole and rachis;194.63;211.23;185.69;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Xanthium strumarium;laboratory/greenhouse/garden experiment;no leaf rehydration;208.45;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;10168;adult;without petiole and rachis;205.92;214.44;193.94;2;;;0;2004-08-11 00:00:00.0;Preaggregated data obtained from single record. ;;unknown from literature;GERMANY;;;P 210 University of Oldenburg, Botanical Garden; Xanthium strumarium;actual measurement;leaf rehydration;200;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;10168;adult;without petiole and rachis;200;;;2;;;;2004-10-13 00:00:00.0;;;;ITALY;;;Cremona; Xeranthemum inapertum;field experiment;leaf rehydration;187;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;9879;adult;without petiole and rachis;187;;;10;5;5;;1998-01-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Xeranthemum inapertum;field experiment;leaf rehydration;165;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;9879;adult;without petiole and rachis;165;;;10;3;3;;1998-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Xeranthemum inapertum;field experiment;leaf rehydration;147;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;9879;adult;without petiole and rachis;147;;;10;3;3;;1999-05-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Xeranthemum inapertum;field experiment;leaf rehydration;263;1;1;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;9879;adult;without petiole and rachis;263;;;10;7;7;;1998-07-01 00:00:00.0;;Garnier, E.(2001): Consistency of species ranking based on functional leaf traits;F6 - Garrigue;FRANCE;0;3.42;Cazarils;43.46 Zannichellia palustris;actual measurement;leaf rehydration;132;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43857;adult;without petiole and rachis;132;;;2;;;;1996-09-27 00:00:00.0;;;;UNITED KINGDOM;;;Renishaw; Zannichellia palustris subsp. pedicellata;actual measurement (following LEDA data standards);no leaf rehydration;112.83;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;60685;adult;with petiole and rachis;115.08;149.32;73.66;12;;;0;2005-08-06 00:00:00.0;Preaggregated data obtained from single record. ;;C1.5 - Permanent inland saline and brackish lakes. ponds and pools;GERMANY;32;498738;P 549 Tideeider NSG Oldenw?er Deichvorland (SH), Schleswig-Holstein;6020444 Zea mays;actual measurement (following LEDA data standards);no leaf rehydration;163.44;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;43844;adult;with petiole and rachis;167.5;198.82;141.5;2;;;1;2005-08-09 00:00:00.0;Preaggregated data obtained from single record. ;;I2 - Cultivated areas of gardens and parks;NETHERLANDS;;;Haren; Zea mays;actual measurement;leaf rehydration;227;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;43844;adult;without petiole and rachis;227;;;1;;;;1997-07-04 00:00:00.0;;;;UNITED KINGDOM;;;Markland; Zostera marina;actual measurement (following LEDA data standards);no leaf rehydration;117.37;10;-2;Source data from University of Groningen, Community and Conservation Ecology Group, NL (Steendam), Corresponding address: R.m.bekker@rug.nl;43879;adult;with petiole and rachis;118.66;150.68;71.85;2;;;0;2004-09-18 00:00:00.0;Preaggregated data obtained from single record. ;;B - Coastal habitats;NETHERLANDS;;;Krabbenkreek Zeeland; x Festulolium loliaceum;actual measurement;leaf rehydration;266;3;1;Source data from University of Sheffield, Dept. of Animal and Plant Sciences, UK (Thompson), E-Mail: ken.thompson@sheffield.ac.uk;41093;adult;without petiole and rachis;266;;;1;;;;1997-06-03 00:00:00.0;;;;UNITED KINGDOM;;;Hathersage;